Adding list query support to CouchApp to jquery.couch.js and jquery.couch.app.js
Update: this has been applied in CouchDB as of applied in r939443. Here is the bit you add to jquery.couch.js in the couchdb/www/script directory. I added it right between the query function and the...
View ArticleHow to see what your site looks like in many browsers on many operating systems
I just found this site that lets you see what your pages look like in a bunch of different browsers on a bunch of different operating systems.
View ArticleMigrating Java Projects to Maven 2
Looks like Maven 2 is pretty much inline with the generic Ant based build system I have been using for the past 8 years. So I am going to take the plunge and start using Maven 2 so I don’t have to keep...
View ArticleHow to force changes to /etc/hosts to take effect in OSX
If you make changes to your /etc/hosts file and want the changes to take effect immediately without having to reboot issue the following command at in the Terminal dscacheutil -flushcache
View ArticleInterface and Class Naming Anti-Patterns – Java Naming Convention Tautologies
Name your Interface what it is If your interface is a Truck, call it Truck. Not ITruck because it isn’t an ITruck it is a Truck. An Interface in Java is a Type. Then you have implementations of...
View ArticleUpdated all code snippets and examples to be hosted on gist.github.com
All the code on this site is now hosted at gist.github.com!
View ArticleFluent Builder Pattern Revisited
Here is a more robust Builder Pattern that enforces the order of construction and guarantees you have a valid object. Here is a UrlBuilder as an example of how this works.
View Article