C++11 - a good example of RAII by using unique_ptr
1 2 3 4 5 6 class FileDeleter { void operator()(FILE* fp) { fclose(fp); } }; unique_ptr<FILE, FileDeleter> fp = fopen("blah"); or even unique_ptr<FI...
1 2 3 4 5 6 class FileDeleter { void operator()(FILE* fp) { fclose(fp); } }; unique_ptr<FILE, FileDeleter> fp = fopen("blah"); or even unique_ptr<FI...
Very useful tools for UML and documentation. Plant UML http://plantuml.sourceforge.net/ sphinx python documentation http://sphinx.pocoo.org/
database.driverClassName=org.postgresql.Driver database.url=jdbc\:postgresql\://localhost\:5432/
Fortunately, Spring Security has built-in functionality for remembering the URL that was originally requested, and redirecting your users there after they su...
https://groups.google.com/forum/?fromgroups=#!topic/httpfiddler/Az0xW2MJMqU There's tons of information scattered through the various Fiddler sites and this ...