Monday, April 13, 2009

window.open in IE is not working?

Here is the simple solution to solve this issue. This is kind of typo issue. IE doesnt accept to use white spaces on title in the window.open method.

For eg:
-------

window.open("http://www.railsthinker.blogspot.com","Rails Thinkers Page");


This should be...


window.open("http://www.railsthinker.blogspot.com","Rails_Thinkers_Page");


Lets Keep on upgrade... dont waste your precious time

Saturday, March 14, 2009

FLASH BACK to my Native Home Place Arni

Today i have added my native home place(Arni) into Wikimapia. I loved to see those places. For a moment i gone to the past days (i.e my school days) - FLASH BACK. I like to share it. Here is the link and iframe to view my native home place.

http://wikimapia.org/9762786/PR-House-School-street-Arni

Sunday, February 22, 2009

India adds record 15.41 mobile million users in January

India, the world's fastest-expanding mobile market, added 15.41 million wireless users last month -- the biggest monthly growth ever, according to government data Saturday.

India's number of wireless subscribers grew by 15.41 million in January after swelling by 10.81 million in December.

January's increase was a record for monthly wireless subscriber growth, according to figures from the Telecom Regulatory Authority of India (Trai) posted on its website.

The total number of wireless connections stood in January at 362.30 million, up from 233.63 million in the same month a year earlier.

Combined with fixed line users, the country of 1.1 billion people now has over 400 million telephone connections.


To read the full article click here

Download Videos from website, Easily

Its a trick to get download from Mega Video or Other Flash videos on website. If you are using Firefox in the below path you will get that file with some random string, you may find out through the date/time and size.

Note: Specific Video should downloaded in the web browser.

Firefox:
C:\Documents and Settings\\Application Data\Mozilla\Firefox\Profiles\
IE:
Tools> internet options> settings> view files

Tuesday, January 27, 2009

Linux commands to delete only svn files from a directory

# following command will list all the .svn files
find ./ -name .svn

# following command will list the SVN files and delete it
find ./ -name “.svn” -exec rm -rf {} \;

Thursday, October 23, 2008

Another way to install applications in Ubuntu Linux

Hi here is the web based link to install your applications instead of installing my synoptic or apt-get.

http://appnr.com/

Wednesday, October 1, 2008

SlideShow Using JQuery

As a Rails programmer, I have been using Prototype and Scriptaculous for over a year and a half, solely because it comes packages with Rails and has helpers. About 3 months ago, I discovered JQuery, which is another Javascript library that combines the powers of Prototype and Scriptaculous into one. JQuery is very easy to install for your web app and has a TON of cool things you can do with it.

In this article, I will show you how to create a simple slide show using JQuery and the jQuery Cycle Lite plugin.

To see an example of how the final results should work, go to http://wynn.reservationcounter.com. You can also download the example code I use here.

Step 1. Download the jQuery library

Go to http://www.jquery.com and download the production-ready minified library. The file that I used is jquery-1.2.6.js.

Step 2. Download the jQuery Cycle Lite plugin

This can be found with numerous examples of this incredible plugin at http://malsup.com/jquery/cycle/lite/. At the bottom of the page, you will see a link jQuery Cycle Lite Plugin - minified. Save the targeted javascript file as jquery.cycle.lite.plugin.js.

Step 3. Create the HTML page to bring it all together

sexy_slideshow.gif

Ok.. let’s explain what’s going on here in the HTML.

Lines 4-7 are the javascript includes for the two libraries we downloaded. Note that the query include comes before the plugin. This is important.

Lines 8-15 are where the magic happens. Here we use jQuery to perform the cycle function on the element with the ID of ’slideshow_images’ with the parameters found on lines 11-12. There are many options available, which can be found at plugin website.

Lines 19-25 contains the div with the ID that is referenced on line 10. Inside this are 5 images that are all the same height and width.

That’s it. It’s very simple, but looks great.. sexy even! Have fun with this one.