Wednesday, April 10, 2013

Chinese smartphone Mi-2S- Faster than the S4 !

 Mi-2S-  Faster than the S4




Chinese smartphone manufacturer Xiaomi  founder Lei Jun (Apple of the East :) ), announced two new smartphones:  Mi-2S and  Mi-2A. Xiaomis  sold 3.5 million Mi-One(first generation smartphone from Xiaomi) phones.

  •  Mi-2S loaded with the quad-core 1.7GHz Qualcomm Snapdragon 600 processor(similar to the HTC One) - beats the Samsung Galaxy S4 in benchmarks (which has a 1.9GHz Krait 300 CPU).
  •  4.3-inch screen with 1280 x 720 pixel resolution-342 PPI .
  •  13 MP rear-facing camera (five-element lens).
  • 2000mAh battery (optional 3,000mAh battery).
  • 2GB of RAM.
  • Android 4.1.

Faster than the S4

 
Here are the benchmarks of performance tests,
  
 Bunny performance test


The Quadrant performance of testg 

 Vellamo performance testing

Price Of Xiaomi Mi-2S

  • $322-16GB version.
  • $371 for the 32GB model.


Thursday, April 4, 2013

Blink - New Web Rendering Engine for Google Chrome

 New Browser Engine By Google

courtesy cnet
WebKit is an open source web browser engine was originally created by Apple as a fork to the KHTML rendering engine, and it powers the Apple Safari , Google Chrome and Opera. Over 20 companies now contributing to the project. Now Google develop a new engine called Blink as part of the Chromium project, announced in Wednesday, April 03, 2013 . It is a fork of the WebKit engine. and Google Chrome and Opera will use blink as rendering engine in future versions of Chrome and Opera.

Why blink


Why blink- first look at the commits to the webkit project by different developers.

courtesy bitergia.com

From the above Image we can understand that Google has been the most active contributor of WebKit in the recent years. This graph shows Google's number of "commits" to WebKit over the years. thats why BLINK .  Google will concentrate its browser development on Blink which will forgeot the WebKit project.WebKit is an open-source project so anyone can modify the software.till now Google and Apple together contributing to the same code base.Now With Blink Google will working very hard to add new features and new Web standards, Apple also. more heat on web developers head!

Apple mode no comments about the news. Look at the  googles words about blink



"Chromium uses a different multi-process architecture than other WebKit-based browsers, and supporting multiple architectures over the years has led to increasing complexity for both the WebKit and Chromium projects. This has slowed down the collective pace of innovation - so today, we are introducing Blink, a new open source rendering engine based on WebKit. n the short term, Blink will bring little change for web developers. The bulk of the initial work will focus on internal architectural improvements and a simplification of the codebase. For example, we anticipate that we’ll be able to remove 7 build systems and delete more than 7,000 files—comprising more than 4.5 million lines—right off the bat. Over the long term a healthier codebase leads to more stability and fewer bugs. "
For more About Blink Visit  Official Page

Tuesday, March 26, 2013

Nexus 7 In India || Nexus 7 Price In India

 Finaly Nexus 7 Comes to India

 

Nexus 7 Price In India : Rs. 15,999.00


Ships by April 5, 2013

Sunday, March 24, 2013

Apple App Store will no longer accept new apps or app updates that access UDIDs

Apple App Store new Announcement-apps using UDIDs will no longer  accepted by the App Store effective May 1


Apple has informed app developers that App store no longer accept apps that acces unique device identifier (UDID -a 40-character code that uniquely identifies each device) after May 1 , more details.  The UDID codes very are important because using UUID developers can  track their applications and Mobile advertising networks also use the UDID codes for advertising purposes Apple requests developers use the new 'Vendor or Advertising identifiers'- introduced in iOS 6.

Must Support IOS retina and iPhone 5's 4-inch display

Apps also be required to support both the Retina display and the iPhone 5's 4-inch display  apple will not support apps that doesnot support retina display, and 4 -inch iphone.

Apple and several app developers are use the UDID to track users across different apps because using UUID developer know which particular iOS device is being used to access their app this violate privacy of user (UDID doesn't specifically identify a user). The sharing of UDIDs between advertising networks this leads to identify the activity and interests of the user.

Thursday, March 21, 2013

Google Keep - a place to keep things safe

What you Think?  Keep Here – GOOGLE KEEP ready…...!!!




While we are at home, office or in tour, we may have many things to keep in mind. As it is quite difficult to memorize all these things, our usual way is to just note it on a piece of paper and put it on the table, the shelf, or the cupboard. Later when we search them again and if it may be out of our sight, hardly we feel mad. Therefore, these types of effort are totally a waste of time.




Now Google launched an application called ‘Google Keep’, which can act as a complete solution for the above problems. It allows one to quickly note down what comes in their mind on the move. Also based on priority, a user can arrange these notes and there is option to include checklists, photos etc for their convenience. Google Drive stores all these notes safely and automatically synchronized to all our devices so we can have them at all times in sight. We can create, edit and access new notes straightly from Google Drive. Now Google Keep is accessible on Google Play for all devices on Android 4.0 and up. After installing the application in our devices, we have to choose a Google account for using keep. Once an account selected, we can start keeping notes.



Notes can be entering by different ways. We can enter directly from the textbox, add checklists my marking check box, add photos to notes using camera, giving voice memo using microphones will transcribe to notes automatically. Keep allows us to assign colors for each note so that we will get a colorful view. Colors are selecting from color palette on the top. The users can categorize notes and are able to assign different colors for each category. The users can take photos and add it to the notes through camera option at the top of the screen. How to use Google Keep Using Keep only speaking requires no typing —Keep does it for us by transcribing voice memos automatically. When we are done through a note, we can archive or delete it.


Using menu options, we change the layout from single-column view to multicolumn view.


The Google Keep offers all functionalities in just few clicks. It rapidly captures what is on our mind and reminds it easily wherever we are. Google keep – a place to keep things safe.

Wednesday, March 20, 2013

Add Speech recognition to your HTML web pages || Web Speech API

HTML 5 Web Speech API || Speech recognition Using HTML pages


  The new HTML 5 Web Speech API gives speech recognition power to your html web pages. This specification defines a JavaScript API by using this api developers can add speech recognition in to HTML pages. Eg: we can make Spoken password inputs. This is not a W3C Standard and this specification was given by Speech API Community Group This speech recognition capabilities now found only in Chrome browser (version 25 or above).

 

Speech API 

How to Check browser supports the Web Speech API or Not ? 
-  by checking if the webkitSpeechRecognition object exists  or not. check the code given below.
 
if (!('webkitSpeechRecognition' in window)) {
  upgrade();
} else {
  var recognition = new webkitSpeechRecognition();
  recognition.continuous = true;
  recognition.interimResults = true;

  recognition.onstart = function() { ... }
  recognition.onresult = function(event) { ... }
  recognition.onerror = function(event) { ... }
  recognition.onend = function() { ... }
 
 More About Speech API by W3C Community  click Here
 Peanutgalleryfilms  Provides a demonstration.


Monday, December 10, 2012

iPhone 5S - with NFC, 128 GB Storage, 6-8 Colors



Peter Misek of Jefferies, an investment banking firm, released a new research report regarding Apple's next generation products  he has had  good predictions about the iPhone in the past ..According to various reports, Misek predicts the iPhone 5S ,  will launch in June 2013


 




Misek also predict a number of interesting features of the iPhone 5S.
  • a new super HD camera/scree
  • coming in 6 to 8 colors
  • a better battery.
  • an IGZO screen
  • NFC.
  • 128GB storage.


  Misek also  discusses about  iPhone 6 prototypes,ie l with a 4.8" screen , a Retina+ IGZO screen, a new A7 quad-core processor ,no home button, Full gesture control etc.. . belive that apple must bring something interesting for us because in USA now apple take  lead in smartphone market  over google so they try to keep and increase the lead. All other smartphones compete with iPhone comes with multiple colors , and NFC. 
Now we can wait for 6  more months and see whether miswk was correct or not .

iPhone 5S - with NFC, 128 GB Storage, 6-8 Colors Kerala Techies  has taken from Various Sources  and Analysis of our Team. This Information given by Kerala Techies.