Skip to main content

Posts

What is the most common street name in the U.S.?

http://geography.about.com/library/faq/blqzstreetname.htm The most common street name is the United States isn't Main Street - it's actually Second Street! The second most popular street name is Park Street, followed by 3rd, 4th, and 5th Streets. First Street doesn't even make the top five, it's number six. The second most popular non-numerical street name is Washington Street, which is #9 overall.

Jquery Phone Number validation

$.validator.addMethod("phone", function(ph, element) { if (ph == null) { return false; } var phoneRe = /^((\+\d{1,3}(-| )?\(?\d\)?(-| )?\d{1,5})|(\(?\d{2,6}\)?))(-| )?(\d{3,4})(-| )?(\d{4})(( x| ext)\d{1,5}){0,1}$/; return phoneRe.test(ph); }, "Please enter a valid phone number");

install own certificate to blackberry

Additional Information The following are alternate methods of loading personal certificates: Browser Plugin - If a web page has the appropriate Multipurpose Internet Mail Extension (MIME) type set and the .cer file type is used, click the link to the certificate and import or view the certificate wirelessly. Email messages - Certificates included as email attachments can also be imported manually when received on the BlackBerry smartphone. info from

Blackberry - Access Address Book contacts

Procedure BlackBerry smartphone applications can make use of contacts stored in the Address Book. The following sample application gives a listing of all contacts in the Address Book and then displays all information for a selected contact. Note: This example uses the BlackBerryContact interface that is an extension of Contact. It is possible to use the Contact interface if you do not require access to any BlackBerry smartphone specific fields that include four user-defined fields (string values) and a personal identification number (PIN) field (hexadecimal number). code here