Monthly Archives: June 2007

Merb on AIR – Drag and Drop Multiple File Upload

Merb was originally created by Ezra Zygmuntowicz to avoid some Rails upload issues.

This is one of the things that Merb was written for. Rails doesn‘t allow multiple concurrent file uploads at once without blocking an entire rails backend for each file upload. Merb allows multiple file uploads at once.

I’ve built ‘multiple’ file uploaders for Rails [...]

Posted in AIR, ActionScript, Flex, Merb, Ruby | 37 Comments

I heart Merb

Yes every new framework sets my heart a flutter, but this time it’s for real.
Developing Flex/Flash on top of Rails? What if you could get ActiveRecord and RESTful routing at almost eight times the speed with 75% less RAM? How about all that and real concurrency, including true multiple file upload? All of the above [...]

Posted in Flash, Flex, Merb, Ruby | 2 Comments

My Dock Overfloweth

This might be obsolete when Apple releases Leopard and it’s desktop stacks, but Overflow is a great utility app for organizing your shise. Overflow let’s you group applications, folders and files into categories that you can quickly access by hitting ‘F1′. Below is my ‘Dev’ category, I also make a category for all my current [...]

Posted in OS X | 3 Comments

Get on the bus

I just registered for the LA stop of the Adobe AIR Bus Tour. It’ll be cool to meet some other Flex/AIR developers in SoCal.

Posted in AIR, Flex | Leave a comment

Remove a project from subversion control

About twice a year I need to completely remove a project from svn, I can never find/remember the snippet so I’m posting it on the internets.
# to remove svn from an existing app
find . -name .svn -print0 | xargs -0 rm -rf

Posted in svn | 3 Comments

Rails helper for SWFObject

SWFObject (formally know as FlashObject) is a javascript file that unobtrusively embeds flash in a web page. It works by replacing a holder div with Flash content, if the end user doesn’t have Flash or the targeted Flash player SWFObject will ‘fail’ silently and keep the original div. Here’s a Rails helper that let’s you [...]

Posted in ActionScript, Flash, Flex, JavaScript, Ruby on Rails | 8 Comments

Flex 3 Preview

Ted on Flex is previewing enhancements in the next version of Flex. First up is a look at better tools for designing/laying out your Flex app. I currently end up with a chain of HBox VBox components embedded together to get my layout ‘just’ right so the new advanced constraints sound great:

Advanced Constraints:
There are 2 [...]

Posted in Flex | Leave a comment