This is a follow up to my article (the most popular on my blog based on the comments) about the JavaScript includes, the technique to includ...
Javascript includes – yet another way of RPC-ing
Javascript files can be included and executed on the fly -- either when loading the page or in run-time. This means that HTTP requests are m...
SERIALIZING AND DESERIALIZING JSON IN C#
The majority of my systems integration work requires me to work with 3rd party API’s or to create my own APIs. When creating my own, obvious...
C# Using ThreadPool for Multi-Threaded Application
I'm currently designing an application specifically to handle multiple processing at a certain time. I've read all articles about th...
The Basics of Python Multithreading and Queues
I’m getting really annoyed at reading through programmer speak. Hey guys, this stuff really isn’t that hard. You just suck at explaining thi...
Python threading from a class
Here is threading from a class written for Python v2.6 #!/usr/bin/python import threading import time class Client(object): def test_th...
MySQL Programming: C API
The MySQL client "C" language API development libraries and "C" header files are available as MySQL development packages...
How to Access Stock Quotes Realtime through Google Finance
Google Finance is a product of Google, that tracks everything related to the Stock market and manage your Portfolio etc. It has access to re...
How to Disable Post Revision History or Version Tracking in WordPress
Wordpress provide a great feature of maintaining Revisions or History of a Post. Since WordPress 2.6, whenever you create a post in WordPres...
How to secure WordPress Admin with HTTPS – Self-signed certificate
A little security is better than no security :D If you are self hosting a wordpress.org blog on some shared server or VPS it is good idea to...
Javascript cross-domain api for your website
Welcome our readers. Today I would like to give a small but very important lesson where we will create our own cross-domain javascript api. ...
Post to multiple Facebook wall or timeline in one go using Graph API batch request
Many Facebook application developers might have come across a situation where they need to post something to many pages, groups or friends. ...
PHP – Fetch gzipped content over http with file_get_contents
The file_get_contents function is often used to quickly fetch a http url or resource. Usage is very simple and appears like this $content =...
Building and Installing HHVM on CentOS 7
What's HHVM? HHVM is an open-source virtual machine designed for executing programs written in Hack and PHP . HHVM uses a just-in-tim...
The Halting Problem For Linear Machines
A small idea before the fireworks show Thoralf Skolem was a mathematician who worked in mathematical logic, set theory, and number the...