Browse > Home / Archive by category 'programming'

| Subcribe via RSS

What’s wrong with this picture?

February 20th, 2009 | No Comments | Posted in programming

 

What's wrong with this picture?

Thoughtless reliance on FDT’s intellisense (which is generally pretty good)    

+

mental context switching (between Java and AS2.0 code)

———————————————

 20 minutes of debugging.

Posted by: Daniel Kozimor
Tags: , ,

Speaking of frameworks….

February 19th, 2009 | No Comments | Posted in adobe, cairngorm, flex, programming

The Cairngorm Diagram Explorer has been updated (Flex 3/ Cairngorm 2.2):

http://www.robsondesign.com/blog/index.php/2009/02/18/cairngorm-diagram-explorer-update/

And oh yes… added a whole list of useful flex/flash-related rss feeds. You can find it here.

Posted by: Daniel Kozimor

Flex frameworks.. or frameworks for a framework.

February 13th, 2009 | No Comments | Posted in adobe, cairngorm, flex, programming

Adobe has a nice write-up on various flex frameworks out there, comparing Cairngorm, Mate, and PureMVC.

For our internal project, we’ve settled on Cairngorm. Why? It’s very similar to the structure of our current app plus… well, if you compare the architectures (pg 8 for Cairngorm, pg 11 for Mate and pg 14 for PureMVC), you will notice Cairngorm has 15% less gobblygook than Mate, and a whopping 50% less gobblygook than PureMVC.

Posted by: Daniel Kozimor
Tags: , ,

JSP 2.0 Quotes

September 11th, 2008 | No Comments | Posted in java, programming, tomcat
According to JSP 2.0 specification (chapter 1.7 page 72,73)

This code is illegal:
<mytags:tag value="<%= "hi!" %>" />

Instead the correct sentence would be:
<mytags:tag value='<%= "hi!" %>' />
<mytags:tag value="<%= \"hi!\" %>" />
<mytags:tag value='<%= \"name\" %>' />

https://issues.apache.org/bugzilla/show_bug.cgi?id=45015

Can I blame the JSP spec or latest version of Tomcat for strict implementation? Clearly not my fault, right? RIGHT?

Damn it.

Posted by: Daniel Kozimor

The Python Challange

September 11th, 2008 | No Comments | Posted in programming, python

http://www.pythonchallenge.com/

Working through them - the only way to learn.

Posted by: Daniel Kozimor