Featured

Stevey Can Rant.. I Cant

Nov 1st, 2011 | By | Category: Featured, management, technology

Stevey’s Rant has been making the blogging rounds recently. Everyone and their aged and ailing mothers are talking about it including yours truly of course – not my mom though – with this post.  I like the rant of course along with the multitude. Who can resist reading contemptuous digs on Jeff Bezos or for [...]



Ecommerce & Java

Aug 24th, 2011 | By | Category: Featured, java

I recently spoke at a Java conference in Bangalore where we discussed Java and E-commerce. This is becoming important with the advent of major e-commerce re-platforming efforts in some significantly large organizations. I am enclosing the deck that I had used in the meeting here. Ecommerce & Java Take a look!



On Digesting XML

Jul 26th, 2011 | By | Category: code snippets, Featured, java

One of the earliest uses of XML was for the purpose of storing configuration. It was soon realized that XML constructs are more amenable for specifying nested configurations rather than properties or INI files that were hitherto used for the same purpose. Since I am a confessed frame-workaholic (a term I just coined to denote [...]



EDA and Incremental ETL

Jul 17th, 2011 | By | Category: architecture, design, Featured

Event Driven Architecture (EDA) is a paradigm that I became familiar with when I was coding the earliest GUI components. The user interaction with a GUI application is modeled as a series of events that the application responds to.  There is an “infinite loop” of events which can potentially be engendered by user interactions with [...]



On Project Ramp ups

Jul 12th, 2011 | By | Category: architecture, Featured, management, process

As I think back about all the failed projects that I had seen, I recognize one unifying feature about them. They all took too long to ramp up! I am not saying that they did not spend enough time on design or architecture. On the other hand, many of these failed projects spent an inordinate [...]



On Estimation & Agility

Jul 4th, 2011 | By | Category: architecture, Featured, management, process

I was doing an estimation review recently. At first blush, I am instinctively uncomfortable about anything that requires a high degree of predictability in software development since that is going to be violated if you are ever intending to produce software that could be deemed useful by the ultimate consumers! It is exactly like doing the interiors of [...]



On IoC containers & Stateful components

Mar 16th, 2011 | By | Category: architecture, Featured, optimization
This entry is part 1 of 9 in the series optimization

If we elevate ourselves enough to sit on a figurative perch in the programming world and look down at the applications that are being developed, we realize that Inversion of Control (IoC) containers have most definitely come here to stay. You see more people than ever before proclaiming expertise in programming  ”Java with Springs” – [...]



State Transition Machine

Mar 3rd, 2011 | By | Category: architecture, Featured, java

I know I haven’t been posting too much and that has been breaking a few hearts. So to heal the breach and reward the faithful for waiting this long, I have published a new open source framework called STM which is a representation of the State Transition Machine. Please check it out in the following [...]



Calculating percentiles in MYSQL

Oct 10th, 2010 | By | Category: code snippets, Featured

I was doing some interesting analysis on percentiles. In the process, I had to put some results in MYSQL and use it for calculating them. I am somewhat fanatical about the usage of select statements without recourse to stored procedures for doing anything in the database. So I was hunting for a “pure select” way [...]



IOC, AOP – 101

Aug 27th, 2010 | By | Category: architecture, design, Featured

I had given a keynote in a conference sometime ago, about the Spring framework. It constituted a presentation on the patterns that necessitated the creation of  Spring in the first place. I am attaching a slide deck on this. I would add some more material here as we go to elaborate on the content of [...]