Hi Larry, I don't think we have anything planned, but I do believe we have a room booked for Wednesday 28th March. Let's see if we can find someone who wants...
Camber Corporation, Asia Pacific Office, is hiring a Software Engineer to join its Software Development and Integration (SDI) team in Honolulu, HI. This...
On 3/22/07, Sam Joseph <srjoseph@...> wrote: Are you really planning ahead to Sept. and skipping April and May, or is this old cruft from last year.? ...
Eric's crypto presentation was last year. _____ From: honolulu-coders@yahoogroups.com [mailto:honolulu-coders@yahoogroups.com] On Behalf Of David Burns Sent:...
Sam, Thanks for showing all of us your Rails experiences last night. I actually went to McGoo's and got a phone call from my brother telling me he had already...
Found it just fine. Parked, went in, sat down, got my parking ticket stamped, then got the phone call from my brother saying he was waiting at the airport....
Sorry group! Didn't realize I sent the message to everyone. The mistake of replying to a group is one I often can't believe others do --- and yet I do it to...
I was going to ask for a link to camping, but googling ruby camping framework seems to get plenty of good hits. It also reminded me that why's full name is why...
Okay embarrassing question. I just downloaded a gem and installed it, but I am not able to load/require it. Anyone know how to set up the rubypath in fedora? I...
When working with gems try: require 'rubygems' before your other gem requires. djb ... (LoadError) ... (LoadError) ... (LoadError) ... (LoadError) ... ...
Tim trued to post this to honolulu coders, but it accidentally when to a slightly different list, as did my reply. Sorry about the delay CHEERS> SAM...
Thanks for the pointers, guys. Just curious, if requiring rubygems is, well, required, why have I run across several demo programs that leave that out? Is...
Hi Dave, if the demo you were using was running on the command line with irb>, then you have to 'require rubygems' ... 'require rubygems' automatically gets...
It depends on if the ruby library was installed with rubygems or not. On some systems you may have a ruby library installed on it's own. Linux is like this....
Hi Jacky, I'm cc-ing this to honolulu coders - you should join: http://tech.groups.yahoo.com/group/honolulu-coders/ Okay, so what language is your web...
Hi Jacky, It's difficult to help you if you won't join honolulu coders :-) Anyway, I guess you want to automatically export data from Access. I found ...
I haven't tried auto-test, but I just worked out I can run tests from the rails console: D:\User\Code\ruby\prometheus>ruby script\console test Loading test...
I've used it too, It triggers on saves. When you do save, auto-test shells out ruby test\unit\some_test.rb The startup of that shell out is still slow, and I...
Hmm, autotest failed out of the box in my Rails 1.0 environment today. I think with a little script work, my approach of running in the console could be pretty...
... Works pretty damn good though ... I would like to - however it is difficult for one particular project I have ... I know - I have several projects that use...
Since access stores everything in one file, why not just copy the .mdb file from one server to another? Copy all the web source files the same way? ... ...
Isn't that syntax the "to_s" of a date? Have you tried this? t.column "arrived", :date, :default => Date. new(2005,01,01), :null => false or whatever date you...