Saturday, 18 October 2014

Capturing image in Android

Hi friends let us learn how to create a camera based application in android. Basics for capturing a image using existing camera in our mobile You will use MediaStore.ACTION_IMAGE_CAPTURE to launch an existing camera application installed on your phone. Its syntax is given below Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); Apart from the above , there are other availaible Intents provided by MediaStore. They are...

Wednesday, 8 October 2014

Basic gateway to learn python

Preliminary fluff So, you want to learn the Python programming language but can't find a concise and yet full-featured tutorial. This tutorial will attempt to teach you Python in 10 minutes. It's probably not so much a tutorial as it is a cross between a tutorial and a cheatsheet, so it will just show you some basic concepts to start you off. Obviously, if you want to really learn a language you need to program in it for a while. I will assume that you are already familiar with programming and will, therefore, skip most of the non-language-specific...