February 2009
11 posts
Feb 26th
Compass - CSS Meta-Framework, looks really nice. →
Feb 25th
PHP based space-separated tag parser. Great parser... →
Feb 22nd
3 tags
Remote testing with Jmeter and loopback issue
Had some problem when I setup a remote testing environment with Jmeter. I used my own macine as master to aggregate the test results, and a couple of other machines as slaves. All machines was running Ubuntu. The problem I had was that the log on the servers said: jmeter.samplers.RemoteListenerWrapper: testStarted(host) java.rmi.ConnectException: Connection refused to host: 127.0.1.1; To...
Feb 20th
“Why should I care what color the bikeshed is? So true!”
– Miscellaneous Questions
Feb 19th
Patterns in Practice: Cohesion And Coupling →
Feb 18th
“Loved this site and the concept of a Social Media Résumé”
– Joery Bruijntjes - Social Media Résumé
Feb 17th
My top 10 bash commands
92 git 86 cd 82 ll 22 find 18 sudo 14 rake 10 apache2 9 vi 9 ls 9 cat history|awk '{a[$2]++ } END{for(i in a){print a[i] " " i}}'|sort -rn|head From http://www.earobinson.org/2008/04/10/my-top-10-commands-20/
Feb 17th
DDD and more D - Fear and Loathing →
Feb 11th
Chris Anderson, MEDIA EVOLUTION / THE EVENT 2009 →
Feb 5th
A note on JPA and embeddable
Took me a while to figure out that I have to place my embeddable element below the entity elements, got validation errors about missing embeddable element otherwise. Simplified example <entity class="example.Person> <attributes> <embedded name="name" /> ... </entity> <embeddable class="example.Name"> ... </embeddable>
Feb 3rd