Javascript 51
Drawing Google Chart From Servlet JSON Response
Google provides Visualization API to draw charts and other components. More Details can be found on :- https://developers.google.com/chart/interactive/docs/ Different type of ready to use chart types are exposed a java script classes to the developers for customize. In this Demo, “We will see how a visualization charts get rendered in browser […]
Getting Started With Redis Store : Installation in Ubuntu
“REDIS” is an open source data Storage. The data is stored as “Key-Value” pair. It is also referred as Data Structure Server. The features that Redis supports are :- 1. Atomic Operation. 2. Master Slave Replication. 3. Publisher Subscriber. 4. Transactions. To know more about Redis use Link :- http://redis.io/topics/introduction […]
Javascript And Css Compression Using YUI Compressor
“yui-compressor.jar” is a utility from Yahoo for Css and Java script compression. This utility is written Java language.It need minimum of java version 1.4 and above. It uses Mozilla’s “Rhino” library for compressing Java script code. It has Used Isaac Schlueter Regular Expresion based Algorithm for Css Minification. To know more and Download Link:- […]
Node Package Manager(NPM) Installation In Windows
Node Package Manager (NPM) is needed to install modules in Node. NPM can be download for window machine using below link :- http://code.google.com/p/msysgit/downloads/list The EXE file name that is downloaded is similar to Git-1.8.1.2-preview20130201.exe. This Demo, “How to install NPM in windows and shows how to verify the installation”. By […]