CR Post to Ping.fm not working – resolved.

2011-06-02 1 min read Wordpress

Last couple of months I was having a tough time getting the plugins in my wordpress to work with the ping.fm service.  This is the only service that I rely on to post my blogs. So, basically I was left with no mechanism to publish my new posts 🙁

Now thanks to this post I am able to use the plugin again and thus update my status at multiple places again.

Continue reading

First Destination in Dubai – Creek

2011-06-02 4 min read Photo

OK, so my first destination in Dubai was Creek in the after hours i.e. around 20:30PM. Good time to go to a place like Creek. Lots of lighting and really nice ferry to take you to the other side for pretty cheap so nice hub for my adventure with my camera. Result : Disaster. I took a lot of Photos there, but all waste because the time was after hours and I did not have a external flash. I guess with external flash it would have been good. Another mistake I did was to shoot in JPEG mode and thus could not try with increasing exposure and all with the photos.

Continue reading

RawTherapee — Raw imagr processor for all platforms

2011-05-30 3 min read Photo

Category:Photographers who committed suicide
Image via Wikipedia

Do watch this series for more information on my adventure with Windows in Dubai and Photography….

For the impatient ones, download the application here.

Recently I was stuck with a Windows only laptop for a months time and I was in Dubai. Went to Dubai Aquarium and Underwater Zoo there and as usual took the photos in RAW mode with my D5000 Nikon camera. Alas, now I did not have a decent application to modify the images. On my Fedora system I use UFraw and the hunt began for a decent and somewhat advanced software for windows. Couple of them looked promising like Picasa, FastStone Image viewer but nothing comparable to UFRaw until I remembered anothe one that I used RawTherapee (BTW, UFRaw port for cygwin is there but I was not able to install it on cygwin, the server was not reachable). So, here is the features of this pretty good image editor having the capability to edit RAW images.

Continue reading

Movie Review (by Prashant Prahlad Abkari) – Stanley ka Dabba

2011-05-24 4 min read GuestPost

 

You wake up to some noise.. popping up of sesame seeds….u avoid it ..Daily routine they are..

Lethargically you start preparing by stuffing the books, separating them as either 100/200 pages or text books and placing them in different compartments, only to retrieve it easily. Packing Done .

Its late.. You start rushing with your heavy bagpack..Empty handed..  R u missing something? A loud scream from  back..

Continue reading

Solaris dump analysis

2011-05-18 1 min read Solaris

I had to debug a solaris crash dump and had no ides. Google search wasn’t much useful until finally I found this article:

http://cuddletech.com/blog/?p+AD0-448

have a look at this article, this suggests how to debug the core and find the offending process and root cause of the core in case of kernel panic.

Enhanced by Zemanta

Unix shell script for removing duplicate files

2011-05-16 1 min read Bash Linux

The following shell script finds duplicate (2 or more identical) files and outputs a new shell script containing commented-out rm statements for deleting them (copy-paste from here):

::: updated on 02 May 20121, seems like wordpress did not like it so well so reformatting the code :::::::

#!/bin/bash -
#===============================================================================
#
#          FILE:  a.sh
#
#         USAGE:  ./a.sh
#
#   DESCRIPTION:
#
#       OPTIONS:  ---
#  REQUIREMENTS:  ---
#          BUGS:  ---
#         NOTES:  ---
#        AUTHOR: Amit Agarwal (aka), amit.agarwal@roamware.com
#       COMPANY: blog.amit-agarwal.co.in
#       CREATED: 02/05/12 06:52:08 IST
# Last modified: Wed May 02, 2012  07:03AM
#      REVISION:  ---
#===============================================================================

OUTF=rem-duplicates.sh;
echo "#!/bin/sh" >$OUTF;
find "$@" -type f -exec md5sum {} \; 2>/dev/null | sort --key=1,32 | uniq -w 32 -d |cut -b 1-32 --complement |sed 's/^/rm -f/' >>$OUTF

Pretty good one line, I must say 🙂

Continue reading
Older posts Newer posts