Categories

 

February 2012
M T W T F S S
« Oct    
 12345
6789101112
13141516171819
20212223242526
272829  

What I'm Doing...

PlaytimePriya and KunalIMG00015.jpgIMG00017.jpgFallColors.jpgSpring

Convert uploaded file with windows line ending to unix line ending using php

I was working on a php project which involved in uploading a tab delimited file and then processing it with php on a unix webserver to insert data into a database. The file was produced on a windows machine and so it had windows line endings. I used this trick to strip off the carriage [...]

Share

Argument list too long

Ever tried to copy or move a bunch of files on unix/linux from one location to another and see this error message spit out back at you??

$ cp /var/www/* /var/tmp
-bash: /bin/cp: Argument list too long

UNIX find to the rescue…

$ find /var/www -type f -name ‘*’ -exec cp {} /var/tmp/. \;

problem solved!

Share

Join multiple mpg files into one file

I did not realize how easy it is to join mpeg files with just the windows copy command or unix cat command.

On windows the trick is to copy the files while preserving the binary format. Here is how you would do it -

copy files1.mpg /b + files2.mpg /b joinedfile.mpg

You could also do the following [...]

Share

SSH aliases

I constantly connect to linux or unix machines using ssh and it can get a little bothersome typing out the IP address repeatedly. Here is the typical syntax to connect to a linux box (random IP address)

ssh username@111.11.11.1

Now imagine typing this again and again. Thats where the ssh config file comes to the rescue. You [...]

Share

Convert AVCHD video to MPEG-2

I have a Canon H100 video camera. This records high definition 1080p videos in a digital video format called AVCHD. It has been a pain to watch these videos. First of all, these videos don’t even play properly on my single core PC. My 3-4 year old PC is just not powerful enough. The video [...]

Share

Same music album showing up multiple times on iPhone

I created an album with different artists to listen on my iPhone. To my horror all the songs showed up as separate albums. Cover flow showed up the same album art for each of the songs. I hated this!! The fix is pretty quick. You have to make sure of the following to make your [...]

Share

Grep for multiple stuff in one file

Update: See the comments to see how to do this correctly.

the UNIX grep command is very powerful, but the egrep command is even more powerful. You can grep for multiple strings in a file using the egrep command. All you have to do is use the | (or) symbol and add as many strings you [...]

Share

How to change admin email address @boxXXX.bluehost.com to @mydomain.com on a bluehost hosted wordpress

I currently have hosting through bluehost.com. I was surprised to see all blog notification emails were coming from username@boxXXX.bluehost.com instead of the email address defined during setup. After a lot of searching online and trying out different things, I think this bug is due to a combination of my hosting company bluehost and wordpress. I [...]

Share

FTP multiple files without prompt

I knew there was a way to ftp multiple files without being prompted.It was just a matter of knowing the syntax.

It is possible to download several files at once, using the mget command. This command can take several filenames as arguments, and you can even use wildcards to download matching files. For example, the command

mget [...]

Share

Windows Boot Screen

So many times I have wanted to see why my windows is booting so slowly. What drivers are causing problems… Well msconfig has a nice feature to disable the eye candy bootup and just show what drivers are being loaded!!
on Windows XP open msconfig and go to the BOOT.INI tab and check on the /SOS [...]

Share