BLOGS

Complete tutorial on making a Web App to check Live Weather conditions!

A Web App to check live weather conditions of a city. It uses Yahoo Weather API to get weather data, Geolocation API and Google Maps API to auto detect the location of the user when Auto Detect button is clicked. And has all the functionality of a Web App.

Using geolocation and Google Maps API to get detailed location information!

HTML Geolocation API provides us only the latitude and longitude information, to get the full detailed information about the address here we will use Google Maps API to fetch detailed address information.

How to get geolocation or latitude and longitude information with javascript!

Geolocation refers to the identification of the geographic location of a user or computing device via a variety of data collection mechanisms. Here is a simple example on how to get latitude and longitude information using javascript and HTML5 geolocation API.

Making an app/script with python to check Live Weather conditions!

API's are the core of all live and forcast Weather checking apps and websites. Here we will make a python script to check the live weather conditions of specified city using Yahoo Weather API and extract specified information from the json response.

Fetch json data about all the comic on XKCD.

XKCD provides a json file for each comic. Here is a demonstration on how to extract those data and different ways in which we can use it. You can think it as an open api.

PHP7 the game changer for web development in 2018?

Major improvements of PHP7 in performance and memory consumptions made PHP7 a game changer. PHP is by far the most widely used backend programming language till date. There were many critical vulnerabilities in past but PHP7 has made those a thing of past.

How to track products prices at Amazon for the best deals using Keepa.

Keepa is a powerful Amazon products price tracker. Keepa helps you get the best deals at Amazon and makes sure you don't miss any. This article will help you how to use keepa and get best deals at Amazon.

Play Google chrome dino game with python and pyautogui!

pyautogui is a awesome module used to do many cool stuffs such as automatically playing games, pressing keys, clicking on screen and lots more. Here we use it to play google chrome dino game.

How many programming languages are there 2018?

There are only a few top programming languages used these days but those are only a few cherry on top of a huge tree. There are a vast number of programming languages which are not well known. This article will help you find mostly all of them and also link to their official websites.

Test for prime numbers using python!

Here is a simple prime number tester function in python, which tests a specific number and outputs the result whether it's a prime or not. Also how to iterate over a range of numbers and test each for prime.