Skip to content
Archive of entries posted on 12th April 2010

Liquid rescale and remove objects from the images.

Ever wanted to remove some unwanted object from an image. Wonder how many thinkgs you have to do, clone and delete and what not:) There is a simpler way, just paint it in foreground color. Does that sound ridiculous, not any more with Liquid Rescale. First install the plugin for liquid rescale for gimp. yum [...]

Linux Advocacy and cool things to do with Linux.

I have heard a lot of Linux advocacy and read probably a couple of artilcles also on them but they lack one thing : the end user perspective. Linux is great no doubt, but there are far too many things to confuse people at all levels. For example, if you do a google search for [...]

recursively add directory and files to cvs from Linux.

Go to the directory which you want to add to cvs and execute the following: cvs login find . -type d -exec cvs add {} \\; find . -type f -exec cvs add {} \\; cvs commit That was simple Sphere: Related Content Technorati Tags: cvs, Linux, recursive