Skip to main content

The complete review of the LG's watch and Android Gear.

Its been like 2 weeks since I got a LG's G watch. So here I go with all of the good, bad and ugly things about the LG's G watch and Android Grear.

So first lets go over the specs.
OS                    Android Wear (Compatible with Android 4.3+)
STRAP            22mm (0.86inch) Changeable Watch Strap
SCREEN            1.65” IPS LCD
DIMENSIONS   37.9x46.5x9.95 mm
BATTERY    400 mAh
PROCESSING   Qualcomm® Snapdragon™ 400 processor with 1.2GHz CPU
MEMORY    512 MB / 4 GB
SENSORS    9 Axis (Accelerometer/Compass/Gyro)

So why g watch instead of samsung.
1. It was a gift so .... but even if I wanted to buy I would have got g watch instead of samsung's.
2. 400 mAh of battery compared to 300 of samsungs.
3. LCD screen, dont think I am crazy, its a small watch and I think one doesn't need a high res screen which eats up more power.
4. Read and watched loads of reviews, where everyone was talking about how comfortable it is to wear all day compared to samsungs. I would definitely go for comfort over the looks. As I know samsung has better looks.
4. How easy it is to charge compared to samsungs.

Lets talk about the watch. Look wise it's a very simple watch with good hardware. In my life I have used PCs with 128 MB of ram so I don't have any complains about the any of the hardware.
But there is loads of lags while sliding the screens



Comments

Popular posts from this blog

Enable stats GUI on haproxy.

Add bottom snippet to the haproxy.conf below the defaults section. listen  stats         bind 19.41.259.10:1234         mode            http         log             global         maxconn 10         clitimeout      100s         srvtimeout      100s         contimeout      100s         timeout queue   100s         stats enable         stats hide-version         stats refresh 30s         stats show-node         stats auth admin:password         stats uri  /haproxy?stats Make sure you are updating the IP address on the bind to your VIP and if you want, you can change th...

PART 1: How to use SoftLayer Python library.

Install the SoftLayer's Python library.  pip install softlayer or clone the source code from the github and install from source code. git clone https://github.com/softlayer/softlayer-python.git python setup.py install Once we have installed the SoftLayer Python library we are ready to use it as shown in the following example. You need your username and api key to run the below example. One can get both user name and api key at the following link once you login successfully. https://control.softlayer.com/account/user/profile Accounts username and API key E.g. showing how to use SoftLayer Python library. import SoftLayer from SoftLayer.managers.image import ImageManager client = SoftLayer.Client(username='', api_key='') image_manager = ImageManager(client) mask = "mask[id,name,note]" imageTemplates = image_manager.list_private_images(mask='id,name,note') print("ID - Name - Note") for template in imageTem...

atoi implementation in C

Algo for you own implementation of atoi :) :) int val = 0;    for each char in the string       val = val *10 + char-48 lets write some code for it :) int myatoi(char *convetIt) {      int val = 0;      while(*convetIt)      {           val = (val * 10) + *convetIt - 48;           convetIt++;      } } So how it works? lets see how it works take an example of string "123" formula : val = (val * 10 ) + *convetIt - 48                 val = (0 * 10 ) + '1' - 48      =>      0*10  + 49 - 48 =  0  + 1 = 1                 val = (1 * 10)  + '2' - 48      =>     1*10  + 50 - 48 = 10...