Saturday, June 20, 2009

WiFi BroadBand Services Started in Chennai

A Good News to all Chennai people. Wi-Fi BroadBand Services started in chennai by Zylog Systems India Limited. So no more worries with the wired or USB broadband connections. We can survive the city with online mode at any time.

Soon you can stay connected from just about anywhere - in your bedroom, in a hotel room, in a conference room at work, in your car and even on a train! And all this, at hi-speeds which can be upto 3 times faster. That’s not all, it is even more secure and affordable than conventional broadband. Go ahead, explore the great new world of Wi5!

Wi5 is available in three prepaid plans: for Rs. 550, Rs. 1000 and Rs. 1750. The Rs. 550 plan offers speeds of 1 Mbps, while Rs. 1000 brings 2 Mbps and the last 4 Mbps. Ofcourse, these are theoretical, and practical speeds are generally much lower. There is no information available on download limits nor on payment procedures. We also wonder if the company will offer postpaid plans?

To do some yayo effects on your appliction or website

Hi to All,

I would like to share a wonderful resource to build your application or websites more attractive and ajaxy. Here is the Link:

Click Here and Apply More Effects

Enjoy with this wonderful effects.

Monday, April 20, 2009

JavaScript Validation functions

Below javascript functions will definitely useful to validate html elements in our web page.

/* return a string where left & right spaces are removed */
function trim(s){ return s.replace(/^\s*|\s*$/g,”"); }

/* true if ’s’ is a 4 digit year, false if not */
function isYear(s){ return (s.search(/^\d{4}$/) == -1) ? false:true; }

/* true if ’s’ is empty, false if not */
function isEmpty(s){ return (trim(s).length > 0) ? false:true; }

/* true if ’s’ is a valid email address, false if not */
function isEmail(s){ return (trim(s).search(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/) == -1) ? false:true; }

/* true if ’s’ is in date format, false if not! ex: 01-01-2004, 1-1-2004, 01-1-2004 - all valid format */
function isDateFormat(s){ return (trim(s).search(/^(\d{1,2})(-)(\d{1,2})(-)(\d{4}$)/) == -1) ? false:true; }

/* true if ’s’ is a valid date value, false if not */
function isDateValid (s){
var ar = s.split(”-”);
var m = parseInt(ar[0],10) - 1, d = parseInt(ar[1],10), y = parseInt(ar[2],10);
var dD = new Date(y,m,d);
return ((d==dD.getDate()) && (m==dD.getMonth()) && (y==dD.getFullYear()));
}

/* true if ’s’ is a number (w/ or w/out unary +/-, w/ or w/out a dot), false if not! ex: 100, 10., 100.99 */
function isNumber(s){ return (trim(s).search(/^([+-]{0,1}\d{1,}([.]{0,1}\d*)*)$/) == -1) ? false:true; }

/* true if ’s’ is a whole number (w/ or w/out unary +/- symbol), false if not */
function isWholeNumber(s){ return (trim(s).search(/^([+-](\d+)|(\d+))$/) == -1) ? false:true; }

/* true if ’s’ is valid password (only all of these [0-9,a-z,A-Z,_-]), false if not. */
function isPasswordCombinationValid(s){
if(s.search(/^([-_a-z\d]+)$/i) == -1) return false; /* only these [0-9,a-z,A-Z,_-] */
if(s.search(/[a-z]/i) == -1) return false; /* letters */
if(s.search(/\d/) == -1) return false; /* digits */
if(s.search(/[-_]/) == -1) return false; /* _ & - */
return true;
}

/* true if ’s’ is a valid user id (only any combination of these [0-9,a-z,A-Z,_]), false if not */
function isUserIdCombinationValid(s){ return (s.search(/^([_a-z\d]+)$/i) == -1) ? false:true; }

/* true if ’s’ is in the format (99)999-999 */
function isTel_Fax(s){ return (s.search(/^([(])(\d{1,2})([)])(\d{3,3})(-)(\d{4,4})/) == -1) ? false:true; }

/* true if ’s’ is a valid program code (only any combination of these [0-9,a-z,A-Z,_]), false if not */
function isProgCodeCombinationValid(s){ return (s.search(/^([_a-z\d]+)$/i) == -1) ? false:true; }

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