comparison
Using Internet Browser information – Javascript
We all know that we use various internet browsers for surfing internet like Internet Explorer, Mozilla Firefox, Safari, Opera , Google Chrome etc. There browsers are generally available for most of the platforms and some are specific to platforms like IE can be run only on Windows platform. Mozilla Firefox can be run on many [...]
Beginning Analytics: Interpreting and Acting on Your Data
Setting up AMP (Apache-MySql-Php) Environment on Windows
LAMP is the name which needs no introduction. Most of the start-up companies are choosing this for developing their web based solutions as it has no cost, easy to use and very powerful for prototyping and even running website till the point when you start getting very good traffic on it. LAMP is Linux-Apache-MySql-Php but [...]
Subversion (svn) Best Practices
Subversion (SVN) is a version control system initiated in 2000 by CollabNet Inc. It is used to maintain current and historical versions of files such as source code, web pages, and documentation. Its goal is to be a mostly-compatible successor to the widely used Concurrent Versions System (CVS). Subversion official website Svn Best Practices View [...]
Regular Expression Validations – javascript
Regular expression can be used efficiently to validate inputs from user and as regex is widely supported in many languages, it can also be used in javascript. Below are some regular expressions to test few types of input from user in javascript. 1. Date (yyyy-mm-dd) var regexp = /(19|20)[0-9]{2}[\- \/.](0[1-9]|1[012])[\- \/.](0[1-9]|[12][0-9]|3[01])/; regexp.test(’string_to_test’); 2. [...]
