From elicriffield at gmail.com Thu Aug 2 21:48:17 2007 From: elicriffield at gmail.com (Eli Criffield) Date: Thu, 2 Aug 2007 14:48:17 -0500 Subject: [omaha] [olug] ANN: Omaha Python Users Group Meeting, Aug 1 @ 7pm In-Reply-To: <5aaed53f0707291957v5ac6d476r9d028101c935dcf0@mail.gmail.com> References: <5aaed53f0707291957v5ac6d476r9d028101c935dcf0@mail.gmail.com> Message-ID: <18e3f33d0708021248t72dce874w20dfe746cbc2ea60@mail.gmail.com> Sorry i couldn't make it. How did the meeting go? Eli On 7/29/07, Jeff Hinrichs - DM&T wrote: > The Omaha Python Users Group meets the First Wednesday of the Month. > * August 1, 2007 - 7pm > Topics: > * Lightning Talks > * Group Flyers > * Possible Group Project? > * Group Q and A session > > Location: > Clancy's East[[BR]] > 7128 Pacific Street (72nd & Pacific)[[BR]] > Omaha, NE > > Refreshments: > It's Clancy's -- so food and drink will be available. > > Door Prize(s)?: > * Python Pocket Reference, 3rd Edition > > See http://www.OmahaPython.org for more information. > _______________________________________________ > OLUG mailing list > OLUG at olug.org > http://lists.olug.org/mailman/listinfo/olug > From jeffh at dundeemt.com Fri Aug 3 04:31:29 2007 From: jeffh at dundeemt.com (Jeff Hinrichs - DM&T) Date: Thu, 2 Aug 2007 21:31:29 -0500 Subject: [omaha] [olug] ANN: Omaha Python Users Group Meeting, Aug 1 @ 7pm In-Reply-To: <18e3f33d0708021248t72dce874w20dfe746cbc2ea60@mail.gmail.com> References: <5aaed53f0707291957v5ac6d476r9d028101c935dcf0@mail.gmail.com> <18e3f33d0708021248t72dce874w20dfe746cbc2ea60@mail.gmail.com> Message-ID: <5aaed53f0708021931n2d14e546lf14a728d0750b804@mail.gmail.com> On 8/2/07, Eli Criffield wrote: > Sorry i couldn't make it. > > How did the meeting go? > Hi Eli, We missed you at the meeting. It was a good turn out. Mat and Brad were back. We had three first timers. Haven't had time to do a full write up yet -- one of my tasks for the night. I'll email the group when I get it posted. It was a bit more social then technical but sometimes that is a good thing too. Lots of the focus was what python is good at, how did you bring it in to your workplace, etc. All very good questions that I've answered often and I don't mind at all repeating myself. Hope everything was ok with you -- was surprised you weren't there. -Jeff From jeffh at dundeemt.com Sat Aug 11 16:49:52 2007 From: jeffh at dundeemt.com (Jeff Hinrichs - DM&T) Date: Sat, 11 Aug 2007 09:49:52 -0500 Subject: [omaha] OT: Job Opportunity Message-ID: <5aaed53f0708110749o6bd3a911leb2105436f94bc7c@mail.gmail.com> I've had a person (not a recruiter) contact me off list about some plone work. The say the task requires " some python programing and some work in the plone internals." If anyone is interested contact me off list and I'll forward the details and contact information to you. Thanks, Jeff From jeffh at dundeemt.com Wed Aug 15 06:20:06 2007 From: jeffh at dundeemt.com (Jeff Hinrichs - DM&T) Date: Tue, 14 Aug 2007 23:20:06 -0500 Subject: [omaha] Group Project idea Message-ID: <5aaed53f0708142120v3fcaa271w6e7eb078a11a4790@mail.gmail.com> The list has been kind of quiet lately so I thought that I would liven things up a bit. The dynamic languages users group has been doing a hypothetical car wash problem and that gave me the idea to start a group project where we could explore python in a less hypothetical way. I almost didn't do this but I read John Udell's blog entry "transmission of tacit knowledge", http://blog.jonudell.net/2007/08/13/transmission-of-tacit-knowledge-teaching-what-we-dont-know-that-we-know/ and that spurred me on. I think all of us have some of the Tacit Knowledge that others in the group could benefit from and this kind of exercise is a good way of sharing it. I was coming up dry thinking about what to use for a project and then for some strange reason I thought Biorhythms (http://en.wikipedia.org/wiki/Biorhythm) It's a bit less boring that a car wash and gives us a chance to play with pylab/matplotlib which is a nice graphing package. Project Highlights: * working with lists * calculating sine waves against sets of data * date manipulation and arithmetic * command line processing * pylab/matplotlib - http://matplotlib.sourceforge.net/ * dataset analysis * code that actually does something non-boring While I don't think any one is going to use the pyorhythm code at work, the different aspects of it are very applicable to every day usage of python on the job. I've got a project on google code started, http://code.google.com/p/pyorhythms/ It's very rudimentary but should be enough to get everyone started. The only 3rd party module is pylab and that is not too difficult to get installed. The exercise would go like this: We, as a group, suggest features, enhancements and vote on the next one to work on. Everyone playing would work on the code and then present their diff to the group. We would talk about interesting implementations and vote on the diff to commit. Then rinse, lather and repeat. We could even log group decisions and interesting code on the wiki section of the project. A list of possible features/enhancements: * automatically assign different point markers for each person * generate a list of high/low days for an individual or group for the date range * allow the user to specify a different date range (currently hard coded to 33) * forecast out the best /worst day (Max and Min) for a date range * option to save graphic to a file or output to stdout for use on a website * different types of charts - or enhance the current one * give it the PEP8 treatment with pylint/pychecker/et al ..etc.. So is anyone up for a little fun and learning? -Jeff From brad at iridiumdesign.com Wed Aug 15 12:21:18 2007 From: brad at iridiumdesign.com (Brad Siegfreid) Date: Wed, 15 Aug 2007 06:21:18 -0400 Subject: [omaha] Group Project idea In-Reply-To: <5aaed53f0708142120v3fcaa271w6e7eb078a11a4790@mail.gmail.com> References: <5aaed53f0708142120v3fcaa271w6e7eb078a11a4790@mail.gmail.com> Message-ID: I'm game. Looks like Matplotlib has dependencies on libraries that will require some work for those running on Mac OS X but they are things that devs will want anyway. Brad On Aug 15, 2007, at 12:20 AM, Jeff Hinrichs - DM&T wrote: > The list has been kind of quiet lately so I thought that I would liven > things up a bit. > > The dynamic languages users group has been doing a hypothetical car > wash problem and that gave me the idea to start a group project where > we could explore python in a less hypothetical way. > > I almost didn't do this but I read John Udell's blog entry > "transmission of tacit knowledge", > http://blog.jonudell.net/2007/08/13/transmission-of-tacit-knowledge- > teaching-what-we-dont-know-that-we-know/ > and that spurred me on. I think all of us have some of the Tacit > Knowledge that others in the group could benefit from and this kind of > exercise is a good way of sharing it. > > I was coming up dry thinking about what to use for a project and then > for some strange reason I thought Biorhythms > (http://en.wikipedia.org/wiki/Biorhythm) It's a bit less boring that > a car wash and gives us a chance to play with pylab/matplotlib which > is a nice graphing package. > > Project Highlights: > * working with lists > * calculating sine waves against sets of data > * date manipulation and arithmetic > * command line processing > * pylab/matplotlib - http://matplotlib.sourceforge.net/ > * dataset analysis > * code that actually does something non-boring > > While I don't think any one is going to use the pyorhythm code at > work, the different aspects of it are very applicable to every day > usage of python on the job. > > I've got a project on google code started, http://code.google.com/p/ > pyorhythms/ > It's very rudimentary but should be enough to get everyone started. > The only 3rd party module is pylab and that is not too difficult to > get installed. > > > The exercise would go like this: > > We, as a group, suggest features, enhancements and vote on the next > one to work on. Everyone playing would work on the code and then > present their diff to the group. We would talk about interesting > implementations and vote on the diff to commit. Then rinse, lather > and repeat. We could even log group decisions and interesting code on > the wiki section of the project. > > A list of possible features/enhancements: > * automatically assign different point markers for each person > * generate a list of high/low days for an individual or group for the > date range > * allow the user to specify a different date range (currently hard > coded to 33) > * forecast out the best /worst day (Max and Min) for a date range > * option to save graphic to a file or output to stdout for use on > a website > * different types of charts - or enhance the current one > * give it the PEP8 treatment with pylint/pychecker/et al > ..etc.. > > > So is anyone up for a little fun and learning? > > -Jeff > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > http://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org Brad Siegfreid brad at iridiumdesign.com Home: 402.884.8861 Mobile: 402.598.2014 From jeffh at dundeemt.com Wed Aug 15 14:33:25 2007 From: jeffh at dundeemt.com (Jeff Hinrichs - DM&T) Date: Wed, 15 Aug 2007 07:33:25 -0500 Subject: [omaha] Group Project idea In-Reply-To: References: <5aaed53f0708142120v3fcaa271w6e7eb078a11a4790@mail.gmail.com> Message-ID: <5aaed53f0708150533u301df7a3o86440d8ae3451617@mail.gmail.com> On 8/15/07, Brad Siegfreid wrote: > I'm game. Looks like Matplotlib has dependencies on libraries that > will require some work for those running on Mac OS X but they are > things that devs will want anyway. > > Brad > On the pylab/matplotlib install page, they point to http://pythonmac.org/packages/ for pre-compiled packages for python 2.4 and python 2.5 for Mac OS X. Unless you aren't using the universal binaries for python that should save you some time. ?? -Jeff From jeffh at dundeemt.com Thu Aug 16 05:21:20 2007 From: jeffh at dundeemt.com (Jeff Hinrichs - DM&T) Date: Wed, 15 Aug 2007 22:21:20 -0500 Subject: [omaha] Group Project idea In-Reply-To: <5aaed53f0708150533u301df7a3o86440d8ae3451617@mail.gmail.com> References: <5aaed53f0708142120v3fcaa271w6e7eb078a11a4790@mail.gmail.com> <5aaed53f0708150533u301df7a3o86440d8ae3451617@mail.gmail.com> Message-ID: <5aaed53f0708152021s120a3c97gbc10d6d37c873d3d@mail.gmail.com> On 8/15/07, Jeff Hinrichs - DM&T wrote: > On 8/15/07, Brad Siegfreid wrote: > > I'm game. Looks like Matplotlib has dependencies on libraries that > > will require some work for those running on Mac OS X but they are > > things that devs will want anyway. > > > > Brad I am going to start adding doc strings to the functions and class. It's driving my nuts -- I normally wouldn't have released something without doc strings and a couple rounds of pylint but I wanted to share the sausage making experience that is software development. Brad -- did you get pylab installed? Anything I can help with? -Jeff From jeffh at dundeemt.com Fri Aug 17 05:58:05 2007 From: jeffh at dundeemt.com (Jeff Hinrichs - DM&T) Date: Thu, 16 Aug 2007 22:58:05 -0500 Subject: [omaha] Group Project - status Message-ID: <5aaed53f0708162058w2ff97c5akfde13991e1a6d43a@mail.gmail.com> I've been cleaning up the code some what. Applying some PEP8 style and writing/stubbing in docstrings. A synopsis is below... svn log pyorhythms.py ------------------------------------------------------------------------ r8 | dundeemt | 2007-08-16 22:06:57 -0500 (Thu, 16 Aug 2007) | 4 lines refactored code to correct case|Case|CASE of variables per pylint (pep8) refactored init method of Person to only expect those args that are pertinent to object instantiation, moved the others to simple public variables. ------------------------------------------------------------------------ r7 | dundeemt | 2007-08-16 21:25:58 -0500 (Thu, 16 Aug 2007) | 2 lines refactored __revision__ string to return a number only ------------------------------------------------------------------------ r6 | dundeemt | 2007-08-16 08:47:51 -0500 (Thu, 16 Aug 2007) | 4 lines added some doc strings, cleaned up some spacing issues, added the shell of the usage() function now pylints out to 6.10 ------------------------------------------------------------------------ r5 | dundeemt | 2007-08-14 22:49:21 -0500 (Tue, 14 Aug 2007) | 3 lines refactored to add cmd line options to specify the title and multiple people and their birthdates. ------------------------------------------------------------------------ r4 | dundeemt | 2007-08-13 08:21:00 -0500 (Mon, 13 Aug 2007) | 2 lines reformatting of source, some additional pylab specific comments ------------------------------------------------------------------------ r3 | dundeemt | 2007-08-12 23:06:14 -0500 (Sun, 12 Aug 2007) | 2 lines some minor fixups ------------------------------------------------------------------------ r2 | dundeemt | 2007-08-12 22:46:48 -0500 (Sun, 12 Aug 2007) | 2 lines initial check in of source code ------------------------------------------------------------------------ jlh at dmt600u:~/Projects/omapy/pyorhythms$ Pylint is also complaining about the use of map() -- I can find Python3k discussions about wanting to remove filter,apply,reduce,map and lambda -- However I can't find anything specifically saying that map is out for sure. The only one that seems to be on weak ground is filter. lambda is not easily replaceable so Guido has given up on trying to toss it out. Here is a list of the relevant PEPs: http://python.org/dev/peps/pep-3000/ http://www.python.org/dev/peps/pep-3100/ http://python.org/dev/peps/pep-3099 Pylint is throwing a W1041 pylint --help-msg W0141 :W0141: *Used builtin function %r* Used when a black listed builtin function is used (see the bad-function option). Usual black listed functions are the ones like map, or filter , where Python offers now some cleaner alternative like list comprehension. This message belongs to the basic checker. map in it's simplest form, takes two arguments a function and a list, then it applies then it returns a list of function results using the elements from the list as input. i.e. def foo(x): return x*x lst = [1,2,3] map(foo, lst) would return [1,4,9] map(foo, lst) can be replaced with [foo(x) for x in lst] Maybe I have a deeper affection for list than I realize, but map(foo, lst) fits in my mind with less thought than [foo(x) for x in lst] although the latter is more pythonic because it is more explicit. Comments? -jeff From jay at jays.net Fri Aug 17 14:21:23 2007 From: jay at jays.net (Jay Hannah) Date: Fri, 17 Aug 2007 07:21:23 -0500 Subject: [omaha] Group Project - status In-Reply-To: <5aaed53f0708162058w2ff97c5akfde13991e1a6d43a@mail.gmail.com> References: <5aaed53f0708162058w2ff97c5akfde13991e1a6d43a@mail.gmail.com> Message-ID: On Aug 16, 2007, at 10:58 PM, Jeff Hinrichs - DM&T wrote: > I've been cleaning up the code some what. Applying some PEP8 style > and writing/stubbing in docstrings. A synopsis is below... > > svn log pyorhythms.py > ---------------------------------------------------------------------- > -- > r8 | dundeemt | 2007-08-16 22:06:57 -0500 (Thu, 16 Aug 2007) | 4 lines You can use "the Dynamic Omaha SVN" if you want: http://scratchpad.wikia.com/wiki/Dynamic_Omaha Why not start a new "biorhythms" challenge (create a biorhythms/ python directory)? Maybe people will submit their solutions in other languages to compare? Then show up at a Dynamic Language Users Group meeting and show off your Python code? :) j From jeffh at dundeemt.com Sat Aug 18 05:33:47 2007 From: jeffh at dundeemt.com (Jeff Hinrichs - DM&T) Date: Fri, 17 Aug 2007 22:33:47 -0500 Subject: [omaha] Group Project - status In-Reply-To: References: <5aaed53f0708162058w2ff97c5akfde13991e1a6d43a@mail.gmail.com> Message-ID: <5aaed53f0708172033wa3bd4f2g7f2db7794780b534@mail.gmail.com> > > You can use "the Dynamic Omaha SVN" if you want: > > http://scratchpad.wikia.com/wiki/Dynamic_Omaha > > Why not start a new "biorhythms" challenge (create a biorhythms/ > python directory)? > > Maybe people will submit their solutions in other languages to > compare? Then show up at a Dynamic Language Users Group meeting and > show off your Python code? :) > Jay, You know how to push a guys' buttons, don't ya ;) It wouldn't be kosher to offer a challenge without prior participation. So, I've whipped up a round 1 entry for the carwash challenge but I can't find Blaine's earlier email. To whom do I submit the carwash code? -Jeff From jay at jays.net Sun Aug 19 04:57:42 2007 From: jay at jays.net (Jay Hannah) Date: Sat, 18 Aug 2007 21:57:42 -0500 Subject: [omaha] Group Project - status In-Reply-To: <5aaed53f0708172033wa3bd4f2g7f2db7794780b534@mail.gmail.com> References: <5aaed53f0708162058w2ff97c5akfde13991e1a6d43a@mail.gmail.com> <5aaed53f0708172033wa3bd4f2g7f2db7794780b534@mail.gmail.com> Message-ID: On Aug 17, 2007, at 10:33 PM, Jeff Hinrichs - DM&T wrote: >> You can use "the Dynamic Omaha SVN" if you want: >> >> http://scratchpad.wikia.com/wiki/Dynamic_Omaha >> >> Why not start a new "biorhythms" challenge (create a biorhythms/ >> python directory)? >> >> Maybe people will submit their solutions in other languages to >> compare? Then show up at a Dynamic Language Users Group meeting and >> show off your Python code? :) >> > Jay, > You know how to push a guys' buttons, don't ya ;) It wouldn't be > kosher to offer a challenge without prior participation. So, I've > whipped up a round 1 entry for the carwash challenge but I can't find > Blaine's earlier email. To whom do I submit the carwash code? It wouldn't be kosher? I don't think anyone would care or mind. The more the merrier. You can check your code into the SVN server yourself (it's configured to allow anonymous read/write), or you can email it to me if you want and I'll put it in there for you. :) All of Blaine's emails are checked into SVN too: http://vc.jays.net/viewvc.cgi/carwash/challenge.txt? revision=1&root=dynamic_omaha&view=markup Cheers, j From jeffh at dundeemt.com Sun Aug 19 07:11:05 2007 From: jeffh at dundeemt.com (Jeff Hinrichs - DM&T) Date: Sun, 19 Aug 2007 00:11:05 -0500 Subject: [omaha] Group Project - status In-Reply-To: References: <5aaed53f0708162058w2ff97c5akfde13991e1a6d43a@mail.gmail.com> <5aaed53f0708172033wa3bd4f2g7f2db7794780b534@mail.gmail.com> Message-ID: <5aaed53f0708182211g347eb391p3e79f7cf21563dba@mail.gmail.com> > > You can check your code into the SVN server yourself (it's configured > to allow anonymous read/write), or you can email it to me if you want > and I'll put it in there for you. :) Thanks Jay. I've created a python directory under carwash and uploaded code for rounds 1-3. -Jeff From jeffh at dundeemt.com Sun Aug 19 07:12:43 2007 From: jeffh at dundeemt.com (Jeff Hinrichs - DM&T) Date: Sun, 19 Aug 2007 00:12:43 -0500 Subject: [omaha] Group Project - status In-Reply-To: <5aaed53f0708182211g347eb391p3e79f7cf21563dba@mail.gmail.com> References: <5aaed53f0708162058w2ff97c5akfde13991e1a6d43a@mail.gmail.com> <5aaed53f0708172033wa3bd4f2g7f2db7794780b534@mail.gmail.com> <5aaed53f0708182211g347eb391p3e79f7cf21563dba@mail.gmail.com> Message-ID: <5aaed53f0708182212v7a7afb89h7dd4aa4ec4deb9a6@mail.gmail.com> > Thanks Jay. I've created a python directory under carwash and > uploaded code for rounds 1-3. > Should have mentioned the repos in case others on the list are following along http://vc.jays.net/viewvc.cgi/carwash/python/?root=dynamic_omaha -Jeff From jay at jays.net Sun Aug 19 15:40:25 2007 From: jay at jays.net (Jay Hannah) Date: Sun, 19 Aug 2007 08:40:25 -0500 Subject: [omaha] Carwash in Python References: <5aaed53f0708182211g347eb391p3e79f7cf21563dba@mail.gmail.com> Message-ID: Begin forwarded message: > From: "Jeff Hinrichs - DM&T" > Date: August 19, 2007 12:11:05 AM CDT > To: "Omaha Python Users Group" >> >> You can check your code into the SVN server yourself (it's configured >> to allow anonymous read/write), or you can email it to me if you want >> and I'll put it in there for you. :) > > Thanks Jay. I've created a python directory under carwash and > uploaded code for rounds 1-3. Rock on! Hey Dynamic Language Users Group -- check it out! Jeff submitted Python code for Blaine's carwash challenge! http://vc.jays.net/viewvc.cgi/carwash/python/?root=dynamic_omaha Too cool! Now there's Lisp, Erlang, Perl and Python submissions! :) j From jeffh at dundeemt.com Tue Aug 21 04:51:59 2007 From: jeffh at dundeemt.com (Jeff Hinrichs - DM&T) Date: Mon, 20 Aug 2007 21:51:59 -0500 Subject: [omaha] Carwash Challenge update Message-ID: <5aaed53f0708201951t74cd8f8dg269d2e163a59a914@mail.gmail.com> I've completed the round 4 challenge and I've committed it to the respository at http://vc.jays.net/viewvc.cgi/carwash/python/?root=dynamic_omaha If anyone would care to comment on the code, I'm not adverse to it. I thought that I might give a presentation on it at the next meeting. -Jeff From jeffh at dundeemt.com Thu Aug 23 04:57:18 2007 From: jeffh at dundeemt.com (Jeff Hinrichs - DM&T) Date: Wed, 22 Aug 2007 21:57:18 -0500 Subject: [omaha] Venue for upcoming meeting Message-ID: <5aaed53f0708221957j4748f24dp4bb10c9e0970c2bf@mail.gmail.com> Eli and Matt, Both of you had an idea/suggestion for an alternative venue. Eli was going to check out Clancy's on 114th? And Matt had an idea about reserving a meeting room at the UNO library. September's meeting is coming up quick -- so if either of you are still willing would you look in to them when you get a chance and drop a note on the list? That goes for anyone else on the list. If you know of a decent place to meet don't be shy about mentioning it here. Thanks, -Jeff From jeffh at dundeemt.com Thu Aug 23 06:15:42 2007 From: jeffh at dundeemt.com (Jeff Hinrichs - DM&T) Date: Wed, 22 Aug 2007 23:15:42 -0500 Subject: [omaha] pyorhythms Message-ID: <5aaed53f0708222115r1481f7ddx79e11c67e5bbaf41@mail.gmail.com> Just wondering if anyone is on board with the group project. Brad had emailed that he was interested but I haven't heard a word since then. Anyone else interested? http://code.google.com/p/pyorhythms/ -Jeff From brad at iridiumdesign.com Thu Aug 23 14:20:53 2007 From: brad at iridiumdesign.com (Brad Siegfreid) Date: Thu, 23 Aug 2007 07:20:53 -0500 Subject: [omaha] pyorhythms In-Reply-To: <5aaed53f0708222115r1481f7ddx79e11c67e5bbaf41@mail.gmail.com> References: <5aaed53f0708222115r1481f7ddx79e11c67e5bbaf41@mail.gmail.com> Message-ID: I'm here, just trying to recover from travel, work and more work. Brad On Aug 22, 2007, at 11:15 PM, Jeff Hinrichs - DM&T wrote: > Just wondering if anyone is on board with the group project. Brad had > emailed that he was interested but I haven't heard a word since then. > Anyone else interested? > > > http://code.google.com/p/pyorhythms/ > > > -Jeff > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > http://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org From jeffh at dundeemt.com Thu Aug 23 15:17:02 2007 From: jeffh at dundeemt.com (Jeff Hinrichs - DM&T) Date: Thu, 23 Aug 2007 08:17:02 -0500 Subject: [omaha] pyorhythms In-Reply-To: References: <5aaed53f0708222115r1481f7ddx79e11c67e5bbaf41@mail.gmail.com> Message-ID: <5aaed53f0708230617h75389cf1r2a2b94b0f6d49d52@mail.gmail.com> No worries, glad to hear you are back. -Jeff On 8/23/07, Brad Siegfreid wrote: > I'm here, just trying to recover from travel, work and more work. > > Brad > > > On Aug 22, 2007, at 11:15 PM, Jeff Hinrichs - DM&T wrote: > > > Just wondering if anyone is on board with the group project. Brad had > > emailed that he was interested but I haven't heard a word since then. > > Anyone else interested? > > > > > > http://code.google.com/p/pyorhythms/ > > > > > > -Jeff > > _______________________________________________ > > Omaha Python Users Group mailing list > > Omaha at python.org > > http://mail.python.org/mailman/listinfo/omaha > > http://www.OmahaPython.org > > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > http://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org > From jay at jays.net Thu Aug 23 16:09:57 2007 From: jay at jays.net (Jay Hannah) Date: Thu, 23 Aug 2007 09:09:57 -0500 Subject: [omaha] pyorhythms In-Reply-To: <5aaed53f0708222115r1481f7ddx79e11c67e5bbaf41@mail.gmail.com> References: <5aaed53f0708222115r1481f7ddx79e11c67e5bbaf41@mail.gmail.com> Message-ID: <46CD9535.4060401@jays.net> Jeff Hinrichs - DM&T wrote: > Just wondering if anyone is on board with the group project. Brad had > emailed that he was interested but I haven't heard a word since then. > Anyone else interested? > I'd love to but I'm working 2 jobs + starting school on Monday so I'm trying to keep all my (hypothetically existent) "hobby project time" focused on bioinformatics, my newly self-inflicted problem domain. :) j From elicriffield at gmail.com Tue Aug 28 04:28:57 2007 From: elicriffield at gmail.com (Eli Criffield) Date: Mon, 27 Aug 2007 21:28:57 -0500 Subject: [omaha] Venue for upcoming meeting In-Reply-To: <5aaed53f0708221957j4748f24dp4bb10c9e0970c2bf@mail.gmail.com> References: <5aaed53f0708221957j4748f24dp4bb10c9e0970c2bf@mail.gmail.com> Message-ID: <18e3f33d0708271928n7237eb40wd163b35cd9cd4c5c@mail.gmail.com> I'm still alive! Clancy's on 114th would work for a group of 6 or less. Anything more then that and we should probably call ahead, and no wifi or power outlets that i can spot. So whats the plan for Wednesday? Eli On 8/22/07, Jeff Hinrichs - DM&T wrote: > Eli and Matt, > > Both of you had an idea/suggestion for an alternative venue. Eli was > going to check out Clancy's on 114th? And Matt had an idea about > reserving a meeting room at the UNO library. > > September's meeting is coming up quick -- so if either of you are > still willing would you look in to them when you get a chance and drop > a note on the list? That goes for anyone else on the list. If you > know of a decent place to meet don't be shy about mentioning it here. > > > Thanks, > > -Jeff > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > http://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org > From jeffh at dundeemt.com Tue Aug 28 18:30:42 2007 From: jeffh at dundeemt.com (Jeff Hinrichs - DM&T) Date: Tue, 28 Aug 2007 11:30:42 -0500 Subject: [omaha] Venue for upcoming meeting In-Reply-To: <18e3f33d0708271928n7237eb40wd163b35cd9cd4c5c@mail.gmail.com> References: <5aaed53f0708221957j4748f24dp4bb10c9e0970c2bf@mail.gmail.com> <18e3f33d0708271928n7237eb40wd163b35cd9cd4c5c@mail.gmail.com> Message-ID: <5aaed53f0708280930x4a230436hdce1ce26013b00aa@mail.gmail.com> Well since we haven't heard from Matt, let's go ahead and meet at Clancy's on 72nd and Pacific by UNO. They've got wireless. Ok by all ?? -Jeff Glad to hear from you Eli. On 8/27/07, Eli Criffield wrote: > I'm still alive! > > Clancy's on 114th would work for a group of 6 or less. Anything more > then that and we should probably call ahead, and no wifi or power > outlets that i can spot. > > So whats the plan for Wednesday? > > Eli > > On 8/22/07, Jeff Hinrichs - DM&T wrote: > > Eli and Matt, > > > > Both of you had an idea/suggestion for an alternative venue. Eli was > > going to check out Clancy's on 114th? And Matt had an idea about > > reserving a meeting room at the UNO library. > > > > September's meeting is coming up quick -- so if either of you are > > still willing would you look in to them when you get a chance and drop > > a note on the list? That goes for anyone else on the list. If you > > know of a decent place to meet don't be shy about mentioning it here. > > > > > > Thanks, > > > > -Jeff > > _______________________________________________ > > Omaha Python Users Group mailing list > > Omaha at python.org > > http://mail.python.org/mailman/listinfo/omaha > > http://www.OmahaPython.org > > From mharriger at gmail.com Tue Aug 28 18:39:09 2007 From: mharriger at gmail.com (Matt Harriger) Date: Tue, 28 Aug 2007 11:39:09 -0500 Subject: [omaha] Venue for upcoming meeting In-Reply-To: <5aaed53f0708280930x4a230436hdce1ce26013b00aa@mail.gmail.com> References: <5aaed53f0708221957j4748f24dp4bb10c9e0970c2bf@mail.gmail.com> <18e3f33d0708271928n7237eb40wd163b35cd9cd4c5c@mail.gmail.com> <5aaed53f0708280930x4a230436hdce1ce26013b00aa@mail.gmail.com> Message-ID: <1eaa8ee20708280939o5d64b88cl67ecc274054759fe@mail.gmail.com> Sorry guys...I haven't done anything with the UNO Library thing. I'll ask about it next time I'm up there if no better options come along. On 8/28/07, Jeff Hinrichs - DM&T wrote: > > Well since we haven't heard from Matt, let's go ahead and meet at > Clancy's on 72nd and Pacific by UNO. They've got wireless. > > Ok by all ?? > > > > -Jeff > Glad to hear from you Eli. > > On 8/27/07, Eli Criffield wrote: > > I'm still alive! > > > > Clancy's on 114th would work for a group of 6 or less. Anything more > > then that and we should probably call ahead, and no wifi or power > > outlets that i can spot. > > > > So whats the plan for Wednesday? > > > > Eli > > > > On 8/22/07, Jeff Hinrichs - DM&T wrote: > > > Eli and Matt, > > > > > > Both of you had an idea/suggestion for an alternative venue. Eli was > > > going to check out Clancy's on 114th? And Matt had an idea about > > > reserving a meeting room at the UNO library. > > > > > > September's meeting is coming up quick -- so if either of you are > > > still willing would you look in to them when you get a chance and drop > > > a note on the list? That goes for anyone else on the list. If you > > > know of a decent place to meet don't be shy about mentioning it here. > > > > > > > > > Thanks, > > > > > > -Jeff > > > _______________________________________________ > > > Omaha Python Users Group mailing list > > > Omaha at python.org > > > http://mail.python.org/mailman/listinfo/omaha > > > http://www.OmahaPython.org > > > > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > http://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org > From jeffh at dundeemt.com Wed Aug 29 01:34:01 2007 From: jeffh at dundeemt.com (Jeff Hinrichs - DM&T) Date: Tue, 28 Aug 2007 18:34:01 -0500 Subject: [omaha] Venue for upcoming meeting In-Reply-To: <1eaa8ee20708280939o5d64b88cl67ecc274054759fe@mail.gmail.com> References: <5aaed53f0708221957j4748f24dp4bb10c9e0970c2bf@mail.gmail.com> <18e3f33d0708271928n7237eb40wd163b35cd9cd4c5c@mail.gmail.com> <5aaed53f0708280930x4a230436hdce1ce26013b00aa@mail.gmail.com> <1eaa8ee20708280939o5d64b88cl67ecc274054759fe@mail.gmail.com> Message-ID: <5aaed53f0708281634r324b2fcaj9624fc57503a641b@mail.gmail.com> No worries. I'm just happy to hang out with other Pythonista's for a while. I had planned on talking about mod_python but I've managed to loose all of my example code before I checked it in to subversion -- arghhh. I'm going to try and get it re-written and ready for the meeting. I've still got pyorhythms and if someone wants to talk about anything interesting they've been working on -- it should be a pretty good meeting. -Jeff On 8/28/07, Matt Harriger wrote: > Sorry guys...I haven't done anything with the UNO Library thing. I'll ask > about it next time I'm up there if no better options come along. > > On 8/28/07, Jeff Hinrichs - DM&T wrote: > > > > Well since we haven't heard from Matt, let's go ahead and meet at > > Clancy's on 72nd and Pacific by UNO. They've got wireless. > > > > Ok by all ?? > > > > > > > > -Jeff > > Glad to hear from you Eli. > > > > On 8/27/07, Eli Criffield wrote: > > > I'm still alive! > > > > > > Clancy's on 114th would work for a group of 6 or less. Anything more > > > then that and we should probably call ahead, and no wifi or power > > > outlets that i can spot. > > > > > > So whats the plan for Wednesday? > > > > > > Eli > > > > > > On 8/22/07, Jeff Hinrichs - DM&T wrote: > > > > Eli and Matt, > > > > > > > > Both of you had an idea/suggestion for an alternative venue. Eli was > > > > going to check out Clancy's on 114th? And Matt had an idea about > > > > reserving a meeting room at the UNO library. > > > > > > > > September's meeting is coming up quick -- so if either of you are > > > > still willing would you look in to them when you get a chance and drop > > > > a note on the list? That goes for anyone else on the list. If you > > > > know of a decent place to meet don't be shy about mentioning it here. > > > > > > > > > > > > Thanks, > > > > > > > > -Jeff