Apr 23

CameraPhotos….Photos…and more Photos…..ever since I bought the digital camera I have been clicking photos of anything imaginable. I have been on a few trips as well, hence I thought of putting some of the good ones on the web and share it with a few friends, and the best solution for these for me turned out to be Picasa.

So off I went about putting together the photos I wanted to upload to Picasa Web, that is when I realised that I am in a bit of trouble. With each photo being 1.8MB, it was very obvious that I needed to resize the photo’s to a more web appropriate resolution of 1024×768 and at a lower image quality.

I did not directly recollect any software available in Linux which has batch resize options, hence I quickly did a google search and the results surprised me. The solution was a really simple one, that of making use of the package which is by default available in most Linux distro’s - “ImageMagick”, which provides the ‘convert’ command.

Here’s the simple script:
for k in $(ls *.JPG); do convert $k -resize 1024×768 -quality 100 re_$k; done

The working of the above script is simple, here is what it does:
1. Loops through all the JPG files in the current directory.
2. Then for each JPG file in the directory it calls the ‘convert’ command telling it to resize the images to the size 1024×768 and without an quality loss (i.e. 100, means no compression) and saves the resultant file with the prefix ‘re_’.
3. The done statement tells the script to end once all the JPG files are processed.

How is that for a simple and effective solution. Three cheers for command line….who needs bulky and resource hungry GUI programs…? And if you are waiting for the photos…sorry…that is available only to a few select friends and relatives…..but I have posted some of them at the following link http://flickr.com/photos/knithink.

Share and Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages.
  • digg
  • Reddit
  • del.icio.us
  • YahooMyWeb
  • co.mments
  • Spurl
  • Furl
  • Simpy
Dec 17

:: Image ::Working primarily on Gnu/Linux and just moving to Windows occasionally, I felt a need to make the Windows XP desktop look like Gnome. There are two aspects to this, one is to change the icons and the other is to change the visual styles. Here is a step by step procedure for converting your desktop to Gnome.

Installing Icon Theme

Icons are an essential part of the GUI (Graphical User Interface) world. We will be using Tango Patcher, which currently includes implementations of the Tango icon theme, the Tangerine icon theme developed by the Ubuntu art team, Gnome-Icon-Theme2 and NLD10’s Industrial-Icon-Theme. Download the patcher and installing it just involves running the software.

The Patcher before installing gives you the option of the icon theme you want to install from the various ones mentioned above, I choose the default Tango Icon Theme, you can choose anything else. An option to change you Login Screen and BootUp screen is also available, choose it based on your liking. Then continue with the process, it will install and then reboot your system to be greeted with the new icons.

Installing Clearlooks Visual Styles

The next step is to change the visual styles, we will be using the clearlooks option, available as ClearLooks for Windows XP.

For visual styles to work we would generally need a software such as styleXP, but there exists an alternative to enable external themes support in WindowsXP, download and install Neowin UXTheme Multi-Patcher v4.0 (alternative link for download) (it applies a patch to the UXTheme.dll, to remove this just run the software again).

Next to install the Clearlooks themes head over ClearLooks for Windows XP or directly download by clicking here. Unzip the file and copy the folder to your themes folder, which is usually located at “C:\Windows\Resources\Themes\”.

Now go through your usual procedure which you use to change your Visual Styles (right click on desktop, choose appearance tab) and choose the ‘Clearlooks’ option. and Viola, now we have a desktop which closely resembles the Gnome environment. See a couple of screenshots below.

:: my computer screenshot :::: Start menu ::

Hope you found this useful, do let me know your experience by commenting below.

Share and Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages.
  • digg
  • Reddit
  • del.icio.us
  • YahooMyWeb
  • co.mments
  • Spurl
  • Furl
  • Simpy
Dec 09

In today’s world, small kids don’t get to interact much with their busy parents who go to work. Grand parents live far and apart; visiting only occasionally, hence these kids don’t get to learn much about tradition and culture. Earlier children used to listen to stories from their grand parents in their own mother tongue, now it too is on a down side, and is being replaced by cartoon network and certain English story books.

Would it not be nice if children would have a opportunity to listen to stories in their own mother tongue. I came across one such effort last week. Mrs Asha Shenoy (known as AshaMai) has a website which contains many small stories narrated in South Canara style Konkani. The stories are just between 3 to 15 minutes each which is ideal for kids. In total there are 50 plus stories; all in Konkani. They are available as free download in MP3 format at http://ashamai.zenusinfotech.com/Stories.htm. If you have kids then you can play them one story per night as bed time story, or in case you don’t have kids then you can listen to it too. Overall it is a wonderful attempt to reach out to the future generation of amchigelle kids.

If you found this useful then please do leave a comment below.

Share and Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages.
  • digg
  • Reddit
  • del.icio.us
  • YahooMyWeb
  • co.mments
  • Spurl
  • Furl
  • Simpy