February 2009
11 posts
Compass - CSS Meta-Framework, looks really nice. →
PHP based space-separated tag parser. Great parser... →
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...
Why should I care what color the bikeshed is? So true!
– Miscellaneous Questions
Patterns in Practice: Cohesion And Coupling →
Loved this site and the concept of a Social Media Résumé
– Joery Bruijntjes - Social Media Résumé
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/
DDD and more D - Fear and Loathing →
Chris Anderson, MEDIA EVOLUTION / THE EVENT 2009 →
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>