Author Archives: Mathew

AJAX Application Performance Tuning

Lets say you have a web application that uses some YUI widgets and also some other commercial AJAX widgets. Now these frameworks contains many .js and .css files that need to come down to the browser. To add to this mix you have your own javascript files. Caching these files in the browsers’ cache will help performance and give the user a better experience. Also since some of these files are quite large we can consider gzipping them on the server to reduce the payload size. Continue reading

AJAX Grid Widget

For a recent project I was using Yahoo’s YUI datatable component. With YUI often you can copy code from their site and tweak it to your needs. That to me is a sign of great developer documentation. This is especially needed in case of lots of JavaScript code. I have spent hours trying to figure out why code works in Firefox and not in IE. Only to find an extra comma inside my JSON code. IE is not forgiving regarding the extra comma. Continue reading

Scrum vs. Traditional Project Management

Recently I signed up for a SCRUM certification class and that got me thinking about my other effort which is to get PMP certified. PMP”ians” can boast that their certification is industry recognized and achieved only after giving a certification exam. SCRUM certified professionals are “certified” after they attend an approved certification class conducted by a Scrum certified trainer. No test required. Continue reading

Spring-WS

Took a look at Spring-WS and came up with a quick example service to describe its use. I decided to build the not-so-exciting but yet functional ‘echo’ service. Send in a text and it will echo that back with a date and time appended to the text. Continue reading