First Book Club Book

6 views
Skip to first unread message

Ben Oakes

unread,
Nov 29, 2011, 9:10:01 AM11/29/11
to newhaven.rb
Hi all,

The idea of having a Ruby reading group has come up in a couple
threads. I'm interested in gauging how many others would be
interested.

Here's a summary of books that have been discussed:

* Ben: [Design Patterns in Ruby](http://designpatternsinruby.com/)
* Dan: [Eloquent Ruby](http://eloquentruby.com/)
* Joel: [The Little Schemer](http://www.ccs.neu.edu/home/matthias/
BTLS/)

Related threads:

* [Dependency Injection in Ruby](http://groups.google.com/group/
newhavenrb/browse_thread/thread/394729e5364f1a00)
* [Why strings and symbols have to be different for hash access?]
(http://groups.google.com/group/newhavenrb/browse_thread/thread/
2f7139b85b617c0a)

Anybody else interested? Chime in with your pick. If we have enough
interest, I'll take the picks, make a poll, and we can move on from
there.

Best wishes,

Ben

jnimety

unread,
Nov 29, 2011, 9:19:46 AM11/29/11
to newhaven.rb
I'm interested and all of those titles sound interesting.

Kam Lasater

unread,
Nov 29, 2011, 9:52:36 AM11/29/11
to newha...@googlegroups.com
+1 on being part of it.

No idea what the "right" books are.

-Kam Lasater
@seekayel | @seeclickfix

--
http://SeeClickFix.com - User Focused Government - Report issues in the public space, Advocate for resolution, Track the status of fixes, Connect with neighbors.

Diego Scataglini

unread,
Nov 29, 2011, 10:11:07 AM11/29/11
to newha...@googlegroups.com
I am for little schemer (I own little & seasoned) OR any functional language book like:

Land of Lisp: Learn to Program in Lisp, One Game at a Time! http://www.amazon.com/Land-Lisp-Learn-Program-Game/dp/1593272812/ref=sr_1_1?s=books&ie=UTF8&qid=1322578940&sr=1-1

Jonathan E. Magen

unread,
Nov 29, 2011, 10:13:41 AM11/29/11
to newha...@googlegroups.com
I have said for many years that Ruby is the lovechild of Smalltalk and
Lisp. I'd advise books on either language as ancillary topical books.
In terms of a Lisp book, I'd point to Practical Common Lisp (available
free here: http://gigamonkeys.com/book/ ) as a great intro (and covers
OO in Lisp, hooray!) and suggest dicking around with Clojure. Lisp is
actually my first language and I've been meaning to tinker with it.

I would second Diego's suggestion of a book about functional
programming as I know I often have issues grasping the functional
paradigm and wish I could use it more in Ruby.

--
Jonathan E. Magen
203-936-9665
http://www.yonkeltron.com
GTALK: yonke...@gmail.com
http://twitter.com/yonkeltron
ב"ה

Diego Scataglini

unread,
Nov 29, 2011, 10:16:48 AM11/29/11
to newha...@googlegroups.com
I went through most of little schemer & I think it's a wonderful book.
I love the format so much that I have been thinking about creating an interactive version for css & clojure for quite a while, the strangeness of my pick for pilot languages strikes me too.

Diego Scataglini

Paul Novak

unread,
Nov 29, 2011, 10:50:01 AM11/29/11
to newha...@googlegroups.com
+1 The Little Schemer

Jeremy Hamel

unread,
Nov 29, 2011, 10:14:28 AM11/29/11
to newha...@googlegroups.com
I'm interested, I'm reading now  The Well Ground Rubyist - if anyone wants to discuss this as well..


thanks

Jeremy

On Tue, Nov 29, 2011 at 10:11 AM, Diego Scataglini <dwebs...@gmail.com> wrote:

Jonathan E. Magen

unread,
Nov 29, 2011, 2:59:50 PM11/29/11
to newha...@googlegroups.com

Dan Bernier

unread,
Nov 29, 2011, 3:13:15 PM11/29/11
to newha...@googlegroups.com
(On the other thread, where I shouldn't have,) I suggested Working
Effectively with Legacy Code. Ben mentioned that I suggested Eloquent
Ruby, which I can, heartily, but I had actually suggested Design
Patterns in Ruby, instead. But either way.

Jonathan E. Magen

unread,
Nov 29, 2011, 3:27:25 PM11/29/11
to newha...@googlegroups.com
While I have you (from the other thread):

> Lisp isn't actually a functional language -

I would refer you to Martin Odersky's (Scala inventor and type-system
guru) comments on the definition of functional languages where he
offers a dual-definition based on definition and common perception.
Paraphrasing, says that one can characterize a functional languages as
any language which supports higher-order functions or a more
restrictive definition focused on a lack of mutable state. As he does,
I prefer the looser definition focusing on features. Lisp, was based
in 1956 off of the lambda calculus used for studying function
application devised by Alonzo Church in the 1930s. Now, it has grown
to represent a class of languages based on the original lack-of-syntax
syntax and has been an invaluable testing ground for many of the
functional language features we take for granted such as closures and
the fun stuff they allow.

> it's a paradigm-agnostic
> language. It supports functional equally as well as OO, imperative,
> declarative, logic-oriented, etc.

I disagree with your statement regarding the paradigm-agnosticism.
Having worked with several dialects of Lisp over the years, certain
ones ship with better support or specializations suited to specific
tasks. I wish that Lisp were to be defined more by language
characteristics than just syntax alone! The advent of CLOS, for
example is a relatively-recent development and I am fascinated to see
some Lisp dialects supporting list-like datatypes natively such as
vectors. Awesome developments, right? Are there dialects of lisp which
support logic programming natively?

> That said, I once talked my manager into letting me go to a Lisp
> conference, because it's a functional language, and we were doing more
> functional C# stuff at work. So hey. :)

That. Is. Awesome!!! Which Lisp conf was it?

--

Dan Bernier

unread,
Nov 29, 2011, 9:28:55 PM11/29/11
to newha...@googlegroups.com
On Tue, Nov 29, 2011 at 3:27 PM, Jonathan E. Magen <yonke...@gmail.com> wrote:
> While I have you (from the other thread):
>
>> Lisp isn't actually a functional language -
>
> I would refer you to Martin Odersky's (Scala inventor and type-system
> guru) comments on the definition of functional languages where he
> offers a dual-definition based on definition and common perception.
> Paraphrasing, says that one can characterize a functional languages as
> any language which supports higher-order functions or a more
> restrictive definition focused on a lack of mutable state. As he does,
> I prefer the looser definition focusing on features.

I've only done a little functional programming (in Scheme), and a fair
bit of higher-order stuff (in Ruby, JavaScript, and C#) - but I always
felt the HOF I did in those OO languages was missing something
essential, like I was going against the grain, being a churlish guest
to my OO hosts. Like if I only did-as-the-Romans, I'd have an easier
time in Rome. I'd never have called it functional. (Also, by that
logic, you could call Io a functional language, or Ruby a
prototype-based language, but I don't know how useful that would be.)

I think what we're sitting on either side of here is: do you call it
by its essence, or by everything it offers?

> Lisp, was based
> in 1956 off of the lambda calculus used for studying function
> application devised by Alonzo Church in the 1930s. Now, it has grown
> to represent a class of languages based on the original lack-of-syntax
> syntax and has been an invaluable testing ground for many of the
> functional language features we take for granted such as closures and
> the fun stuff they allow.

That's a good point - it certainly has a functional heritage. But it
seems to me the lack-of-syntax, AST-on-your-fingers language it grew
into is more reflective of what it's used for today, of its nature.

>> it's a paradigm-agnostic
>> language. It supports functional equally as well as OO, imperative,
>> declarative, logic-oriented, etc.
>
> I disagree with your statement regarding the paradigm-agnosticism.
> Having worked with several dialects of Lisp over the years, certain
> ones ship with better support or specializations suited to specific
> tasks. I wish that Lisp were to be defined more by language
> characteristics than just syntax alone! The advent of CLOS, for
> example is a relatively-recent development and I am fascinated to see
> some Lisp dialects supporting list-like datatypes natively such as
> vectors. Awesome developments, right?

Could we say that Lisp (the family) is paradigm-agnostic, but that
Clojure is lazy-functional, Scheme is dynamic-functional, CommonLisp
is (um)...? The Lisp family supports so many different language
characteristics that the lack-of-syntax is the only common feature.

> Are there dialects of lisp which
> support logic programming natively?

I have no idea! I googled a bit and couldn't find any.

All that said, I'm pretty sure you've hacked way more Lisp than I
have. I don't normally argue my points out this much, but this was
fun. My understanding of all this is based more on reading than
hard-earned experience. I hope I can re-read this in a few years and
cringe. (Hello, future me! I know, right? I'm so naive right now!)

>> That said, I once talked my manager into letting me go to a Lisp
>> conference, because it's a functional language, and we were doing more
>> functional C# stuff at work. So hey. :)
>
> That. Is. Awesome!!! Which Lisp conf was it?

ILC 2009 at MIT. I was SO the dumbest guy in the building. It was a great time.

Jonathan E. Magen

unread,
Nov 29, 2011, 9:50:55 PM11/29/11
to newha...@googlegroups.com
Dude, you're like a poet!

On Tue, Nov 29, 2011 at 9:28 PM, Dan Bernier <danbe...@gmail.com> wrote:

> I've only done a little functional programming (in Scheme), and a fair
> bit of higher-order stuff (in Ruby, JavaScript, and C#) - but I always
> felt the HOF I did in those OO languages was missing something
> essential, like I was going against the grain, being a churlish guest
> to my OO hosts. Like if I only did-as-the-Romans, I'd have an easier
> time in Rome. I'd never have called it functional. (Also, by that
> logic, you could call Io a functional language, or Ruby a
> prototype-based language, but I don't know how useful that would be.)
>

I've always held the belief that you don't truly know a language until
you can name 5 things you really don't like about it. The nebulous
status of function objects (Proc/lambda/block) in Ruby makes my list!
Some day I'd like to have a wide-ranging look at the syntax for
lambdas (do I limit myself by not saying "literal function syntax"?)
in different languages. For example, in Smalltalk, Scala, Groovy, Lua
and of course, the upcoming Java lambda stuff.

> I think what we're sitting on either side of here is: do you call it
> by its essence, or by everything it offers?
>

Heavy stuff, man. Heavy.

> That's a good point - it certainly has a functional heritage. But it
> seems to me the lack-of-syntax, AST-on-your-fingers language it grew
> into is more reflective of what it's used for today, of its nature.
>

No other language has been able to convince developers to actually
write programs as syntax trees and proportionally, no other language
has been able to offer the rewards Lisp offers!

>
> Could we say that Lisp (the family) is paradigm-agnostic, but that
> Clojure is lazy-functional, Scheme is dynamic-functional, CommonLisp
> is (um)...? The Lisp family supports so many different language
> characteristics that the lack-of-syntax is the only common feature.
>

Common Lisp is...ummmm. Good question. For the answer:
http://www.stevenhumour.com/wp-content/uploads/2011/06/is-butter-a-carb.jpg


> I have no idea! I googled a bit and couldn't find any.
>

The number of languages whose first implementations were written in
Lisp is staggering. There must be a Prolog or something out there!

> All that said, I'm pretty sure you've hacked way more Lisp than I
> have. I don't normally argue my points out this much, but this was
> fun.

Agreed.

> My understanding of all this is based more on reading than
> hard-earned experience. I hope I can re-read this in a few years and
> cringe. (Hello, future me! I know, right? I'm so naive right now!)
>

Come now, the points can appear tangential to Ruby but actually
possess strong connections to our beloved language! Diego can tell you
more about the Smalltalk roots, though.

> ILC 2009 at MIT. I was SO the dumbest guy in the building. It was a great time.

I love being that guy. In school, our lab group would go over to our
faculty's house for dinner and they were both computer scientists.
We'd go to listen to them get into arguments because when people that
smart argue, they do so in complete thoughts. I kid you not, whole
paragraphs of eloquence pouring out of their mouths. I learned more by
getting them even moderately-liquored up then I did in hours of their
classes!

Dan Bernier

unread,
Nov 29, 2011, 11:18:59 PM11/29/11
to newha...@googlegroups.com
On Tue, Nov 29, 2011 at 9:50 PM, Jonathan E. Magen <yonke...@gmail.com> wrote:
> Dude, you're like a poet!

What can I say? Some topics just move me. :)

> On Tue, Nov 29, 2011 at 9:28 PM, Dan Bernier <danbe...@gmail.com> wrote:
> I've always held the belief that you don't truly know a language until
> you can name 5 things you really don't like about it. The nebulous
> status of function objects (Proc/lambda/block) in Ruby makes my list!

YES. For a while, when I was looking at functional stuff, JavaScript
inched ahead of Ruby, because, as ugly as function(){} is, at least
there's only ONE of them, and it only works in 2 ways.

> Some day I'd like to have a wide-ranging look at the syntax for
> lambdas (do I limit myself by not saying "literal function syntax"?)
> in different languages. For example, in Smalltalk, Scala, Groovy, Lua
> and of course, the upcoming Java lambda stuff.

I was kind of disappointed when I glanced at Lua - it's syntax is
so...normal-looking. But I suspect there's a bangin' little object
model in there that I'm just not making the time to get to know.

>> I think what we're sitting on either side of here is: do you call it
>> by its essence, or by everything it offers?
>>
>
> Heavy stuff, man. Heavy.

I'm sorry, I'll try not to do it again.

>> That's a good point - it certainly has a functional heritage. But it
>> seems to me the lack-of-syntax, AST-on-your-fingers language it grew
>> into is more reflective of what it's used for today, of its nature.
>>
>
> No other language has been able to convince developers to actually
> write programs as syntax trees and proportionally, no other language
> has been able to offer the rewards Lisp offers!

I think the Flexibility/Usability trade-off is relevant here:
http://books.google.com/books?id=l0QPECGQySYC&lpg=PA102&pg=PA103#v=onepage&q&f=false

Lisp really lives up to the Zombo.com promise. "You can do anything at
Zombo.com!" Really? Like what? "Anything at all! The only limit . . .
is YOURSELF."

>> Could we say that Lisp (the family) is paradigm-agnostic, but that
>> Clojure is lazy-functional, Scheme is dynamic-functional, CommonLisp
>> is (um)...? The Lisp family supports so many different language
>> characteristics that the lack-of-syntax is the only common feature.
>>
>
> Common Lisp is...ummmm. Good question. For the answer:
> http://www.stevenhumour.com/wp-content/uploads/2011/06/is-butter-a-carb.jpg

Wow - that actually clears it up a lot. :)

>> I have no idea! I googled a bit and couldn't find any.
>>
>
> The number of languages whose first implementations were written in
> Lisp is staggering. There must be a Prolog or something out there!

I know, right? I was surprised. There probably is, and if you know
someone who knows one well, you can ask them, and they'll tell you
whether it was, but the docs are more about what's neat and different
about it, not its origins.

I have Zombo.com playing now.

Zach

unread,
Dec 20, 2011, 4:55:57 PM12/20/11
to newhaven.rb
Toasting in an epic bread.

I just came here to say if you guys do a book club I'm down, but I'd
rather more code retreats and hackathons.
Reading is all well and good, but hacking is so much more fun.

Z


On Nov 29, 11:18 pm, Dan Bernier <danbern...@gmail.com> wrote:
> On Tue, Nov 29, 2011 at 9:50 PM, Jonathan E. Magen <yonkelt...@gmail.com> wrote:
>
> > Dude, you're like a poet!
>
> What can I say? Some topics just move me. :)
>
> > On Tue, Nov 29, 2011 at 9:28 PM, Dan Bernier <danbern...@gmail.com> wrote:
> > I've always held the belief that you don't truly know a language until
> > you can name 5 things you really don't like about it. The nebulous
> > status of function objects (Proc/lambda/block) in Ruby makes my list!
>
> YES. For a while, when I was looking at functional stuff, JavaScript
> inched ahead of Ruby, because, as ugly as function(){} is, at least
> there's only ONE of them, and it only works in 2 ways.
>
> > Some day I'd like to have a wide-ranging look at the syntax for
> > lambdas (do I limit myself by not saying "literal function syntax"?)
> > in different languages. For example, in Smalltalk, Scala, Groovy, Lua
> > and of course, the upcoming Java lambda stuff.
>
> I was kind of disappointed when I glanced at Lua - it's syntax is
> so...normal-looking. But I suspect there's a bangin' little object
> model in there that I'm just not making the time to get to know.
>
> >> I think what we're sitting on either side of here is: do you call it
> >> by its essence, or by everything it offers?
>
> > Heavy stuff, man. Heavy.
>
> I'm sorry, I'll try not to do it again.
>
> >> That's a good point - it certainly has a functional heritage. But it
> >> seems to me the lack-of-syntax, AST-on-your-fingers language it grew
> >> into is more reflective of what it's used for today, of its nature.
>
> > No other language has been able to convince developers to actually
> > write programs as syntax trees and proportionally, no other language
> > has been able to offer the rewards Lisp offers!
>
> I think the Flexibility/Usability trade-off is relevant here:http://books.google.com/books?id=l0QPECGQySYC&lpg=PA102&pg=PA103#v=on...
>
> Lisp really lives up to the Zombo.com promise. "You can do anything at
> Zombo.com!" Really? Like what? "Anything at all! The only limit . . .
> is YOURSELF."
>
> >> Could we say that Lisp (the family) is paradigm-agnostic, but that
> >> Clojure is lazy-functional, Scheme is dynamic-functional, CommonLisp
> >> is (um)...? The Lisp family supports so many different language
> >> characteristics that the lack-of-syntax is the only common feature.
>
> > Common Lisp is...ummmm. Good question. For the answer:
> >http://www.stevenhumour.com/wp-content/uploads/2011/06/is-butter-a-ca...

Ben Oakes

unread,
Dec 21, 2011, 9:23:14 AM12/21/11
to newhaven.rb
Hi all,

With the holidays upon us, I thought it might be a good time to pick
the first reading group book. (I know I'll personally have some
reading time on my hands very soon.) I've made a poll here:

http://www.meetup.com/newhavenrb/polls/438312/

After the book is chosen, I think the format will basically be a
little discussion on the mailing list, but a bulk of the discussion in
a small meetup at a coffee shop. Depending on the book, we'll likely
carve it up by chapters. I'd like to have a good idea of the pick
this week, but we won't consider the poll closed until next Wednesday,
December 28th.

Also since Zach chimed in, he said he's interested in getting together
to hack on projects around the weekend of January 15th. That's still
a bit out, but since the holidays and the accompanying hectic
schedules will be past us, I'm hoping that we can get together have
some fun. The format isn't decided upon yet. Although our mini
coderetreat was a great learning experience and it's worth doing again
with a larger group, I feel like we can do something more similar to
what we've done in the past.

In the meantime, let's pick a book and we can start doing some
reading!

Best wishes,

Ben

Dan Bernier

unread,
Dec 21, 2011, 10:08:24 AM12/21/11
to newha...@googlegroups.com
I voted based on short-term pragmatism, so the Lisp books took a back
seat for me - but let's keep them in mind for round 2.

--
twitter @danbernier
http://wordcram.org

Diego Scataglini

unread,
Dec 21, 2011, 10:42:17 AM12/21/11
to newha...@googlegroups.com
I voted in a similar way. Domain Driven Design made the top choice.
It was hard to put them in order though.

Diego Scataglini

Benjamin Oakes

unread,
Dec 23, 2011, 8:49:20 AM12/23/11
to newha...@googlegroups.com
Hi all,

We've gotten 5 voters so far at http://www.meetup.com/newhavenrb/polls/438312/.

Both of Russ Olsen's books are at the top of our poll, with _Design
Patterns in Ruby_ being rated near the top for everyone. Unless the
poll changes significantly, we can move ahead with that book, I think.

Once you have a copy, let us know and people interested in
participating can agree on a reading schedule. A chapter or two a
week would seem to do it, but that might slow down with some of the
denser chapters. If you're eager to get started, reading chapters 1,
3, and 4 is a good starting point. (Chapter 2 is just a Ruby
introduction.) They go pretty quick.

Like I mentioned previously, it would be nice to get together monthly
at a local coffee shop, like Koffee, Blue State, etc. Coffee shops
only really an option if we expect a small group, however; if it's
larger than about 4 people, so we can easily meet at Hedgeye (111
Whitney Ave) for a discussion instead.

Between meetups, the mailing list is a good place for discussion about
_DPiR_. If you'd like, tag your subject line with "[DPiR]" so it's
easier to know that it involves this book.

I'm excited to hear the coming discussion and learn with the rest of
you. Thanks everyone for taking part.

To help everyone out, I've compiled some info:

Book sources
------------

* Dead Tree: http://www.amazon.com/Design-Patterns-Ruby-Russ-Olsen/dp/0321490452
* Kindle: http://www.amazon.com/Design-Patterns-in-Ruby-ebook/dp/B0010SEN1S/ref=kinw_dp_ke?ie=UTF8&m=AG56TWVU5XWC2
* PDF and ePub: http://www.informit.com/store/product.aspx?isbn=0321490452

Reminder: if you're not sure about reading the whole book, you can
probably get the Kindle sample on a device you own and read the first
couple chapters along with us.

Resources
---------

* Code: http://designpatternsinruby.com/section01/code.html
* Errata: http://designpatternsinruby.com/section03/commision.html

Best wishes,

Ben

--
http://www.benjaminoakes.com/
http://www.twitter.com/benjaminoakes

Russ Olsen

unread,
Dec 27, 2011, 3:51:24 PM12/27/11
to newhaven.rb
Folks,

Saw on twitter that you were getting started with DPiR. Let me
know if I can help: I'm happy to answer questions or perhaps
even Skype into one of your meetings if you think that will
be helpful.

Russ

On Dec 23, 8:49 am, Benjamin Oakes <b...@benjaminoakes.com> wrote:
> Hi all,
>
> We've gotten 5 voters so far athttp://www.meetup.com/newhavenrb/polls/438312/.
>
> Both of Russ Olsen's books are at the top of our poll, with _Design
> Patterns in Ruby_ being rated near the top for everyone.  Unless the
> poll changes significantly, we can move ahead with that book, I think.
>
> Once you have a copy, let us know and people interested in
> participating can agree on a reading schedule.  A chapter or two a
> week would seem to do it, but that might slow down with some of the
> denser chapters.  If you're eager to get started, reading chapters 1,
> 3, and 4 is a good starting point.  (Chapter 2 is just a Ruby
> introduction.)  They go pretty quick.
>
> Like I mentioned previously, it would be nice to get together monthly
> at a local coffee shop, like Koffee, Blue State, etc.  Coffee shops
> only really an option if we expect a small group, however; if it's
> larger than about 4 people, so we can easily meet at Hedgeye (111
> Whitney Ave) for a discussion instead.
>
> Between meetups, the mailing list is a good place for discussion about
> _DPiR_.  If you'd like, tag your subject line with "[DPiR]" so it's
> easier to know that it involves this book.
>
> I'm excited to hear the coming discussion and learn with the rest of
> you.  Thanks everyone for taking part.
>
> To help everyone out, I've compiled some info:
>
> Book sources
> ------------
>
> * Dead Tree:http://www.amazon.com/Design-Patterns-Ruby-Russ-Olsen/dp/0321490452
> * Kindle:http://www.amazon.com/Design-Patterns-in-Ruby-ebook/dp/B0010SEN1S/ref...
> * PDF and ePub:http://www.informit.com/store/product.aspx?isbn=0321490452
>
> Reminder: if you're not sure about reading the whole book, you can
> probably get the Kindle sample on a device you own and read the first
> couple chapters along with us.
>
> Resources
> ---------
>
> * Code:http://designpatternsinruby.com/section01/code.html
> * Errata:http://designpatternsinruby.com/section03/commision.html
>
> Best wishes,
>
> Ben
>
> --http://www.benjaminoakes.com/http://www.twitter.com/benjaminoakes
>
>
>
>
>
>
>
> On Wed, Dec 21, 2011 at 10:42, Diego Scataglini <dwebsub...@gmail.com> wrote:
> > I voted in a similar way. Domain Driven Design made the top choice.
> > It was hard to put them in order though.
>
> > Diego Scataglini
>
> > On Wed, Dec 21, 2011 at 10:08 AM, Dan Bernier <danbern...@gmail.com> wrote:
> >> I voted based on short-term pragmatism, so the Lisp books took a back
> >> seat for me - but let's keep them in mind for round 2.
>

Benjamin Oakes

unread,
Dec 27, 2011, 4:35:12 PM12/27/11
to newha...@googlegroups.com
Hi Russ,

Thanks for getting in touch! We'd love to have your input in discussions that come up. We will have some discussion on this mailing list, but otherwise Skype would seem like a great option. If you have any preferred dates, please let us know.

In any case, thank you for providing great source material; like I mentioned, both DPiR and Eloquent Ruby are at the top of our list.

Best wishes,

Ben

Dan Bernier

unread,
Dec 31, 2011, 2:46:11 PM12/31/11
to newha...@googlegroups.com

Got my copy in yesterday, & I know we have a copy or 2 at the office. When should we meet?

Mike Morris

unread,
Jan 1, 2012, 9:29:30 AM1/1/12
to newhaven.rb
Same here.... got the Kindle version. Would anyone be interested in
meeting during the day for coffee/lunch to do this rather than in the
evening? I'm only in New Haven on Wed//Fri but would really like to
get more involved with this group.

On Dec 31 2011, 2:46 pm, Dan Bernier <danbern...@gmail.com> wrote:
> Got my copy in yesterday, & I know we have a copy or 2 at the office. When
> should we meet?
> On Dec 27, 2011 4:35 PM, "Benjamin Oakes" <benjamin.d.oa...@gmail.com>
> wrote:
>
>
>
>
>
>
>
> > Hi Russ,
>
> > Thanks for getting in touch!  We'd love to have your input in discussions
> > that come up.  We will have some discussion on this mailing list, but
> > otherwise Skype would seem like a great option.  If you have any preferred
> > dates, please let us know.
>
> > In any case, thank you for providing great source material; like I
> > mentioned, both DPiR and Eloquent Ruby are at the top of our list.
>
> > Best wishes,
>
> > Ben
>

Joel Nimety

unread,
Jan 1, 2012, 9:52:51 AM1/1/12
to newha...@googlegroups.com
Lunch is convenient for me too. There's also the google hangout option.

Sent from my iPhone

Dan Bernier

unread,
Jan 1, 2012, 11:20:10 AM1/1/12
to newha...@googlegroups.com

Lunch is perfect for me, & Google hangouts are great. Evenings will work.

Russ Olsen

unread,
Jan 1, 2012, 9:17:40 PM1/1/12
to newhaven.rb
Ben,

Sorry I am a bit tardy getting back to you, been down with a nasty
sinus infection and, well, the
holidays. Anyway, I can do most evenings or from 12-1 lunchtime
most days except Thursdays. It would probably make sense to wait a bit
until you folks have
read a chunk of the book.

Russ

PS

I'm on US east coast time.

On Dec 27 2011, 4:35 pm, Benjamin Oakes <benjamin.d.oa...@gmail.com>
wrote:
> HiRuss,
>
> Thanks for getting in touch!  We'd love to have your input in discussions that come up.  We will have some discussion on this mailing list, but otherwise Skype would seem like a great option.  If you have any preferred dates, please let us know.
>
> In any case, thank you for providing great source material; like I mentioned, both DPiR and Eloquent Ruby are at the top of our list.
>
> Best wishes,
>
> Ben
>
> On Dec 27, 2011, at 14:51,RussOlsen <russol...@gmail.com> wrote:
>
>
>
>
>
>
>
> > Folks,
>
> > Saw on twitter that you were getting started with DPiR. Let me
> > know if I can help: I'm happy to answer questions or perhaps
> > even Skype into one of your meetings if you think that will
> > be helpful.
>
> >Russ
>
> > On Dec 23, 8:49 am, Benjamin Oakes <b...@benjaminoakes.com> wrote:
> >> Hi all,
>
> >> We've gotten 5 voters so far athttp://www.meetup.com/newhavenrb/polls/438312/.
>
> >> Both ofRussOlsen's books are at the top of our poll, with _Design

Jazear Brooks

unread,
Jan 2, 2012, 11:02:43 AM1/2/12
to newha...@googlegroups.com
Hey guys, I too just picked up the book and I'm up for discussing it via Skype or over lunch.  Have we agreed on how far to read up to in the book before the first discussion?

Kam Lasater

unread,
Jan 2, 2012, 11:03:00 AM1/2/12
to newha...@googlegroups.com
So I think the next step is a date and reading assignment.

I would propose we try to do the Preface & Chaps 1 & 3 making Chap 2 optional (its Ruby basics).

Does Wednesday 1/11 at lunch (12-1 ET) work?


-Kam Lasater
@seekayel | @seeclickfix

--
http://SeeClickFix.com - User Focused Government - Report issues in the public space, Advocate for resolution, Track the status of fixes, Connect with neighbors.



On Sun, Jan 1, 2012 at 9:17 PM, Russ Olsen <russ...@gmail.com> wrote:

Dan Bernier

unread,
Jan 2, 2012, 11:25:26 AM1/2/12
to newha...@googlegroups.com

> I would propose we try to do the Preface & Chaps 1 & 3 making Chap 2 optional (its Ruby basics).

Ben originally proposed up to chapter 4, but I think this will give us plenty to discuss for an hour.

> Does Wednesday 1/11 at lunch (12-1 ET) work?

That works for me.

Jazear Brooks

unread,
Jan 2, 2012, 11:40:22 AM1/2/12
to newha...@googlegroups.com
me too

Mike Morris

unread,
Jan 2, 2012, 12:04:24 PM1/2/12
to newha...@googlegroups.com
Same here... Wednesdays work well for me.

Mike
--
Mike

email: mik...@gmail.com
twitter:  http://twitter.com/mikeymo

Benjamin Oakes

unread,
Jan 3, 2012, 10:29:55 AM1/3/12
to newha...@googlegroups.com
Hi all,

Thanks everyone for picking a time. Reading the first 3 chapters for
Wednesday, 1/11 at 12-1 ET sounds like it should work for everyone.
(If it doesn't for you, please let us know.) I'm in transit today,
but I'll try to post up a Meetup event shortly.

Given some of the audio problems, etc last time we did Google
Hangouts, I'm wondering if the people that can get away from their
desks can get together somewhere and maybe only have a few video
connections open (rather than say, 8). I'm not sure what our options
are exactly; when I suggested Hedgeye to host the discussion earlier,
I was thinking evening or weekend. If some people are interested in
getting together in a meeting room (and also doing Google Hangouts for
those not able to come), let me know and I'll see if Hedgeye would be
an option.

Thanks again; I'm excited to have the first discussion, and I hope you
are as well.

Best wishes,

Ben

Ben Oakes

unread,
Jan 3, 2012, 1:18:53 PM1/3/12
to newhaven.rb
For anyone who isn't on our Meetup group, here's a link to the event:

http://www.meetup.com/newhavenrb/events/46434952/

Please RSVP there if you plan to participate.

Also, I would think that we should write up some discussion questions
for the 11th so we can make good use of the hour. I've made a "dpir"
repository for newhavenrb; anyone that we have in our GitHub
organization should be able to edit the list of questions. If you
would like to contribute, please see the file at:

https://github.com/newhavenrb/dpir/blob/master/discussion_questions.md

Best wishes,

Ben

On Jan 3, 9:29 am, Benjamin Oakes <b...@benjaminoakes.com> wrote:
> Hi all,
>
> Thanks everyone for picking a time.  Reading the first 3 chapters for
> Wednesday, 1/11 at 12-1 ET sounds like it should work for everyone.
> (If it doesn't for you, please let us know.)  I'm in transit today,
> but I'll try to post up a Meetup event shortly.
>
> Given some of the audio problems, etc last time we did Google
> Hangouts, I'm wondering if the people that can get away from their
> desks can get together somewhere and maybe only have a few video
> connections open (rather than say, 8).  I'm not sure what our options
> are exactly; when I suggested Hedgeye to host the discussion earlier,
> I was thinking evening or weekend.  If some people are interested in
> getting together in a meeting room (and also doing Google Hangouts for
> those not able to come), let me know and I'll see if Hedgeye would be
> an option.
>
> Thanks again; I'm excited to have the first discussion, and I hope you
> are as well.
>
> Best wishes,
>
> Ben
>
> --http://www.benjaminoakes.com/http://www.twitter.com/benjaminoakes
>
>
>
>
>
>
>
> On Mon, Jan 2, 2012 at 11:04, Mike Morris <mike...@gmail.com> wrote:
> > Same here... Wednesdays work well for me.
>
> > Mike
>
> > On Mon, Jan 2, 2012 at 11:40 AM, Jazear Brooks <brook...@gmail.com> wrote:
>
> >> me too
>
> >> On Mon, Jan 2, 2012 at 11:25 AM, Dan Bernier <danbern...@gmail.com> wrote:
>
> >>> > I would propose we try to do the Preface & Chaps 1 & 3 making Chap 2
> >>> > optional (its Ruby basics).
>
> >>> Ben originally proposed up to chapter 4, but I think this will give us
> >>> plenty to discuss for an hour.
>
> >>> > Does Wednesday 1/11 at lunch (12-1 ET) work?
>
> >>> That works for me.
>
> > --
> > Mike
>
> > email: mike...@gmail.com
> > twitter: http://twitter.com/mikeymo

Dan Bernier

unread,
Jan 3, 2012, 2:27:16 PM1/3/12
to newha...@googlegroups.com
On Tue, Jan 3, 2012 at 1:18 PM, Ben Oakes <benjamin...@gmail.com> wrote:
> Also, I would think that we should write up some discussion questions
> for the 11th so we can make good use of the hour.  I've made a "dpir"
> repository for newhavenrb; anyone that we have in our GitHub
> organization should be able to edit the list of questions.  If you
> would like to contribute, please see the file at:
>
>    https://github.com/newhavenrb/dpir/blob/master/discussion_questions.md

Ben, this is nice - thanks.

One thing I noticed is, maybe we should sign our questions, a la
Portland Patterns Repository (http://c2.com/cgi/wiki). It'll help make
sense of the talk around the questions, as they change.

Benjamin Oakes

unread,
Jan 3, 2012, 3:48:40 PM1/3/12
to newha...@googlegroups.com
Sounds like a good idea. Signing with a GitHub username would seem to make sense.

Ben (via phone)

Benjamin Oakes

unread,
Jan 4, 2012, 10:16:10 AM1/4/12
to newha...@googlegroups.com
Anyone else not part of the newhavenrb GitHub organization who wants to be?

Members are listed at https://github.com/newhavenrb

Ben

Jeff Blasius

unread,
Jan 4, 2012, 11:07:39 AM1/4/12
to newha...@googlegroups.com
Can you add me? User "anthias". Thanks!
-jeff

--
Have you tried SeeClickFix.com?
*See: a non-emergency issue
*Click: it on the website or call 877.853.1552
*Fix: automatically report it for resolution

Paul Novak

unread,
Jan 4, 2012, 12:33:27 PM1/4/12
to newha...@googlegroups.com
Me too, please.  'novakps'

Thanks!

Benjamin Oakes

unread,
Jan 4, 2012, 1:06:19 PM1/4/12
to newha...@googlegroups.com
Updated: https://github.com/newhavenrb

Ben

On Wed, Jan 4, 2012 at 12:33, Paul Novak <nov...@gmail.com> wrote:
> Me too, please.  'novakps'
>
> Thanks!

Jazear Brooks

unread,
Jan 4, 2012, 4:44:17 PM1/4/12
to newha...@googlegroups.com
Would you add me?  jkbrooks
Reply all
Reply to author
Forward
0 new messages