We are in 42nd AAA meet. This is the view on the Amaravathi Dam around 7.00pm.
This is caputured without flash in night mode setting. This definetly requires a tripot stand, atleast some sort of stand for the camera to be still. This takes two shots and combines to get a resonable exposure.
Monday, July 2, 2007
Wednesday, June 13, 2007
Testing the blogger client.
This post comes from scribefire. Initially I tried windows live writer which sucks so much.
Scribefire doesn't seem to have much bells and whistles but at least it works. Oh damn this too confused a heck out me.
Semagic for livejournal really rocks for me.
Scribefire doesn't seem to have much bells and whistles but at least it works. Oh damn this too confused a heck out me.
Semagic for livejournal really rocks for me.
Tuesday, February 27, 2007
Spider the directories
I was thinking of how to spider the directories in unix and list all its subdirectory tree and files as in `find` command. Here goes a simple script for it.
#!/bin/bash
# `find path` implementation
# usage: basname($0) path
lsdir(){
local dirs; # `local` modifier prevents getting the values from inner calls.
dirs=$1;
# IFS="
#"; # prevents space separated filenames as separate items.
# IFS is set to newline, better solution welcome
IFS=$'\n'; # Better solution
for i in $(ls --sort=n -a $dirs); do
if [ \( "$i" = "." \) -o \( "$i" = ".." \) ]; then
continue;
fi
newfpath=${dirs}/${i};
echo $newfpath;
if [ -d $newfpath ]; then
lsdir $newfpath; # recursive call
fi
done;
}
dirpath=$1;
echo $dirpath;
dirpath=${dirpath%*/}; # strip the given trailing slash from pathname end.
lsdir $dirpath;
#!/bin/bash
# `find path` implementation
# usage: basname($0) path
lsdir(){
local dirs; # `local` modifier prevents getting the values from inner calls.
dirs=$1;
# IFS="
#"; # prevents space separated filenames as separate items.
# IFS is set to newline, better solution welcome
IFS=$'\n'; # Better solution
for i in $(ls --sort=n -a $dirs); do
if [ \( "$i" = "." \) -o \( "$i" = ".." \) ]; then
continue;
fi
newfpath=${dirs}/${i};
echo $newfpath;
if [ -d $newfpath ]; then
lsdir $newfpath; # recursive call
fi
done;
}
dirpath=$1;
echo $dirpath;
dirpath=${dirpath%*/}; # strip the given trailing slash from pathname end.
lsdir $dirpath;
Logu
I am Logu!
A computer professional. I mostly work on *nix systems. I firmly believe
in open source and I wish people should support and contribute it.
A computer professional. I mostly work on *nix systems. I firmly believe
in open source and I wish people should support and contribute it.
Subscribe to:
Posts (Atom)