From rshepard at appl-ecosys.com Mon Jul 12 20:23:32 2010 From: rshepard at appl-ecosys.com (Rich Shepard) Date: Mon, 12 Jul 2010 11:23:32 -0700 (PDT) Subject: [portland] Refactoring Message-ID: I'm starting to learn pylint and bought a copy of Martin Fowler's "Refactoring" book. Yes, the examples are in java, but the ideas are the same. A Google search shows a few refactoring tools for python. Is there a favorite or preferred tool among you professionals? Thanks, Rich From igal at pragmaticraft.com Tue Jul 13 01:37:35 2010 From: igal at pragmaticraft.com (Igal Koshevoy) Date: Mon, 12 Jul 2010 16:37:35 -0700 Subject: [portland] OT: CloudCampPDX: July 19, 6:30pm at the OCC Message-ID: Dear Open Source Bridge, WhereCampPDX, Portland Ruby Brigade and Portland Pythoneers: CloudCampPDX is coming to the Oregon Convention Center on July 19 at 6:30pm. This CloudCampPDX will focus on discussing open source cloud computing in an unconference format. Lightning talk proposals are still being accepted if you'd like to speak. Although part of OSCON, this is a free event -- but you'll need to register. This was a popular event last year, so please register while spots are available. >From http://calagator.org/events/1250458827 REGISTER FOR FREE AT http://www.cloudcamp.org/pdx CloudCamp is an unconference where early adopters of Cloud Computing > technologies exchange ideas. With the rapid change occurring in the > industry, we need a place where we can meet to share our experiences, > challenges and solutions. At CloudCamp, you are encouraged to share your > thoughts in several open discussions, as we strive for the advancement of > Cloud Computing. End users, IT professionals and vendors are all encouraged > to participate. > OSCON is providing CloudCamp space to run CloudCamp @OSCON during the BOF > sessions Monday night. This CloudCamp will be focussed on all-things Open > Source and Open Cloud. For Lightning Talks, we invite the community to > submit 5 minute talks (please send proposals to dave at platformd.com). All > talks must be related to Open Source or Openness. > The agenda for CloudCamp PDX is: > 6:30pm Registration & Networking 7:00pm Welcome & Introductions 7:15pm Lightning Talks (5 min. each) 8:00pm Proposals for Open Space 8:15pm Round 1 of Open Space. Proposed sessions: - DevOps GameDay session 9:00pm Round 2 (TBD) 10:00pm (or possibly 9:15pm) Wrap-up -igal -------------- next part -------------- An HTML attachment was scrubbed... URL: From michelle at pdxpython.org Tue Jul 13 22:14:47 2010 From: michelle at pdxpython.org (Michelle Rowley) Date: Tue, 13 Jul 2010 13:14:47 -0700 Subject: [portland] Meeting Tonight! 6:30pm @ Webtrends: PLY, Fabric, Gunicorn - and you! Message-ID: Happy second Tuesday, Pythoneers! You know what that means... we're meeting at Webtrends tonight for our July dose of Python excitement! When: 6:30pm Where: Webtrends 851 SW 6th Ave. Suite 1600 Portland, OR 97204 *Wave at the security guard in the lobby. Let them know you're with us and they'll bring you upstairs! What's on the table for tonight? Adam Lowry will be introducing Gunicorn ( http://gunicorn.org/) for Michel's Module of the Month. It's easy_installable, so Michel says it counts. Plus, it's awesome. Who's up for next month's module? Next, Chris Pitzer is going to show us how he tackles automated deployments using Fabric. There will be guest appearances by git, apache, wsgi and virtualenv, as well! Finally, Dan Colish will demonstrate how to use Python Lex/Yacc for great good. If you're tired of using regex to match and deciper every little bit of plain text output, you won't want to miss this one. Dan will walk us through tokenizing and parsing text using a grammar, and do a short comparison of PLY and other parsing packages. After the meeting, I'm guessing we'll walk over to Bailey's Taproom for more discussion, and perhaps a beverage. See you there! Michelle -------------- next part -------------- An HTML attachment was scrubbed... URL: From rshepard at appl-ecosys.com Tue Jul 13 23:52:11 2010 From: rshepard at appl-ecosys.com (Rich Shepard) Date: Tue, 13 Jul 2010 14:52:11 -0700 (PDT) Subject: [portland] Meeting Tonight! 6:30pm @ Webtrends: PLY, Fabric, Gunicorn - and you! In-Reply-To: References: Message-ID: On Tue, 13 Jul 2010, Michelle Rowley wrote: > You know what that means... we're meeting at Webtrends tonight for our July > dose of Python excitement! This looks like a really good set of topics. Unfortunately, I'm in Salt Lake City on business and cannot attend. I'll look into these subjects on my own, however. Rich From rshepard at appl-ecosys.com Thu Jul 15 22:03:49 2010 From: rshepard at appl-ecosys.com (Rich Shepard) Date: Thu, 15 Jul 2010 13:03:49 -0700 (PDT) Subject: [portland] Pylint, Emacs, and More Message-ID: I want to run pylint from within emacs, and have python-pylint.el in /usr/share/emacs/site-lisp/. The python-pylint.el script starts with an autoload command that is supposed to load it as a minor-mode. I'm far from an emacs expert and would like guidance on how to modify ~/.emacs to load this script when a .py file is loaded and the python major mode is invoked. Also, what are the relations among emacs-flymake, pylint, and pyflakes? I understand that pychecker is a subset of pylint but don't understand pyflakes or why flymake is also needed. Clarification and guidance greatly appreciated. Rich From adam at therobots.org Thu Jul 15 22:33:51 2010 From: adam at therobots.org (Adam Lowry) Date: Thu, 15 Jul 2010 13:33:51 -0700 Subject: [portland] Meeting Tonight! 6:30pm @ Webtrends: PLY, Fabric, Gunicorn - and you! In-Reply-To: References: Message-ID: On Tue, Jul 13, 2010 at 1:14 PM, Michelle Rowley wrote: > Happy second Tuesday, Pythoneers! > What's on the table for tonight? Adam Lowry will be introducing Gunicorn ( > http://gunicorn.org/) for Michel's Module of the Month. It's > easy_installable, so Michel says it counts. Plus, it's awesome. Who's up for > next month's module? Here are slides from my introduction talk: http://adam.therobots.org/2010/7/15/introduction-to-gunicorn Adam From brett at rdnzl.net Thu Jul 15 23:44:37 2010 From: brett at rdnzl.net (Brett Carter) Date: Thu, 15 Jul 2010 14:44:37 -0700 Subject: [portland] Pylint, Emacs, and More In-Reply-To: References: Message-ID: I've always used pyflakes simply because it's fast - it analyzes the source of your python module; it doesn't try to import making configuration as easy as typing "pyflakes foo.py". I can't comment on python-pylint.el - I'm not familiar with it. Many of us are using flymake and pyflakes to do on the fly syntax checking in Emacs. Flymake is a framework for emacs that provides hooks for doing on the fly syntax checking: http://www.emacswiki.org/emacs/FlyMake Chris M. explains a basic setup here: http://www.plope.com/Members/chrism/flymake-mode For a more sophisticated setup, see my dotfile repo and Jason K's pycheckers script: http://bitbucket.org/jek/sandbox/src/tip/pycheckers http://bitbucket.org/zbskii/misc/src/tip/.emacs Hope this helps. -Brett On Thu, Jul 15, 2010 at 1:03 PM, Rich Shepard wrote: > ?I want to run pylint from within emacs, and have python-pylint.el in > /usr/share/emacs/site-lisp/. The python-pylint.el script starts with an > autoload command that is supposed to load it as a minor-mode. I'm far from > an emacs expert and would like guidance on how to modify ~/.emacs to load > this script when a .py file is loaded and the python major mode is invoked. > > ?Also, what are the relations among emacs-flymake, pylint, and pyflakes? I > understand that pychecker is a subset of pylint but don't understand > pyflakes or why flymake is also needed. > > ?Clarification and guidance greatly appreciated. > > Rich > _______________________________________________ > Portland mailing list > Portland at python.org > http://mail.python.org/mailman/listinfo/portland > From rshepard at appl-ecosys.com Fri Jul 16 00:08:54 2010 From: rshepard at appl-ecosys.com (Rich Shepard) Date: Thu, 15 Jul 2010 15:08:54 -0700 (PDT) Subject: [portland] Pylint, Emacs, and More In-Reply-To: References: Message-ID: On Thu, 15 Jul 2010, Brett Carter wrote: > I've always used pyflakes simply because it's fast - it analyzes the > source of your python module; it doesn't try to import making > configuration as easy as typing "pyflakes foo.py". Brett, I'll look at pyflakes to learn how it differs from pylint. > I can't comment on python-pylint.el - I'm not familiar with it. Many of > us are using flymake and pyflakes to do on the fly syntax checking in > Emacs. Flymake is a framework for emacs that provides hooks for doing on > the fly syntax checking: http://www.emacswiki.org/emacs/FlyMake I saw that page on the wiki but did not appreciate that it provides on-the-fly checks and eliminates the need to manually invoke a checker. > Chris M. explains a basic setup here: > http://www.plope.com/Members/chrism/flymake-mode > > For a more sophisticated setup, see my dotfile repo and Jason K's > pycheckers script: > > http://bitbucket.org/jek/sandbox/src/tip/pycheckers > http://bitbucket.org/zbskii/misc/src/tip/.emacs Great! I'll read these for insights and help. > Hope this helps. Sure does. Many thanks. BTW, have you any suggestions or recommendations on refactoring tools? Rich From freyley at gmail.com Fri Jul 16 00:21:47 2010 From: freyley at gmail.com (Jeff Schwaber) Date: Thu, 15 Jul 2010 15:21:47 -0700 Subject: [portland] PDC Survey Round 2 In-Reply-To: References: Message-ID: Folks, Please take a few minutes to answer a few more questions so these folks working on how to improve our lives can better figure out how. =) Thanks, Jeff ---------- Forwarded message ---------- From: Audrey Eschright Date: Tue, Jul 13, 2010 at 4:49 PM Subject: [pdx-groups] PDC Survey Round 2 To: pdxgroups at googlegroups.com Round 2 of the Portland Development Commission software cluster survey is live. This set of questions focuses heavily on ways to support existing community activities like user groups, expand funding resources, and so on, so this is a good opportunity to give feedback on some of the ideas the PDC is looking at, and add in any other types of resources/support you think Portland user groups and their members would benefit from. Here's the survey link:?http://bit.ly/aawts2 Audrey -- You received this message because you are subscribed to the Google Groups "pdxgroups" group. To post to this group, send email to pdxgroups at googlegroups.com. To unsubscribe from this group, send email to pdxgroups+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/pdxgroups?hl=en. From michelle at pdxpython.org Fri Jul 16 19:40:01 2010 From: michelle at pdxpython.org (Michelle Rowley) Date: Fri, 16 Jul 2010 10:40:01 -0700 Subject: [portland] July meeting recap Message-ID: Hey all, We had an awesome meeting Tuesday. Huge thanks to our three excellent presenters Adam Lowry, Chris Pitzer and Dan Colish! If you'd like to review the slides from their presentations, they're all up online: Adam already sent around a link to his Introduction to Gunicorn slides, but for the sake of the complete set, here it is again: http://adam.therobots.org/2010/7/15/introduction-to-gunicorn. Chris's presentation on automation using Fabric is up at: http://docs.google.com/present/view?id=dcvvnpcr_744mc32mgp. Finally, you can download a PDF of Dan Colish's talk about Python Lex/Yacc, including a great introduction to grammars, from Dropbox: http://dl.dropbox.com/u/3639518/ply.pdf. Relatedly, we're still looking for speakers for the August meeting. If you've got an idea you'd like to present, or would like to volunteer for Michel's Monthly Module, please get in touch! :) See you online, Michelle -------------- next part -------------- An HTML attachment was scrubbed... URL: From kirby.urner at gmail.com Sun Jul 18 09:55:55 2010 From: kirby.urner at gmail.com (kirby urner) Date: Sun, 18 Jul 2010 00:55:55 -0700 Subject: [portland] July meeting recap In-Reply-To: References: Message-ID: Thanks for a great meeting Michelle, you run a good one. I passed on my little gossip item about maybe dropping IDLE from standard library to ChiPy (Chicago user group, likewise open archive). http://mail.python.org/pipermail/chicago/2010-July/006914.html >From the Pinoy-Python group (Philippines), I learned of this Twisted tutorial, which does seem quite good: http://krondo.com/blog/?page_id=1327 Kirby PS: my own quirky write-up of this PPUG event. See y'all again. http://controlroom.blogspot.com/2010/07/python-users-group-july-2010.html On Fri, Jul 16, 2010 at 10:40 AM, Michelle Rowley wrote: > Hey all, > > We had an awesome meeting Tuesday. Huge thanks to our three excellent > presenters Adam Lowry, Chris Pitzer and Dan Colish! If you'd like to review > the slides from their presentations, they're all up online: > > Adam already sent around a link to his Introduction to Gunicorn slides, but > for the sake of the complete set, here it is again: > http://adam.therobots.org/2010/7/15/introduction-to-gunicorn. > > Chris's presentation on automation using Fabric is up at: > http://docs.google.com/present/view?id=dcvvnpcr_744mc32mgp. > > Finally, you can download a PDF of Dan Colish's talk about Python Lex/Yacc, > including a great introduction to grammars, from Dropbox: > http://dl.dropbox.com/u/3639518/ply.pdf. > > Relatedly, we're still looking for speakers for the August meeting. If > you've got an idea you'd like to present, or would like to volunteer for > Michel's Monthly Module, please get in touch! :) > > See you online, > Michelle > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/portland/attachments/20100716/21415264/attachment.html > > > _______________________________________________ > Portland mailing list > Portland at python.org > http://mail.python.org/mailman/listinfo/portland > -------------- next part -------------- An HTML attachment was scrubbed... URL: From adam at therobots.org Mon Jul 19 22:10:46 2010 From: adam at therobots.org (Adam Lowry) Date: Mon, 19 Jul 2010 13:10:46 -0700 Subject: [portland] PDX Django/OSCON Python/Django/Meetup/BOF/Drinkup Message-ID: Cross-posting from PDX Django, because all are welcome! Feel free to send this on to any visiting Python programmers. It's the third Wednesday of the month, so it's time for PDX Django! It's also OSCON, which means there are lots of visitors. So instead of a normal meeting, we're having a special PDX Django/OSCON Python/Django/Meetup/BOF/Drinkup. Same time and place (mostly) as usual: Wednesday, May 21st, 7 PM 1227 NW Davis St (across from the North Face store, look for the big leather chairs in the window). We'll either be downstairs in PIE, or upstairs in the Urban Airship offices. There will be beverage. http://calagator.org/events/1250458893 http://groups.google.com/group/pdxdjango Adam From michelle at pdxpython.org Tue Jul 27 19:31:09 2010 From: michelle at pdxpython.org (Michelle Rowley) Date: Tue, 27 Jul 2010 10:31:09 -0700 Subject: [portland] August PDX Python - a social gathering? Message-ID: Hey Pythonistas, I just got word yesterday that Webtrends' space isn't going to be available for us to use for our next scheduled meeting, which will be on August 10th. Some peeps in #pdxpython expressed interest in having a social meeting that evening, perhaps outside on a patio at a local pub. I thought I'd ping this list to see if there is universal interest in taking it to the pub this month, and if so, which one? Feel free to email me privately, or just respond to the list. Thanks! Michelle -------------- next part -------------- An HTML attachment was scrubbed... URL: From aaron.devore at gmail.com Tue Jul 27 19:52:50 2010 From: aaron.devore at gmail.com (Aaron DeVore) Date: Tue, 27 Jul 2010 10:52:50 -0700 Subject: [portland] August PDX Python - a social gathering? In-Reply-To: References: Message-ID: Do we have any under 21-year-olds who might get bumped by meeting in a pub? -Aaron DeVore On Tue, Jul 27, 2010 at 10:31 AM, Michelle Rowley wrote: > Hey Pythonistas, > > I just got word yesterday that Webtrends' space isn't going to be available > for us to use for our next scheduled meeting, which will be on August 10th. > Some peeps in #pdxpython expressed interest in having a social meeting that > evening, perhaps outside on a patio at a local pub. I thought I'd ping this > list to see if there is universal interest in taking it to the pub this > month, and if so, which one? Feel free to email me privately, or just > respond to the list. > > Thanks! > Michelle From RWagoner at volt.com Tue Jul 27 19:51:33 2010 From: RWagoner at volt.com (Wagoner, Roger) Date: Tue, 27 Jul 2010 10:51:33 -0700 Subject: [portland] August PDX Python - a social gathering? In-Reply-To: References: Message-ID: How many people might be coming? My office in downtown has a small conference room, a project, a LAN cord, etc. It is small though, 10-15 max - probably too small, just wanted to throw that out there. I think there is another level in my building (Wells Fargo) that is larger but it is not free. Roger Wagoner -----Original Message----- From: portland-bounces+rwagoner=volt.com at python.org [mailto:portland-bounces+rwagoner=volt.com at python.org] On Behalf Of Michelle Rowley Sent: Tuesday, July 27, 2010 10:31 AM To: Python Users Group -- Portland, Oregon USA Subject: [portland] August PDX Python - a social gathering? Hey Pythonistas, I just got word yesterday that Webtrends' space isn't going to be available for us to use for our next scheduled meeting, which will be on August 10th. Some peeps in #pdxpython expressed interest in having a social meeting that evening, perhaps outside on a patio at a local pub. I thought I'd ping this list to see if there is universal interest in taking it to the pub this month, and if so, which one? Feel free to email me privately, or just respond to the list. Thanks! Michelle -------------- next part -------------- An HTML attachment was scrubbed... URL: _______________________________________________ Portland mailing list Portland at python.org http://mail.python.org/mailman/listinfo/portland From michael at susens-schurter.com Tue Jul 27 20:27:52 2010 From: michael at susens-schurter.com (Michael Schurter) Date: Tue, 27 Jul 2010 11:27:52 -0700 Subject: [portland] August PDX Python - a social gathering? In-Reply-To: References: Message-ID: On Tue, Jul 27, 2010 at 10:31 AM, Michelle Rowley wrote: > Hey Pythonistas, > > I just got word yesterday that Webtrends' space isn't going to be available > for us to use for our next scheduled meeting, which will be on August 10th. > Some peeps in #pdxpython expressed interest in having a social meeting that > evening, perhaps outside on a patio at a local pub. I thought I'd ping this > list to see if there is universal interest in taking it to the pub this > month, and if so, which one? Feel free to email me privately, or just > respond to the list. +1 to pub meetup. Pub ideas: Produce Row would be good for nostalgia. The Lucky Labs on NW Quimby and N Killingsworth are both fairly spacious and near public transit. Rontoms is pretty close-in and has a fair amount of outdoor seating. I'm not a regular though, so I'm not sure how busy they are on any given night. From brett at rdnzl.net Tue Jul 27 20:30:50 2010 From: brett at rdnzl.net (Brett Carter) Date: Tue, 27 Jul 2010 11:30:50 -0700 Subject: [portland] August PDX Python - a social gathering? In-Reply-To: References: Message-ID: We usually hover around 20-30 people per meeting. Maybe the new Produce Row? They have a great patio. -Brett On Tue, Jul 27, 2010 at 10:51 AM, Wagoner, Roger wrote: > How many people might be coming? My office in downtown has a small > conference room, a project, a LAN cord, etc. It is small though, 10-15 > max - probably too small, just wanted to throw that out there. I think > there is another level in my building (Wells Fargo) that is larger but > it is not free. > > Roger Wagoner > > > -----Original Message----- > From: portland-bounces+rwagoner=volt.com at python.org > [mailto:portland-bounces+rwagoner=volt.com at python.org] On Behalf Of > Michelle Rowley > Sent: Tuesday, July 27, 2010 10:31 AM > To: Python Users Group -- Portland, Oregon USA > Subject: [portland] August PDX Python - a social gathering? > > Hey Pythonistas, > > I just got word yesterday that Webtrends' space isn't going to be > available > for us to use for our next scheduled meeting, which will be on August > 10th. > Some peeps in #pdxpython expressed interest in having a social meeting > that > evening, perhaps outside on a patio at a local pub. I thought I'd ping > this > list to see if there is universal interest in taking it to the pub this > month, and if so, which one? Feel free to email me privately, or just > respond to the list. > > Thanks! > Michelle > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > /attachment.html> > _______________________________________________ > Portland mailing list > Portland at python.org > http://mail.python.org/mailman/listinfo/portland > _______________________________________________ > Portland mailing list > Portland at python.org > http://mail.python.org/mailman/listinfo/portland > From matt at youell.com Wed Jul 28 07:09:52 2010 From: matt at youell.com (Matt Youell) Date: Tue, 27 Jul 2010 22:09:52 -0700 Subject: [portland] August PDX Python - a social gathering? In-Reply-To: References: Message-ID: <4C4FBBA0.8050209@youell.com> I'd be happy to volunteer the AboutUs space assuming we have no conflicts that night (I can check on that in the morning). We're a block away from Produce Row and can accommodate a decent-sized group. -- -/matt/- http://youell.com/matt Brett Carter wrote: > We usually hover around 20-30 people per meeting. Maybe the new > Produce Row? They have a great patio. > -Brett > > On Tue, Jul 27, 2010 at 10:51 AM, Wagoner, Roger wrote: > >> How many people might be coming? My office in downtown has a small >> conference room, a project, a LAN cord, etc. It is small though, 10-15 >> max - probably too small, just wanted to throw that out there. I think >> there is another level in my building (Wells Fargo) that is larger but >> it is not free. >> >> Roger Wagoner >> >> >> -----Original Message----- >> From: portland-bounces+rwagoner=volt.com at python.org >> [mailto:portland-bounces+rwagoner=volt.com at python.org] On Behalf Of >> Michelle Rowley >> Sent: Tuesday, July 27, 2010 10:31 AM >> To: Python Users Group -- Portland, Oregon USA >> Subject: [portland] August PDX Python - a social gathering? >> >> Hey Pythonistas, >> >> I just got word yesterday that Webtrends' space isn't going to be >> available >> for us to use for our next scheduled meeting, which will be on August >> 10th. >> Some peeps in #pdxpython expressed interest in having a social meeting >> that >> evening, perhaps outside on a patio at a local pub. I thought I'd ping >> this >> list to see if there is universal interest in taking it to the pub this >> month, and if so, which one? Feel free to email me privately, or just >> respond to the list. >> >> Thanks! >> Michelle >> -------------- next part -------------- >> An HTML attachment was scrubbed... >> URL: >> > /attachment.html> >> _______________________________________________ >> Portland mailing list >> Portland at python.org >> http://mail.python.org/mailman/listinfo/portland >> _______________________________________________ >> Portland mailing list >> Portland at python.org >> http://mail.python.org/mailman/listinfo/portland >> >> > _______________________________________________ > Portland mailing list > Portland at python.org > http://mail.python.org/mailman/listinfo/portland > > > From admalledd at gmail.com Wed Jul 28 07:55:08 2010 From: admalledd at gmail.com (Eric Driggers) Date: Tue, 27 Jul 2010 22:55:08 -0700 Subject: [portland] August PDX Python - a social gathering? In-Reply-To: References: Message-ID: alast, i am one who cannot make it to pubs, being 18 and all that doesn't help. (PS: cant wait to make it to the next meeting!) On Tue, Jul 27, 2010 at 10:52 AM, Aaron DeVore wrote: > Do we have any under 21-year-olds who might get bumped by meeting in a pub? > > -Aaron DeVore > > On Tue, Jul 27, 2010 at 10:31 AM, Michelle Rowley > wrote: > > Hey Pythonistas, > > > > I just got word yesterday that Webtrends' space isn't going to be > available > > for us to use for our next scheduled meeting, which will be on August > 10th. > > Some peeps in #pdxpython expressed interest in having a social meeting > that > > evening, perhaps outside on a patio at a local pub. I thought I'd ping > this > > list to see if there is universal interest in taking it to the pub this > > month, and if so, which one? Feel free to email me privately, or just > > respond to the list. > > > > Thanks! > > Michelle > _______________________________________________ > Portland mailing list > Portland at python.org > http://mail.python.org/mailman/listinfo/portland > -- Alcohol and calculus don't mix - PLEASE don't drink and derive. In The Beginning there was nothing, which exploded. Your mom is so fat she sat on a binary tree and turned it into a linked list in constant time! -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael.bunsen at gmail.com Wed Jul 28 18:47:23 2010 From: michael.bunsen at gmail.com (Michael Bunsen) Date: Wed, 28 Jul 2010 09:47:23 -0700 Subject: [portland] August PDX Python - a social gathering? In-Reply-To: References: Message-ID: Another vote for produce row, but maybe we could accommodate everyone at the AboutUs space first if that turns out to be open. On Tue, Jul 27, 2010 at 10:55 PM, Eric Driggers wrote: > alast, i am one who cannot make it to pubs, being 18 and all that doesn't > help. (PS: cant wait to make it to the next meeting!) > > On Tue, Jul 27, 2010 at 10:52 AM, Aaron DeVore wrote: > >> Do we have any under 21-year-olds who might get bumped by meeting in a pub? >> >> -Aaron DeVore >> >> On Tue, Jul 27, 2010 at 10:31 AM, Michelle Rowley >> wrote: >> > Hey Pythonistas, >> > >> > I just got word yesterday that Webtrends' space isn't going to be >> available >> > for us to use for our next scheduled meeting, which will be on August >> 10th. >> > Some peeps in #pdxpython expressed interest in having a social meeting >> that >> > evening, perhaps outside on a patio at a local pub. I thought I'd ping >> this >> > list to see if there is universal interest in taking it to the pub this >> > month, and if so, which one? Feel free to email me privately, or just >> > respond to the list. >> > >> > Thanks! >> > Michelle >> _______________________________________________ >> Portland mailing list >> Portland at python.org >> http://mail.python.org/mailman/listinfo/portland >> > > > > -- > Alcohol and calculus don't mix - PLEASE don't drink and derive. > In The Beginning there was nothing, which exploded. > Your mom is so fat she sat on a binary tree and turned it into a linked list > in constant time! > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > _______________________________________________ > Portland mailing list > Portland at python.org > http://mail.python.org/mailman/listinfo/portland > From xwraithanx at gmail.com Wed Jul 28 22:12:14 2010 From: xwraithanx at gmail.com (Chris McDonald) Date: Wed, 28 Jul 2010 13:12:14 -0700 Subject: [portland] August PDX Python - a social gathering? In-Reply-To: References: Message-ID: I vote in favor of produce row as well. On Jul 27, 2010 11:33 AM, "Brett Carter" wrote: We usually hover around 20-30 people per meeting. Maybe the new Produce Row? They have a great patio. -Brett On Tue, Jul 27, 2010 at 10:51 AM, Wagoner, Roger wrote: > How many people might... -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeff at jeffkistler.com Wed Jul 28 22:30:30 2010 From: jeff at jeffkistler.com (Jeffrey Kistler) Date: Wed, 28 Jul 2010 13:30:30 -0700 Subject: [portland] August PDX Python - a social gathering? In-Reply-To: References: Message-ID: I am okay with Produce Row. On Wed, Jul 28, 2010 at 1:12 PM, Chris McDonald wrote: > I vote in favor of produce row as well. > > On Jul 27, 2010 11:33 AM, "Brett Carter" wrote: > > We usually hover around 20-30 people per meeting. Maybe the new > Produce Row? They have a great patio. > -Brett > > > On Tue, Jul 27, 2010 at 10:51 AM, Wagoner, Roger > wrote: > > How many people might... > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/portland/attachments/20100728/7224d8c3/attachment.html > > > _______________________________________________ > Portland mailing list > Portland at python.org > http://mail.python.org/mailman/listinfo/portland > -------------- next part -------------- An HTML attachment was scrubbed... URL: