Archive for February, 2009

beneath a painted sky…

Tuesday, February 17th, 2009

Trying something new.Blogged with the Flock Browser

Fallen angel…?

Saturday, February 14th, 2009

Went out for a walk last weekend with the intention of taking some photos of the swans on a local pond...only to find that someone had go there first.Blogged with the Flock Browser

November..

Friday, February 13th, 2009

'November has tied me To an old dead tree Get word to April To rescue me ' ...Tom WaitsBlogged with the Flock Browser

Winter

Tuesday, February 10th, 2009

[flickr]3268171210[/flickr] Lone tree beside a frozen pond

Saidar

Thursday, February 5th, 2009

If you are using Debian/Ubuntu and looking for a tool which enables you to view live system statistics then you probably want to give saidar a whirl: sudo apt-get install saidar Saidar shows you real-time CPU, processes, load, memory, swap, network I/O, disk I/O, and file system information through a curses interface ...

Bibble 5 Preview Released

Wednesday, February 4th, 2009

I have been using Bibble4 as my primary raw processing software for about 2 years now. Like many others, I have been eagerly awaiting the release of Bibble5 and was bitterly disappointed when the release was postponed back in December. At the time Bibblelabs promised to release a preview version ...

Intersection of Two Files

Wednesday, February 4th, 2009

To find the lines which occur in each of two files, ie if you have the following two files: File1: line1 line2 line3 line4 line5 File2: line4 line5 line6 line7 and want a command which will return: line4 line5 Use: grep -f File1 File2 Blogged with the Flock Browser