What are HTTP Status Codes and why are they used? List of common HTTP status codes
If you are a frequent internet user then I bet that you somehow know about the most common HTTP status code that is the legendary 404 – Content not found or Resource not found Error. So, what are these numbers?…

Configuring Java Development kit and writing a hello world program in Java
This article is for absolute beginners who do not have any knowledge about programming in Java. Learn how to install and configure the Java Development Environment and Writing your first Hello World Program in Java in simple easy steps.

What is .htaccess file and how is it useful ?
A .htaccess (hypertext access) file is a directory-level configuration file supported by several web servers, that allows for decentralized management of web server configuration. They are placed inside the web tree, and are able to override a subset of the server’s global configuration for the directory that they are in, and all sub-directories.

How to compress your web content using gzip compression
What is GZIP ? Gzip stands for GNU zip Compression algorithm which is actually a combination of LZ77 and Huffman Codes. Most of the modern web browsers including mobile web browsers support gzip encoded compressed files. The web servers like…

Automatically fire javascript event after page finishes loading
If you are a developer, you might require to fire a javascript event automatically after the page is loaded. In simpler words, you may need to activate any function automatically, for example – You may require a pop-up window or…