Related Articles
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 […]
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;*/
Speed up PhpStorm Right away
Are you using PHPStorm IDE, then see below simple tricks to speed up the performance of PhpStorm IDE. Speed up PhpStorm 1. Turn on Power Save mode File -> Power Save Mode or using “Hector the Inspector” icon in the IDE status bar. This mode turns off on-the-fly code inspections This way you can finish […]