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.

10 December 2009 ~ 1 Comment

First Kerala Adobe user group meeting

The first ever Kerala Adobe user group meeting has been announced. The event is scheduled to be held at  the Oberon mall food court, Cochin on 12th December 2009(Saturday) at 4:00 PM. More details about the event can be found on the user group website http://godsowndevelopers.com/.

The user group aims to bring together people working or aspiring to work on Adobe technologies and provide them with a platform to share knowledge and increase contacts within the industry. Interested people can easily join the community by logging on to http://godsowndevelopers.com/.

Tags: , ,

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: , , ,