From sosiouxme at gmail.com Sun Jan 3 15:54:45 2010 From: sosiouxme at gmail.com (Luke Meyer) Date: Sun, 03 Jan 2010 15:54:45 -0500 Subject: [raleigh.rb] Shameless plug for Android meetup this Thursday at CCC In-Reply-To: References: Message-ID: <4B410415.9020901@gmail.com> Hey folks - we had an Objective C / Cocoa / iPhone dev intro in November, so I figure at least some of you must be interested in mobile development. I'll be giving an introduction to Android development this Thursday - come to learn or teach as you see fit. And hey, if anyone gets a new Nexus One, bring it so we can check it out! More details at the meetup page: http://www.meetup.com/TriDroid/ From tj at stank.us Tue Jan 5 17:54:06 2010 From: tj at stank.us (TJ Stankus) Date: Tue, 5 Jan 2010 17:54:06 -0500 Subject: [raleigh.rb] Part time work Message-ID: I'm working on a startup that could use one additional developer (right now, it's just me) as we push toward a launch at the end of this month. I'm looking for someone with Rails and JavaScript (jQuery) experience that can jump in and be productive fairly quickly. It'd be about 20 hours/wk for the next 3-ish weeks. I'm definitely looking for someone local - ideally we'd work from the same location some of the time. I'd prefer contacts off list but if you have any questions that you think are generally applicable, feel free to reply to the list. Thanks, -TJ From martin.streicher at gmail.com Thu Jan 7 11:59:49 2010 From: martin.streicher at gmail.com (Martin Streicher) Date: Thu, 7 Jan 2010 11:59:49 -0500 Subject: [raleigh.rb] [OT] Townhouse for rent Message-ID: <12598AB3-5C68-454B-A62E-EC3B9CE7F9D5@gmail.com> If you need a new "machine room" to keep you and your Linux gear safe, comfortable, warm, and close to downtown, please check out this listing for a townhouse for rent in Cameron Village. It's a great 2-bedroom, two-story place within walking distance to shopping and the R-line. Rent is $1,095.00 per month. Small pets are OK. PHP developers can apply, too. :-) Thanks, Martin http://raleigh.craigslist.org/apa/1534354015.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From thomas at ravinggenius.com Mon Jan 11 21:51:06 2010 From: thomas at ravinggenius.com (Thomas Ingram) Date: Mon, 11 Jan 2010 21:51:06 -0500 Subject: [raleigh.rb] Simple Ruby tutorial Message-ID: <51ce9ce11001111851m62caa3a1lf169f9dc9e99d2b9@mail.gmail.com> I am following the Ruby metaprogramming tutorial found at http://ruby-metaprogramming.rubylearning.com/html/Dog_Step2.html. I keep getting a "dogs.rb:39: undefined local variable or method `name' for main:Object (NameError)" error. My code is at http://gist.github.com/274830, yet on line 12 I am clearly defining a method called name. Any ideas? -- Thomas ><> Raving Genius? - foaming at the brain? m: 919 449.6305 e: thomas at ravinggenius.com w: http://log.ravinggenius.com/ wii: 6751 1365 9898 2150 From mriffe at gmail.com Mon Jan 11 22:14:07 2010 From: mriffe at gmail.com (Mel Riffe) Date: Mon, 11 Jan 2010 22:14:07 -0500 Subject: [raleigh.rb] Simple Ruby tutorial In-Reply-To: <51ce9ce11001111851m62caa3a1lf169f9dc9e99d2b9@mail.gmail.com> References: <51ce9ce11001111851m62caa3a1lf169f9dc9e99d2b9@mail.gmail.com> Message-ID: <43362a721001111914m41b411c7u53a86f28dd3935c@mail.gmail.com> Thomas, At that point in the code 'name' is outside the Class Dog context. To me it appears it should be attached to the instance trying to use it. The gist above is my attempt at making the code run. --Mel On Mon, Jan 11, 2010 at 9:51 PM, Thomas Ingram wrote: > I am following the Ruby metaprogramming tutorial found at > http://ruby-metaprogramming.rubylearning.com/html/Dog_Step2.html. I > keep getting a "dogs.rb:39: undefined local variable or method `name' > for main:Object (NameError)" error. My code is at > http://gist.github.com/274830, yet on line 12 I am clearly defining a > method called name. Any ideas? > > -- > Thomas ><> > Raving Genius? - foaming at the brain? > m: 919 449.6305 > e: thomas at ravinggenius.com > w: http://log.ravinggenius.com/ > wii: 6751 1365 9898 2150 > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members From tj at stank.us Mon Jan 11 22:21:32 2010 From: tj at stank.us (TJ Stankus) Date: Mon, 11 Jan 2010 22:21:32 -0500 Subject: [raleigh.rb] Simple Ruby tutorial In-Reply-To: <51ce9ce11001111851m62caa3a1lf169f9dc9e99d2b9@mail.gmail.com> References: <51ce9ce11001111851m62caa3a1lf169f9dc9e99d2b9@mail.gmail.com> Message-ID: Actually, wouldn't this work? fido.can(:poo) { "is smelly." } because method_missing has this code "#{@name} #{verb}" Otherwise you'd get something like "Fido Fido is smelly." I think. -TJ On Mon, Jan 11, 2010 at 9:51 PM, Thomas Ingram wrote: > I am following the Ruby metaprogramming tutorial found at > http://ruby-metaprogramming.rubylearning.com/html/Dog_Step2.html. I > keep getting a "dogs.rb:39: undefined local variable or method `name' > for main:Object (NameError)" error. My code is at > http://gist.github.com/274830, yet on line 12 I am clearly defining a > method called name. Any ideas? > > -- > Thomas ><> > Raving Genius? - foaming at the brain? > m: 919 449.6305 > e: thomas at ravinggenius.com > w: http://log.ravinggenius.com/ > wii: 6751 1365 9898 2150 > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members From mriffe at gmail.com Mon Jan 11 22:23:28 2010 From: mriffe at gmail.com (Mel Riffe) Date: Mon, 11 Jan 2010 22:23:28 -0500 Subject: [raleigh.rb] Simple Ruby tutorial In-Reply-To: References: <51ce9ce11001111851m62caa3a1lf169f9dc9e99d2b9@mail.gmail.com> Message-ID: <43362a721001111923u35c5f81bj92be8069f603dd03@mail.gmail.com> Good catch - You do indeed get Fido Fido is smelly. On Mon, Jan 11, 2010 at 10:21 PM, TJ Stankus wrote: > Actually, wouldn't this work? > > fido.can(:poo) { "is smelly." } > > because method_missing has this code "#{@name} #{verb}" > > Otherwise you'd get something like "Fido Fido is smelly." I think. > > -TJ > > On Mon, Jan 11, 2010 at 9:51 PM, Thomas Ingram wrote: >> I am following the Ruby metaprogramming tutorial found at >> http://ruby-metaprogramming.rubylearning.com/html/Dog_Step2.html. I >> keep getting a "dogs.rb:39: undefined local variable or method `name' >> for main:Object (NameError)" error. My code is at >> http://gist.github.com/274830, yet on line 12 I am clearly defining a >> method called name. Any ideas? >> >> -- >> Thomas ><> >> Raving Genius? - foaming at the brain? >> m: 919 449.6305 >> e: thomas at ravinggenius.com >> w: http://log.ravinggenius.com/ >> wii: 6751 1365 9898 2150 >> _______________________________________________ >> raleigh-rb-members mailing list >> raleigh-rb-members at rubyforge.org >> http://rubyforge.org/mailman/listinfo/raleigh-rb-members > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > From seancribbs at gmail.com Mon Jan 11 22:31:57 2010 From: seancribbs at gmail.com (Sean Cribbs) Date: Mon, 11 Jan 2010 22:31:57 -0500 Subject: [raleigh.rb] Simple Ruby tutorial In-Reply-To: <51ce9ce11001111851m62caa3a1lf169f9dc9e99d2b9@mail.gmail.com> References: <51ce9ce11001111851m62caa3a1lf169f9dc9e99d2b9@mail.gmail.com> Message-ID: <4B4BED2D.9070409@gmail.com> This is a closure issue, which Ruby does lexically. Because your block is defined outside the Dog instance, #{name} will be called on the top-level context, or in other words, the "main" Object within which the script runs. However, if your method instance_evals the block, the call will be done properly. Or prefix name with local instance of Dog - e.g. "#{fido.name}". For the former, change line 21 to read like so: @actions[action] = instance_eval(&blk) if block_given? Sean On 1/11/10 9:51 PM, Thomas Ingram wrote: > I am following the Ruby metaprogramming tutorial found at > http://ruby-metaprogramming.rubylearning.com/html/Dog_Step2.html. I > keep getting a "dogs.rb:39: undefined local variable or method `name' > for main:Object (NameError)" error. My code is at > http://gist.github.com/274830, yet on line 12 I am clearly defining a > method called name. Any ideas? > > From thomas at ravinggenius.com Mon Jan 11 22:53:45 2010 From: thomas at ravinggenius.com (Thomas Ingram) Date: Mon, 11 Jan 2010 22:53:45 -0500 Subject: [raleigh.rb] Simple Ruby tutorial In-Reply-To: <51ce9ce11001111851m62caa3a1lf169f9dc9e99d2b9@mail.gmail.com> References: <51ce9ce11001111851m62caa3a1lf169f9dc9e99d2b9@mail.gmail.com> Message-ID: <51ce9ce11001111953i30a1d394g326645f54cb3cc45@mail.gmail.com> Thanks all. instance_eval did work as advertised. My final working code is at http://gist.github.com/274830, in case you were interested. On Mon, Jan 11, 2010 at 9:51 PM, Thomas Ingram wrote: > I am following the Ruby metaprogramming tutorial found at > http://ruby-metaprogramming.rubylearning.com/html/Dog_Step2.html. I > keep getting a "dogs.rb:39: undefined local variable or method `name' > for main:Object (NameError)" error. My code is at > http://gist.github.com/274830, yet on line 12 I am clearly defining a > method called name. Any ideas? -- Thomas ><> Raving Genius? - foaming at the brain? m: 919 449.6305 e: thomas at ravinggenius.com w: http://log.ravinggenius.com/ wii: 6751 1365 9898 2150 From brandan at bclennox.com Mon Jan 11 23:12:11 2010 From: brandan at bclennox.com (Brandan Lennox) Date: Mon, 11 Jan 2010 23:12:11 -0500 Subject: [raleigh.rb] Simple Ruby tutorial In-Reply-To: <4B4BED2D.9070409@gmail.com> References: <51ce9ce11001111851m62caa3a1lf169f9dc9e99d2b9@mail.gmail.com> <4B4BED2D.9070409@gmail.com> Message-ID: <90EB06EF-A478-4D42-97F2-67969AD8B848@bclennox.com> So is this essentially the analogue of JavaScript's call() method for Function objects? I was trying to find a way to pass a context into the block, but it looks more like you pass the block into a context. Actually, I just added this line as the last in the file: p stimpy.instance_eval { cry } and it printed the same thing as "stimpy.cry". So I guess I answered my own question :-) Brandan L. -- brandan at bclennox.com http://bclennox.com +1 (919) 274.7565 On Jan 11, 2010, at 10:31 PM, Sean Cribbs wrote: > This is a closure issue, which Ruby does lexically. Because your block is defined outside the Dog instance, #{name} will be called on the top-level context, or in other words, the "main" Object within which the script runs. However, if your method instance_evals the block, the call will be done properly. Or prefix name with local instance of Dog - e.g. "#{fido.name}". For the former, change line 21 to read like so: > > @actions[action] = instance_eval(&blk) if block_given? > > Sean > > On 1/11/10 9:51 PM, Thomas Ingram wrote: >> I am following the Ruby metaprogramming tutorial found at >> http://ruby-metaprogramming.rubylearning.com/html/Dog_Step2.html. I >> keep getting a "dogs.rb:39: undefined local variable or method `name' >> for main:Object (NameError)" error. My code is at >> http://gist.github.com/274830, yet on line 12 I am clearly defining a >> method called name. Any ideas? >> >> > > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members Brandan L. -- brandan at bclennox.com http://bclennox.com +1 (919) 274.7565 -------------- next part -------------- An HTML attachment was scrubbed... URL: From mark at 37signals.com Fri Jan 15 09:34:27 2010 From: mark at 37signals.com (Mark Imbriaco) Date: Fri, 15 Jan 2010 09:34:27 -0500 Subject: [raleigh.rb] Percona MySQL Training in Raleigh. Message-ID: <37C1BECF-9D28-46AF-8982-B950F8098E7B@37signals.com> Cross posting this to the Raleigh.rb and MySQL Meetup mailing lists because I suspect there's interest in both groups. Percona has announced that they're going to be doing a couple of days of MySQL training in Raleigh on April 22nd and 23rd. The first day is focused on developing for MySQL, query optimization, caching, and so on. The second day is more DBA focused and deals with production issues. Single day training is $450, and if you want both it runs $765. I'm fairly certain that I'll be going to both days, I can't speak highly enough of the folks at Percona. More info is available here: http://percona-nc-rdu.eventbrite.com/ -Mark -- Mark Imbriaco System Administrator 37signals -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2484 bytes Desc: not available URL: From nathaniel at talbott.ws Tue Jan 19 09:40:33 2010 From: nathaniel at talbott.ws (Nathaniel Talbott) Date: Tue, 19 Jan 2010 09:40:33 -0500 Subject: [raleigh.rb] Pre-Meeting Chow [CHANGED!] Message-ID: <4ce336a21001190640l4dfa59c4rc54b0b74cd572e6d@mail.gmail.com> Pay close attention, as I'm changing things up on you this week! We're going back to BAJA BURRITO for the winter - it's too cold outside at Ruckus these days. I'll be there around 5:30, and would love to have anyone and everyone join me to chat a bit and unwind before heading over to Red Hat for the meeting proper. -- Nathaniel Talbott <:((>< From pelargir at gmail.com Tue Jan 19 09:53:43 2010 From: pelargir at gmail.com (Matthew Bass) Date: Tue, 19 Jan 2010 09:53:43 -0500 Subject: [raleigh.rb] Pre-Meeting Chow [CHANGED!] In-Reply-To: <4ce336a21001190640l4dfa59c4rc54b0b74cd572e6d@mail.gmail.com> References: <4ce336a21001190640l4dfa59c4rc54b0b74cd572e6d@mail.gmail.com> Message-ID: <4680A911-5C25-4025-BF48-259728ADE9D0@gmail.com> In! On Jan 19, 2010, at 9:40 AM, Nathaniel Talbott wrote: > Pay close attention, as I'm changing things up on you this week! > > We're going back to BAJA BURRITO for the winter - it's too cold > outside at Ruckus these days. I'll be there around 5:30, and would > love to have anyone and everyone join me to chat a bit and unwind > before heading over to Red Hat for the meeting proper. > > > -- > Nathaniel Talbott > <:((>< > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members From rick.denatale at gmail.com Tue Jan 19 10:13:44 2010 From: rick.denatale at gmail.com (Rick DeNatale) Date: Tue, 19 Jan 2010 10:13:44 -0500 Subject: [raleigh.rb] Pre-Meeting Chow [CHANGED!] In-Reply-To: <4680A911-5C25-4025-BF48-259728ADE9D0@gmail.com> References: <4ce336a21001190640l4dfa59c4rc54b0b74cd572e6d@mail.gmail.com> <4680A911-5C25-4025-BF48-259728ADE9D0@gmail.com> Message-ID: I'm in too. Anyone from Wake Forest want to car-pool? On Tue, Jan 19, 2010 at 9:53 AM, Matthew Bass wrote: > In! > > > On Jan 19, 2010, at 9:40 AM, Nathaniel Talbott wrote: > >> Pay close attention, as I'm changing things up on you this week! >> >> We're going back to BAJA BURRITO for the winter - it's too cold >> outside at Ruckus these days. I'll be there around 5:30, and would >> love to have anyone and everyone join me to chat a bit and unwind >> before heading over to Red Hat for the meeting proper. >> >> >> -- >> Nathaniel Talbott >> <:((>< >> _______________________________________________ >> raleigh-rb-members mailing list >> raleigh-rb-members at rubyforge.org >> http://rubyforge.org/mailman/listinfo/raleigh-rb-members > > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > -- Rick DeNatale Blog: http://talklikeaduck.denhaven2.com/ Twitter: http://twitter.com/RickDeNatale WWR: http://www.workingwithrails.com/person/9021-rick-denatale LinkedIn: http://www.linkedin.com/in/rickdenatale From rick.denatale at gmail.com Tue Jan 19 10:17:27 2010 From: rick.denatale at gmail.com (Rick DeNatale) Date: Tue, 19 Jan 2010 10:17:27 -0500 Subject: [raleigh.rb] Anyone know of a web-site monitoring service. Message-ID: I discovered a few days ago that due to some misconfiguration by my isp after an outage, although I had outbound internet access, they weren't sending inbound port 80 connections to me, so my blog and other 'hobby' web sites I host here at chez DeNatale weren't accessible to the great masses. I didn't realize this since my router was recognizing the ip address as it's own, so requests from inside the lan were working find. Does anyone know of a reasonably priced service which will monitor such things, and let me know if my site(s) can't be seen via the intertubes? -- Rick DeNatale Blog: http://talklikeaduck.denhaven2.com/ Twitter: http://twitter.com/RickDeNatale WWR: http://www.workingwithrails.com/person/9021-rick-denatale LinkedIn: http://www.linkedin.com/in/rickdenatale From ken.auer at rolemodelsoftware.com Tue Jan 19 10:26:22 2010 From: ken.auer at rolemodelsoftware.com (Ken Auer) Date: Tue, 19 Jan 2010 10:26:22 -0500 Subject: [raleigh.rb] Pre-Meeting Chow [CHANGED!] In-Reply-To: References: <4ce336a21001190640l4dfa59c4rc54b0b74cd572e6d@mail.gmail.com> <4680A911-5C25-4025-BF48-259728ADE9D0@gmail.com> Message-ID: In with at least two others. My son, Caleb, and Lake Denman, a Rails guy visiting and working with us a bit from Charlotte area. On Tue, Jan 19, 2010 at 10:13 AM, Rick DeNatale wrote: > I'm in too. > > Anyone from Wake Forest want to car-pool? > > On Tue, Jan 19, 2010 at 9:53 AM, Matthew Bass wrote: > > In! > > > > > > On Jan 19, 2010, at 9:40 AM, Nathaniel Talbott wrote: > > > >> Pay close attention, as I'm changing things up on you this week! > >> > >> We're going back to BAJA BURRITO for the winter - it's too cold > >> outside at Ruckus these days. I'll be there around 5:30, and would > >> love to have anyone and everyone join me to chat a bit and unwind > >> before heading over to Red Hat for the meeting proper. > >> > >> > >> -- > >> Nathaniel Talbott > >> <:((>< > >> _______________________________________________ > >> raleigh-rb-members mailing list > >> raleigh-rb-members at rubyforge.org > >> http://rubyforge.org/mailman/listinfo/raleigh-rb-members > > > > _______________________________________________ > > raleigh-rb-members mailing list > > raleigh-rb-members at rubyforge.org > > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > > > > > > -- > Rick DeNatale > > Blog: http://talklikeaduck.denhaven2.com/ > Twitter: http://twitter.com/RickDeNatale > WWR: http://www.workingwithrails.com/person/9021-rick-denatale > LinkedIn: http://www.linkedin.com/in/rickdenatale > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > -- Ken Auer The Extreme Programming Software Studio? RoleModel Software 919-557-6352 (v) 6720 RoleModel Way 919-342-5016 (f) Holly Springs, NC 27540 919-622-8315 (m) A Member of the RoleModel Community of Businesses ( http://rolemodelcommunity.com) "Christianity is not a plug-in, it's an operating system" (see Mark 12:28-31) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jamey.cribbs at gmail.com Tue Jan 19 10:23:11 2010 From: jamey.cribbs at gmail.com (Jamey Cribbs) Date: Tue, 19 Jan 2010 10:23:11 -0500 Subject: [raleigh.rb] Anyone know of a web-site monitoring service. In-Reply-To: References: Message-ID: <64217eee1001190723q663797c9ke2a4a172419ac24e@mail.gmail.com> I've used Montastic (http://www.montastic.com/) for years and it's free! Jamey On Tue, Jan 19, 2010 at 10:17 AM, Rick DeNatale wrote: > I discovered a few days ago that due to some misconfiguration by my > isp after an outage, although I had outbound internet access, they > weren't sending inbound port 80 connections to me, so my blog and > other 'hobby' web sites I host here at chez DeNatale weren't > accessible to the great masses. > > I didn't realize this since my router was recognizing the ip address > as it's own, so requests from inside the lan were working find. > > Does anyone know of a reasonably priced service which will monitor > such things, and let me know if my site(s) can't be seen via the > intertubes? > > -- > Rick DeNatale > > Blog: http://talklikeaduck.denhaven2.com/ > Twitter: http://twitter.com/RickDeNatale > WWR: http://www.workingwithrails.com/person/9021-rick-denatale > LinkedIn: http://www.linkedin.com/in/rickdenatale > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > From info at lojic.com Tue Jan 19 10:48:34 2010 From: info at lojic.com (Brian Adkins) Date: Tue, 19 Jan 2010 10:48:34 -0500 Subject: [raleigh.rb] Anyone know of a web-site monitoring service. In-Reply-To: References: Message-ID: <4B55D452.60304@lojic.com> Rick DeNatale wrote, On 1/19/10 10:17 AM: > [...] > Does anyone know of a reasonably priced service which will monitor > such things, and let me know if my site(s) can't be seen via the > intertubes? siteuptime.com hyperspin.com -- Brian Adkins Lojic Technologies, LLC http://lojic.com/ From javery at infozerk.com Tue Jan 19 10:54:21 2010 From: javery at infozerk.com (James Avery) Date: Tue, 19 Jan 2010 10:54:21 -0500 Subject: [raleigh.rb] Anyone know of a web-site monitoring service. In-Reply-To: <4B55D452.60304@lojic.com> References: <4B55D452.60304@lojic.com> Message-ID: <20af90581001190754s17d521acm45e4ce35ac1f9dc4@mail.gmail.com> I use pingdom and it works great. (http://pingdom.com) -James On Tue, Jan 19, 2010 at 10:48 AM, Brian Adkins wrote: > Rick DeNatale wrote, On 1/19/10 10:17 AM: > >> [...] >> >> Does anyone know of a reasonably priced service which will monitor >> such things, and let me know if my site(s) can't be seen via the >> intertubes? >> > > siteuptime.com > hyperspin.com > > > -- > Brian Adkins > Lojic Technologies, LLC > http://lojic.com/ > > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > -- James Avery Zerk Media - http://zerkmedia.com Infozerk Inc. - http://www.infozerk.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From pelargir at gmail.com Tue Jan 19 11:29:11 2010 From: pelargir at gmail.com (Matthew Bass) Date: Tue, 19 Jan 2010 11:29:11 -0500 Subject: [raleigh.rb] Pre-Meeting Chow [CHANGED!] In-Reply-To: References: <4ce336a21001190640l4dfa59c4rc54b0b74cd572e6d@mail.gmail.com> <4680A911-5C25-4025-BF48-259728ADE9D0@gmail.com> Message-ID: <3EF4ED90-F9E2-48D8-8C9F-7B15EA457E61@gmail.com> On Jan 19, 2010, at 10:13 AM, Rick DeNatale wrote: > Anyone from Wake Forest want to car-pool? I'm willing to carpool. Leave at 5:15? Matthew From rick.denatale at gmail.com Tue Jan 19 12:07:06 2010 From: rick.denatale at gmail.com (Rick DeNatale) Date: Tue, 19 Jan 2010 12:07:06 -0500 Subject: [raleigh.rb] Anyone know of a web-site monitoring service. In-Reply-To: <20af90581001190754s17d521acm45e4ce35ac1f9dc4@mail.gmail.com> References: <4B55D452.60304@lojic.com> <20af90581001190754s17d521acm45e4ce35ac1f9dc4@mail.gmail.com> Message-ID: Thanks for the suggestions. I'm giving montastic a spin and it looks good so far. -- Rick DeNatale Blog: http://talklikeaduck.denhaven2.com/ Twitter: http://twitter.com/RickDeNatale WWR: http://www.workingwithrails.com/person/9021-rick-denatale LinkedIn: http://www.linkedin.com/in/rickdenatale From steve.pinkham at gmail.com Tue Jan 19 12:59:24 2010 From: steve.pinkham at gmail.com (Steve Pinkham) Date: Tue, 19 Jan 2010 12:59:24 -0500 Subject: [raleigh.rb] Anyone know of a web-site monitoring service. In-Reply-To: References: Message-ID: <4B55F2FC.3010105@gmail.com> I use a generic uptime service which doesn't have any great benefits worth mentioning, and also http://sucuri.net/ for tracking content modification, DNS records, SSL cert changes, website and email blacklists, etc.. Steve Rick DeNatale wrote: > I discovered a few days ago that due to some misconfiguration by my > isp after an outage, although I had outbound internet access, they > weren't sending inbound port 80 connections to me, so my blog and > other 'hobby' web sites I host here at chez DeNatale weren't > accessible to the great masses. > > I didn't realize this since my router was recognizing the ip address > as it's own, so requests from inside the lan were working find. > > Does anyone know of a reasonably priced service which will monitor > such things, and let me know if my site(s) can't be seen via the > intertubes? > -- | Steven E. Pinkham | | Security Researcher, Maven Security | | http://www.mavensecurity.com | | GPG public key ID CD31CAFB | From mike at hales.ws Tue Jan 19 13:19:11 2010 From: mike at hales.ws (Michael Hale) Date: Tue, 19 Jan 2010 13:19:11 -0500 Subject: [raleigh.rb] Pre-Meeting Chow [CHANGED!] In-Reply-To: <4ce336a21001190640l4dfa59c4rc54b0b74cd572e6d@mail.gmail.com> References: <4ce336a21001190640l4dfa59c4rc54b0b74cd572e6d@mail.gmail.com> Message-ID: <60190a731001191019u74c10b2cu616c9d7f82b22b54@mail.gmail.com> In. On Tue, Jan 19, 2010 at 9:40 AM, Nathaniel Talbott wrote: > Pay close attention, as I'm changing things up on you this week! > > We're going back to BAJA BURRITO for the winter - it's too cold > outside at Ruckus these days. I'll be there around 5:30, and would > love to have anyone and everyone join me to chat a bit and unwind > before heading over to Red Hat for the meeting proper. > > > -- > Nathaniel Talbott > <:((>< > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > From seancribbs at gmail.com Tue Jan 19 13:49:19 2010 From: seancribbs at gmail.com (Sean Cribbs) Date: Tue, 19 Jan 2010 13:49:19 -0500 Subject: [raleigh.rb] Pre-Meeting Chow [CHANGED!] In-Reply-To: <60190a731001191019u74c10b2cu616c9d7f82b22b54@mail.gmail.com> References: <4ce336a21001190640l4dfa59c4rc54b0b74cd572e6d@mail.gmail.com> <60190a731001191019u74c10b2cu616c9d7f82b22b54@mail.gmail.com> Message-ID: <4B55FEAF.4050901@gmail.com> In. On 1/19/10 1:19 PM, Michael Hale wrote: > In. > > On Tue, Jan 19, 2010 at 9:40 AM, Nathaniel Talbott wrote: > >> Pay close attention, as I'm changing things up on you this week! >> >> We're going back to BAJA BURRITO for the winter - it's too cold >> outside at Ruckus these days. I'll be there around 5:30, and would >> love to have anyone and everyone join me to chat a bit and unwind >> before heading over to Red Hat for the meeting proper. >> >> >> -- >> Nathaniel Talbott >> <:((>< >> _______________________________________________ >> raleigh-rb-members mailing list >> raleigh-rb-members at rubyforge.org >> http://rubyforge.org/mailman/listinfo/raleigh-rb-members >> >> > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > > From aok at chariotsolutions.com Wed Jan 20 12:03:38 2010 From: aok at chariotsolutions.com (Andrea O. K. Wright) Date: Wed, 20 Jan 2010 12:03:38 -0500 Subject: [raleigh.rb] Philly Conference: Yehuda Katz, David Black, Ezra Zygmuntowicz, others... Message-ID: Registration is open for the 5th Annual Philly Emerging Tech Conference (a.k.a. Emerging Technologies for the Enterprise), which is set for April 8 - April 9 at the Society Hill Sheraton: www.phillyemergingtech.com Rubyists on the roster include David Black (author of Ruby for Rails and the Well-Grounded Rubyist); Yehuda Katz (Rails Core Developer); Brian Marick (author of Every Day Scripting with Ruby); Ezra Zygmuntowicz (creator of the Merb framework and co-founder of Engine Yard); Mike Dirolf (who has developed Ruby drivers for MongoDB) and Adam Blum (CEO of Rhomobile, which developed the Ruby-based Rhodes framework for smartphones). Talks about a wide array of languages and technologies complement the Ruby content. The event features Clojure creator Rich Hickey; Twitter platform lead Alex Payne; Venkat Subramaniam (author of Programming Groovy and co-author of Practices of an Agile Developer); Mary Poppendieck, who popularized Lean Software Development; Linda Rising (co-author of Fearless Change: Patterns for Introducing New Ideas); and many others. The keynote speakers will be "Uncle Bob" Martin, who served as the first chairman of the Agile Alliance, and industry analyst Michael Cote. The list of confirmed speakers can be viewed here: http://www.phillyemergingtech.com/speakers More speakers and session abstracts will be added in the coming weeks. The Early Bird rate, available through February 15, is $275 per person. The rate goes down to $206 per person if you can take advantage of the group discount (4 colleagues or friends, not necessarily from the same company, registering at the same time). To register, or for more information: www.phillyemergingtech.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From pelargir at gmail.com Wed Jan 20 18:06:00 2010 From: pelargir at gmail.com (Matthew Bass) Date: Wed, 20 Jan 2010 18:06:00 -0500 Subject: [raleigh.rb] Blue iPod missing from last night's meeting Message-ID: Hey y'all. Well, it was bound to happen sooner or later. I neglected to grab my blue iPod Nano from the podium after Ken's excellent talk. Did someone else pick it up for me? Brenton already checked the podium and it wasn't there. I'd hate to lose the recording of Ken's speech, which I was going to post to the podcast. Thanks, Matthew From thomas at ravinggenius.com Wed Jan 20 18:27:13 2010 From: thomas at ravinggenius.com (Thomas Ingram) Date: Wed, 20 Jan 2010 18:27:13 -0500 Subject: [raleigh.rb] [OT] Fwd: [TriLUG] coming up... SQLite In-Reply-To: <4B565738.1010701@trilug.org> References: <4B565738.1010701@trilug.org> Message-ID: <51ce9ce11001201527h3c316469q1b79be7f0c462506@mail.gmail.com> I hope this is okay to post.... The local Linux user group's next meeting is going to be about SQLite. I am posting this here because SQLite seems to be pretty popular in the Ruby community. ---------- Forwarded message ---------- From: Alan Porter Date: Tue, Jan 19, 2010 at 8:07 PM Subject: [TriLUG] coming up... SQLite To: Triangle Linux Users Group General Discussion We've got another good program lined up for next month, so mark your calendars for February 11th. ?We will be hosting D. Richard Hipp, the author of SQLite. Quoting Wikipedia, because they explain it so well... SQLite is an ACID-compliant embedded relational database management system contained in a relatively small (~225 kB) C programming library. The source code for SQLite is in the public domain. The SQLite engine is not a standalone process with which the application program communicates. Instead, the SQLite library is linked in and thus becomes an integral part of the application program (though the library can be built into a dynamically loaded library). The entire database (definitions, tables, indices, and the data itself) is stored as a single cross-platform file on a host machine. It's me again... SQLite is so small and powerful and robust, it is an ideal choice for embedded systems. ?SQLite is included in Apple's iphone SDK, and it can be found in crazy places like the TMIO Intelligent Oven. ?SQLite is often used by desktop applications for configuration data. Examples include Firefox, Sunbird, epiphany, bitpim, and eclipse. Dr. Hipp has asked if we have specific topics that we would like for him to discuss, or if we'd just like him to surprise us. Those who went to South East Linux Fest last year got to see him speak on the "Firefox fsync() bug". ?It was very enlightening. Suggestions? ?I will be sending him an email later this week with our requests. ?Personally, I am thinking that he'll have plenty of good stories for us, even if we don't have any special requests for him. Alan . -- TriLUG mailing list ? ? ? ?: http://www.trilug.org/mailman/listinfo/trilug TriLUG FAQ ?: http://www.trilug.org/wiki/Frequently_Asked_Questions -- Thomas ><> Raving Genius? - foaming at the brain? m: 919 449.6305 e: thomas at ravinggenius.com w: http://log.ravinggenius.com/ wii: 6751 1365 9898 2150 From nathaniel at talbott.ws Thu Jan 21 19:45:56 2010 From: nathaniel at talbott.ws (Nathaniel Talbott) Date: Thu, 21 Jan 2010 19:45:56 -0500 Subject: [raleigh.rb] [OT] Fwd: [TriLUG] coming up... SQLite In-Reply-To: <51ce9ce11001201527h3c316469q1b79be7f0c462506@mail.gmail.com> References: <4B565738.1010701@trilug.org> <51ce9ce11001201527h3c316469q1b79be7f0c462506@mail.gmail.com> Message-ID: <4ce336a21001211645o19765c11rdf0739a2de1a3063@mail.gmail.com> On Wed, Jan 20, 2010 at 6:27 PM, Thomas Ingram wrote: > The local Linux user group's next meeting is going to be about SQLite. > I am posting this here because SQLite seems to be pretty popular in > the Ruby community. Awesome! Posts like this are always welcome. -- Nathaniel Talbott <:((>< From jamey.cribbs at gmail.com Mon Jan 25 20:02:56 2010 From: jamey.cribbs at gmail.com (Jamey Cribbs) Date: Mon, 25 Jan 2010 20:02:56 -0500 Subject: [raleigh.rb] Fellow Freelancers in Raleigh Message-ID: <64217eee1001251702l499e04d5ncb65ed335cf63cb1@mail.gmail.com> This is an open invitation to anyone, but will probably be of most interest to freelancers in Raleigh. I'm a freelancer who lives right downtown (love it!) and usually work from my home every day. However, I try to get out of the house once or twice a week to keep from going stir-crazy. Lately I have been spending one or two mornings a week at the Morning Times (http://www.morningtimes-raleigh.com/). They have decent coffee, pretty good breakfasts, and a nice big room upstairs with plenty of tables, chairs, and wall outlets. Very laid back. Anyway, when you work from home, sometimes its nice to get out of the house and actually talk to other human beings, so if anyone is ever interested in hanging out together for a few hours while they work and is near downtown Raleigh, drop me a line. Jamey Cribbs From brentmc79 at gmail.com Mon Jan 25 22:21:15 2010 From: brentmc79 at gmail.com (Brent Collier) Date: Mon, 25 Jan 2010 22:21:15 -0500 Subject: [raleigh.rb] Fellow Freelancers in Raleigh In-Reply-To: <64217eee1001251702l499e04d5ncb65ed335cf63cb1@mail.gmail.com> References: <64217eee1001251702l499e04d5ncb65ed335cf63cb1@mail.gmail.com> Message-ID: While I'm not a freelancer, I do work from home. Unfortunately, downtown Raleigh is a bit out of the way for me. I spend many mornings working from Its A Grind, a coffee shop on the corner of Davis and High House in western Cary, but I'm not attached to it. Anywhere in western Cary, Morrisville, or north-western Raleigh would be fairly convenient for me if anyone's interested in meeting up. -Brent On Mon, Jan 25, 2010 at 8:02 PM, Jamey Cribbs wrote: > This is an open invitation to anyone, but will probably be of most > interest to freelancers in Raleigh. I'm a freelancer who lives right > downtown (love it!) and usually work from my home every day. However, > I try to get out of the house once or twice a week to keep from going > stir-crazy. Lately I have been spending one or two mornings a week at > the Morning Times (http://www.morningtimes-raleigh.com/). They have > decent coffee, pretty good breakfasts, and a nice big room upstairs > with plenty of tables, chairs, and wall outlets. Very laid back. > > Anyway, when you work from home, sometimes its nice to get out of the > house and actually talk to other human beings, so if anyone is ever > interested in hanging out together for a few hours while they work and > is near downtown Raleigh, drop me a line. > > Jamey Cribbs > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > -- Brent Collier | 919.564.6915 | www.BrentCollier.com | www.brentmc79.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From korebantic at gmail.com Mon Jan 25 23:24:18 2010 From: korebantic at gmail.com (korebantic) Date: Mon, 25 Jan 2010 23:24:18 -0500 Subject: [raleigh.rb] Fellow Freelancers in Raleigh In-Reply-To: <64217eee1001251702l499e04d5ncb65ed335cf63cb1@mail.gmail.com> References: <64217eee1001251702l499e04d5ncb65ed335cf63cb1@mail.gmail.com> Message-ID: <16e20a2b1001252024p700e6dcelfc232fce7206356d@mail.gmail.com> I would go but I fear the pull of a Gaffel Kolsch next door would be to much for me to bear. Pictures are worth so much more than words: http://www.flickr.com/photos/kamphora/3519201669/ On Mon, Jan 25, 2010 at 8:02 PM, Jamey Cribbs wrote: > This is an open invitation to anyone, but will probably be of most > interest to freelancers in Raleigh. I'm a freelancer who lives right > downtown (love it!) and usually work from my home every day. However, > I try to get out of the house once or twice a week to keep from going > stir-crazy. Lately I have been spending one or two mornings a week at > the Morning Times (http://www.morningtimes-raleigh.com/). They have > decent coffee, pretty good breakfasts, and a nice big room upstairs > with plenty of tables, chairs, and wall outlets. Very laid back. > > Anyway, when you work from home, sometimes its nice to get out of the > house and actually talk to other human beings, so if anyone is ever > interested in hanging out together for a few hours while they work and > is near downtown Raleigh, drop me a line. > > Jamey Cribbs > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tj at stank.us Tue Jan 26 13:03:29 2010 From: tj at stank.us (TJ Stankus) Date: Tue, 26 Jan 2010 13:03:29 -0500 Subject: [raleigh.rb] Fellow Freelancers in Raleigh In-Reply-To: <64217eee1001251702l499e04d5ncb65ed335cf63cb1@mail.gmail.com> References: <64217eee1001251702l499e04d5ncb65ed335cf63cb1@mail.gmail.com> Message-ID: > stir-crazy. ?Lately I have been spending one or two mornings a week at > the Morning Times (http://www.morningtimes-raleigh.com/). ?They have > decent coffee, pretty good breakfasts, and a nice big room upstairs > with plenty of tables, chairs, and wall outlets. ?Very laid back. Myself and a couple others are planning on heading to the Morning Times on Wednesday morning. Hope to see a few other Rubyists there! -TJ From jamey.cribbs at gmail.com Tue Jan 26 13:22:03 2010 From: jamey.cribbs at gmail.com (Jamey Cribbs) Date: Tue, 26 Jan 2010 13:22:03 -0500 Subject: [raleigh.rb] Fellow Freelancers in Raleigh In-Reply-To: References: <64217eee1001251702l499e04d5ncb65ed335cf63cb1@mail.gmail.com> Message-ID: <64217eee1001261022u75545458raf5984150619021c@mail.gmail.com> I have a marathon conference call I have to sit in on tomorrow morning, but I will try to make it over there either before or after. Hopefully I will see you there. TJ, to help make identification easier, could you do something simple like tattoo "RUBY" across your forehead or maybe shave your head except for a giant "R" mohawk? Jamey On Tue, Jan 26, 2010 at 1:03 PM, TJ Stankus wrote: >> stir-crazy. ?Lately I have been spending one or two mornings a week at >> the Morning Times (http://www.morningtimes-raleigh.com/). ?They have >> decent coffee, pretty good breakfasts, and a nice big room upstairs >> with plenty of tables, chairs, and wall outlets. ?Very laid back. > > Myself and a couple others are planning on heading to the Morning > Times on Wednesday morning. Hope to see a few other Rubyists there! > > -TJ > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > From tj at stank.us Tue Jan 26 13:33:54 2010 From: tj at stank.us (TJ Stankus) Date: Tue, 26 Jan 2010 13:33:54 -0500 Subject: [raleigh.rb] Fellow Freelancers in Raleigh In-Reply-To: <64217eee1001261022u75545458raf5984150619021c@mail.gmail.com> References: <64217eee1001251702l499e04d5ncb65ed335cf63cb1@mail.gmail.com> <64217eee1001261022u75545458raf5984150619021c@mail.gmail.com> Message-ID: > TJ, to help make identification easier, could you do something simple > like tattoo "RUBY" across your forehead or maybe shave your head > except for a giant "R" mohawk? Done. -TJ From redinger at gmail.com Tue Jan 26 13:16:45 2010 From: redinger at gmail.com (Christopher Redinger) Date: Tue, 26 Jan 2010 13:16:45 -0500 Subject: [raleigh.rb] Fellow Freelancers in Raleigh In-Reply-To: References: <64217eee1001251702l499e04d5ncb65ed335cf63cb1@mail.gmail.com> Message-ID: <3C66DFF7-BBC1-48A0-92B9-9A761AF9B420@gmail.com> On Jan 26, 2010, at 1:03 PM, TJ Stankus wrote: > Myself and a couple others are planning on heading to the Morning > Times on Wednesday morning. Hope to see a few other Rubyists there! Another popular place for the slightly west of Raleigh crowd is The Wake Zone in Apex. Maybe we could become more consistent in our use of the #nomading hashtag to make it easier to find the nomaders. -- Christopher Redinger http://agiledisciple.com Agile Ruby and Rails Development (919) 386-9643 From adam at thewilliams.ws Tue Jan 26 13:44:17 2010 From: adam at thewilliams.ws (Adam Williams) Date: Tue, 26 Jan 2010 13:44:17 -0500 Subject: [raleigh.rb] Fellow Freelancers in Raleigh In-Reply-To: <3C66DFF7-BBC1-48A0-92B9-9A761AF9B420@gmail.com> References: <64217eee1001251702l499e04d5ncb65ed335cf63cb1@mail.gmail.com> <3C66DFF7-BBC1-48A0-92B9-9A761AF9B420@gmail.com> Message-ID: I loved my time at The Wake Zone. I could see myself going there a lot... On Jan 26, 2010, at 1:16 PM, Christopher Redinger wrote: > On Jan 26, 2010, at 1:03 PM, TJ Stankus wrote: > >> Myself and a couple others are planning on heading to the Morning >> Times on Wednesday morning. Hope to see a few other Rubyists there! > > > Another popular place for the slightly west of Raleigh crowd is The Wake Zone in Apex. Maybe we could become more consistent in our use of the #nomading hashtag to make it easier to find the nomaders. > > -- > Christopher Redinger > http://agiledisciple.com > Agile Ruby and Rails Development > (919) 386-9643 > > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members From brentmc79 at gmail.com Wed Jan 27 01:01:35 2010 From: brentmc79 at gmail.com (Brent Collier) Date: Wed, 27 Jan 2010 01:01:35 -0500 Subject: [raleigh.rb] Fellow Freelancers in Raleigh In-Reply-To: References: <64217eee1001251702l499e04d5ncb65ed335cf63cb1@mail.gmail.com> <3C66DFF7-BBC1-48A0-92B9-9A761AF9B420@gmail.com> Message-ID: Anyone interested in meeting up at The Wake Zone tomorrow morning? If not, I may try to make the trek out to the Morning Times... -Brent On Tue, Jan 26, 2010 at 1:44 PM, Adam Williams wrote: > I loved my time at The Wake Zone. I could see myself going there a lot... > > On Jan 26, 2010, at 1:16 PM, Christopher Redinger wrote: > > > On Jan 26, 2010, at 1:03 PM, TJ Stankus wrote: > > > >> Myself and a couple others are planning on heading to the Morning > >> Times on Wednesday morning. Hope to see a few other Rubyists there! > > > > > > Another popular place for the slightly west of Raleigh crowd is The Wake > Zone in Apex. Maybe we could become more consistent in our use of the > #nomading hashtag to make it easier to find the nomaders. > > > > -- > > Christopher Redinger > > http://agiledisciple.com > > Agile Ruby and Rails Development > > (919) 386-9643 > > > > _______________________________________________ > > raleigh-rb-members mailing list > > raleigh-rb-members at rubyforge.org > > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > -- Brent Collier | 919.564.6915 | www.BrentCollier.com | www.brentmc79.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From tj at stank.us Wed Jan 27 05:32:53 2010 From: tj at stank.us (TJ Stankus) Date: Wed, 27 Jan 2010 05:32:53 -0500 Subject: [raleigh.rb] Fellow Freelancers in Raleigh In-Reply-To: References: <64217eee1001251702l499e04d5ncb65ed335cf63cb1@mail.gmail.com> Message-ID: > Myself and a couple others are planning on heading to the Morning > Times on Wednesday morning. Hope to see a few other Rubyists there! Been up most of the night sick so probably won't be making it out to Morning Times tomorrow. -TJ From johnwlong2000 at gmail.com Wed Jan 27 08:12:22 2010 From: johnwlong2000 at gmail.com (John Long) Date: Wed, 27 Jan 2010 08:12:22 -0500 Subject: [raleigh.rb] Fellow Freelancers in Raleigh In-Reply-To: References: <64217eee1001251702l499e04d5ncb65ed335cf63cb1@mail.gmail.com> <3C66DFF7-BBC1-48A0-92B9-9A761AF9B420@gmail.com> Message-ID: <32d834771001270512v2136f17bkfaaad6e55a799d41@mail.gmail.com> I think Matthew Bass and myself are planning on heading to the Wake Zone. It's quieter there and better for getting some serious work done. After all it is called, "the Zone". :) -- John Long http://wiseheartdesign.com http://recursivecreative.com On Wed, Jan 27, 2010 at 1:01 AM, Brent Collier wrote: > Anyone interested in meeting up at The Wake Zone tomorrow morning? ?If not, > I may try to make the trek out to the Morning Times... > -Brent > > On Tue, Jan 26, 2010 at 1:44 PM, Adam Williams wrote: >> >> I loved my time at The Wake Zone. I could see myself going there a lot... >> >> On Jan 26, 2010, at 1:16 PM, Christopher Redinger wrote: >> >> > On Jan 26, 2010, at 1:03 PM, TJ Stankus wrote: >> > >> >> Myself and a couple others are planning on heading to the Morning >> >> Times on Wednesday morning. Hope to see a few other Rubyists there! >> > >> > >> > Another popular place for the slightly west of Raleigh crowd is The Wake >> > Zone in Apex. Maybe we could become more consistent in our use of the >> > #nomading hashtag to make it easier to find the nomaders. >> > >> > -- >> > Christopher Redinger >> > http://agiledisciple.com >> > Agile Ruby and Rails Development >> > (919) 386-9643 >> > >> > _______________________________________________ >> > raleigh-rb-members mailing list >> > raleigh-rb-members at rubyforge.org >> > http://rubyforge.org/mailman/listinfo/raleigh-rb-members >> >> _______________________________________________ >> raleigh-rb-members mailing list >> raleigh-rb-members at rubyforge.org >> http://rubyforge.org/mailman/listinfo/raleigh-rb-members > > > > -- > Brent Collier | 919.564.6915 | www.BrentCollier.com | www.brentmc79.com > > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > From seancribbs at gmail.com Wed Jan 27 08:23:48 2010 From: seancribbs at gmail.com (Sean Cribbs) Date: Wed, 27 Jan 2010 08:23:48 -0500 Subject: [raleigh.rb] WWW2010 Developers Track CfP Message-ID: <4B603E64.2090607@gmail.com> Saw this CFP and thought some of my fellow Rubyists might be interested. Cheers! Sean ------------------- WWW2010 - April 26 - 30 in Raleigh, NC WWW2010 Developers Track - Call For Proposals http://www2010.org Submission Details Submission deadline: February 26, 2010 (9pm Eastern (US) Time) Notification date: March 14th, 2010 The Developers Track focuses on the general WWW development community. Participants are invited to present new trends and interesting ideas, code and APIs of applications, platforms and emerging standards. Demonstrations of technical "nitty-gritty" are strongly encouraged. Focus areas include, but are not limited to, Browsers and Plugins, Web Metrics, Health, Science and Education, Web Social Impact, Information Integration and Mash-ups, Web Software and Tools, Information Mining and Reporting, Mobile Web, Monetization, Multimedia, Scalable System and Cloud Computing, Search, Security, Semantic Web, Social Network, Standards and Protocols, User Interface, Open Source (FLOSS) Development for the Web. This track is an ideal venue for short reports of both industry and academic technical works. This year, the proceedings of the Developers Track will be published online; the authors of the accepted works will have the option to publish a 3-page report. Please submit abstracts and papers via the WWW2010 Conference Management site: https://cmt.research.microsoft.com/WWW2010/Default.aspx From seancribbs at gmail.com Thu Jan 28 13:50:32 2010 From: seancribbs at gmail.com (Sean Cribbs) Date: Thu, 28 Jan 2010 13:50:32 -0500 Subject: [raleigh.rb] Pre-Refresh Chow Message-ID: <4B61DC78.7060907@gmail.com> Anyone going to Clinton's HTML5 talk at Refresh tonight? Want to get some foodstuffs and beverages before? How about Bull McCabe's at 5:15ish? Sean From rick.denatale at gmail.com Thu Jan 28 15:17:57 2010 From: rick.denatale at gmail.com (Rick DeNatale) Date: Thu, 28 Jan 2010 15:17:57 -0500 Subject: [raleigh.rb] Pre-Refresh Chow In-Reply-To: <4B61DC78.7060907@gmail.com> References: <4B61DC78.7060907@gmail.com> Message-ID: sounds good to me On Thu, Jan 28, 2010 at 1:50 PM, Sean Cribbs wrote: > Anyone going to Clinton's HTML5 talk at Refresh tonight? Want to get some > foodstuffs and beverages before? ?How about Bull McCabe's at 5:15ish? > > Sean > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > -- Rick DeNatale Blog: http://talklikeaduck.denhaven2.com/ Twitter: http://twitter.com/RickDeNatale WWR: http://www.workingwithrails.com/person/9021-rick-denatale LinkedIn: http://www.linkedin.com/in/rickdenatale