Prabhu Sunderaraman

Postman – REST Client

Postman – REST Client

One of the very useful tools I got introduced to, recently is Postman. Postman is a REST client application available in the Chrome Web Store. You can install the application in Chrome browser. Postman is very useful to test/monitor requests […]

Bar and Pie chart examples in Sencha Touch 2.1

Bar and Pie chart examples in Sencha Touch 2.1

Sencha Touch 2.1 ships with charts and drawing API. You can find a sample example of bar and pie charts using charts API in my GitHub page. The charts are populated using an Employee store that has name and years […]

Web presentations

Web presentations

My interest in power point presentations faded away few years back. Creating power point slides for presentations and sharing them by converting to PDF documents or uploading in slideshare is a tedious task. I have been treating this job as […]

Managing CSS files using Require JS – II

Managing CSS files using Require JS – II

In the earlier post we created a file (index.html) that uses a stylesheet dev.css. dev.css internally refers to two other CSS files style1.css and style2.css. Loading index.html file sends three individual requests to the server one for each of the […]

Managing CSS files using Require JS – I

Managing CSS files using Require JS – I

In an earlier post on RequireJS we discussed optimized loading of JavaScript files. Let’s discuss optimized loading of CSS files using RequireJS in this post. In this example, we’ll have index.html file that uses dev.css file. dev.css file uses two […]