Hosts
using wordpress CLI to post to wordpress
2011/03/24
There is a very nice post here: How to post content to a WordPress blog from the command line I tried this in Fedora 14 and here is the way to get this working in Fedora […] <td> <div …
Performance issues resolved with my blog.
2010/10/01
For last 2-3 weeks there were quite a lot of performance issues with my website. I was looking at the same but could not get enough time to have all of them resolved together. Finally I have spent …
List of commands you use most often
2010/07/25
$ history | <a class="zem_slink" title="AWK" rel="homepage" href="http://cm.bell-labs.com/cm/cs/awkbook/index.html">awk '{a[$2]++}END{for(i in a){print …
IRC on Linux de-mystified for new users only
2010/06/15
The other day, I was trying to fix something in my firefox and found that the way to go was to login to IRC and go to the mozilla <a class="zem_slink freebase/en/server" …
mussh - Multihost SSH wrapper
2010/05/25
Description: […] Mussh is a <a class="zem_slink freebase/en/shell_script" title="Shell script" rel="wikipedia" …
Linux Contractor Fired for Using Firefox/Linux
2010/05/03
This is a complicated story but one that must be told. I’m not sure there is anything that can be done about it except rage at the moon… But it needs to be told none the less. Did I mention …
Delete all files in a folder that don’t match a certain file extension
2010/04/30
$ rm !(.foo|.bar|*.baz) Deletes all files in a folder that are NOT *.foo, *.bar or *.baz files. Edit the pattern inside the brackets as you like. […] <a …