Coding the Python way

When going from one language to another, some things have to be unlearned. What you know from other languages may not be always useful in Python. Over time, a lot of idioms and ideas arose in the Python community about what the right way to use Python is, and also what would be a wrong [...]

HowTo: Generate QR code for your site

Everyone know that one of the keys to have a great SEO for your website is making sure you keep your website updated, new and fresh. Whether you do this with a blog, or you change your homepage with new offers, coupons or new products, it serves to show Google that your site is “alive.” [...]

What your .gitconfig file contains?

Github is widely used online code repository now a days. Most of the people don’t know what all customizations are offered by GIT to make your life easy as a developer. In this post we will discuss about ~/.gitconfig file and how to accelerate your configurations of GIT.

DateTime Conversion SQLServer

Most of the times, Converting data in various other forms to DateTime type is headache in SQLserver. In this post, I’ll discuss how to convert these data types to ‘DateTime’. Sometimes date values that come from disparate sources may be of a different data type such as int, varchar, string etc. In such cases we [...]

A Google Analytics Cookie [Explained]

Google Analytics is a widely used service by site owners and webmasters to gather statistics about visitors. Google provides an useful documentation of analytics cookies stored. But, that documentation doesn’t actually provides what exactly stored in the cookie.

Opensource Captcha Projects

Now a days many sites are using CAPTCHA for preventing spamming and protecting information on their sites. Including CAPTCHA support for your website can be useful as it prevents automated spamming and save your server bandwidth. I this article I’ll discuss various projects/plug-ins available in different programming languages.

Turn MySQL to NoSQL [HandlerSocket]

Most of the scalable application on web use MYSQL+memcached as the back end for their applications. Recently some of them shifted to NOSQL for one of the biggest reason ‘performance’. Certainly, NOSQL performs better than MYSQL for simple queries and primary key look-ups.

Documentation using XML Comments [.NET]

Wondering how to build an automated reference document like java doc in .NET? C# has a built in system which converts special comments into document. But, the document is in XML format and that’s why it can be used with variety of standards. Best part of this is, the tools come with all versions of [...]

Erlang – A concurrent Programming Language [Overview]

What is Erlang? Erlang is a unit of measurement of traffic density in a telecommunication system. The Erlang describes the total traffic volume of one hour, or 3600 seconds. Alright had enough of Erlang, let’s talk about Erlang programming language

Yahoo Query Language

In today’s world major websites offer API to give developer major access to their web services. But it is pretty difficult task as for website have different API’s standards and rules and way of accessing it is also different.