April 30th 2007 Archives

Apr 30, 2007

Song Review - New York Nagaram (Jillendru Oru Kadhal)

Posted by Anandhan Subbiah in Movies, Music 4 comments

This song from the movie Jillendru Oru Kadhal is one of the best songs Rehman has sung. This song for some reason reminds me of the MJ hit “Stranger in Moscow” . Notice the use of sirens in the background which is typical of NY city. Rehman has used the humming piece very effectively and the [...]


Apr 30, 2007

Introduction to AJAX

Posted by Anandhan Subbiah in Programming Concepts, Technical Articles No comments

What is AJAX?
Ajax is a technology that complements Web 2.0 and the integration of many web services
The diagram sums up what Ajax does. Content1 and content2 are treated as separate entities. The user will be able to update content2 without modifying the state of content1 and vice versa. The aggregation of data is another key [...]


Apr 30, 2007

Javascript redirect

Posted by Anandhan Subbiah in Technical Articles No comments

This simple code snippet will redirect users from the current location to the new window location. The index.php file that i hosted crashed for some reason so I created this new file index.html to redirect to my blog so the users will not see a error page.
window.location=”http://anandhansubbiah.com/blog“;
You have to include this within the head tag.