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 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 »
Nov 20, 2009 at 5:07 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Todd, I have seen tidbits about the way Railo handles session. I can understand that it lazy-loads sessions, but I also think that I might make some things more complicated. For example, often tim ... read »
Nov 20, 2009 at 4:53 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
Ben, you can ramp up the security by turning on J2EE session which gives you a third set of numbers other than CFID/CFTOKEN. There's a reason why ACF put this in place (other than just session replic ... read »
Nov 20, 2009 at 4:52 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
Case in point, Ben, you may not be aware of this, but in Railo - OnApplicationStart() & OnSessionStart() act differently than in ACF. ACF does: OnApplicationStart (1st hit) OnSessionStart (1st and e ... read »
Nov 20, 2009 at 4:46 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Todd, That's understandable. I am not sure if this really leaves any more security holes than the fact that using old cookie-based CFID / CFTOKEN values will create a new session using the old CFI ... read »
Nov 20, 2009 at 4:42 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
My opinion is that I don't think auto-generating your own CFID/CFTOKEN is recommended. I'll have to wait for Micha to answer what the ramifications are, but he probably didn't allow this in Railo for ... read »
Nov 20, 2009 at 4:31 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Todd, Yeah, each phone has a unique ID; this is the value that is being used to hack the custom CFID / CFTOKEN session values. ... read »