Archive for November, 2005

November 28th, 2005

Converting .tsv to .csv

Replacing tab character in a file with comma character using perl command line:

perl -pe ’s/\t/,/g’ table.tsv > table.csv

November 28th, 2005

Wild Imaginations … I did it!

I finally managed to overcome my laziness for a day and spent the whole day doing EQ and effects on around 20 audio drums and instrument tracks of Wild. Finally the audio does not seem muddy anymore and I would be able to send it to Mystic Media to finalize the video.

The fresh version of my track “Wild Imaginations” can be downloaded here.

Please leave comments if you get time to listen.

Talha

November 25th, 2005

2 new Nusrat albums

Uploaded 2 of Nusrat Fateh Ali Khan’s rare albums, Kanday Uttay and Keray Ghar Jawan at nusratforever.com. Both 0f these albums are in Punjabi language and contains songs with simple & meaningful lyrics. Clips were also selected from the songs and are available for preview on the site.

November 25th, 2005

Saving Juniper Netscreen Config

Save Juniper Netscreen config without including default config lines:

get config saved

To capture it via console, use “set console page 0″ to avoid more the — more — lines.

November 22nd, 2005

Multicast IGMP Proxy on Juniper Netscreen

Outside Interface: (RP side)

set int eth1 protocol igmp host
set int eth1 protocol igmp no-check-subnet
set int eth1 protocol igmp no-check-router-alert
set int eth1 protocol igmp enable

Inside Interface: (Receiver side)

set int eth2 protocol igmp router
set int eth2 protocol igmp proxy
set int eth2 protocol igmp no-check-subnet
set int eth2 protocol igmp no-check-router-alert
set int eth2 protocol igmp enable