I’ve seen many web crawlers written in other languages like PHP, Python, Ruby, etc. However, there’s no one that notices node.js is also goo...
How to hide PHP Warnings and Notices in WordPress
From time to time a user comes to me and says "I see some PHP notices and warnings on my page". Most of the time these are nothin...
How to make a simple web crawler in Java
A year or two after I created the dead simple web crawler in Python , I was curious how many lines of code and classes would be required to ...
How Do you Export a WordPress Site to Static HTML
So, you want to convert your long-standing WordPress to a plain, static HTML site? You no longer need your self-hosted setup that you have b...
Simple Queue using javascrip
var Queue = (function() { var items = []; var Queue = function() { return this; }; var is_array = function (value) { return value ...
How to make a simple web crawler in Java
A year or two after I created the dead simple web crawler in Python, I was curious how many lines of code and classes would be required to w...
How to Easily Create a Multilingual WordPress Site
Do you want to translate your WordPress site in multiple languages? Wondering where to start? In this article, we will show you how to easil...
Android TextToSpeech Example
Android operating system provides developers some of the cool API’s such as Text to speech API. converting Text-To-Speech (TTS) or also know...
How to Use Google AdSense Ads on Responsive Websites
Google AdSense has officially approved Responsive Design and what that means is you can serve Google ads of varying dimensions corresponding...
Convert Image to base64 jQuery + Canvas
Simple jQuery + Canvas convert image to base64 HTML Code <h2>Input</h2> <form class="input-group" id=...
SVG to PNG conversion using HTML5 canvas
In this article I am going to explain SVG to PNG conversion using HTML5 Canvas. As shown in the above picture there are 2 steps. 1. Get ...
Android Device to Device Messaging using Google Cloud Messaging (GCM) via Http
This Android tutorial will help to learn Android device to device messaging using Google Cloud Messaging (GCM) via a GCM Http server. This i...