22nd
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 fix this problem I had to changed the /etc/hosts on the master and comment out the loopback entry 127.0.1.1 and replace it with my permanent or real ip address.
127.0.0.1 localhost 192.168.x.x nowwhat #127.0.1.1 nowwhat
I also had to comment out the 127.0.1.1 hostname entry in the hosts file on all the slaves, but no need to add the real ip on them.
This problem only affected the machines that was running Ubuntu.
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/
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>
Trying to make a schedule for Jfokus 2009, There are some interesting sessions at the same time but I will probably attend these. I will also be standing in the bwin games information area between 12.45-13.15 so please come by and say hi if you like.
Will also attend these tutorials on the first day.
0.9.1 of phplifestreamer is now released.
Download 0.9.1 or see complete changelog. Demo at johannilsson.me
Found Jonas vimrc and thought that could share mine.
syntax on set ruler set ts=4 set sw=4 set autowrite set showmatch set hlsearch set incsearch set ignorecase filetype plugin indent on colorscheme default hi Number ctermfg=yellow hi Comment ctermfg=yellow autocmd FileType php set omnifunc=phpcomplete#CompletePHP set cot+=menuone set makeprg=php\ -l\ % set errorformat=%m\ in\ %f\ on\ line\ %l nnoremap:TagExplorer
Resources that might be interesting.
Just added comment support to this blog, The comment system is powered by Disqus and it was really easy to integrate. So feel free to comment if you like.