Sunday, 7 December 2014

HTML5 - A current trend

The first web browser, Mosaic, was introduced in 1993. A year later Netscape, based on Mosaic, was introduced and the net began to become popular.HTML was used in both browsers, but there was no "standard" HTML until the introduction of HTML 2.0. HTML 2.0 was first published in 1995.* HTML 3.0 was published two years later and 4.01 two years after that. HTML 4.01 has been the work horse of the net ever since. Netscape wikipedia The...

Friday, 7 November 2014

PHP Function's - Simple way to understand its features

PHP functions are similar to other programming languages. A function is a piece of code which takes one more input in the form of parameter and does some processing and returns a value. You already have seen many functions like fopen() and fread() etc. They are built-in functions but PHP gives you option to create your own functions as well. There are two parts which should be clear to you: Creating a PHP Function Calling a PHP Function In fact you hardly need to create your own PHP function because there are already more than 1000 of built-in...

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...