Sunday, May 9, 2010

Cloud computing

Planning to give a presentation on cloud computing...!
had a bit of idea what it is...so will try to build on that

Saturday, May 8, 2010

Dynamic table rendering in coldfusion

Working this weekend on how to create dynamic table in html whch is driven b values from database.

Thursday, May 6, 2010

Black horse

Coldfusion is The Black Horse of the Rapid Application Development.

Exciting new world of Coldfusion

I am loving the exciting new world of coldfusion and the power it brings when you want to build any application rapidly.
Hey!... FYI.... www.adobe.com is built in coldfusion.

Comparing Array Elements

public function compareArrayElements(var:array[]):Boolean
{
var arrayLength = array.length;

if (arrayLength > 0) {
var firstElement = array[0];

for (var i = 1; i < arrayLength; ++i) {
if (array[i] != firstElement) {
return false;
}
}
}

return true;
}

Monday, January 4, 2010

Building custom components in Flex

Found a very good resource on how to build custom components using flex. You can find three different ways to do so:
Building components in MXML
Building components in ActionScript
Building components using code behind