From geoff at geoffdavis.net Fri Dec 1 09:03:35 2006 From: geoff at geoffdavis.net (Geoff Davis) Date: Fri, 1 Dec 2006 09:03:35 -0500 Subject: [raleigh.rb] MaxInt Message-ID: Does ruby define constants for the maximum/minimum possible integers? I've tried variants of MaxInt but haven't hit upon anything, and I don't see anything relevant in Math.constants, Integer.constants, or Numeric.constants. Or are integers not fixed precision? From charlesmbowman at gmail.com Fri Dec 1 09:19:27 2006 From: charlesmbowman at gmail.com (Charlie Bowman) Date: Fri, 1 Dec 2006 09:19:27 -0500 Subject: [raleigh.rb] a ruby job opening Message-ID: <298c4d2a0612010619x96d1b2brd42e1b6d3d5b1aa0@mail.gmail.com> I thought there would be some people on this list who would be interested. This was sent to me by a recruiter yesterday. Charlie, I hope you are doing well these days and staying quite busy. I was wondering if you could help me out in regards to this position below. Is there anyone you've worked with that may be interested in a position in the Raleigh/Durham area? Mike Brittain MATRIX Recruiter 919-653-1503 ------------------------------ ---------------------------------------------------------------------------------- POSITION: Developer LOCATION: Raleigh REFERENCE: PRTP20680 (Not available on web site) DESCRIPTION: Great opportunity to use latest technology in major app migration! Join an existing team of 2 other Developer/Analysts to work on a major application migration effort! In this role, you will serve as a Systems Analyst/Software Developer and you must be able and willing to work in a "Ruby on Rails" development environment! You must also be able to design and code to very secure (hackproof) requirements and also be able to conduct code reviews of other code (probably 10% of overall time). You must also be willing and able to participate in full life cycle development including requirements gathering, spec development, coding, unit testing, etc. Qualified canddidates will ideally have Ruby on Rails experience but Java and/or Python app dev experience will also be considered! This is a full-time, permanent position based in NW Raleigh! It offers competitive pay and benefits and a regular 37-1/2 work week! REQUIRED SKILLS: Developer, Security, Full Life Cycle Development PREFERRED SKILLS: Ruby on Rails, Linux, Oracle, 4 Year Degree, AGILE Methodology -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061201/4a4061cf/attachment.html From lists-jared at nc.rr.com Fri Dec 1 09:35:03 2006 From: lists-jared at nc.rr.com (Jared Richardson) Date: Fri, 1 Dec 2006 09:35:03 -0500 Subject: [raleigh.rb] a ruby job opening In-Reply-To: <298c4d2a0612010619x96d1b2brd42e1b6d3d5b1aa0@mail.gmail.com> References: <298c4d2a0612010619x96d1b2brd42e1b6d3d5b1aa0@mail.gmail.com> Message-ID: <09AD6982-E0A4-4682-9832-E66B955D056C@nc.rr.com> hackproof? Oh dear..... jared http://jaredrichardson.net On Dec 1, 2006, at 9:19 AM, Charlie Bowman wrote: > I thought there would be some people on this list who would be > interested. This was sent to me by a recruiter yesterday. > > > Charlie, > > I hope you are doing well these days and staying quite busy. I was > wondering if you could help me out in regards to this position > below. Is > there anyone you've worked with that may be interested in a > position in the > Raleigh/Durham area? > > Mike Brittain > MATRIX Recruiter > 919-653-1503 > > ------------------------------ > ---------------------------------------------------------------------- > ------------ > > POSITION: Developer > LOCATION: Raleigh > REFERENCE: PRTP20680 (Not available on web site) > > DESCRIPTION: > Great opportunity to use latest technology in major app migration! > Join an > existing team of 2 other Developer/Analysts to work on a major > application > migration effort! In this role, you will serve as a Systems > Analyst/Software Developer and you must be able and willing to work > in a > "Ruby on Rails" development environment! You must also be able to > design > and code to very secure (hackproof) requirements and also be able to > conduct code reviews of other code (probably 10% of overall time). > You > must also be willing and able to participate in full life cycle > development > including requirements gathering, spec development, coding, unit > testing, > etc. Qualified canddidates will ideally have Ruby on Rails > experience but > Java and/or Python app dev experience will also be considered! > This is a > full-time, permanent position based in NW Raleigh! It offers > competitive > pay and benefits and a regular 37-1/2 work week! > > REQUIRED SKILLS: Developer, Security, Full Life Cycle Development > PREFERRED SKILLS: Ruby on Rails, Linux, Oracle, 4 Year Degree, AGILE > Methodology > > _______________________________________________ > 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: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061201/1c69b584/attachment.html From geoff at geoffdavis.net Fri Dec 1 09:48:19 2006 From: geoff at geoffdavis.net (Geoff Davis) Date: Fri, 1 Dec 2006 09:48:19 -0500 Subject: [raleigh.rb] MaxInt In-Reply-To: References: Message-ID: <4072F898-9846-46A4-82B0-261519E6D8CC@geoffdavis.net> Nevermind -- looks like I can use some bit shifting and Fixnum::size to calculate it. Nice that there is transparent shifting between fixed precision and variable. On Dec 1, 2006, at 9:03 AM, Geoff Davis wrote: > Does ruby define constants for the maximum/minimum possible > integers? I've tried variants of MaxInt but haven't hit upon > anything, and I don't see anything relevant in Math.constants, > Integer.constants, or Numeric.constants. Or are integers not fixed > precision? > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > From DLanouette at computer.org Fri Dec 1 10:04:07 2006 From: DLanouette at computer.org (David Lanouette) Date: Fri, 1 Dec 2006 10:04:07 -0500 Subject: [raleigh.rb] MaxInt In-Reply-To: <4072F898-9846-46A4-82B0-261519E6D8CC@geoffdavis.net> References: <4072F898-9846-46A4-82B0-261519E6D8CC@geoffdavis.net> Message-ID: If I understand you correctly, you need to know how big a number you can have (something like 2^32)? Unless you are doing some REAL serious scientific/math stuff, the limit is practically limitless. The max value for an int is limited only by memory. If a number gets larger than the machine word, it is automajicaly converted from a Fixnum to a Bignum. And Bignum isn't limited in size (just in memory footprint). On 12/1/06, Geoff Davis wrote: > > Nevermind -- looks like I can use some bit shifting and Fixnum::size > to calculate it. Nice that there is transparent shifting between > fixed precision and variable. > > On Dec 1, 2006, at 9:03 AM, Geoff Davis wrote: > > > Does ruby define constants for the maximum/minimum possible > > integers? I've tried variants of MaxInt but haven't hit upon > > anything, and I don't see anything relevant in Math.constants, > > Integer.constants, or Numeric.constants. Or are integers not fixed > > precision? > > _______________________________________________ > > 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 > -- ______________________________ - David Lanouette - David.Lanouette at GMail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061201/f943acd4/attachment.html From nospam at tonyspencer.com Fri Dec 1 10:49:20 2006 From: nospam at tonyspencer.com (Tony Spencer) Date: Fri, 01 Dec 2006 10:49:20 -0500 Subject: [raleigh.rb] a ruby job opening In-Reply-To: <09AD6982-E0A4-4682-9832-E66B955D056C@nc.rr.com> References: <298c4d2a0612010619x96d1b2brd42e1b6d3d5b1aa0@mail.gmail.com> <09AD6982-E0A4-4682-9832-E66B955D056C@nc.rr.com> Message-ID: <45704F00.5090802@tonyspencer.com> It must be a great job! There are lots of exclamations! I'm sure you can make it hackproof Jared! Jared Richardson wrote: > hackproof? Oh dear..... > > jared > http://jaredrichardson.net > > On Dec 1, 2006, at 9:19 AM, Charlie Bowman wrote: > >> I thought there would be some people on this list who would be >> interested. This was sent to me by a recruiter yesterday. >> >> >> Charlie, >> >> I hope you are doing well these days and staying quite busy. I was >> wondering if you could help me out in regards to this position below. Is >> there anyone you've worked with that may be interested in a position >> in the >> Raleigh/Durham area? >> >> Mike Brittain >> MATRIX Recruiter >> 919-653-1503 >> >> ------------------------------ >> ---------------------------------------------------------------------------------- >> >> POSITION: Developer >> LOCATION: Raleigh >> REFERENCE: PRTP20680 (Not available on web site) >> >> DESCRIPTION: >> Great opportunity to use latest technology in major app migration! >> Join an >> existing team of 2 other Developer/Analysts to work on a major application >> migration effort! In this role, you will serve as a Systems >> Analyst/Software Developer and you must be able and willing to work in a >> "Ruby on Rails" development environment! You must also be able to design >> and code to very secure (hackproof) requirements and also be able to >> conduct code reviews of other code (probably 10% of overall time). You >> must also be willing and able to participate in full life cycle >> development >> including requirements gathering, spec development, coding, unit testing, >> etc. Qualified canddidates will ideally have Ruby on Rails experience >> but >> Java and/or Python app dev experience will also be considered! This is a >> full-time, permanent position based in NW Raleigh! It offers competitive >> pay and benefits and a regular 37-1/2 work week! >> >> REQUIRED SKILLS: Developer, Security, Full Life Cycle Development >> PREFERRED SKILLS: Ruby on Rails, Linux, Oracle, 4 Year Degree, AGILE >> Methodology >> >> _______________________________________________ >> 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 tj at stank.us Fri Dec 1 11:33:30 2006 From: tj at stank.us (TJ Stankus) Date: Fri, 1 Dec 2006 11:33:30 -0500 Subject: [raleigh.rb] a ruby job opening In-Reply-To: <45704F00.5090802@tonyspencer.com> References: <298c4d2a0612010619x96d1b2brd42e1b6d3d5b1aa0@mail.gmail.com> <09AD6982-E0A4-4682-9832-E66B955D056C@nc.rr.com> <45704F00.5090802@tonyspencer.com> Message-ID: Agreed that job descriptions should be vetted by clueful developers. But, it IS nice to see Rails jobs out there. It makes the whole "if you can't change your organization, change organizations" credo a bit easier to follow. -TJ On 12/1/06, Tony Spencer wrote: > It must be a great job! There are lots of exclamations! I'm sure you > can make it hackproof Jared! > > Jared Richardson wrote: > > hackproof? Oh dear..... > > > > jared > > http://jaredrichardson.net > > > > On Dec 1, 2006, at 9:19 AM, Charlie Bowman wrote: > > > >> I thought there would be some people on this list who would be > >> interested. This was sent to me by a recruiter yesterday. > >> > >> > >> Charlie, > >> > >> I hope you are doing well these days and staying quite busy. I was > >> wondering if you could help me out in regards to this position below. Is > >> there anyone you've worked with that may be interested in a position > >> in the > >> Raleigh/Durham area? > >> > >> Mike Brittain > >> MATRIX Recruiter > >> 919-653-1503 > >> > >> ------------------------------ > >> ---------------------------------------------------------------------------------- > >> > >> POSITION: Developer > >> LOCATION: Raleigh > >> REFERENCE: PRTP20680 (Not available on web site) > >> > >> DESCRIPTION: > >> Great opportunity to use latest technology in major app migration! > >> Join an > >> existing team of 2 other Developer/Analysts to work on a major application > >> migration effort! In this role, you will serve as a Systems > >> Analyst/Software Developer and you must be able and willing to work in a > >> "Ruby on Rails" development environment! You must also be able to design > >> and code to very secure (hackproof) requirements and also be able to > >> conduct code reviews of other code (probably 10% of overall time). You > >> must also be willing and able to participate in full life cycle > >> development > >> including requirements gathering, spec development, coding, unit testing, > >> etc. Qualified canddidates will ideally have Ruby on Rails experience > >> but > >> Java and/or Python app dev experience will also be considered! This is a > >> full-time, permanent position based in NW Raleigh! It offers competitive > >> pay and benefits and a regular 37-1/2 work week! > >> > >> REQUIRED SKILLS: Developer, Security, Full Life Cycle Development > >> PREFERRED SKILLS: Ruby on Rails, Linux, Oracle, 4 Year Degree, AGILE > >> Methodology > >> > >> _______________________________________________ > >> 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 > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > From lists-jared at nc.rr.com Fri Dec 1 12:45:18 2006 From: lists-jared at nc.rr.com (Jared Richardson) Date: Fri, 1 Dec 2006 12:45:18 -0500 Subject: [raleigh.rb] a ruby job opening In-Reply-To: References: <298c4d2a0612010619x96d1b2brd42e1b6d3d5b1aa0@mail.gmail.com> <09AD6982-E0A4-4682-9832-E66B955D056C@nc.rr.com> <45704F00.5090802@tonyspencer.com> Message-ID: <07E57B61-8CEF-4CC9-A8F6-D0D890149B4C@nc.rr.com> I should've added a smiley to my post. :) I'm also ~very~ glad to see Rails jobs openings getting posted. I just worry about the expectations of the hiring company for any web app that they think will be completely hackproof. I recently read this page (scroll down to the Security section) http://mongrel.rubyforge.org/faq.html and really liked what they said. Q: Is Mongrel secure? Anyone who claims their server is ?SECURE? is full of crap. You can?t be absolutely certain that any system is secure, but what you can do is put policies and practices in place to try and make them more secure... http://jaredrichardson.net Jared On Dec 1, 2006, at 11:33 AM, TJ Stankus wrote: > Agreed that job descriptions should be vetted by clueful developers. > But, it IS nice to see Rails jobs out there. It makes the whole "if > you can't change your organization, change organizations" credo a bit > easier to follow. > > -TJ > > On 12/1/06, Tony Spencer wrote: >> It must be a great job! There are lots of exclamations! I'm sure >> you >> can make it hackproof Jared! >> >> Jared Richardson wrote: >>> hackproof? Oh dear..... >>> >>> jared >>> http://jaredrichardson.net >>> >>> On Dec 1, 2006, at 9:19 AM, Charlie Bowman wrote: >>> >>>> I thought there would be some people on this list who would be >>>> interested. This was sent to me by a recruiter yesterday. >>>> >>>> >>>> Charlie, >>>> >>>> I hope you are doing well these days and staying quite busy. I was >>>> wondering if you could help me out in regards to this position >>>> below. Is >>>> there anyone you've worked with that may be interested in a >>>> position >>>> in the >>>> Raleigh/Durham area? >>>> >>>> Mike Brittain >>>> MATRIX Recruiter >>>> 919-653-1503 >>>> >>>> ------------------------------ >>>> ------------------------------------------------------------------- >>>> --------------- >>>> >>>> POSITION: Developer >>>> LOCATION: Raleigh >>>> REFERENCE: PRTP20680 (Not available on web site) >>>> >>>> DESCRIPTION: >>>> Great opportunity to use latest technology in major app migration! >>>> Join an >>>> existing team of 2 other Developer/Analysts to work on a major >>>> application >>>> migration effort! In this role, you will serve as a Systems >>>> Analyst/Software Developer and you must be able and willing to >>>> work in a >>>> "Ruby on Rails" development environment! You must also be able >>>> to design >>>> and code to very secure (hackproof) requirements and also be >>>> able to >>>> conduct code reviews of other code (probably 10% of overall >>>> time). You >>>> must also be willing and able to participate in full life cycle >>>> development >>>> including requirements gathering, spec development, coding, unit >>>> testing, >>>> etc. Qualified canddidates will ideally have Ruby on Rails >>>> experience >>>> but >>>> Java and/or Python app dev experience will also be considered! >>>> This is a >>>> full-time, permanent position based in NW Raleigh! It offers >>>> competitive >>>> pay and benefits and a regular 37-1/2 work week! >>>> >>>> REQUIRED SKILLS: Developer, Security, Full Life Cycle Development >>>> PREFERRED SKILLS: Ruby on Rails, Linux, Oracle, 4 Year Degree, >>>> AGILE >>>> Methodology >>>> >>>> _______________________________________________ >>>> raleigh-rb-members mailing list >>>> raleigh-rb-members at rubyforge.org >>> 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 >> _______________________________________________ >> 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 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061201/c0f4ecbd/attachment-0001.html From nospam at tonyspencer.com Fri Dec 1 12:46:49 2006 From: nospam at tonyspencer.com (Tony Spencer) Date: Fri, 01 Dec 2006 12:46:49 -0500 Subject: [raleigh.rb] a ruby job opening In-Reply-To: References: <298c4d2a0612010619x96d1b2brd42e1b6d3d5b1aa0@mail.gmail.com> <09AD6982-E0A4-4682-9832-E66B955D056C@nc.rr.com> <45704F00.5090802@tonyspencer.com> Message-ID: <45706A89.9060704@tonyspencer.com> Oh yeah I'm definitely glad to see jobs popping up as well. I was just having a bit of Friday fun. :) From my perspective as a hirer, there is a lack of experiences Rails developers in the world due to the young age of the framework. TJ Stankus wrote: > Agreed that job descriptions should be vetted by clueful developers. > But, it IS nice to see Rails jobs out there. It makes the whole "if > you can't change your organization, change organizations" credo a bit > easier to follow. > > -TJ > > On 12/1/06, Tony Spencer wrote: >> It must be a great job! There are lots of exclamations! I'm sure you >> can make it hackproof Jared! >> >> Jared Richardson wrote: >>> hackproof? Oh dear..... >>> >>> jared >>> http://jaredrichardson.net >>> >>> On Dec 1, 2006, at 9:19 AM, Charlie Bowman wrote: >>> >>>> I thought there would be some people on this list who would be >>>> interested. This was sent to me by a recruiter yesterday. >>>> >>>> >>>> Charlie, >>>> >>>> I hope you are doing well these days and staying quite busy. I was >>>> wondering if you could help me out in regards to this position below. Is >>>> there anyone you've worked with that may be interested in a position >>>> in the >>>> Raleigh/Durham area? >>>> >>>> Mike Brittain >>>> MATRIX Recruiter >>>> 919-653-1503 >>>> >>>> ------------------------------ >>>> ---------------------------------------------------------------------------------- >>>> >>>> POSITION: Developer >>>> LOCATION: Raleigh >>>> REFERENCE: PRTP20680 (Not available on web site) >>>> >>>> DESCRIPTION: >>>> Great opportunity to use latest technology in major app migration! >>>> Join an >>>> existing team of 2 other Developer/Analysts to work on a major application >>>> migration effort! In this role, you will serve as a Systems >>>> Analyst/Software Developer and you must be able and willing to work in a >>>> "Ruby on Rails" development environment! You must also be able to design >>>> and code to very secure (hackproof) requirements and also be able to >>>> conduct code reviews of other code (probably 10% of overall time). You >>>> must also be willing and able to participate in full life cycle >>>> development >>>> including requirements gathering, spec development, coding, unit testing, >>>> etc. Qualified canddidates will ideally have Ruby on Rails experience >>>> but >>>> Java and/or Python app dev experience will also be considered! This is a >>>> full-time, permanent position based in NW Raleigh! It offers competitive >>>> pay and benefits and a regular 37-1/2 work week! >>>> >>>> REQUIRED SKILLS: Developer, Security, Full Life Cycle Development >>>> PREFERRED SKILLS: Ruby on Rails, Linux, Oracle, 4 Year Degree, AGILE >>>> Methodology >>>> >>>> _______________________________________________ >>>> 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 >> _______________________________________________ >> 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 lists-jared at nc.rr.com Fri Dec 1 12:56:25 2006 From: lists-jared at nc.rr.com (Jared Richardson) Date: Fri, 1 Dec 2006 12:56:25 -0500 Subject: [raleigh.rb] a ruby job opening In-Reply-To: <45706A89.9060704@tonyspencer.com> References: <298c4d2a0612010619x96d1b2brd42e1b6d3d5b1aa0@mail.gmail.com> <09AD6982-E0A4-4682-9832-E66B955D056C@nc.rr.com> <45704F00.5090802@tonyspencer.com> <45706A89.9060704@tonyspencer.com> Message-ID: Agreed! I still remember when Java was about 3 years old and seeing ads for people wanting five and ten years of experience. :) Jared http://jaredrichardson.net On Dec 1, 2006, at 12:46 PM, Tony Spencer wrote: > Oh yeah I'm definitely glad to see jobs popping up as well. I was > just > having a bit of Friday fun. :) > > From my perspective as a hirer, there is a lack of experiences Rails > developers in the world due to the young age of the framework. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061201/20d7af1d/attachment.html From mark.bennett.mail at gmail.com Mon Dec 4 14:41:29 2006 From: mark.bennett.mail at gmail.com (Mark Bennett) Date: Mon, 4 Dec 2006 14:41:29 -0500 Subject: [raleigh.rb] created_by Message-ID: I did some searching for "created_by" to find how people were saving the current user who created the record (in a DRY fashion). I did find some hits of course, but nothing had overwhelming support. Do people just not track who saved the record very often? Or maybe they litter their controllers with "@model.created_by = self.current_user.id". Am I over-thinking this? Mark -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061204/5275e41c/attachment.html From nospam at tonyspencer.com Mon Dec 4 14:52:58 2006 From: nospam at tonyspencer.com (Tony Spencer) Date: Mon, 04 Dec 2006 14:52:58 -0500 Subject: [raleigh.rb] created_by In-Reply-To: References: Message-ID: <45747C9A.5010905@tonyspencer.com> I've been wondering the same thing. created_by and modified_by are two things that seem to go hand in hand with dates for me. It seems natural to me too Mark. Mark Bennett wrote: > I did some searching for "created_by" to find how people were saving the > current user who created the record (in a DRY fashion). I did find some > hits of course, but nothing had overwhelming support. Do people just > not track who saved the record very often? Or maybe they litter their > controllers with "@ model.created_by = self.current_user.id". Am I > over-thinking this? > > Mark > > > ------------------------------------------------------------------------ > > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members From rdaigle at alterthought.com Mon Dec 4 15:06:26 2006 From: rdaigle at alterthought.com (Ryan Daigle) Date: Mon, 4 Dec 2006 15:06:26 -0500 Subject: [raleigh.rb] created_by In-Reply-To: References: Message-ID: <5D521F9B-404B-4BCC-9BA1-D84F9F7E699D@alterthought.com> I think it's good to use your model associations to help you out here. For instance: class User < ActiveRecord::Base has_many :posts end class Post < ActiveRecord::Base belongs_to :user, :foreign_key => "created_by" end Then every time you tell a user to create a post you get the stamp you want: user.posts << Post.new({every param but the user id}) or user.posts.create(params) Does that get you where you want to be? -Ryan On Dec 4, 2006, at 2:41 PM, Mark Bennett wrote: I did some searching for "created_by" to find how people were saving the current user who created the record (in a DRY fashion). I did find some hits of course, but nothing had overwhelming support. Do people just not track who saved the record very often? Or maybe they litter their controllers with "@ model.created_by = self.current_user.id". Am I over-thinking this? Mark _______________________________________________ raleigh-rb-members mailing list raleigh-rb-members at rubyforge.org http://rubyforge.org/mailman/listinfo/raleigh-rb-members From pelargir at gmail.com Mon Dec 4 15:50:55 2006 From: pelargir at gmail.com (Matthew) Date: Mon, 4 Dec 2006 15:50:55 -0500 Subject: [raleigh.rb] Interesting post on asking and answering questions Message-ID: I found this interesting enough to share with the group: http://headrush.typepad.com/creating_passionate_users/2006/12/how_to_build_a_.html Here's an excerpt: "Most user communities take a typical path--the newbies *ask* questions, and a select group of more advanced users *answer* them. But that's a slow path to building the community, and it leaves a huge gaping hole in the middle where most users drop out. If we want to keep beginning and intermediate users more engaged (and increase the pool of question *answerers*), we need them to shift from asker to answerer much earlier in their learning curve." Matthew -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061204/0e3fb567/attachment.html From mark.bennett.mail at gmail.com Mon Dec 4 15:52:10 2006 From: mark.bennett.mail at gmail.com (Mark Bennett) Date: Mon, 4 Dec 2006 15:52:10 -0500 Subject: [raleigh.rb] created_by In-Reply-To: <5D521F9B-404B-4BCC-9BA1-D84F9F7E699D@alterthought.com> References: <5D521F9B-404B-4BCC-9BA1-D84F9F7E699D@alterthought.com> Message-ID: This method seems cleaner. Rather than manipulating a field we are saying this record belongs that user. I may have been leaning towards a more implicit/invisible solution like created_at (which may not be a good idea), but I can also see the value of seeing the relationship. At the very least it seems going with object rather than the primitive id (the way I did) would be more proper. Thanks. Mark On 12/4/06, Ryan Daigle wrote: > > I think it's good to use your model associations to help you out > here. For instance: > > class User < ActiveRecord::Base > has_many :posts > end > > class Post < ActiveRecord::Base > belongs_to :user, :foreign_key => "created_by" > end > > Then every time you tell a user to create a post you get the stamp > you want: > > user.posts << Post.new({every param but the user id}) > or > user.posts.create(params) > > Does that get you where you want to be? > > -Ryan > > On Dec 4, 2006, at 2:41 PM, Mark Bennett wrote: > > I did some searching for "created_by" to find how people were saving > the current user who created the record (in a DRY fashion). I did > find some hits of course, but nothing had overwhelming support. Do > people just not track who saved the record very often? Or maybe they > litter their controllers with "@ model.created_by = > self.current_user.id". Am I over-thinking this? > > Mark > _______________________________________________ > 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 > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061204/c460c5cb/attachment.html From kevin.olbrich at gmail.com Mon Dec 4 16:02:57 2006 From: kevin.olbrich at gmail.com (Kevin Olbrich) Date: Mon, 4 Dec 2006 16:02:57 -0500 Subject: [raleigh.rb] created_by In-Reply-To: References: <5D521F9B-404B-4BCC-9BA1-D84F9F7E699D@alterthought.com> Message-ID: There is a plugin that does this... http://www.agilewebdevelopment.com/plugins/userstamp Personally I just end up saving the record id for the user in the appropriate field. You do need to think about what happens when you delete a user record. I tend to make the User act_as_paranoid too. _Kevin On 12/4/06, Mark Bennett wrote: > This method seems cleaner. Rather than manipulating a field we are saying > this record belongs that user. I may have been leaning towards a more > implicit/invisible solution like created_at (which may not be a good idea), > but I can also see the value of seeing the relationship. > > At the very least it seems going with object rather than the primitive id > (the way I did) would be more proper. Thanks. > > Mark > > > On 12/4/06, Ryan Daigle wrote: > > I think it's good to use your model associations to help you out > > here. For instance: > > > > class User < ActiveRecord::Base > > has_many :posts > > end > > > > class Post < ActiveRecord::Base > > belongs_to :user, :foreign_key => "created_by" > > end > > > > Then every time you tell a user to create a post you get the stamp > > you want: > > > > user.posts << Post.new({every param but the user id}) > > or > > user.posts.create(params) > > > > Does that get you where you want to be? > > > > -Ryan > > > > On Dec 4, 2006, at 2:41 PM, Mark Bennett wrote: > > > > I did some searching for "created_by" to find how people were saving > > the current user who created the record (in a DRY fashion). I did > > find some hits of course, but nothing had overwhelming support. Do > > people just not track who saved the record very often? Or maybe they > > litter their controllers with "@ model.created_by = > > self.current_user.id ". Am I over-thinking this? > > > > Mark > > _______________________________________________ > > 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 > > > > > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > > -- Kevin Olbrich kevin.olbrich at gmail.com CONFIDENTIAL Unless otherwise indicated or obvious from the nature of the following communication, the information contained herein is a privileged and confidential information/work product. The communication is intended for the use of the individual or entity named above. It the reader of this transmission is not the intended recipient, you are hereby notified that any dissemination, distribution, or copying of this communication is strictly prohibited. If you have received this communication in error or are not sure whether it is privileged, please immediately notify us by return e-mail and destroy any copies, electronic, paper, or otherwise, which you may have of this communication. From rdaigle at alterthought.com Mon Dec 4 16:17:26 2006 From: rdaigle at alterthought.com (Ryan Daigle) Date: Mon, 4 Dec 2006 16:17:26 -0500 Subject: [raleigh.rb] Interesting post on asking and answering questions In-Reply-To: References: Message-ID: <41870C85-5141-404F-AA62-E46D9434707E@alterthought.com> Cliff notes version: be nice to people. Good post - I definitely agree with the premise. Thanks Matt. On Dec 4, 2006, at 3:50 PM, Matthew wrote: I found this interesting enough to share with the group: http://headrush.typepad.com/creating_passionate_users/2006/12/ how_to_build_a_.html Here's an excerpt: "Most user communities take a typical path--the newbies ask questions, and a select group of more advanced users answer them. But that's a slow path to building the community, and it leaves a huge gaping hole in the middle where most users drop out. If we want to keep beginning and intermediate users more engaged (and increase the pool of question answerers), we need them to shift from asker to answerer much earlier in their learning curve." Matthew _______________________________________________ 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: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061204/b97271e9/attachment.html From geoff at geoffdavis.net Mon Dec 4 16:20:15 2006 From: geoff at geoffdavis.net (Geoff Davis) Date: Mon, 4 Dec 2006 16:20:15 -0500 Subject: [raleigh.rb] Searchable, local ruby reference Message-ID: <5D1EE8EA-A668-4C6C-97AD-AA4F7B95D960@geoffdavis.net> As I am still a bit of a Ruby n00b, I find myself referring to the pickaxe book all the time. Does anyone know of a good electronic reference that is (a) available offline, and (b) easily searchable? I'm using a Mac if that matters. I've seen a few HTML documentation bundles, but they all appear to be outdated (e.g. 1.6 and before) From nathaniel at talbott.ws Mon Dec 4 16:26:51 2006 From: nathaniel at talbott.ws (Nathaniel Talbott) Date: Mon, 4 Dec 2006 16:26:51 -0500 Subject: [raleigh.rb] Searchable, local ruby reference In-Reply-To: <5D1EE8EA-A668-4C6C-97AD-AA4F7B95D960@geoffdavis.net> References: <5D1EE8EA-A668-4C6C-97AD-AA4F7B95D960@geoffdavis.net> Message-ID: <80D14C52-B8F2-49E9-B16C-4700B3B2DC5B@talbott.ws> On Dec 4, 2006, at 16:20 , Geoff Davis wrote: > As I am still a bit of a Ruby n00b, I find myself referring to the > pickaxe book all the time. > > Does anyone know of a good electronic reference that is (a) available > offline, and (b) easily searchable? I'm using a Mac if that matters. > > I've seen a few HTML documentation bundles, but they all appear to be > outdated (e.g. 1.6 and before) I use my PDF version of the 2nd edition Pickaxe when I'm away from my desk. Works pretty well (though of course it isn't free). -- Nathaniel Talbott <:((>< From adam at thewilliams.ws Mon Dec 4 16:41:05 2006 From: adam at thewilliams.ws (Adam Williams) Date: Mon, 4 Dec 2006 16:41:05 -0500 Subject: [raleigh.rb] Searchable, local ruby reference In-Reply-To: <80D14C52-B8F2-49E9-B16C-4700B3B2DC5B@talbott.ws> References: <5D1EE8EA-A668-4C6C-97AD-AA4F7B95D960@geoffdavis.net> <80D14C52-B8F2-49E9-B16C-4700B3B2DC5B@talbott.ws> Message-ID: <52309219-A134-41A3-AD32-F68E182C009B@thewilliams.ws> +1 And as for the Rails codebase, I highly recommend finding the code in vendor/rails. This exposes you to well written Ruby, the Rails files that have what you are looking for, and a deeper understanding of how things work. aiwilliams On Dec 4, 2006, at 4:26 PM, Nathaniel Talbott wrote: > On Dec 4, 2006, at 16:20 , Geoff Davis wrote: > >> As I am still a bit of a Ruby n00b, I find myself referring to the >> pickaxe book all the time. >> >> Does anyone know of a good electronic reference that is (a) available >> offline, and (b) easily searchable? I'm using a Mac if that matters. >> >> I've seen a few HTML documentation bundles, but they all appear to be >> outdated (e.g. 1.6 and before) > > I use my PDF version of the 2nd edition Pickaxe when I'm away from my > desk. Works pretty well (though of course it isn't free). > > > -- > Nathaniel Talbott > > <:((>< > > > _______________________________________________ > 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 Dec 4 17:08:49 2006 From: tj at stank.us (TJ Stankus) Date: Mon, 4 Dec 2006 17:08:49 -0500 Subject: [raleigh.rb] Searchable, local ruby reference In-Reply-To: <52309219-A134-41A3-AD32-F68E182C009B@thewilliams.ws> References: <5D1EE8EA-A668-4C6C-97AD-AA4F7B95D960@geoffdavis.net> <80D14C52-B8F2-49E9-B16C-4700B3B2DC5B@talbott.ws> <52309219-A134-41A3-AD32-F68E182C009B@thewilliams.ws> Message-ID: +1 for PDFs of technical books in general. Between a Safari subscription and PDFs of Prag Prog and other publishers' books I've pretty much gotten to the point of not buying hardcopies for tech books. For searching the PDFs I just use Preview's search. It's not great, but it's servicable. -TJ On 12/4/06, Adam Williams wrote: > +1 > > And as for the Rails codebase, I highly recommend finding the code in > vendor/rails. This exposes you to well written Ruby, the Rails files > that have what you are looking for, and a deeper understanding of how > things work. > > aiwilliams > > On Dec 4, 2006, at 4:26 PM, Nathaniel Talbott wrote: > > > On Dec 4, 2006, at 16:20 , Geoff Davis wrote: > > > >> As I am still a bit of a Ruby n00b, I find myself referring to the > >> pickaxe book all the time. > >> > >> Does anyone know of a good electronic reference that is (a) available > >> offline, and (b) easily searchable? I'm using a Mac if that matters. > >> > >> I've seen a few HTML documentation bundles, but they all appear to be > >> outdated (e.g. 1.6 and before) > > > > I use my PDF version of the 2nd edition Pickaxe when I'm away from my > > desk. Works pretty well (though of course it isn't free). > > > > > > -- > > 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 kevin.olbrich at gmail.com Mon Dec 4 20:50:55 2006 From: kevin.olbrich at gmail.com (Kevin Olbrich) Date: Mon, 4 Dec 2006 20:50:55 -0500 Subject: [raleigh.rb] Searchable, local ruby reference In-Reply-To: References: <5D1EE8EA-A668-4C6C-97AD-AA4F7B95D960@geoffdavis.net> <80D14C52-B8F2-49E9-B16C-4700B3B2DC5B@talbott.ws> <52309219-A134-41A3-AD32-F68E182C009B@thewilliams.ws> Message-ID: In theory, you could build the Ruby RDocs and use gem_server to peruse them, but I usually rely on the pickaxe myself. _Kevin On 12/4/06, TJ Stankus wrote: > +1 for PDFs of technical books in general. Between a Safari > subscription and PDFs of Prag Prog and other publishers' books I've > pretty much gotten to the point of not buying hardcopies for tech > books. For searching the PDFs I just use Preview's search. It's not > great, but it's servicable. > > -TJ > > On 12/4/06, Adam Williams wrote: > > +1 > > > > And as for the Rails codebase, I highly recommend finding the code in > > vendor/rails. This exposes you to well written Ruby, the Rails files > > that have what you are looking for, and a deeper understanding of how > > things work. > > > > aiwilliams > > > > On Dec 4, 2006, at 4:26 PM, Nathaniel Talbott wrote: > > > > > On Dec 4, 2006, at 16:20 , Geoff Davis wrote: > > > > > >> As I am still a bit of a Ruby n00b, I find myself referring to the > > >> pickaxe book all the time. > > >> > > >> Does anyone know of a good electronic reference that is (a) available > > >> offline, and (b) easily searchable? I'm using a Mac if that matters. > > >> > > >> I've seen a few HTML documentation bundles, but they all appear to be > > >> outdated (e.g. 1.6 and before) > > > > > > I use my PDF version of the 2nd edition Pickaxe when I'm away from my > > > desk. Works pretty well (though of course it isn't free). > > > > > > > > > -- > > > 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 > > > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > -- Kevin Olbrich kevin.olbrich at gmail.com CONFIDENTIAL Unless otherwise indicated or obvious from the nature of the following communication, the information contained herein is a privileged and confidential information/work product. The communication is intended for the use of the individual or entity named above. It the reader of this transmission is not the intended recipient, you are hereby notified that any dissemination, distribution, or copying of this communication is strictly prohibited. If you have received this communication in error or are not sure whether it is privileged, please immediately notify us by return e-mail and destroy any copies, electronic, paper, or otherwise, which you may have of this communication. From lists-jared at nc.rr.com Mon Dec 4 21:34:41 2006 From: lists-jared at nc.rr.com (Jared Richardson) Date: Mon, 4 Dec 2006 21:34:41 -0500 Subject: [raleigh.rb] Searchable, local ruby reference In-Reply-To: <5D1EE8EA-A668-4C6C-97AD-AA4F7B95D960@geoffdavis.net> References: <5D1EE8EA-A668-4C6C-97AD-AA4F7B95D960@geoffdavis.net> Message-ID: Have you been here? http://www.ruby-doc.org/downloads jared http://jaredrichardson.net On Dec 4, 2006, at 4:20 PM, Geoff Davis wrote: > As I am still a bit of a Ruby n00b, I find myself referring to the > pickaxe book all the time. > > Does anyone know of a good electronic reference that is (a) available > offline, and (b) easily searchable? I'm using a Mac if that matters. > > I've seen a few HTML documentation bundles, but they all appear to be > outdated (e.g. 1.6 and before) > _______________________________________________ > 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: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061204/3138b210/attachment-0001.html From pelargir at gmail.com Mon Dec 4 21:49:22 2006 From: pelargir at gmail.com (Matthew) Date: Mon, 4 Dec 2006 21:49:22 -0500 Subject: [raleigh.rb] Fwd: Possible work In-Reply-To: <45732A00.7030306@ipass.net> References: <45732A00.7030306@ipass.net> Message-ID: This was given to me by a trusted former co-worker and I'm passing it along in case anyone happens to be interested in an equity deal. Matthew =============== I am looking for experts who have Ruby on Rails (RoR) and agile development experience who are interested in working on a vertically-focused social networking start-up. Positions will be equity-based at first but there is an immediate potential for this to turn into full-time, well-paying gig. If you are interested in something like this -- or know someone who might be -- please contact me. Thanks! - Brent Brent Cohen Santa Monica, CA 310-664-0180 www.circlebuilder.com Occupation: Technology Expertise: Social networking applications, technology start-ups, nonprofit management, politics, marketing, advertising, branding -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061204/c2917de2/attachment.html From paul.damer at duke.edu Mon Dec 4 15:25:40 2006 From: paul.damer at duke.edu (Paul Damer) Date: Mon, 04 Dec 2006 15:25:40 -0500 Subject: [raleigh.rb] created_by In-Reply-To: References: Message-ID: <45748444.6080502@duke.edu> I think what you want is the userstamp plugin http://delynnberry.com/projects/userstamp/ It nicely sets created_by and updated_by for you in a very DRY manner. I think that some people aren't super comfortable about it because it isn't a thread safe solution and it is sort of a hack. Anyways, it is working great for us. Paul Mark Bennett wrote: > I did some searching for "created_by" to find how people were saving the > current user who created the record (in a DRY fashion). I did find some > hits of course, but nothing had overwhelming support. Do people just > not track who saved the record very often? Or maybe they litter their > controllers with "@ model.created_by = self.current_user.id". Am I > over-thinking this? > > Mark > > > ------------------------------------------------------------------------ > > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members From geoff at geoffdavis.net Wed Dec 6 00:24:27 2006 From: geoff at geoffdavis.net (Geoff Davis) Date: Wed, 6 Dec 2006 00:24:27 -0500 Subject: [raleigh.rb] created_by In-Reply-To: <45748444.6080502@duke.edu> References: <45748444.6080502@duke.edu> Message-ID: <747DABFB-BFF8-4FB7-BB1B-DC09478F999A@geoffdavis.net> Why does thread safety matter? Isn't Rails single threaded? On Dec 4, 2006, at 3:25 PM, Paul Damer wrote: > I think what you want is the userstamp plugin > > http://delynnberry.com/projects/userstamp/ > > It nicely sets created_by and updated_by for you in a very DRY manner. > I think that some people aren't super comfortable about it because it > isn't a thread safe solution and it is sort of a hack. > > Anyways, it is working great for us. > Paul > > Mark Bennett wrote: >> I did some searching for "created_by" to find how people were >> saving the >> current user who created the record (in a DRY fashion). I did >> find some >> hits of course, but nothing had overwhelming support. Do people just >> not track who saved the record very often? Or maybe they litter >> their >> controllers with "@ model.created_by = self.current_user.id". Am I >> over-thinking this? >> >> Mark >> >> >> --------------------------------------------------------------------- >> --- >> >> _______________________________________________ >> 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 mark.bennett.mail at gmail.com Wed Dec 6 07:43:16 2006 From: mark.bennett.mail at gmail.com (Mark Bennett) Date: Wed, 6 Dec 2006 07:43:16 -0500 Subject: [raleigh.rb] created_by In-Reply-To: <45748444.6080502@duke.edu> References: <45748444.6080502@duke.edu> Message-ID: That's good. I found that plugin but there was very little mention from anyone saying whether they use it or if they like it. Not the way that acts_as_authenticated seems to get a lot of love in the blogs. Glad to hear this one is working for you. Mark On 12/4/06, Paul Damer wrote: > > I think what you want is the userstamp plugin > > http://delynnberry.com/projects/userstamp/ > > It nicely sets created_by and updated_by for you in a very DRY manner. > I think that some people aren't super comfortable about it because it > isn't a thread safe solution and it is sort of a hack. > > Anyways, it is working great for us. > Paul > > Mark Bennett wrote: > > I did some searching for "created_by" to find how people were saving the > > current user who created the record (in a DRY fashion). I did find some > > hits of course, but nothing had overwhelming support. Do people just > > not track who saved the record very often? Or maybe they litter their > > controllers with "@ model.created_by = self.current_user.id". Am I > > over-thinking this? > > > > Mark > > > > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > 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 > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061206/f6acbdaf/attachment.html From kevin.olbrich at gmail.com Wed Dec 6 08:23:44 2006 From: kevin.olbrich at gmail.com (Kevin Olbrich) Date: Wed, 6 Dec 2006 08:23:44 -0500 Subject: [raleigh.rb] created_by In-Reply-To: References: <45748444.6080502@duke.edu> Message-ID: FWIW, I'm currently using the userstamp plugin with no problems (so far). _Kevin On 12/6/06, Mark Bennett wrote: > That's good. I found that plugin but there was very little mention from > anyone saying whether they use it or if they like it. Not the way that > acts_as_authenticated seems to get a lot of love in the blogs. Glad to hear > this one is working for you. > > Mark > > > On 12/4/06, Paul Damer wrote: > > I think what you want is the userstamp plugin > > > > http://delynnberry.com/projects/userstamp/ > > > > It nicely sets created_by and updated_by for you in a very DRY manner. > > I think that some people aren't super comfortable about it because it > > isn't a thread safe solution and it is sort of a hack. > > > > Anyways, it is working great for us. > > Paul > > > > Mark Bennett wrote: > > > I did some searching for "created_by" to find how people were saving the > > > current user who created the record (in a DRY fashion). I did find some > > > hits of course, but nothing had overwhelming support. Do people just > > > not track who saved the record very often? Or maybe they litter their > > > controllers with "@ model.created_by = self.current_user.id". Am I > > > over-thinking this? > > > > > > Mark > > > > > > > > > > ------------------------------------------------------------------------ > > > > > > _______________________________________________ > > > 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 > > > > > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > > -- Kevin Olbrich kevin.olbrich at gmail.com CONFIDENTIAL Unless otherwise indicated or obvious from the nature of the following communication, the information contained herein is a privileged and confidential information/work product. The communication is intended for the use of the individual or entity named above. It the reader of this transmission is not the intended recipient, you are hereby notified that any dissemination, distribution, or copying of this communication is strictly prohibited. If you have received this communication in error or are not sure whether it is privileged, please immediately notify us by return e-mail and destroy any copies, electronic, paper, or otherwise, which you may have of this communication. From fatcatt316 at yahoo.com Wed Dec 6 14:41:35 2006 From: fatcatt316 at yahoo.com (Joe Peck) Date: Wed, 6 Dec 2006 11:41:35 -0800 (PST) Subject: [raleigh.rb] Paypal with Ruby on Rails In-Reply-To: <90CCCF47-8775-46CF-8E01-BD1431121C9E@pragmaticprogrammer.com> Message-ID: <389706.72730.qm@web61221.mail.yahoo.com> Hey everybody. I've got some good sources on learning about Paypal with RoR, but most of them seem to operate on the assumption that people will be paying me through Paypal. All I want to do is have my program pay people automatically; they don't need to be able to pay me. Has anyone done this in RoR (simple automatic payment to customers using PayPal)? Thanks for the help so far. Joe Andrew Hunt wrote: On Nov 29, 2006, at 4:30 PM, Joe Peck wrote: > Hey, > > I've been looking for a good plugin or tutorial concerning using > PayPal through Ruby on Rails, but am having little luck. Does > anyone know of a good way to implement PayPal using RoR? > http://www.pragmaticprogrammer.com/titles/jfpaypal/index.html "Payment Processing with Paypal and Ruby" As the publisher, I am of course biased :-) /\ndy _______________________________________________ raleigh-rb-members mailing list raleigh-rb-members at rubyforge.org http://rubyforge.org/mailman/listinfo/raleigh-rb-members --------------------------------- Check out the all-new Yahoo! Mail beta - Fire up a more powerful email and get things done faster. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061206/7dc54808/attachment.html From dbrady at pobox.com Wed Dec 6 15:19:39 2006 From: dbrady at pobox.com (Don Brady) Date: Wed, 06 Dec 2006 15:19:39 -0500 Subject: [raleigh.rb] Job Possibility (not Ruby as of now) Message-ID: <457725DB.6090706@pobox.com> Please tell me if this is too far of topic and if so, I apologize. A NC Insurance company headquartered in NW Raleigh is looking to fill three permanent staff positions. These are actually Java positions but it seems to me that the ideal candidate would be the type of person who is interested in modern languages such as Ruby. Ruby is not on their horizons at the present time but I will *try* (no guarantees) to get them to try it later when an appropriate project come along. The openings are for web services, portal, and application server administrator positions. We have at least got to the point if a little Jython use so who knows maybe we could work in some Ruby at some point. I would be interested in chatting with *anyone* on this list who might be interested in a stable job - they could email me or call me between 7:30 p.m. and 11 p.m. any night at 469-8565 (no agencies or consulting companies please). I am a consultant to the company who does development for them and not any kind of commissioned agent or anything..... Regards, Don From fatcatt316 at yahoo.com Thu Dec 7 14:57:05 2006 From: fatcatt316 at yahoo.com (Joe Peck) Date: Thu, 7 Dec 2006 11:57:05 -0800 (PST) Subject: [raleigh.rb] MassPay API with RoR Message-ID: <20061207195706.77254.qmail@web61219.mail.yahoo.com> Hi everyone, Has anyone used MassPay API? I'm trying to pay customers automatically through Paypal, but it's hard to find good information on this. If anyone has any advice on it, it'd be appreciated. Joe --------------------------------- Want to start your own business? Learn how on Yahoo! Small Business. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061207/078a5a06/attachment-0001.html From geoff at geoffdavis.net Thu Dec 14 18:01:40 2006 From: geoff at geoffdavis.net (Geoff Davis) Date: Thu, 14 Dec 2006 18:01:40 -0500 Subject: [raleigh.rb] Help with References: <457741AB.1090000@schepers.cc> Message-ID: <0C08FE4A-41BD-4FC1-9BC5-3F165C450FAF@geoffdavis.net> Hi all-- A friend of a friend, Jeff Rafter, is writing/editing an XML book, Beginning XML 4th ed for Wrox, and he finds himself in need of a reality check for Ruby on Rails. I don't know anything about web services in Rails, but I thought there might be someone on the list who he could ask some questions? Here is what he's trying to figure out. Geoff Begin forwarded message: > -------- Original Message -------- > Subject: Case study > Date: Thu, 7 Dec 2006 00:15:33 +0200 > From: Jeff Rafter > To: Doug Schepers > > Hi Schepers, > > > Here is the basic outline of the project: > > > > 1. > > Static HTML Page for consumers to enter loan details. This page > contains Javascript which posts the form contents to a local > webservice for > payment stream calculation > > 2. > > The local web service receives a SOAP request containing 10 > parameters > (loan amount, interest rate, term, etc) builds an XML document > corresponding > to a public XML schema and passes this document to a remote > webservice > > 3. > > The details of the remote web service are not covered in this > application-- it is a third party service that cannot be modified. > > 4. > > The remote web service responds to the local web service and pushes > the results back to the javascript in the page. The page handles > the > responseXML from the XMLHttpRequest object using standard DOM > methods to > populate a table of payments and an SVG graph of balance payoff. > > > The .NET based sample of this is: http://compliancestudio.com/sample > > > I can also make the initial .NET based case study available. > > > In Ruby on Rails the approach can be done the same way using a > static HTML > page which communicates with a Rails based Web Service (based on > ActionWebService). The handler inside of the ActionWebService can > use soap4r > to communicate with the remote web service. For example, using the > soap4r > gem: > > > require 'soap/wsdlDriver' > > require 'xsd/xmlparser/rexmlparser' > > > factory = SOAP::WSDLDriverFactory.new(" > http://compliancestudio.com/beginningXML/service.asmx?WSDL") > > compliance_studio_service = factory.create_rpc_driver > > compliance_studio_service.return_response_as_xml = true > > response = compliance_studio_service.CalculateApr( \ > > :PaymentRequestType => "Long", \ > > :Program => "Fixed", \ > > :TotalAPRFeesAmount => 3988, \ > > :FundingDayRequest => false, \ > > :FullyIndexedRate => false, \ > > :IndexValue => 0, \ > > :MarginValue => 0, \ > > :OriginalLoanAmount => 250000, \ > > :DisclosedTotalSalesPriceAmount => 0, \ > > :PropertyAppraisedValueAmount => 300000, \ > > :NoteRatePercent => 0.08, \ > > :LoanOriginalMaturityTermMonths => 360, \ > > :ApplicationSignedDate => DateTime.parse("2006-11-15"), \ > > :LoanEstimatedClosingDate => DateTime.parse("2006-11-15"), \ > > :ScheduledFirstPaymentDate => DateTime.parse("2006-11-15"), \ > > :EstimatedPrepaidDays => 15) > > > ... > > compliance_studio_service.reset_stream > > > The results can be passed back to the HTML page XMLHttpRequest > object and > processed as is being done in the existing example. Passing back > raw XML as > the response of an ActionWebService is problematic (it always wants to > escape it from < to < for example). > > In Rails though, this doesn't seem to be the recommendation. > Instead, one > should generate the results of the page using render :partial and > the like. > So I have a couple of alternatives: > > > > - > > Use REST based approaches instead of web services within rails and > still communicate using XHR > - > > Don't use XHR at all per se. Instead of writing to the DOM of the > page, make the page a controller and render :partial for the SVG > and Table > - > > Use RJS somehow clever > > > I also have the option of sticking with what I got. An interesting > solution > is to use ActiveResource, but looks like that is not due out until > Rails 2.0 > > > Thanks, > > Jeff From tj at stank.us Thu Dec 14 21:55:15 2006 From: tj at stank.us (TJ Stankus) Date: Thu, 14 Dec 2006 21:55:15 -0500 Subject: [raleigh.rb] Help with In-Reply-To: <0C08FE4A-41BD-4FC1-9BC5-3F165C450FAF@geoffdavis.net> References: <457741AB.1090000@schepers.cc> <0C08FE4A-41BD-4FC1-9BC5-3F165C450FAF@geoffdavis.net> Message-ID: http://www.ryandaigle.com/articles/2006/11/20/whats-new-in-edge-rails-activeresource-pulled-world-weeps According to comments in Ryan's blog, Active Resource may never be folded into core Rails. But, Action Web Service is coming out too. So, to approach web services-related Rails problems based on which of these is currently in core is sort of a moot decision at this point. -TJ On 12/14/06, Geoff Davis wrote: > Hi all-- > > A friend of a friend, Jeff Rafter, is writing/editing an XML book, > Beginning XML 4th ed for Wrox, and he finds himself in need of a > reality check for Ruby on Rails. > > I don't know anything about web services in Rails, but I thought > there might be someone on the list who he could ask some questions? > Here is what he's trying to figure out. > > Geoff > > Begin forwarded message: > > > -------- Original Message -------- > > Subject: Case study > > Date: Thu, 7 Dec 2006 00:15:33 +0200 > > From: Jeff Rafter > > To: Doug Schepers > > > > Hi Schepers, > > > > > > Here is the basic outline of the project: > > > > > > > > 1. > > > > Static HTML Page for consumers to enter loan details. This page > > contains Javascript which posts the form contents to a local > > webservice for > > payment stream calculation > > > > 2. > > > > The local web service receives a SOAP request containing 10 > > parameters > > (loan amount, interest rate, term, etc) builds an XML document > > corresponding > > to a public XML schema and passes this document to a remote > > webservice > > > > 3. > > > > The details of the remote web service are not covered in this > > application-- it is a third party service that cannot be modified. > > > > 4. > > > > The remote web service responds to the local web service and pushes > > the results back to the javascript in the page. The page handles > > the > > responseXML from the XMLHttpRequest object using standard DOM > > methods to > > populate a table of payments and an SVG graph of balance payoff. > > > > > > The .NET based sample of this is: http://compliancestudio.com/sample > > > > > > I can also make the initial .NET based case study available. > > > > > > In Ruby on Rails the approach can be done the same way using a > > static HTML > > page which communicates with a Rails based Web Service (based on > > ActionWebService). The handler inside of the ActionWebService can > > use soap4r > > to communicate with the remote web service. For example, using the > > soap4r > > gem: > > > > > > require 'soap/wsdlDriver' > > > > require 'xsd/xmlparser/rexmlparser' > > > > > > factory = SOAP::WSDLDriverFactory.new(" > > http://compliancestudio.com/beginningXML/service.asmx?WSDL") > > > > compliance_studio_service = factory.create_rpc_driver > > > > compliance_studio_service.return_response_as_xml = true > > > > response = compliance_studio_service.CalculateApr( \ > > > > :PaymentRequestType => "Long", \ > > > > :Program => "Fixed", \ > > > > :TotalAPRFeesAmount => 3988, \ > > > > :FundingDayRequest => false, \ > > > > :FullyIndexedRate => false, \ > > > > :IndexValue => 0, \ > > > > :MarginValue => 0, \ > > > > :OriginalLoanAmount => 250000, \ > > > > :DisclosedTotalSalesPriceAmount => 0, \ > > > > :PropertyAppraisedValueAmount => 300000, \ > > > > :NoteRatePercent => 0.08, \ > > > > :LoanOriginalMaturityTermMonths => 360, \ > > > > :ApplicationSignedDate => DateTime.parse("2006-11-15"), \ > > > > :LoanEstimatedClosingDate => DateTime.parse("2006-11-15"), \ > > > > :ScheduledFirstPaymentDate => DateTime.parse("2006-11-15"), \ > > > > :EstimatedPrepaidDays => 15) > > > > > > ... > > > > compliance_studio_service.reset_stream > > > > > > The results can be passed back to the HTML page XMLHttpRequest > > object and > > processed as is being done in the existing example. Passing back > > raw XML as > > the response of an ActionWebService is problematic (it always wants to > > escape it from < to < for example). > > > > In Rails though, this doesn't seem to be the recommendation. > > Instead, one > > should generate the results of the page using render :partial and > > the like. > > So I have a couple of alternatives: > > > > > > > > - > > > > Use REST based approaches instead of web services within rails and > > still communicate using XHR > > - > > > > Don't use XHR at all per se. Instead of writing to the DOM of the > > page, make the page a controller and render :partial for the SVG > > and Table > > - > > > > Use RJS somehow clever > > > > > > I also have the option of sticking with what I got. An interesting > > solution > > is to use ActiveResource, but looks like that is not due out until > > Rails 2.0 > > > > > > Thanks, > > > > Jeff > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > -- TJ Stankus http://tj.stank.us/ From pkristoff at acm.org Sun Dec 17 14:15:29 2006 From: pkristoff at acm.org (pkristoff at acm.org) Date: Sun, 17 Dec 2006 14:15:29 -0500 Subject: [raleigh.rb] Example of downloading a file to the client machine using rails Message-ID: <00ad01c7220f$b77265d0$1b02a8c0@PaulsLaptopII> Hey, Does someone have an example of downloading a file to the client machine from a web browser using rails (this is not to be confused with uploading a file to the server)? I have never done this in the rails world or any other world as the matter goes. Thanks in advance, Paul Kristoff 214-598-9610 PKristoff at acm.org www.PaulKristoff.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061217/86c10b18/attachment.html From tj at stank.us Sun Dec 17 14:41:05 2006 From: tj at stank.us (TJ Stankus) Date: Sun, 17 Dec 2006 14:41:05 -0500 Subject: [raleigh.rb] Example of downloading a file to the client machine using rails In-Reply-To: <00ad01c7220f$b77265d0$1b02a8c0@PaulsLaptopII> References: <00ad01c7220f$b77265d0$1b02a8c0@PaulsLaptopII> Message-ID: Unless, I'm misunderstanding you, there's nothing special that has to be done. The client browser and how it handles the particular type of file should handle it. For example, if it's a pdf, just link to it like you would any other resource and the browser handles it from there (open with Acrobat reader plugin, download to disk, etc.) If you're trying to specify a certain filetype or filename to the browser, you could set the response headers with something like this in your controller action: # Tell the browser this is an Excel file headers["Content-Type"] = "application/vnd.ms-excel" headers["Content-Disposition"] = "filename=my_excel_file.xls" HTH, -TJ On 12/17/06, pkristoff at acm.org wrote: > > > > > Hey, > > > > Does someone have an example of downloading a file to the client machine > from a web browser using rails (this is not to be confused with uploading a > file to the server)? I have never done this in the rails world or any other > world as the matter goes. > > > > Thanks in advance, > > > > Paul Kristoff > > 214-598-9610 > > PKristoff at acm.org > > www.PaulKristoff.com > > > > > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > > -- TJ Stankus http://tj.stank.us/ From kevin.olbrich at gmail.com Sun Dec 17 15:06:06 2006 From: kevin.olbrich at gmail.com (Kevin Olbrich) Date: Sun, 17 Dec 2006 15:06:06 -0500 Subject: [raleigh.rb] Example of downloading a file to the client machine using rails In-Reply-To: <00ad01c7220f$b77265d0$1b02a8c0@PaulsLaptopII> References: <00ad01c7220f$b77265d0$1b02a8c0@PaulsLaptopII> Message-ID: You can just do this... note that I'm using 'acts_as_attachment' here, but the general idea is valid. def download @attachment = Attachment.find(params[:id]) send_file "#{@attachment.public_filename}" end _Kevin On 12/17/06, pkristoff at acm.org wrote: > > > > > Hey, > > > > Does someone have an example of downloading a file to the client machine > from a web browser using rails (this is not to be confused with uploading a > file to the server)? I have never done this in the rails world or any other > world as the matter goes. > > > > Thanks in advance, > > > > Paul Kristoff > > 214-598-9610 > > PKristoff at acm.org > > www.PaulKristoff.com > > > > > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > > -- Kevin Olbrich kevin.olbrich at gmail.com CONFIDENTIAL Unless otherwise indicated or obvious from the nature of the following communication, the information contained herein is a privileged and confidential information/work product. The communication is intended for the use of the individual or entity named above. It the reader of this transmission is not the intended recipient, you are hereby notified that any dissemination, distribution, or copying of this communication is strictly prohibited. If you have received this communication in error or are not sure whether it is privileged, please immediately notify us by return e-mail and destroy any copies, electronic, paper, or otherwise, which you may have of this communication. From charlesmbowman at gmail.com Mon Dec 18 12:40:31 2006 From: charlesmbowman at gmail.com (Charlie Bowman) Date: Mon, 18 Dec 2006 12:40:31 -0500 Subject: [raleigh.rb] Example of downloading a file to the client machine using rails In-Reply-To: References: <00ad01c7220f$b77265d0$1b02a8c0@PaulsLaptopII> Message-ID: <298c4d2a0612180940w79972625x62900a3edc123817@mail.gmail.com> http://www.recentrambles.com/pragmatic/view/62 Above is a tutorial I wrote on this topic back in May. On 12/17/06, Kevin Olbrich wrote: > > You can just do this... note that I'm using 'acts_as_attachment' here, > but the general idea is valid. > > def download > @attachment = Attachment.find(params[:id]) > send_file "#{@attachment.public_filename}" > end > > _Kevin > > On 12/17/06, pkristoff at acm.org wrote: > > > > > > > > > > Hey, > > > > > > > > Does someone have an example of downloading a file to the client > machine > > from a web browser using rails (this is not to be confused with > uploading a > > file to the server)? I have never done this in the rails world or any > other > > world as the matter goes. > > > > > > > > Thanks in advance, > > > > > > > > Paul Kristoff > > > > 214-598-9610 > > > > PKristoff at acm.org > > > > www.PaulKristoff.com > > > > > > > > > > _______________________________________________ > > raleigh-rb-members mailing list > > raleigh-rb-members at rubyforge.org > > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > > > > > > > -- > Kevin Olbrich > kevin.olbrich at gmail.com > > CONFIDENTIAL > Unless otherwise indicated or obvious from the nature of the following > communication, the information contained herein is a privileged and > confidential information/work product. The communication is intended > for the use of the individual or entity named above. It the reader of > this transmission is not the intended recipient, you are hereby > notified that any dissemination, distribution, or copying of this > communication is strictly prohibited. If you have received this > communication in error or are not sure whether it is privileged, > please immediately notify us by return e-mail and destroy any copies, > electronic, paper, or otherwise, which you may have of this > communication. > _______________________________________________ > 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: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061218/d404d2a8/attachment-0001.html From lists-jared at nc.rr.com Mon Dec 18 15:28:23 2006 From: lists-jared at nc.rr.com (Jared Richardson) Date: Mon, 18 Dec 2006 15:28:23 -0500 Subject: [raleigh.rb] Graphic designer? In-Reply-To: <298c4d2a0612180940w79972625x62900a3edc123817@mail.gmail.com> References: <00ad01c7220f$b77265d0$1b02a8c0@PaulsLaptopII> <298c4d2a0612180940w79972625x62900a3edc123817@mail.gmail.com> Message-ID: Hi all, A project I'm on is looking for a graphic designer who can help with a Rails project. If anyone has someone they've worked with and would recommend, please pass their name on. Thanks! Jared http://jaredrichardson.net From rdaigle at alterthought.com Mon Dec 18 15:29:36 2006 From: rdaigle at alterthought.com (Ryan Daigle) Date: Mon, 18 Dec 2006 15:29:36 -0500 Subject: [raleigh.rb] Graphic designer? In-Reply-To: References: <00ad01c7220f$b77265d0$1b02a8c0@PaulsLaptopII> <298c4d2a0612180940w79972625x62900a3edc123817@mail.gmail.com> Message-ID: <030E98C1-085B-4DBC-B405-D79547B37D86@alterthought.com> As coincidence would have it, I'm also looking around for good designers with a technical slant... On Dec 18, 2006, at 3:28 PM, Jared Richardson wrote: Hi all, A project I'm on is looking for a graphic designer who can help with a Rails project. If anyone has someone they've worked with and would recommend, please pass their name on. Thanks! Jared http://jaredrichardson.net _______________________________________________ raleigh-rb-members mailing list raleigh-rb-members at rubyforge.org http://rubyforge.org/mailman/listinfo/raleigh-rb-members From jared.haworth at gmail.com Mon Dec 18 15:34:02 2006 From: jared.haworth at gmail.com (Jared Haworth) Date: Mon, 18 Dec 2006 15:34:02 -0500 Subject: [raleigh.rb] Graphic designer? In-Reply-To: References: <00ad01c7220f$b77265d0$1b02a8c0@PaulsLaptopII> <298c4d2a0612180940w79972625x62900a3edc123817@mail.gmail.com> Message-ID: <47F49968-5ED6-451F-ADFA-A8B5BCDB2319@gmail.com> That's remarkable, I was just preparing to post the same question to the list: I guess it's a good time to be a designer willing to work with Rails! Jared Haworth Set & Service Resources On Dec 18, 2006, at 3:28 PM, Jared Richardson wrote: > Hi all, > > A project I'm on is looking for a graphic designer who can help with > a Rails project. If anyone has someone they've worked with and would > recommend, please pass their name on. > > Thanks! > > Jared > http://jaredrichardson.net > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members From fatcatt316 at yahoo.com Mon Dec 18 15:38:26 2006 From: fatcatt316 at yahoo.com (Joe Peck) Date: Mon, 18 Dec 2006 12:38:26 -0800 (PST) Subject: [raleigh.rb] Graphic designer? In-Reply-To: Message-ID: <984945.40220.qm@web61214.mail.yahoo.com> Hey, The web designer at my work is up for some side work. His email is jayme at notsleepy.com. Joe Jared Richardson wrote: Hi all, A project I'm on is looking for a graphic designer who can help with a Rails project. If anyone has someone they've worked with and would recommend, please pass their name on. Thanks! Jared http://jaredrichardson.net _______________________________________________ raleigh-rb-members mailing list raleigh-rb-members at rubyforge.org http://rubyforge.org/mailman/listinfo/raleigh-rb-members __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061218/37295083/attachment.html From adam at thewilliams.ws Mon Dec 18 16:58:37 2006 From: adam at thewilliams.ws (Adam Williams) Date: Mon, 18 Dec 2006 16:58:37 -0500 Subject: [raleigh.rb] Graphic designer? In-Reply-To: <47F49968-5ED6-451F-ADFA-A8B5BCDB2319@gmail.com> References: <00ad01c7220f$b77265d0$1b02a8c0@PaulsLaptopII> <298c4d2a0612180940w79972625x62900a3edc123817@mail.gmail.com> <47F49968-5ED6-451F-ADFA-A8B5BCDB2319@gmail.com> Message-ID: You likely already know of him, I don't know his availability, but ping Mr. Long at john at wiseheartdesign.com. On Dec 18, 2006, at 3:34 PM, Jared Haworth wrote: > That's remarkable, I was just preparing to post the same question to > the list: I guess it's a good time to be a designer willing to work > with Rails! > > Jared Haworth > Set & Service Resources > > On Dec 18, 2006, at 3:28 PM, Jared Richardson wrote: > >> Hi all, >> >> A project I'm on is looking for a graphic designer who can help with >> a Rails project. If anyone has someone they've worked with and would >> recommend, please pass their name on. >> >> Thanks! >> >> Jared >> http://jaredrichardson.net >> _______________________________________________ >> 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 nathaniel at talbott.ws Mon Dec 18 17:49:12 2006 From: nathaniel at talbott.ws (Nathaniel Talbott) Date: Mon, 18 Dec 2006 17:49:12 -0500 Subject: [raleigh.rb] Graphic designer? In-Reply-To: References: <00ad01c7220f$b77265d0$1b02a8c0@PaulsLaptopII> <298c4d2a0612180940w79972625x62900a3edc123817@mail.gmail.com> Message-ID: On Dec 18, 2006, at 15:28 , Jared Richardson wrote: > A project I'm on is looking for a graphic designer who can help with > a Rails project. If anyone has someone they've worked with and would > recommend, please pass their name on. I emailed Jared about this privately, but since so many others have chimed in, I'll also mention it publicly: my company, Terralien, does design as well as development work. We have some availability currently, and I'd love to discuss projects with anyone interested. HTH, -- Nathaniel Talbott http://terralien.com/ From lists-jared at nc.rr.com Mon Dec 18 20:15:17 2006 From: lists-jared at nc.rr.com (Jared Richardson) Date: Mon, 18 Dec 2006 20:15:17 -0500 Subject: [raleigh.rb] Graphic designer? In-Reply-To: <984945.40220.qm@web61214.mail.yahoo.com> References: <984945.40220.qm@web61214.mail.yahoo.com> Message-ID: <9A7CFA68-F6E5-4E3D-A36D-90F7F2063B8E@nc.rr.com> Thanks all! I've forwarded these names onto our teams' GUI guy. Jared http://jaredrichardson.net On Dec 18, 2006, at 3:38 PM, Joe Peck wrote: > Hey, > > The web designer at my work is up for some side work. His email is > jayme at notsleepy.com. > > Joe > > Jared Richardson wrote: > Hi all, > > A project I'm on is looking for a graphic designer who can help with > a Rails project. If anyone has someone they've worked with and would > recommend, please pass their name on. > > Thanks! > > Jared > http://jaredrichardson.net > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > > _______________________________________________ > 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: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061218/e068f2c4/attachment.html From nathaniel at talbott.ws Tue Dec 19 13:13:14 2006 From: nathaniel at talbott.ws (Nathaniel Talbott) Date: Tue, 19 Dec 2006 13:13:14 -0500 Subject: [raleigh.rb] Pre-Meeting Chow Message-ID: <271E65A2-4F6E-4FC6-8D97-B10086E724C6@talbott.ws> As usual, anyone who's available is invited to join me at 5:30 tonight at Baja Burrito (http://rubyurl.com/CGF) to grab dinner and some Ruby chatter before heading over to Red Hat for the meeting. While by no means required, a quick RSVP (just reply to this email with "In!" or somesuch) would be great. Looking forward to it, -- Nathaniel Talbott <:((>< From larry.karnowski at gmail.com Tue Dec 19 14:39:54 2006 From: larry.karnowski at gmail.com (Larry Karnowski) Date: Tue, 19 Dec 2006 14:39:54 -0500 Subject: [raleigh.rb] Pre-Meeting Chow In-Reply-To: <271E65A2-4F6E-4FC6-8D97-B10086E724C6@talbott.ws> References: <271E65A2-4F6E-4FC6-8D97-B10086E724C6@talbott.ws> Message-ID: <2b27183e0612191139j12db7bfek498266e16ffa5b37@mail.gmail.com> I'll be there. On 12/19/06, Nathaniel Talbott wrote: > As usual, anyone who's available is invited to join me at 5:30 > tonight at Baja Burrito (http://rubyurl.com/CGF) to grab dinner and > some Ruby chatter before heading over to Red Hat for the meeting. > > While by no means required, a quick RSVP (just reply to this email > with "In!" or somesuch) would be great. > > Looking forward to it, > > > -- > Nathaniel Talbott > > <:((>< > > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > From lists-jared at nc.rr.com Tue Dec 19 15:09:08 2006 From: lists-jared at nc.rr.com (Jared Richardson) Date: Tue, 19 Dec 2006 15:09:08 -0500 Subject: [raleigh.rb] Graphic designer? In-Reply-To: References: <00ad01c7220f$b77265d0$1b02a8c0@PaulsLaptopII> <298c4d2a0612180940w79972625x62900a3edc123817@mail.gmail.com> Message-ID: <0E359578-D6CD-44EA-925D-7A5E220EB106@nc.rr.com> Hi all, My wife just pointed out that she just used these guys for her web site and they also do graphic design. http://www.freakstylemediagroup.com/ My contact (as of 2 minutes ago) is tim AT thefmgroup.net They seem to be mainly PHP instead of Rails though. So you can add these guys onto the other great suggestions that have been posted already. Jared http://jaredrichardson.net On Dec 18, 2006, at 3:28 PM, Jared Richardson wrote: > Hi all, > > A project I'm on is looking for a graphic designer who can help with > a Rails project. If anyone has someone they've worked with and would > recommend, please pass their name on. > > Thanks! > > Jared > http://jaredrichardson.net > _______________________________________________ > 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: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061219/e46a4423/attachment-0001.html From atomgiant at gmail.com Tue Dec 19 17:08:27 2006 From: atomgiant at gmail.com (Tom Davies) Date: Tue, 19 Dec 2006 17:08:27 -0500 Subject: [raleigh.rb] [OT]: Accountant Recommendation Message-ID: I am looking for a recommendation for a good accountant and thought this list might be a good place to ask. I am primarily looking for an accountant for tax preparation but I also am interested in one who is well versed in small business accounting. Thanks for your help. -- Tom Davies http://atomgiant.com http://gifthat.com From larry.karnowski at gmail.com Tue Dec 19 19:05:36 2006 From: larry.karnowski at gmail.com (Larry Karnowski) Date: Tue, 19 Dec 2006 19:05:36 -0500 Subject: [raleigh.rb] IRC on freenode.net: #raleigh.rb Message-ID: <2b27183e0612191605v32394987v3845bcb888e4097d@mail.gmail.com> All, Here's a friendly reminder that you can log in, tune out, and get your Ruby on in our very own IRC channel on freenode.net. It's #raleigh.rb! This channel has been around since our first meetup over at the Red Hat headquarters. We're just starting out, but there's usually someone in there. Log in and introduce yourself! Hope to see you there, Larry "Lawjoskar" Karnowski From kevin.olbrich at gmail.com Tue Dec 19 22:23:08 2006 From: kevin.olbrich at gmail.com (Kevin Olbrich) Date: Tue, 19 Dec 2006 22:23:08 -0500 Subject: [raleigh.rb] CED Blog Message-ID: Jared asked me to pass this along. It's the official blog of the CED (Council for Entrepreneurial Development). http://www.cednc.org/news/blog/ RSS: http://www.cednc.org/news/blog/index.xml As a plug... I use www.rssfwd.com to have the latest post emailed to me. Who needs an RSS reader anyway? -- Kevin Olbrich kevin.olbrich at gmail.com From lists-jared at nc.rr.com Wed Dec 20 11:09:30 2006 From: lists-jared at nc.rr.com (Jared Richardson) Date: Wed, 20 Dec 2006 11:09:30 -0500 Subject: [raleigh.rb] [OT]: Accountant Recommendation In-Reply-To: References: Message-ID: <07FF97E0-3157-486D-8D5B-5D79AC85F20A@nc.rr.com> Courtney Campbell http://www.ccampbellcpa.com/ Jared http://jaredrichardson.net On Dec 19, 2006, at 5:08 PM, Tom Davies wrote: > I am looking for a recommendation for a good accountant and thought > this list might be a good place to ask. I am primarily looking for an > accountant for tax preparation but I also am interested in one who is > well versed in small business accounting. > > Thanks for your help. > > -- > Tom Davies > > http://atomgiant.com > http://gifthat.com > _______________________________________________ > 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: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061220/80e0c3e7/attachment.html From nathaniel at talbott.ws Wed Dec 20 12:27:29 2006 From: nathaniel at talbott.ws (Nathaniel Talbott) Date: Wed, 20 Dec 2006 12:27:29 -0500 Subject: [raleigh.rb] [OT]: Accountant Recommendation In-Reply-To: References: Message-ID: <9BEFEF0E-627E-47C5-B829-36D0A1433D6F@talbott.ws> On Dec 19, 2006, at 17:08 , Tom Davies wrote: > I am looking for a recommendation for a good accountant and thought > this list might be a good place to ask. I am primarily looking for an > accountant for tax preparation but I also am interested in one who is > well versed in small business accounting. I've been using Jeff Roscoe down in Apex since I incorporated, and have been really happy with him: Jeff Roscoe Roscoe & Roscoe, P.A. 1001 Pemberton Hill Rd. Suite 201 Apex, NC 27502 919.362.7600 -- Nathaniel Talbott <:((>< From kevin.olbrich at gmail.com Wed Dec 20 12:31:42 2006 From: kevin.olbrich at gmail.com (Kevin Olbrich) Date: Wed, 20 Dec 2006 12:31:42 -0500 Subject: [raleigh.rb] [OT]: Accountant Recommendation In-Reply-To: <9BEFEF0E-627E-47C5-B829-36D0A1433D6F@talbott.ws> References: <9BEFEF0E-627E-47C5-B829-36D0A1433D6F@talbott.ws> Message-ID: Along those lines, I could use some suggestions for who to use to incorporate (i.e., a lawyer). _Kevin On 12/20/06, Nathaniel Talbott wrote: > On Dec 19, 2006, at 17:08 , Tom Davies wrote: > > > I am looking for a recommendation for a good accountant and thought > > this list might be a good place to ask. I am primarily looking for an > > accountant for tax preparation but I also am interested in one who is > > well versed in small business accounting. > > I've been using Jeff Roscoe down in Apex since I incorporated, and > have been really happy with him: > > Jeff Roscoe > Roscoe & Roscoe, P.A. > 1001 Pemberton Hill Rd. Suite 201 > Apex, NC 27502 > 919.362.7600 > > > -- > Nathaniel Talbott > > <:((>< > > > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > -- Kevin Olbrich kevin.olbrich at gmail.com From fatcatt316 at yahoo.com Wed Dec 20 12:32:15 2006 From: fatcatt316 at yahoo.com (Joe Peck) Date: Wed, 20 Dec 2006 09:32:15 -0800 (PST) Subject: [raleigh.rb] [OT]: Accountant Recommendation In-Reply-To: <9BEFEF0E-627E-47C5-B829-36D0A1433D6F@talbott.ws> Message-ID: <20061220173216.54864.qmail@web61223.mail.yahoo.com> Try contacting Billy Landis at wtlandis at ncsu.edu Nathaniel Talbott wrote: On Dec 19, 2006, at 17:08 , Tom Davies wrote: > I am looking for a recommendation for a good accountant and thought > this list might be a good place to ask. I am primarily looking for an > accountant for tax preparation but I also am interested in one who is > well versed in small business accounting. I've been using Jeff Roscoe down in Apex since I incorporated, and have been really happy with him: Jeff Roscoe Roscoe & Roscoe, P.A. 1001 Pemberton Hill Rd. Suite 201 Apex, NC 27502 919.362.7600 -- Nathaniel Talbott <:((>< _______________________________________________ raleigh-rb-members mailing list raleigh-rb-members at rubyforge.org http://rubyforge.org/mailman/listinfo/raleigh-rb-members __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061220/79449cec/attachment.html From geoff at geoffdavis.net Wed Dec 20 12:49:06 2006 From: geoff at geoffdavis.net (Geoff Davis) Date: Wed, 20 Dec 2006 12:49:06 -0500 Subject: [raleigh.rb] [OT]: Lawyer Recommendation In-Reply-To: References: <9BEFEF0E-627E-47C5-B829-36D0A1433D6F@talbott.ws> Message-ID: <15C47FE9-8BDF-4655-8125-143FF6ECF55D@geoffdavis.net> I've been happy with bizfilings.com On Dec 20, 2006, at 12:31 PM, Kevin Olbrich wrote: > Along those lines, I could use some suggestions for who to use to > incorporate (i.e., a lawyer). > > _Kevin > > On 12/20/06, Nathaniel Talbott wrote: >> On Dec 19, 2006, at 17:08 , Tom Davies wrote: >> >>> I am looking for a recommendation for a good accountant and thought >>> this list might be a good place to ask. I am primarily looking >>> for an >>> accountant for tax preparation but I also am interested in one >>> who is >>> well versed in small business accounting. >> >> I've been using Jeff Roscoe down in Apex since I incorporated, and >> have been really happy with him: >> >> Jeff Roscoe >> Roscoe & Roscoe, P.A. >> 1001 Pemberton Hill Rd. Suite 201 >> Apex, NC 27502 >> 919.362.7600 >> >> >> -- >> Nathaniel Talbott >> >> <:((>< >> >> >> _______________________________________________ >> raleigh-rb-members mailing list >> raleigh-rb-members at rubyforge.org >> http://rubyforge.org/mailman/listinfo/raleigh-rb-members >> > > > -- > Kevin Olbrich > kevin.olbrich at gmail.com > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > From nathaniel at talbott.ws Wed Dec 20 13:04:21 2006 From: nathaniel at talbott.ws (Nathaniel Talbott) Date: Wed, 20 Dec 2006 13:04:21 -0500 Subject: [raleigh.rb] [OT]: Accountant Recommendation In-Reply-To: References: <9BEFEF0E-627E-47C5-B829-36D0A1433D6F@talbott.ws> Message-ID: <9FD9746D-B3F1-4950-B650-0AE56FB83D39@talbott.ws> On Dec 20, 2006, at 12:31 , Kevin Olbrich wrote: > Along those lines, I could use some suggestions for who to use to > incorporate (i.e., a lawyer). I use Ted Danchi: Ted Danchi Stam, Fordham and Danchi, P.A. 510 W. Williams St. Apex, NC 27502 919.362.8873 He set me up with an S Corp for a very reasonable flat fee. One thing I'll note, is that he's going to tell you to talk to an accountant first about what corporate structure to form, since a lot of that decision is based off of tax issues not liability issues. HTH, -- Nathaniel Talbott <:((>< From kevin.olbrich at gmail.com Wed Dec 20 13:16:12 2006 From: kevin.olbrich at gmail.com (Kevin Olbrich) Date: Wed, 20 Dec 2006 13:16:12 -0500 Subject: [raleigh.rb] [OT]: Accountant Recommendation In-Reply-To: <9FD9746D-B3F1-4950-B650-0AE56FB83D39@talbott.ws> References: <9BEFEF0E-627E-47C5-B829-36D0A1433D6F@talbott.ws> <9FD9746D-B3F1-4950-B650-0AE56FB83D39@talbott.ws> Message-ID: Guess I need an accountant recommendation now.. oh wait. That's where we started. ;) Thanks again. _Kevin On 12/20/06, Nathaniel Talbott wrote: > On Dec 20, 2006, at 12:31 , Kevin Olbrich wrote: > > > Along those lines, I could use some suggestions for who to use to > > incorporate (i.e., a lawyer). > > I use Ted Danchi: > > Ted Danchi > Stam, Fordham and Danchi, P.A. > 510 W. Williams St. > Apex, NC 27502 > 919.362.8873 > > He set me up with an S Corp for a very reasonable flat fee. One thing > I'll note, is that he's going to tell you to talk to an accountant > first about what corporate structure to form, since a lot of that > decision is based off of tax issues not liability issues. > > HTH, > > > -- > Nathaniel Talbott > > <:((>< > > > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > -- Kevin Olbrich kevin.olbrich at gmail.com From mark.bennett.mail at gmail.com Wed Dec 20 14:02:25 2006 From: mark.bennett.mail at gmail.com (Mark Bennett) Date: Wed, 20 Dec 2006 14:02:25 -0500 Subject: [raleigh.rb] [OT]: Accountant Recommendation In-Reply-To: References: <9BEFEF0E-627E-47C5-B829-36D0A1433D6F@talbott.ws> <9FD9746D-B3F1-4950-B650-0AE56FB83D39@talbott.ws> Message-ID: Hmm, now if I only knew a graphic designer. Doh! On 12/20/06, Kevin Olbrich wrote: > > Guess I need an accountant recommendation now.. oh wait. That's where > we started. ;) > > Thanks again. > > _Kevin > > On 12/20/06, Nathaniel Talbott wrote: > > On Dec 20, 2006, at 12:31 , Kevin Olbrich wrote: > > > > > Along those lines, I could use some suggestions for who to use to > > > incorporate (i.e., a lawyer). > > > > I use Ted Danchi: > > > > Ted Danchi > > Stam, Fordham and Danchi, P.A. > > 510 W. Williams St. > > Apex, NC 27502 > > 919.362.8873 > > > > He set me up with an S Corp for a very reasonable flat fee. One thing > > I'll note, is that he's going to tell you to talk to an accountant > > first about what corporate structure to form, since a lot of that > > decision is based off of tax issues not liability issues. > > > > HTH, > > > > > > -- > > Nathaniel Talbott > > > > <:((>< > > > > > > _______________________________________________ > > raleigh-rb-members mailing list > > raleigh-rb-members at rubyforge.org > > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > > > > > -- > Kevin Olbrich > kevin.olbrich at gmail.com > _______________________________________________ > 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: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061220/7c240bfa/attachment.html From atomgiant at gmail.com Thu Dec 21 16:37:54 2006 From: atomgiant at gmail.com (Tom Davies) Date: Thu, 21 Dec 2006 16:37:54 -0500 Subject: [raleigh.rb] [OT]: Accountant Recommendation In-Reply-To: References: <9BEFEF0E-627E-47C5-B829-36D0A1433D6F@talbott.ws> <9FD9746D-B3F1-4950-B650-0AE56FB83D39@talbott.ws> Message-ID: Thanks everyone for all of the recommendations. And thanks the for lawyer recommendations too. That was going to be my next question :) Tom From pkristoff at acm.org Sat Dec 23 16:10:14 2006 From: pkristoff at acm.org (pkristoff at acm.org) Date: Sat, 23 Dec 2006 16:10:14 -0500 Subject: [raleigh.rb] Example of downloading a file to the clientmachine using rails In-Reply-To: <298c4d2a0612180940w79972625x62900a3edc123817@mail.gmail.com> Message-ID: <00fa01c726d6$bde692d0$1b02a8c0@PaulsLaptopII> Kevin, Charlie, TJ, Sorry it has taken me so long to reply. Being the Christmas season and all, I have not had time to look at this. Charlie, I looked at your tutorial and tried it. I made the following call: send_file('C:\\Documents and Settings\\Paul Kristoff\\Desktop\\TimeSheet.csv', :filename => 'foo.csv', :types => 'text/csv', :disposition => 'attachment', :streaming => 'false') The file contents end up on my web page. This is not what I intended. What I was trying to do was have the contents of the file be saved on the client's machine. What do I need to do in the web page to get this to happen? Or is it something I need to pass to send_file? Thanks, Paul Kristoff 214-598-9610 PKristoff at acm.org www.PaulKristoff.com _____ From: raleigh-rb-members-bounces at rubyforge.org [mailto:raleigh-rb-members-bounces at rubyforge.org] On Behalf Of Charlie Bowman Sent: Monday, December 18, 2006 12:41 PM To: The mailing list of raleigh.rb Subject: Re: [raleigh.rb] Example of downloading a file to the clientmachine using rails http://www.recentrambles.com/pragmatic/view/62 Above is a tutorial I wrote on this topic back in May. On 12/17/06, Kevin Olbrich wrote: You can just do this... note that I'm using 'acts_as_attachment' here, but the general idea is valid. def download @attachment = Attachment.find(params[:id]) send_file "#{@attachment.public_filename }" end _Kevin On 12/17/06, pkristoff at acm.org wrote: > > > > > Hey, > > > > Does someone have an example of downloading a file to the client machine > from a web browser using rails (this is not to be confused with uploading a > file to the server)? I have never done this in the rails world or any other > world as the matter goes. > > > > Thanks in advance, > > > > Paul Kristoff > > 214-598-9610 > > PKristoff at acm.org > > www.PaulKristoff.com > > > > > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > > -- Kevin Olbrich kevin.olbrich at gmail.com CONFIDENTIAL Unless otherwise indicated or obvious from the nature of the following communication, the information contained herein is a privileged and confidential information/work product. The communication is intended for the use of the individual or entity named above. It the reader of this transmission is not the intended recipient, you are hereby notified that any dissemination, distribution, or copying of this communication is strictly prohibited. If you have received this communication in error or are not sure whether it is privileged, please immediately notify us by return e-mail and destroy any copies, electronic, paper, or otherwise, which you may have of this communication. _______________________________________________ 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: http://rubyforge.org/pipermail/raleigh-rb-members/attachments/20061223/e1329fe2/attachment-0001.html From geoff at geoffdavis.net Mon Dec 25 11:49:22 2006 From: geoff at geoffdavis.net (Geoff Davis) Date: Mon, 25 Dec 2006 11:49:22 -0500 Subject: [raleigh.rb] That's so wrong... Message-ID: <88499CFC-5D92-4839-8015-0D1C714BC981@geoffdavis.net> Nathaniel as a dancing elf: http://www.elfyourself.com/?userid=edeaad690e2b08f734032c0G06122214 Merry Christmas! From larry.karnowski at gmail.com Mon Dec 25 23:31:59 2006 From: larry.karnowski at gmail.com (Larry Karnowski) Date: Mon, 25 Dec 2006 23:31:59 -0500 Subject: [raleigh.rb] That's so wrong... In-Reply-To: <88499CFC-5D92-4839-8015-0D1C714BC981@geoffdavis.net> References: <88499CFC-5D92-4839-8015-0D1C714BC981@geoffdavis.net> Message-ID: <2b27183e0612252031o7e5bcd42o8e4cb2802d26849f@mail.gmail.com> AAAHHH! Frightening! ;-) (I've seen some of these elf photos... but that pic of Nathaniel is... unique.) Merry Christmas everybody! Larry On 12/25/06, Geoff Davis wrote: > Nathaniel as a dancing elf: > > http://www.elfyourself.com/?userid=edeaad690e2b08f734032c0G06122214 > > Merry Christmas! > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members >