http://paulszulc.wordpress.com/2010/01/04/a-proper-way-for-jpa-entities-instantiation/
Category: Software Development
19 1/2 Things to Make You a Better Object Oriented Programmer – Greg Young
Very good talk by Greg Young at Øredev about object oriented programming:
About Cohesion And Coupling
Great MSDN article about software design:
John Cleese on writing, creativity and getting in the zone
I recently found this amazing video with John Cleese on SvN:
http://37signals.com/svn/posts/2539-the-amazing-john-cleese-shares-his-wisdom
How to upload a file to a FTP server with cURL
If you need a simple way to upload a file to an FTP-server from commandline or from a script, you could use cURL:
curl -v -T file.txt ftp://username:password@myserver/mydir/
The -v turns on verbosity and -T aktivates file-uploads.
Martin Fowler: Steps toward the glory of REST
Martin Fowler explains in this article the four maturity levels of restful webservices, also known as the Richardson Maturity Model. Good read.