Related Articles
SVN Result Codes
The common SVN Status Codes are : U: Working file was updated G: Changes on the repo were automatically merged into the working copy M: Working copy is modified C: This file conflicts with the version in the repo ?: This file is not under version control !: This file is under version control but […]
Get Google Maps API Address based on Address
$url = “http://maps.googleapis.com/maps/api/geocode/json?sensor=false&address=”.urlencode($resident_address); $lat_long = get_object_vars(json_decode(file_get_contents($url)));// pick out what we need (lat,lng)$lat = $lat_long[‘results’][0]->geometry->location->lat;$lng =$lat_long[‘results’][0]->geometry->location->lng; /*echo $lat;echo $lng;*/
Which is the Best Programming Language? Poll #1
We had ran a Poll on the blog, for Which is the Best Programming Language, for 3 weeks and we have received 109 votes for this, and with out hesitation PHP has won the Poll with 43 votes i.e., 39% of the total votes received. I personally feel that Java is the Best programming language […]