Rich
Member since Dec 11, 2008
- Profile: /members/105-rich.htm
- Comments: 6
Recent Blog Comments By Rich
-
Seven Languages In Seven Weeks By Bruce Tate - What An Adventure
Posted on Jan 29, 2011 at 12:34 AM
@Ben, yeah, as a longtime CF/Java guy, the allocate/retain/release stuff in Objective-C drives me nuts. But it's worth it to see one's apps in the app store. :) Check out the Head First iPhone Development book if you feel like giving it another shot. It's a fun read and cuts through all the comp... read more »
-
Seven Languages In Seven Weeks By Bruce Tate - What An Adventure
Posted on Jan 28, 2011 at 2:23 PM
Objective-C/Cocoa: - (void)applicationDidFinishLaunching:(NSNotification *)aNotification { NSArray *names = [NSArray arrayWithObjects:@"Homer",@"Marge",@"Bart",@"Lisa",@"Maggie",nil]; NSMutableArray *descriptions = [self describeNames:names asAd... read more »
-
Passing Users From One ColdFusion Application To Another
Posted on May 30, 2007 at 9:20 AM
@Abul, The problem is the two different hostnames, not the https. Try SetDomainCookies=true in your cfapplication tag.... read more »
-
GreaseMonkey: Helping To Make ColdFusion Developer's Journal NOT Suck
Posted on Mar 14, 2007 at 7:19 PM
This is awesome! No more Microsoft ads of noisy newspaper factories blasting over my speakers. Thanks!... read more »
-
How Do I Get A Pointer To A Built In ColdFusion Method?
Posted on Mar 1, 2007 at 4:36 PM
How about an evaluate? This works: <cfset Method = "FindNoCase" /> <cfset x = evaluate("#Method#('foo', 'I like foo bar')") /> <cfoutput>#x#</cfoutput>... read more »
-
Reading A Microsoft Excel File In ColdFusion Using JExcel API
Posted on Dec 5, 2006 at 11:55 AM
I'd be curious to see if you still get a lag if you put the jar file in your CF classpath, and invoke it directly, without the classloader.... read more »