IC窗口
community.icburner.com

Browse by Tags

  • Automagic Time Localization

    One of the most often-overlooked and easy to fix things encountered when developing a hosted software application is the management of local time. First and foremost, you should be storing timestamps in your database in UTC. I don’t care if your users...
    Published 2009/7/19 0:56 by 革命
    Filed under: ,
  • BigInt - Multiprecision Integers

      It's been done to death, but I think every developer should write one - a class for multiprecision integers (i.e. integers larger than one machine word).  I have to say, it was harder than I expected. A special welcome to those who are...
    Published 2009/7/3 11:13 by 革命
    Filed under:
  • Validating with Lambda Expressions

    I’ve recently been working on a small library for doing validation with lambda expressions. It allows you to run a set of validators against an object, then collects the validation errors in a list. Here are some examples: var person = new Person...
    Published 2009/6/30 17:49 by 革命
    Filed under: