China -Future's Powerful Country. People using internet in China greater then general population in the U.S. In China, broadband speed — the rate at which devices can access data from the Internet — appears to be significantly behind the country’s rapid growth in online population.

Sunday, September 30, 2012
Wednesday, September 26, 2012
What Is Blogger, Full Info [Infographic]
Many people don't know about blogging, Some know but they don't know how to do it. Blogger – One of the best Blogging Platform for newbies and professionals. If a person want to make a website then i always recommend for blogging first. Many pro bloggers using a Blogger Platform, and today we are going to share Infographic which is based on All About Blogger.
Monday, September 24, 2012
iPhone 5 and Smartphone Market [INFOGRAPHIC]
person using iPhone then he/she can't move to any other smartphone. It is like addiction of iPhone. ATYM do serve on it any they make a infographic. The Result is shocking for me because I don't find anything new in iPhone 5. After a poor release Only 9% of current iPhone owners are considering a switch to Android.
Some other Shocks:

Some other Shocks:
- 73% of people looking to buy a smartphone in the next 6 months are already smartphone owners.
- Current Android owners are 2.4x more likely to switch to an iPhone than vice verse
- 87% of current iPhone owners plan to buy a new iPhone in the next 6 months
Friday, September 21, 2012
Best 10 Features of iOS 6
The latest iteration of Apple‘s mobile operating system, iOS 6, dropped Wednesday just before the upcoming release of the iPhone 5. The new OS had its share of teething troubles, most notably a Wi-Fi login bug that Apple quickly and mysteriously resolved. Other users saw ongoing problems with accessing music on their iPhones. The new iOS received less-than-universal praise, but hosts a slew of new and updated features for iPhone owners to play with, including an all-new Apple maps app, a social Photo Stream and a smarter Siri.
We’ve got some larger iOS 6 stories in the works where we’ll go in-depth with some of the new features like Passbook and some of the new camera settings but for now, we wanted to give a brief overview of some of the newest features and changes.
So here is the best 10 features of iOS 6:
Siri has been the maven of answering questions via voice-command for about a year now, but she just got a whole lot smarter. From providing movie and restaurant recommendations and revealing professional sports scores to even sending tweets and Facebook updates, action-commands are much easier with Siri on iOS 6.
Passbook may not be a digital wallet, but it's certainly warming the public up to what could be the next big wave in mobile payments. It allows you to store anything from movie tickets to gift cards and boarding passes for flights.
So here is the best 10 features of iOS 6:
1. Smarter Siri
Siri has been the maven of answering questions via voice-command for about a year now, but she just got a whole lot smarter. From providing movie and restaurant recommendations and revealing professional sports scores to even sending tweets and Facebook updates, action-commands are much easier with Siri on iOS 6.
2. Passbook
Passbook may not be a digital wallet, but it's certainly warming the public up to what could be the next big wave in mobile payments. It allows you to store anything from movie tickets to gift cards and boarding passes for flights.
3. VIP Email
Inundated by junk email and miss the important ones? Set up a VIP list, so you’ll never miss emails from your boss, best friend or loved one.
Although the new Maps app doesn't include routing and transit directions -- which is perhaps the biggest overall gripe among iOS 6 users so far -- it still touts some impressive features.
4. 3G FaceTime
FaceTime has long been a great way to video chat with friends and family, but both parties needed to be on a Wi-Fi network in order for it to work. Now, FaceTime works over cellular and you can even take calls on your iPad using your phone number.
5. Maps App
Although the new Maps app doesn't include routing and transit directions -- which is perhaps the biggest overall gripe among iOS 6 users so far -- it still touts some impressive features.
FaceTime has long been a great way to video chat with friends and family, but both parties needed to be on a Wi-Fi network in order for it to work. Now, FaceTime works over cellular and you can even take calls on your iPad using your phone number.
6. Facebook Integration
Apple has opened up social integration to Facebook, allowing users to share pictures and post status updates without having to log into the app. You can also merge your Facebook contacts and calendar with your iOS calendar, so you no longer have an excuse if you forget a friend's birthday.
7. A Social Photo Stream
Apple has introduced photo-sharing capabilities in its Photo Stream that allows users send a picture from their stream to a person or group of people for comments. Similar to Facebook or Instagram, people invited to the group can Like images and write comments.
8. Panorama
Want to capture that big redwood tree or the entire Golden Gate bridge? Now you can with the new panorama feature for the iPhone and iPod touch. It allows you to shoot up to 240 degrees, even vertically.
Do Not Disturb allows you to set up a time for incoming calls to be silenced. But you can also create a list of people that can get through to you at any time, such as a family member calling in the middle of the night.
9. Do Not Disturb
Do Not Disturb allows you to set up a time for incoming calls to be silenced. But you can also create a list of people that can get through to you at any time, such as a family member calling in the middle of the night.
10. Message Reply
When you decline an incoming call, you can instantly reply with a text message, set a callback reminder or even create a pre-set message to let the caller know you are driving.
Thursday, September 20, 2012
Get a SMS When your Website is Down | Monitor Website With Google Docs
always use Google Docs for saving sharing my data. But now with Google Docs you can monitor your website’s up-time and down-time. The latest version of this Google Docs based website monitoring tool is even better:
- Support multiple websites and blogs
- It not only support E-mail but also SMS Alert
How To Do:
- Click here and get a sheet.
- Now go to file and make copy of it.
- You’ll see a new Website Monitor menu in the toolbar. Click Initialize and you’ll get a pop-up asking for authorization. Just say Yes.
- Put your Website URL and email address
- You can put multiple URLs by adding comma.
- Go to the Website Monitor menu again and choose “Start Monitoring”.
Note: If you do not wish to receive SMS alerts, simply change the value of cell B4 from Yes to No.
Full Source Code:
function init() {
if (ScriptApp.getScriptTriggers().length == 0) {
// Set up a monitor that triggers every 5 minutes
ScriptApp.newTrigger("websiteMonitor")
.timeBased().everyMinutes(5).create();
}
}
function websiteMonitor()
{
var response, error, code, urls;
// The script can monitor multiple website URLs (comma separated)
urls = SpreadsheetApp.getActiveSheet().getRange("B2").getValue();
urls = urls.replace(/\s/g, "").split(",");
for (var i=0; ii++) {
var url = urls[i];
if (!ScriptProperties.getProperty(url)) {
ScriptProperties.setProperty(url, 200);
}
// Trying to connect to the website URL
try {
response = UrlFetchApp.fetch(url);
} catch(error) {
// If URLFetchApp fails, the site is probably down
updateLog(url, -1);
continue;
}
code = response.getResponseCode();
updateLog(url, code);
}
}
function updateLog(url, code) {
if (ScriptProperties.getProperty(url) == code)
return;
ScriptProperties.setProperty(url, code);
var sheet = SpreadsheetApp.getActiveSheet();
var row = sheet.getLastRow() + 1;
var time = new Date();
var msg = "Down";
if (code == 200)
msg = "Up";
msg = "Website is " + msg + " " + url;
sheet.getRange(row,1).setValue(time);
sheet.getRange(row,2).setValue(msg);
// Send an email notification when the site status changes
var email = sheet.getRange("B3").getValue();
MailApp.sendEmail(email, msg, url);
var now = new Date(time.getTime() + 10000);
// Create an event in Google Calendar with an SMS reminder
if (sheet.getRange("B4").getValue().toLowerCase() == "yes")
CalendarApp.createEvent(msg, now, now).addSmsReminder(0);
}
Subscribe to:
Posts (Atom)