Hal Helms On Object Oriented Programming - The Summary

Posted October 26, 2008 at 3:50 PM

Tags: ColdFusion, Work

I spent this last week down in Florida at Hal Helms' "Real World OO" class on object oriented programming. While the code samples that we worked on were done in ColdFusion, the course was not really ColdFusion specific. The fundamental ideas of object oriented programming are universal and can be applied to just about any programming language that can handle objects.

This class was simply awesome. Every morning I jumped out of bed, ready to get down and dirty with some OO. Every night, I had trouble falling asleep as my mind raced, trying to catalog and make sense of all the information I gathered over the day; there was just so much good stuff being passed around the classroom. Learning in a classroom just makes all the difference in the world. It cannot be compared to anything else. And the guys that I was with were great, really intelligent people. It was a prefect sized class - the best learning environment that I could ask for.

I definitely made some huge breakthroughs in terms of how I understand object oriented programming and the differences between object oriented programming and object-based procedural programming. My hope now is that I will be able to sit down on my own, outside of the class, and apply some of this newfound knowledge to my work.

If any of you have a chance to attend one of Hal Helms' classes, I highly recommend it. It will change the way you think about programming. At the end of the class, Hal told me that his next one was scheduled for February 23-27th down in Sarasota, FL. That's a bit soon for me, but I can definitely see myself going back down for another class after having had the chance to apply this stuff theory in the field. I am sure that in the next few months I will develop a million new questions.

 
 
 
 
 
 
Hal Helms'  
 
 
 

Left to Right: Hal Helms, Kevin, Andrew, Ben, Dave, Matt

 
 
 
 
 
 
Hal Helms'  
 
 
 
 
 
 
 
 
 
Hal Helms'  
 
 
 
 
 
 
 
 
 
Hal Helms'  
 
 
 
 
 
 
 
 
 
Hal Helms'  
 
 
 
 
 
 
 
 
 
Hal Helms'  
 
 
 

Post Comment  |  Ask Ben  |  Permalink  |  Other Searches  |  Print Page




Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

Oct 26, 2008 at 6:18 PM // reply »
40 Comments

Can you give a summary in the context of OOPhoto? What did you do wrong or right? What will you change? Will you start over or modify?


Oct 26, 2008 at 7:29 PM // reply »
56 Comments

Don't worry Glen, Ben has promised a good summary. I'm sure he needs some R and R for now.


Nov 1, 2008 at 4:19 PM // reply »
19 Comments

Wow! Sounds like you had a great time and learning from one of the best I think on the whole OOP subject. Great Stuff!


Aug 3, 2009 at 3:30 AM // reply »
1 Comments

Excellent site,Thanks for this great post - I will be sure to check out your blog more often.Just subscriped to your RSS feed..


Post Comment  |  Ask Ben

Recent Blog Comments
Nov 20, 2009 at 11:32 PM
Five Months Without Hungarian Notation And I'm Loving It
I've used headless camel case for years for not only ColdFusion variables, but also SQL tables and fields... pretty much everything involving code. I also subscribe to the "don't abbreviate and clea ... read »
Nov 20, 2009 at 11:00 PM
Five Months Without Hungarian Notation And I'm Loving It
@Marcel, Yeah, I always err on the side of longer but more readable variable names. As for the camel casing of CF methods and the headless camel casing of custom items, I get around this by always ... read »
Nov 20, 2009 at 10:56 PM
Five Months Without Hungarian Notation And I'm Loving It
I use the following and love it: my.namespace.MyComponents.functionMethodsOrUDF() CONSTANT_VALUES_OR_PROPERTIES One thing I always try is to CamelCaseBuiltInColdFusionFunctions() so others can tell ... read »
Nov 20, 2009 at 5:38 PM
Learning ColdFusion 8: CFImage Part I - Reading And Writing Images
Hi Ben, Great article. I've been looking around to see if ColdFusion image engine can programatically create the following "wrap around" effect: http://www.creativepro.com/article/photoshop-s-she ... read »
Nov 20, 2009 at 5:35 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Dave: I talked to Gert he suggested: <cfhttp method="get" url="http://{some cf website}" result="stuff" addtoken="yes" /> Note the addition of cfhttp attribute addtoken. That should persist y ... read »
Nov 20, 2009 at 5:23 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Todd, Ahh, gotcha, yeah that makes sense. ... read »
Nov 20, 2009 at 5:17 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
Ben, sorry if I didn't make this clear. You can make it work like that if you want, just put <cfset session.foo = 1> (and <cfset application.foo = 1>) in your OnRequestStart() and it reve ... read »