Hi! Welcome...

I am a rich internet application developer and UX designer turned entrepreneur. My first company, Toobler, was born out of necessity as the project offers became too many and too large for a single person. Toobler is now the trusted offshore development & research partner for many international clients. My interests now also includes the art of enterpreneurship, along with usability study, web 2.0 and mobile application development.

14 July 2009 ~ 0 Comments

New features in ColdFusion 9

http://labs.adobe.com/technologies/coldfusion9/

  • Office file interoperability to easily read, write and update spreadsheets
  • Server Manager to centrally manage multiple ColdFusion servers, simplifying administration of your environment across clusters
  • ColdFusion as a Service to access ColdFusion services through AMF and SOAP without writing CFCs
  • Built in Adobe AIR Local/Remote Database Synchronization
  • Object Relational Mapping to build database independent applications without writing SQL
  • New AJAX controls including multimedia, mapping and more
  • Enhanced Caching to improve performance of your ColdFusion applications

28 December 2008 ~ 1 Comment

I am a fulltime flex freelancer

Last week I started my new career as a fulltime freelance flex developer and designer. If anyone looking for a flex developer/designer I’m ready to work. My email id is jerry[at]jerrydon[dot]com.

My technical knowledge:
Flex, AIR, Actionscript 3.0, Cairngorm, Remoting, Livecycle DS, Blaze DS, Skinning, Custom component development, Flash, Silverlight, UI design, Usability, Web 2.0, SOA, Webservice, XML, Coldfusion, PHP, MySQL, CSS, HTML, Fireworks, Photoshop etc

19 November 2008 ~ 1 Comment

VO to XML converter

The following code converts a value object to an XML

private function convertToXML():void
{
var product:ProductVO = new ProductVO();
product.id = 12;
product.name = ‘test product’;
product.description = ‘test desc’;
product.price = 100;
product.thumbnail = ‘image1.jpg’;
var xmlProduct:XML = voToXml(product, ‘product’);
}

private static function voToXml(vo:Object, qName:String):XML
{
var qn:QName = new QName(qName);
var xmlDocument:XMLDocument = new XMLDocument();
var simpleXMLEncoder:SimpleXMLEncoder = new SimpleXMLEncoder(xmlDocument);
var xmlNode:XMLNode = simpleXMLEncoder.encodeValue(vo, qn, xmlDocument);
var xml:XML = new XML(xmlDocument.toString());
return xml;
}

Tags: , , ,

31 October 2008 ~ 4 Comments

Vista Remix flex theme - My scalenine contest entry

My scalenine contest entry Vista Remix theme is listed on the scalenine gallery. Congrats to the winners of the contest. Brownie rocks!!. Many thanks to Juan Sanchez, Adobe and EffectiveUI :)

Download

UPDATE : You can download the flash source file from this link

Tags: , , , ,