October, 2013
30 10 2013
Modulus vs Bit Operation A while ago i read a question on stackoverflow what method is faster to determine if a number is odd or even in C#. Modulus (i % 2) or a bit operation (i & 1). And the first answere marked as right was the bit-operation. Everybody knows that this way was […]
14 10 2013
Since 1999 I worked for alot of companies that use agile development, or at least what they think that means. I worked with SCRUM, PairProgramming, TestDrivenDevelopment (TDD), BehaviorDrivenDevelopment (BDD), Acceptance Tests and CleanCode. But I only met a handful of people who actual know how to use this stuff in real life. Since I’m prefer […]