Magnet December 31st, 2006
* I stayed at home and finished some long pending tasks in two days, rather than enjoying party at Office. Since, not being Party freak - I better enjoy IRC! Got new bluetooth dongle and working it with my Etch!! (As part of my packaging works of gnome-phone-manager!). Added 2 drafts at debaday (which need to finalize by tomorrow!).
* Welcome 2007!
nirav December 28th, 2006
PC World has an article about the 20 Most Innovative Products of 2006. It’s a good read and their picks include Wii to Seagate 750GB disks.
Magnet December 26th, 2006
Write a routine that prints out a 2-D array in spiral order!
i.e. You are given two dimensional array
[0][0] [0][1] [0][2] [0][3]
[1][0] [1][1] [1][2] [1][3]
[2][0] [2][1] [2][2] [2][3]
[3][0] [3][1] [3][2] [3][3]
[4][0] [4][1] [4][2] [4][3]
it should print array elements in following order:-
1) Outside to inside:-

2) Inside to outside:-

Magnet December 26th, 2006
Given a string which consist of a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it.
i.e.
Input is:-
$message=“one two three four five”;
output should be:-
$message=“five four three two one”
With and without advance built in function.
nirav December 26th, 2006

Got to know of myFeedz today. It’s not a simple RSS reader application, or not a technorati clone. It understands and learns the kind of things you like to read, and presents them to you. You can specify the tags you are interested in and it will collect posts based on that. You can also let it know if it found something that was “off-topic” and does not interest you. It will try to avoid such items in the future. The look and feel of the site too is pleasing. And on top of this, it offers an RSS export facility, so you can set up the tags you are interested in, subscribe to the RSS feed and read all that in your favorite RSS reader.
Looks good. And if it does well on that “learning what you like” part, it can be a killer app!