I''d like to get an Atlanta Ruby Group off the ground - any list members interested in getting together for some Ruby talk? - Derek -- Derek Haynes HighGroove Studios - http://www.highgroove.com Keeping it Simple. 404.593.4879
Count me in. I''ll be out of town from Jul 25 to Aug 4, but I''d definitely be interested. Tyler On 7/19/05, Derek Haynes <derek.haynes-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> I''d like to get an Atlanta Ruby Group off the ground - any list > members interested in getting together for some Ruby talk? > > - Derek > > -- > Derek Haynes > HighGroove Studios - http://www.highgroove.com > Keeping it Simple. > 404.593.4879 > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >
I''m in Athens, GA, but would be willing to make the short drive for a monthly meeting. Regards- Jesse On 7/19/05, Tyler Kiley <tyler.kiley-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Count me in. I''ll be out of town from Jul 25 to Aug 4, but I''d > definitely be interested. > > Tyler > > On 7/19/05, Derek Haynes <derek.haynes-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > I''d like to get an Atlanta Ruby Group off the ground - any list > > members interested in getting together for some Ruby talk? > > > > - Derek > > > > -- > > Derek Haynes > > HighGroove Studios - http://www.highgroove.com > > Keeping it Simple. > > 404.593.4879 > > _______________________________________________ > > Rails mailing list > > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- jnewland-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org jnewland.com AIM: jbnewland 706.340.3625
I''d love to! I''m up north of ATL in Cumming and wouldn''t mind the drive in to meet and network. -S On Jul 19, 2005, at 5:01 PM, jesse newland wrote:> I''m in Athens, GA, but would be willing to make the short drive for a > monthly meeting. > > Regards- > Jesse > > On 7/19/05, Tyler Kiley <tyler.kiley-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> Count me in. I''ll be out of town from Jul 25 to Aug 4, but I''d >> definitely be interested. >> >> Tyler >> >> On 7/19/05, Derek Haynes <derek.haynes-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >>> I''d like to get an Atlanta Ruby Group off the ground - any list >>> members interested in getting together for some Ruby talk? >>> >>> - Derek >>> >>> -- >>> Derek Haynes >>> HighGroove Studios - http://www.highgroove.com >>> Keeping it Simple. >>> 404.593.4879 >>> _______________________________________________ >>> Rails mailing list >>> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >>> http://lists.rubyonrails.org/mailman/listinfo/rails >>> >>> >> _______________________________________________ >> Rails mailing list >> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >> http://lists.rubyonrails.org/mailman/listinfo/rails >> >> > > > -- > jnewland-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org > jnewland.com > AIM: jbnewland > 706.340.3625 > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >
On Tuesday 19 July 2005 02:15 pm, Derek Haynes wrote:> I''d like to get an Atlanta Ruby Group off the ground - any list > members interested in getting together for some Ruby talk? > > - DerekI point you to: http://www.atlrug.org/ A dormant (dead?) RUG. I''d be interested. I''m in Cumming, but work near Perimeter. I could probably get my company to ''host'' meetings if we want a meeting place that is "central". We use Ruby a bit at the office, and I''m sure a few of the team members would stick around for meetings. Our facilities are not "great", and I doubt we could handle more than about 15 people, but if you''re interested, I''ll check. David
Sorry for the OT post, I was wondering if there is any RUG in and around Berkeley, CA. I checked online, but this is so out dated. http://www.rubygarden.org/ruby?BayAreaGroup I would be interested in co-ordinating one if someone helps me. Thanks, ::akbar
On Jul 19, 2005, at 8:47 PM, Akbar Pasha wrote:> Sorry for the OT post, I was wondering if there is any RUG in and > around Berkeley, CA. I checked online, but this is so out dated. > http://www.rubygarden.org/ruby?BayAreaGroup > > I would be interested in co-ordinating one if someone helps me.I''m at the southern end of the peninsula, so Berkeley''s too far for me, but the ba-rb list at yahoogroups.com is alive, so you might post there. Some of us are meeting at the Linux Picnic in Sunnyvale on August 14th: http://www.linuxpicnic.org/ The only advice for that is: wear something ruby-colored, some Ruby gear, or carry around a Ruby book. -- _Deirdre http://deirdre.net "Cannot run out of time. There is infinite time. You are finite. Zathras is finite. This....is wrong tool." -- Zathras
Keith Nicholas
2005-Jul-20 05:55 UTC
tree? nested set? not sure what the right thing to do is....
Hi all, Newbie question :-) Given a tree of Categories and each category can have many products and many products can belong to many categories.... I now want to find all the products for a given category and all its sub categories....How do you do this? Is there something out of the box? or ? Regards, Keith Nicholas
Adrian Madrid
2005-Jul-22 10:30 UTC
Re: tree? nested set? not sure what the right thing to do is....
You will need a categories table, a products table and a categories_products table (category_id, product_id). For your categories you will need a nested set and from that you can obtain in one query a category and all its children. With the categories ids you can build another query that gives you all the products in those categories by joining categories_products with products and requiring category_id IN (1, 2, 3, etc). Hope this helped, Adrian Madrid On 7/19/05, Keith Nicholas <keith.nicholas-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > Hi all, > > Newbie question :-) > > Given a tree of Categories and each category can have many products > and many products can belong to many categories.... > > I now want to find all the products for a given category and all its > sub categories....How do you do this? Is there something out of the > box? or ? > > Regards, > > Keith Nicholas > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- Adrian Esteban Madrid aemadrid-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails