Life is learning, all the way until it all ends: Becoming a Better Programmer
Read moreReference Library
Interesting collection (however, mostly a bit old): O’Reilly’s CD bookshelf Programming References Andamooka
Read moreProgramming links
But there is still other languages in existence also… Programming links and info.
Read moreUnmaintainable code
Old’n’Good reference for design: Unmaintainable code As an highlight point Ambiguity.
Read morePHP is becoming popular…
At least based into TIOBE Programming Community Index for November 2005 PHP: Documentation PEAR – The PHP Extensions Learning PHP 1 Learning PHP 2 Learning PHP 3 PHPBuilder PHP Editor Review – Review PHP Tutorial PHP Tutorials: The SiteWizard Practical PHP Programming Zend Technologies – PHP Tutorials for Absolute Beginners
Read moreSynchronization of files
Problem: Two different computers, or one computer and transferable storage media (e.g. USB memorystick). Q: How to synchronize files in such case? A: Few possible solutions For Linux/Windows: RSync Unison
Read moreShutdown KDE via script
From sfnet.atk.linux (Sorry for non-translated text): Q: Onko olemassa komentoa, joka sammuttaa KDE:n ja tietokoneen samalla tavalla kuin toiminto KDE:n valikossa ”K -> Log Out… -> Turn Off Computer”? Ainakin nopeasti ajatellen tuntuisi, että shutdown-komento ei sammuta työpöytää yhtä nätisti. Voit käyttää DCOP:ia[1]: [code lang=”perl”] dcop ksmserver ksmserver saveCurrentSession dcop ksmserver ksmserver logout 0 2…
Read moreObfuscation safe reflection
Q: How to ensure that code can be obfuscated, but reflection API benefits for action invoking could be used? A: In JDK 5.0 solution exists, just use annotations. So how to do such. 1) Define appropriate annotation [code lang=”java”] @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface Call { int value(); } [/code] 2) Define reflection action to use…
Read more