Search Results

1
vote

What are the best RSS feeds for programmers/developers?

On my Google Reader Code Better Crazy Bob (Googl …
4
votes

When should a method be static?

Another problem with static methods is that is a quite painful write unit test to them - in Java, at least. You can't mock a static method in any way. There is a …
3
votes

What’s the difference between programmer and software engineer?

@Frank Krueger, perfect! Software engineers? Programmers? To me, we are all software developers, but some people like these weird names. :-) Kind …
2
votes

What Makes a Good Unit Test?

Jay Fields has a lot of good advices about writing unit tests and there is …
1
vote

Rosetta Stone - Sorting Arrays

Groovy: def array = [1, 4, 5, 2, 3, 7, 9, 6, 8, 0] array.sort() // normal sorting array.sort { a, b -> b <=> a } // desc sorting Kind Regards …
2
votes

Rosetta Stone - Sorting Arrays

JavaScript: [1, 4, 5, 2, 3, 7, 9, 6, 8, 0].sort(); // asc sorting [1, 4, 5, 2, 3, 7, 9, 6, 8, 0].sort(function(a, b) { return b -a }); // using a callback function …
1
vote

Tool for adding license headers to source files?

For Java, http://code.google.com/p/maven-license-plugin/ Kind Regards …
0
votes

Do you personally identify with your code?

I call my self a problem solver. Well, software problem solver. :-) In The Psychology of Computer Programming …