-
Recent Posts
Recent Comments
Archives
- February 2012
- January 2012
- August 2011
- June 2011
- April 2011
- March 2011
- October 2010
- July 2010
- June 2010
- February 2010
- January 2010
- June 2009
- May 2009
- March 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- July 2008
- June 2008
- May 2008
- February 2008
- January 2008
- November 2007
- August 2007
- July 2007
- May 2007
- April 2007
Categories
Meta
Monthly Archives: March 2011
Revisiting the Builder Pattern in ActionScript for Immutable Models
A while back I made a post on using the Builder Pattern to create Fluent Constructors – the principle being that instead of having a Model object with a bajillion (in practice, more than 3) arguments, you make use of … Continue reading
FDT Template – Builder Pattern Helper
This FDT template is pretty much invaluable when it comes writing a Class that follows the Builder Pattern (for example, a Builder for a Fluent Constructor). public function ${value}(value : ${type}) : ${enclosing_type} { _${value} = value; return this; } … Continue reading
Posted in ActionScript 3
Leave a comment
ANT: This compilation unit did not have a factoryClass
A coworker of mine just asked me how to deal with this MXMLC error which was being thrown during her ANT script when using the FLEX 4 SDK. This compilation unit did not have a factoryClass specified in Frame metadata … Continue reading
Posted in ActionScript 3
Leave a comment
Flash / Flex Development on Windows – Tips and Tricks
This post is a brain dump of the various applications and tricks which make Flash / Flex development quicker and easier on a Windows based system in the hope that some of the them will be new to the people … Continue reading
Posted in Windows
Leave a comment
MySQL Dump / Backup Batch Script for Windows
This is a small Windows Batch Script which I’ve created for dumping out all tables from a local MySQL Service; all the data gets dumped as a plain SQL file which is then archived using 7Zip. This script will also … Continue reading
Posted in Misc.
Leave a comment