Lenny And Bo, ColdFusion Programmers (Vol. 25)

Posted July 10, 2007 at 8:47 AM

Tags: ColdFusion


 
 
 

 
Lenny And Bo, ColdFusion Programmers  
 
 
 

Post Comment  |  Ask Ben  |  Other Searches  |  Print Page





Reader Comments

There are no comments posted for this web log entry.


Post Comment  |  Ask Ben

Recent Blog Comments
Mar 19, 2010 at 8:37 AM
Ask Ben: Javascript Replace And Multiple Lines / Line Breaks
@Abdul, Looks like "re_nlchar" is undefined. You don't have an "else" statement in your if-else-if statements; you are hitting a case where none of the conditions in your IF statement are true, cau ... read »
Mar 19, 2010 at 8:33 AM
jQuery's Event Triggering, Order Of Default Behavior, And triggerHandler()
@Alex, The beauty of jQuery method chaining. ... read »
Mar 19, 2010 at 8:30 AM
Regular Expressions Make CSV Parsing In ColdFusion So Much Easier (And Faster)
@Ziggy, 4000 lines doesn't seem like too much. I guess string parsing takes up more memory that I assume it does. I am not sure what to tell you about that. I suppose you could try using a buffered ... read »
Mar 19, 2010 at 8:28 AM
SQL COUNT( NULLIF( .. ) ) Is Totally Awesome
@Robert, That's pretty clever to subtract 1 from the flag value. Snazzy. ... read »
Mar 19, 2010 at 8:26 AM
Posting XML SOAP Requests With jQuery
@Jason, The RegExp object and the replace method are parts of the core Javascript language; they are not part of jQuery. ... read »
Mar 19, 2010 at 8:10 AM
Exploring ColdFusion Component Runtime Class Properties And Serialization
@Elliott, I guess I've never done Enterprise type architectures where I'm actually passing around full-on objects. I figured I would typically communicate through an API. I can't even think of a sy ... read »
Mar 19, 2010 at 5:39 AM
Regular Expressions Make CSV Parsing In ColdFusion So Much Easier (And Faster)
I get a java heap error on a 4000 line x 8 col csv file. (Processing only, not doing anything with the result yet.) If I cut the file in half it works. Why does it use so much memory? Can anything ... read »
Mar 19, 2010 at 1:43 AM
jQuery Attr() Function Doesn't Work With IMAGE.complete
sample: ..... var loadWatch = setInterval(function() { if(img.complete) { clearInterval(loadWatch); completeCallback(img); } }, 100); } else .... ... read »