Protein Shakes site review

[![](http://www.strongernutrition.com/productimages/400216_500_500.jpg)](http://www.strongernutrition.com/productimages/400216_500_500.jpg)

This is something new for me: protein shakes. Medically I can’t offer advice about it (I’m weary about using foreign substances not recommended by a specialist), but the site certainly is has some positive ...

more ...

Running JRuby on 64 bit Windows

Usually it is as simple as: download, install, run. You can run into problems however if you have both the 32 bit and 64 bit JVMs installed (which is quite often) because it will try to use the 32 bit JVM. You can check which JVM is being used from ...

more ...

Using less with syntax highlight

You can use vim as your pager and obtain two benefits: syntax highlight and access to all the advanced commands (like search). You can do this under ubuntu by adding the following line to your ~/.bashrc:

alias less='/usr/share/vim/vimcurrent/macros/less.sh'

Note:

  • You have to have ...
more ...

Link love

Here are a couple of close friends’ blogs. They are just starting out writing, but hopefully giving them some link love will encourage them to write even more great content. Without further ado, in no particular order:

more ...


Quick’n’dirty Mediawiki file crawler

URL='http://10.0.0.1' MIME='image/jpeg'   
 bash -c 'wget -q -O - "$URL/wiki/index.php?title=Special:MIMESearch&mime;=$MIME&limit;=500&offset;=0"   
 | grep -Po "\/wiki\/images[^\"]+"   
 | xargs -n1 -I {} wget "$URL{}"'

What it does: it uses the “MIME search” functionality on the wiki to locate ...

more ...

Creating a non-MAC bound CentOS 6 machine

I was building VMs to be deployed with Vagrant / Virtualbox for our QAs and discovered that on new instantiations of the machine the networking interface wasn’t coming up. The problem was that Virtualbox was assigning a random MAC address to the NIC (and rightly so, to avoid conflicts). I ...

more ...