Archive Page 2


I bought this book only because it was mentioned on the page of “The Pragmatic Programmer” at amazon as a recommendation. And I must say I was really impressed with the knowledge that is contained in it.

Whole book contains very useful tips for every programmer, not only a beginner but probably many experts will find it useful.
Continue reading ‘“Code Complete” Review – The End of Programming Stoneage?’

Closures in Java?

19 Aug 06

TomTom ONE XL-S – a wide screen GPS

Just a short notice, found it while browsing the digg for programming stories.
There is a proposition to include closures in Java (probably 7.0), here is a pdf file with the proposition.

Continue reading ‘Closures in Java?’

Code on a monitor Pseudocode interesting technique that I found in Code Complete, Second Edition by Steve McConnell.

PPP is a way of developing routines by writing pseudocode for them in the first place (not a new topic) and after that, making the pseudocode a comment in the routine (functions, procedure, method or whatever your language calls them). After comments are in the empty routine, the last thing to do is write the code below appropriate comment lines.

I know it isn’t the clearest explanation, here look below at the example that I prepared.
Continue reading ‘The Pseudocode Programming Process’