Unix/Linux: Follow That File

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

CFInNC Conference Registration Open!

August 26th, 2009

Registration opens today! Get registered now for this FREE conference! http://cfinnc.com/
http://cfinnc.com/page.cfm/badges

FREE Conference – ColdFusion, Flex AIR – in North Carolina!

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

AS3 Value Objects With a Quickness!

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!

Alcon Debugger for Flex/AIR/Flash

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/

Docs for New Features Available – Model-Glue 3 Beta 1!

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:

  1. Bean Injection
  2. Typed Events
  3. Event Generation
  4. Event.copyToScope()
  5. Search Engine Safe Urls
  6. Application.CFC Integration
  7. Content Caching
  8. Helpers
  9. Formats
  10. Remoting

A summary list of these features can be found at http://docs.model-glue.com/wiki/NewFeaturesInMG3

TACFUG is on the Upcoming Flex/Flash Catalyst and Coldfusion/Bolt Tour!

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

Using JQuery to find the Selected Index of a Select Element

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")

Railo 3.1 Defaults

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!

Make JQuery Go Faster!

April 28th, 2009

A nice article on improving your jquery codez:

http://www.artzstudio.com/2009/04/jquery-performance-rules/