August 26th, 2009
In Linux/Unix command line you can follow a file with tail -f [filename]. As the file is updated, the screen will update. This is handy for following error logs, etc.
I just learned from a co-worker that the ‘less’ command can do the same thing if you hit shift-F while viewing a file. Apparently less does a lot more than I thought! I think point and click interface is making me soft, I need to ‘man’ up and RTFM on some command line goodies.
$man less
Tags: Bash, Linux
Posted in Bash, Linux & Friends, Uncategorized | 2 Comments »
August 26th, 2009
Registration opens today! Get registered now for this FREE conference! http://cfinnc.com/

Tags: CFInNC, ColdFusion, TACFUG
Posted in ColdFusion, Dev Tools, Uncategorized | No Comments »
August 6th, 2009
The organizers of the CFinNC 2009 Conference are proud to announce the ColdFusion in North Carolina 2009 Conference to be held October 17-18, 2009 on the Centennial Campus of NC State University in Raleigh, North Carolina. The conference will be aimed at ColdFusion and Flex developers and others who are interested in web design using these technologies.
Registration for the event will be FREE which includes entry to the weekend event and all presentations.
In preparation for this conference, we would like to hear feedback from you and your members on what types of content you would be interested in hearing. We hope to make this conference relative to all levels of developers, so your input will be invaluable.
Please visit our website www.cfinnc.com for more information. We are currently accepting submissions for presentations. If you have a topic you would like to speak on, please go to www.cfinnc.com/page.cfm/presenters for more information.
Please announce this to your members. We are really excited at the opportunity to organize this conference and hope that it will be a useful resource for you and your members.
Sincerely,
The CFinNC 2009 team
Tags: AIR, CFinNC2009, ColdFusion, Flex, NC
Posted in ColdFusion, Flex/AIR, Social | No Comments »
June 29th, 2009
Yesterday I found myself in dire need of a value object for something Flex I’m working on but was feeling too lazy to type it out. I decided to hit Google before writing out the class by hand. I hit this gem for blasting out quick ‘n easy value objects in AS3. Just throw down your list of properties and go!
Blog - http://blog.stroep.nl/2009/04/as3-valueobject-generator-beta/
Tool - http://projects.stroep.nl/ValueObjectGenerator/
Thanks Mark Knol, I love saving time and typing!
Tags: AS3, Flex, OOP
Posted in Dev Tools, Flex/AIR | No Comments »
June 28th, 2009
Alcon is an AS2/AS3 debugger written in Adobe AIR. It doesn’t care what editor, compiler, or OS you are using (yay! a Linux AS3 debugger!). Bryan from Intuitive Media (check muh blog roll) turned me on to it. FlexBuilder can go do it’s thing in Windows/Mac land and I’ll keep doing my thing over here with Linux power! Thanks Hexagon Star!
http://blog.hexagonstar.com/alcon/
Tags: AS3, Debug, Flash, Flex, FlexBuilder, Linux
Posted in Flex/AIR, Linux & Friends | No Comments »
May 20th, 2009
Guess what! The model-glue framework just released a beta of version 3!
As I mentioned in an earlier post, I’ve been having fund helping the team to organize and publish documentation for the new features in version 3. I am really impressed with how fast I’ve been able to get up to speed with this framework with only a few spare minutes per night and a little reading.
This framework lets parts of your application quite literally write themselves. Customize the results and only write from scratch only when necessary. Less busy work, more results, oh yeah!
New features include:
- Bean Injection
- Typed Events
- Event Generation
- Event.copyToScope()
- Search Engine Safe Urls
- Application.CFC Integration
- Content Caching
- Helpers
- Formats
- Remoting
A summary list of these features can be found at http://docs.model-glue.com/wiki/NewFeaturesInMG3
Tags: ColdFusion, Frameworks, Model Glue
Posted in Model Glue Framework | No Comments »
May 13th, 2009
TACFUG in Raleigh, NC (my beloved local CF user group) has been selected to be a stop on the upcoming Adobe Flex/Flash Catalyst and Coldfusion/Bolt tour! AKA ‘Gumbo’ and ‘Centaur’ as I understand. We’ve been politely told by Adobe *NOT* to refer to specific version numbers when talking about this event. I suppose that is just in case they decide to change the versions to Flex 5/ColdFusion 10 at the last moment.
Tour Event: Adobe Flex/Flash Catalyst and Coldfusion/Bolt tour
Date and Time: June 16, 2009 from 6:30pm – 9:00pm
Address: Rail Inc7001 Weston Pkwy Cary, NC 27513
Speakers: Adam Lehman
If you don’t already have a Adobe Groups account you will need to create one before you can RSVP:
https://www.adobe.com/cfusion/entitlement/index.cfm
While you are signing up – join the TACFUG Adobe Groups site:
http://groups.adobe.com/groups/911243f4d1/summary
PLEASE RSVP for the Adobe User Group event – we expect this to be a HUGE crowd and need to get an accurate count:
http://groups.adobe.com/posts/398525e60f
Tags: Bolt, ColdFusion, Flash Catalyst, Flex, Gumbo, TACFUG, Thermo
Posted in ColdFusion, Flex/AIR, Social | No Comments »
May 7th, 2009
This was palmToFace obvious once it occoured to me but due to the lack of Google results on the topic:
$("select#idOfElement").attr("selectedIndex")
Update, even better!
//see Dan's comment
$("#idOfElement").attr("selectedIndex")
Tags: jQuery
Posted in html/js, jQuery | 4 Comments »
May 7th, 2009
For future reference in case you forget:
Railo on Resin webroot is by default {railo-dir}/webapps/ROOT/
localhost:8600/
You will get a bunch of debug information until you turn debugging off.
admin to turn off debugging is at
localhost:8600/railo-context/
Set a password on the admin BEFORE you make your server publicly accessible!
Tags: Railo
Posted in ColdFusion | 1 Comment »