Subscribe:

Wednesday, April 25, 2012

Google introduce their Google Drive Finally


Google announces their cloud storage "Google Drive" today. Once you sign up, you can get 5GB free storage space with Google Drive. With Google Drive, you can:
  • Create and collaborate
  • Store everything safely and access it anywhere
  • Search everything

Below is a pair of video that shows the details of Google Drive and the SDK.




Wednesday, April 18, 2012

Google Drive Said To Launch Next Week


The Next Web reported that they got a draft release from one of Google's official Drive partner, and received a few titillating details about the Google Drive service. Earlier reports shows that Google Drive will launches within this year. And now, 5 GB of free storage, likely come on next week, probable on Tuesday or Wednesday at http://drive.google.com (going to the website still receiving 404 error now).

Friday, April 13, 2012

Java notes : convert Int to String (efficiency comparison)


Basically, there are three methods to convert an integer to string.
( i is the integer created before)

  1. String.valueOf(i)
  2. Integer.toString(i)
  3. i + ""

What is the efficiency for these methods?

Google Plus new interface wastes space? (with solution)

Google announced a major redesign and a set of new features for users of its Google+ service. Navigation and several user interface features on Google+ pages have gotten a design makeover, and several new features aim to attract more users to share photos and promote more interactions with each other. However, those people using wide-screen claims that there are some wasted place. Here, we explain the problem and give funny solution.

Wednesday, April 11, 2012

U.K. Psychologist Launches Dream Control App


Dream:ON is the app to influence your dreams. Research has shown that most of our dreams occur during REM Sleep, and also that your mind is particularly alert to other senses during this stage of sleep. 
Dream:ON plays the 'SoundScape' to your subconscious during REM.

Tuesday, April 10, 2012

Facebook buys Instagram for one Billion

Facebook has just announced that it has agreed to acquire the photo sharing service Instagram for one Billion dollar.

Thursday, April 5, 2012

Google shows their new "Project Glass" (virtual-reality glasses)



According to NEW YORK (CNNMoney), Google unveiled their new project -- "Project Glass" on Wednesday. This project turn a smartphone into a wearable device. The glasses includes "see-through lens" which can display maps, reminders, video chats or other information with simple voice commands.

Dropbox double the referral space to 500MB

Dropbox just announced that they double their free referral space to 500MB per friend. The maximum free space you can get is also increase to 16GB.

Monday, April 2, 2012

Ben & Jerry's Free Cone Day 2012



Ben & Jerry's Free Cone Day 2012
April 3, 2012

Let's get a free cone together!

Friday, March 30, 2012

Google Drive will be released on April with 5GB space?


 Google new service "Google Drive" said to be released on April. According to a screen shot provided by TalkAndroid. Every user will have5GB free cloud storage. At the time being, navigating to drive.google.com or google.com/drive throws up a 404 error.

Google Chrome 18 Stable Released with hardware-accelerated Canvas


Google has released Chrome web browser stable version 18. According to Google, the new version of Chrome has the ability of accelerating Canvas 2D with compatible graphics processor units (GPU) on Windows and Mac system. Also, the support for the WebGL 3D standard to some older systems is expanded. Chrome 18 included the new version of Adobe Flash Player 11.2 as default.

Thursday, February 2, 2012

Java Primitive Type and Wrapper Classes differences

 In this post, we will talk about the differences between primitive type and wrapper classes in Java.

Many people make mistakes when they are using the method of wrapper classes (Character, Integer) that are corresponding to some primitive types (char, int).