E-Book Of the Week - How to Do Everything with Your iPhone


Get the most out of your iPhone by learning how to use all of its powerful capabilities. Filled with tips, tricks, and shortcuts, this book shows you how to set up your iPhone, make calls, manage voicemail, and load contacts. But that''''s just the beginning. You''''ll also learn how to send and receive email, listen to music, plan your week, play videos, and so much more. Plus, you''''ll find out how to install third-party applications and even use your iPhone with different carriers. Now that you''''ve got the hottest handheld on the market, take it to the limit with help from this hands-on guide.


Activate your iPhone and modify settings
*
Sync your data to your iPhone
*
Organize contacts, make calls, and use voicemail
*
Load and play music, podcasts, videos, and TV shows
*
Send, receive, and manage email and SMS messages
*
Browse the Internet with Safari
*
Manage and sync appointments with the calendar
*
Take pictures and view photos
*
Navigate using Google Maps
*
Get weather forecasts, YouTube videos, and stock information instantly
*
Troubleshoot and maintain your iPhone
*
Hack your iPhone to install third-party applications
*
Unlock your iPhone for use with different carriers
Type your summary here


Code:

http://rapidshare.com/files/219708661/How_to_do_everything_with_your_iphone.pdf


Read more

Undelete your blogspot blog - New Blogspot Feature



Theres a new feature in Blogger Dashboard which you can use it to 'Undelete' or recover your deleted blog(s). Theres more screenshot after the jump.
1) As you can see in Dashboard (screenshot above) there's a function to show all your Deleted Blog(s).



2) After you undelete it will show this:


REMINDER: YOU CANT RESTORE BLOG POST(S) ONCE BLOG IS DELETED
"This will permanently delete your blog including all posts. You can create another blog at this address using the Google Account you're currently logged in with, however, we can't restore your blog posts once you choose to delete your blog."






Read more

iPhone 3g is finally here in Malaysia

The wait is over, iPhone 3g is finally here in Bolehland, Malaysia!! The Official iPhone Launch Event will be in Kuala Lumpur Convention Centre (KLCC), Level 3, Grand Ballroom, 20th March 2009, 7pm till midnight. Book yours now!! (ending just before midnight on 17 March). Checkout Maxis iPhone 3g rate plan below:

The Value plan is divided into 2: i-Value Plans and Value Plus Plans
i-Value Plans is available either in 12 and 24 month contract
Value Plus Plain only available in 6 month contract


Read more

10 Facts about Internet You Should Know (Pt.2)

Ooppss... sorry for not updating the site. I'm away for college but now thankfully its 3 months holiday. Just browsing my Blogger Dashboard and realize theres some posts that I should post back in the days. Kinda suprised to see the orange Draft sign. Pheww..
Whatever it is, this is a post for the article about '10 Facts about Internet You Should Know' Click for Part One.

11. Which decade really saw the explosion of the net?

The 1990s. The Internet exploded into the mainstream with the release of the first popular web browser Mosaic in 1993.

12. How fast is the Internet growing?

Very fast! It took 38 years for radio to reach 50 million users,13 years for TV, and only 5 years for the Internet. Source: CyberAtlas.com

13. Number of Internet Users and Breakdown.

The Internet is roughly 35% English, 65% Non-English with the Chinese at 14%. Yet only 13% of world's population, 812 million are Internet users as of Dec. '04. North America has the highest continental concentration with 70% of the people using the Internet.

14. Country with the highest percentage of net users?

Sweden at 75%.

15. How big is the Internet's surfing world?

Google's index now stands at over 8 billion pages. There are now over a Billion Internet Users and that number is growing rapidily.


16. What was the Net's first index called?

Archie, other than library catalogs, this was the first index created in 1989 by Peter Deutsch at McGill in Montreal. Although it spouted such others as Veronica and Jughead, Archie was short for Archiver and had nothing to do with the comic strip.

Backrub was the original name for Google! Larry Page and Sergey Brin used this term for their search engine in 1996, Google as we know it debuted in 1998. The name Google is a twist on the word Googol, a number represented as 1 followed by 100 zeros.


17. Who coined the phrase 'The Web might be better than sex'?

Bob Metcalfe in 1995.

18. What does HTTP stand for?

HyperText Transfer Protocol - it's the protocol for moving files across the net; it requires two client programs. The HTTP client and the server.

19. What is HTML?

Hypertext Markup Language - it's the coded format language for transmitting and creating hypertext web pages.

20. What are your average surfing habits according to Nielsen NetRatings?

Each month you usually visit 59 domains, view 1,050 pages allocating 45 seconds for each page and spend about 25 hours doing all this net activity! Each surfing session lasts 51 minutes.
Read more

New iPhone 3g Ad


Read more

3G Iphone launched today, everyone panic

Introducing iPhone 3G. With fast 3G wireless technology, GPS, support for Microsoft Exchange ActiveSync, and the new App Store, iPhone 3G puts even more amazing features in your hands. And just like the original iPhone, it combines three products in one —a revolutionary phone, a widescreen iPod, and a breakthrough Internet device.
3G iPhone will be available in 8GB (black)($199) and 16GB (black or white)($299)

More 3G iPhone photos and features after the jump.

WHATS NEW ON iPHONE 3G

3G Speed
3G gives you fast access to the Internet and email over your cellular network. And 3G makes it easier to multitask: When connected via 3G, you can surf the web even while you’re on a call.

Maps with GPS

GPS adds a new dimension to mobile phone mapping.

The App Store
The App Store lets you browse applications and download them directly to your iPhone. Some applications are even free.

Internet in Your Pocket.
iPhone features rich HTML email, Maps with GPS, and Safari — the most advanced web browser ever on a portable device.

Great Widescreen iPod
iPhone is an equally brilliant iPod. Enjoy music, videos, and more on the 3.5-inch color display and browse by album artwork with Cover Flow.

Read more

5 Reasons to Buy iPhone

I've list the 5 reasons why you shouldnt buy iphone before which receive massive attention. I thought that its unfair we show only the negativity of this revolutionary phone ;So here what CNet has to say about on why you should buy iPhone.
Read more

How to Disable 'Right Click'

This is a script that will prevent the default right menu from popping up when the right mouse is clicked on the web page. Instead, message like 'Function Enabled' or 'No Right-Click!' will be shown (this can be edit later using the script). It is useful if you don't want visitors to cut and paste your text or image.
To install this, go to Template -> Page Elements. Next, add a Page Element -> then Add a HTML Widget, then cut and paste this code below. Easy as ABC!! View the script below.

<script language='JavaScript'>
<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="No Right-Click!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// -->
</script>


Read more

How fast can you Spacebar ?

You might use it for typing and gaming purpose and maybe you wondering how fast can you press your spacebar ?? I found this site accidentally on the web where you can test your speed. Here's the rules. First select a time (5 , 10, or 20 seconds), see how many times you can hit the spacebar button within the time given and try to beat the high score. Might look easy till you try it though. So what are you waiting for? Try it here. Good luck!!

*My personal best for 10 seconds is only 72.. hehe, think you can beat me huh??
Read more

10 Facts About The Internet You Should Know (Pt 1)

You probably use it every day but how well do you know your Internet? Ever wonder how all this foolishness got started in the first place and why? How big it really is? Here are 20 facts you might or might not want to know about the Internet.

1. Who coined the phrase 'World Wide Web'?
Tim Berners-Lee in 1990. He's also considered by most people as the person who started the whole thing rolling.

2. How did the Internet Start and Why?
It all started with the time-sharing of IBM computers in the early 1960s at universities such as Dartmouth and Berkeley in the States. People would share the same computer for their
computing tasks. The Internet also received help from Sputnik! After this Russian Satellite was launched in 1957, President Eisenhower formed ARPA to advance computer networking and communication. Plus, we won't even mention that whole industry where people show their naughty bits.

3. Who was J.C.R. Licklider?
Licklider is often referred to as the father of the Internet because his ideas of interactive computing and a "Galactic Network" were the seeds for the Internet. His ideas would be developed thru DARPA,(Defense Advanced Research Projects Agency) in 1962.
Later he would help form ARPANET and the Internet was on it's way. Vinton Gray Cerf was another founding father of the Internet. He played a key role in the creation of the Net by developing the TCP/IP protocols we use for the Internet.

4. What was ARPANET?
ARPANET stands for 'Advanced Research Projects Agency Network' Came about in the arena of Sputnik and the cold war. The military needed a method of communicating and sharing all the information on computers for research and development. It would also be a handy communication system if all traditional ways were wiped out in a nuclear attack!

5. What was the First long distance Connection?
In 1965 using a low speed dial-up telephone line, MIT researcher Lawrence G. Roberts working with Thomas Merrill, connected the TX-2 computer in Massachusetts to the Q-32
in California. The phone lines weren't quite up to the task!

6. Who was Leonard Kleinrock?
Kleinrock came up with the theory of packet switching, the basic form of Internet connections. With a group of UCLA graduate students on Oct. 29, 1969, Kleinrock
connected with the Stanford Research Institute but as they typed in the G in LOGIN -- the system crashed!

7.What is an Ethernet?
It's a protocol or system for a set of computer networking technologies for local area networks (LANs), the origins of which came from Bob Metcalfe's Harvard's dissertation on "Packet Networks."

8. When was the first mouse introduced?
The first computer mouse was introduced in 1968 by Douglas Engelbart at the Fall Joint Computer Expo in San Francisco.

9. Did Al Gore really invent the Internet?
No, but give credit where credit is due. He did the most of any elected official to actively promote the Internet. However, he wasn't even in Congress when ARPANET was formed in 1969 or even when the term 'Internet' came into use in 1974. Gore was
first elected in 1976.

Gore himself may be the cause of this Urban Legend or Internet myth - during a Wolf Blitzer CNN interview on March 9, 1999 - Al Gore did say: "During my service in the United States Congress, I took the initiative in creating the Internet." Causing himself some ridicule but also paving the way for such future one-liners as: "I invented the environment!"

10. Who coined the phrase 'information superhighway'?
Wikipedia says Nam June Paik coined the phrase "information superhighway" in 1974.
Al Gore popularized the phrase in the early 1990's.

There's another 10 Facts more. Watch this space!!
Read more

Are you are still smoking?

The video below is showing the process of extracting Tar from 400 Cigarettes. Each one contains 18 mgr, so in the end this guy extracted 7200 mgr of these highly toxic chemicals found in these cigarettes. So, you are still smoking?



5 KEYS FOR QUITTING
1. Get Ready
  • Set a quit date.
  • Change your environment.
    1.Get rid of ALL cigarettes and ashtrays in your home, car, and place of work.
    2.Don't let people smoke in your home.
  • Review your past attempts to quit. Think about what worked and what did not.
  • Once you quit, don't smoke. NOT EVEN A PUFF!

2. Get Support and Encouragement

Studies have shown that you have a better chance of being successful if you have help. You can get support in many ways:

  • Tell your family, friends, and co-workers that you are going to quit and want their support. Ask them not to smoke around you or leave cigarettes out.

  • Talk to your health care provider (for example, doctor, dentist, nurse, pharmacist, psychologist, or smoking counselor).

  • Get individual, group, or telephone counseling. The more counseling you have, the better your chances are of quitting. Programs are given at local hospitals and health centers. Call your local health department for information about programs in your area.

3. Learn New Skills and Behaviors

  • Try to distract yourself from urges to smoke. Talk to someone, go for a walk, or get busy with a task.

  • When you first try to quit, change your routine. Use a different route to work. Drink tea instead of coffee. Eat breakfast in a different place.

  • Do something to reduce your stress. Take a hot bath, exercise, or read a book.

  • Plan something enjoyable to do every day.

  • Drink a lot of water and other fluids.


4. Get Medication and Use It Correctly

Medications can help you stop smoking and lessen the urge to smoke.

  • The U.S. Food and Drug Administration (FDA) has approved five medications to help you quit smoking:
    1.Bupropion SR- Available by prescription.
    2.Nicotine gum- Available over-the-counter.
    3.Nicotine inhaler- Available by prescription.
    4.Nicotine nasal spray- Available by prescription.
    5.Nicotine patch- Available by prescription and over-the-counter.

  • Ask your health care provider for advice and carefully read the information on the package.

  • All of these medications will more or less double your chances of quitting and quitting for good.

  • Everyone who is trying to quit may benefit from using a medication. If you are pregnant or trying to become pregnant, nursing, under age 18,
    smoking fewer than 10 cigarettes per day, or have a medical condition, talk to your doctor or other health care provider before taking medications.

5. Be Prepared for Relapse or Difficult Situations

Most relapses occur within the first 3 months after quitting. Don't be discouraged if you start smoking again. Remember, most people try several times before they finally quit. Here are some difficult situations to watch for:

  • Alcohol. Avoid drinking alcohol. Drinking lowers your chances of success.

  • Other Smokers. Being around smoking can make you want to smoke.

  • Weight Gain. Many smokers will gain weight when they quit, usually less than 10 pounds. Eat a healthy diet and stay active. Don't let weight gain distract you from your main goal, quitting smoking. Some quit-smoking medications may help delay weight gain.

  • Bad Mood or Depression. There are a lot of ways to improve your mood other than smoking.

Read more

Caption This Pic #4

Read more