From japhy at pearachute.com Thu May 1 01:51:51 2014 From: japhy at pearachute.com (Japhy Bartlett) Date: Wed, 30 Apr 2014 18:51:51 -0500 Subject: [Chicago] Code is really messy but it works and is open In-Reply-To: References: Message-ID: If the newest requests doesn't work in 2.x I'd be shocked, we've all been using it forever! On Sunday, April 27, 2014, Randy Baxley wrote: > Fuzzy brain hopes I can remember to look at this next time I get around to > hacking on it. Is requests backward compatible? I had the idea it was 3.0 > forward. I also had a google maps display for it working but took it out > because open worked just fine but could not close the windows from python. > > > On Sun, Apr 27, 2014 at 8:07 AM, Brian Ray > > wrote: > >> Doesn't look 'really messy' to me :) >> >> I can thinking of a couple alternate modules that would help keep it >> clean: >> >> 1) Might want to: >> >> from math import radians >> >> >> 2) also, I would consider using everyone's favorite module requests: >> http://docs.python-requests.org/en/latest/ >> >> $ pip install requests >> >> >> >> On Sun, Apr 27, 2014 at 7:37 AM, Randy Baxley >> > wrote: >> >>> Now to decide what part of Vis to work on next. >>> >>> https://github.com/randy7771026/Visual-CTA-Chicago/blob/master/sbta >>> >>> _______________________________________________ >>> Chicago mailing list >>> Chicago at python.org >>> https://mail.python.org/mailman/listinfo/chicago >>> >>> >> >> >> -- >> Brian Ray >> @brianray >> (773) 669-7717 >> >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> https://mail.python.org/mailman/listinfo/chicago >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From emperorcezar at gmail.com Thu May 1 18:18:32 2014 From: emperorcezar at gmail.com (Adam "Cezar" Jenkins) Date: Thu, 1 May 2014 11:18:32 -0500 Subject: [Chicago] Structuring a large Django API Message-ID: This is also on Stackoverflow: http://stackoverflow.com/questions/23411571/structuring-a-large-api-in-a-django-project Right now I have a large project with an equally large API (done using django rest framework). The current structure is something like this: api |-----urls.py |-----models.py | ----v1 |-----views.py |-----serializers.py |-----permissions.py |-----tests.py etc As you can guess, the views.py file is pretty big and I want to refactor this out. Currently I have a few options in front of me, the one I'm leaning towards is to put an 'api/v1' package into each app and use the api app to tie all the urls together and hold views that don't fall into an app. Does anyone have any experience with this and could provide guidance? -------------- next part -------------- An HTML attachment was scrubbed... URL: From brant.sean at gmail.com Thu May 1 18:32:37 2014 From: brant.sean at gmail.com (Sean Brant) Date: Thu, 1 May 2014 11:32:37 -0500 Subject: [Chicago] Structuring a large Django API In-Reply-To: References: Message-ID: I've used the following on a few projects with success: api |-----urls.py |-----models.py | ----resources |-----users.py |-----things.py |-----... One resource module that contains serializers and views per top-level api resource. Most resource modules end up being under 50-100 lines of code. I prefer this approach over api modules in my apps as I find my rest resources don't always fit cleanly one-to-one with my app structure. - Sean On Thu, May 1, 2014 at 11:18 AM, Adam "Cezar" Jenkins < emperorcezar at gmail.com> wrote: > This is also on Stackoverflow: > http://stackoverflow.com/questions/23411571/structuring-a-large-api-in-a-django-project > > Right now I have a large project with an equally large API (done using > django rest framework). The current structure is something like this: > > api > |-----urls.py > |-----models.py > | > ----v1 > |-----views.py > |-----serializers.py > |-----permissions.py > |-----tests.py > > etc > > As you can guess, the views.py file is pretty big and I want to refactor > this out. Currently I have a few options in front of me, the one I'm > leaning towards is to put an 'api/v1' package into each app and use the api > app to tie all the urls together and hold views that don't fall into an app. > > Does anyone have any experience with this and could provide guidance? > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From emperorcezar at gmail.com Thu May 1 18:39:13 2014 From: emperorcezar at gmail.com (Adam "Cezar" Jenkins) Date: Thu, 1 May 2014 11:39:13 -0500 Subject: [Chicago] Structuring a large Django API In-Reply-To: References: Message-ID: Thanks, What do you do when you have conflicting app and module names? For example, in your things.py above you also have a things app and in things.py you try 'from things.models import Thing'. That's been my issue when I tried that approach. On Thu, May 1, 2014 at 11:32 AM, Sean Brant wrote: > I've used the following on a few projects with success: > > api > |-----urls.py > |-----models.py > | > ----resources > |-----users.py > |-----things.py > |-----... > > One resource module that contains serializers and views per top-level api > resource. Most resource modules end up being under 50-100 lines of code. I > prefer this approach over api modules in my apps as I find my rest > resources don't always fit cleanly one-to-one with my app structure. > > - Sean > > > On Thu, May 1, 2014 at 11:18 AM, Adam "Cezar" Jenkins < > emperorcezar at gmail.com> wrote: > >> This is also on Stackoverflow: >> http://stackoverflow.com/questions/23411571/structuring-a-large-api-in-a-django-project >> >> Right now I have a large project with an equally large API (done using >> django rest framework). The current structure is something like this: >> >> api >> |-----urls.py >> |-----models.py >> | >> ----v1 >> |-----views.py >> |-----serializers.py >> |-----permissions.py >> |-----tests.py >> >> etc >> >> As you can guess, the views.py file is pretty big and I want to refactor >> this out. Currently I have a few options in front of me, the one I'm >> leaning towards is to put an 'api/v1' package into each app and use the api >> app to tie all the urls together and hold views that don't fall into an app. >> >> Does anyone have any experience with this and could provide guidance? >> >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> https://mail.python.org/mailman/listinfo/chicago >> >> > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From brant.sean at gmail.com Thu May 1 18:51:48 2014 From: brant.sean at gmail.com (Sean Brant) Date: Thu, 1 May 2014 11:51:48 -0500 Subject: [Chicago] Structuring a large Django API In-Reply-To: References: Message-ID: I use absolute imports and my project is my base package. So inside `project.api.resources.things` I would `from project.things.models import Thing` On Thu, May 1, 2014 at 11:39 AM, Adam "Cezar" Jenkins < emperorcezar at gmail.com> wrote: > Thanks, What do you do when you have conflicting app and module names? For > example, in your things.py above you also have a things app and in > things.py you try 'from things.models import Thing'. That's been my issue > when I tried that approach. > > > On Thu, May 1, 2014 at 11:32 AM, Sean Brant wrote: > >> I've used the following on a few projects with success: >> >> api >> |-----urls.py >> |-----models.py >> | >> ----resources >> |-----users.py >> |-----things.py >> |-----... >> >> One resource module that contains serializers and views per top-level api >> resource. Most resource modules end up being under 50-100 lines of code. I >> prefer this approach over api modules in my apps as I find my rest >> resources don't always fit cleanly one-to-one with my app structure. >> >> - Sean >> >> >> On Thu, May 1, 2014 at 11:18 AM, Adam "Cezar" Jenkins < >> emperorcezar at gmail.com> wrote: >> >>> This is also on Stackoverflow: >>> http://stackoverflow.com/questions/23411571/structuring-a-large-api-in-a-django-project >>> >>> Right now I have a large project with an equally large API (done using >>> django rest framework). The current structure is something like this: >>> >>> api >>> |-----urls.py >>> |-----models.py >>> | >>> ----v1 >>> |-----views.py >>> |-----serializers.py >>> |-----permissions.py >>> |-----tests.py >>> >>> etc >>> >>> As you can guess, the views.py file is pretty big and I want to refactor >>> this out. Currently I have a few options in front of me, the one I'm >>> leaning towards is to put an 'api/v1' package into each app and use the api >>> app to tie all the urls together and hold views that don't fall into an app. >>> >>> Does anyone have any experience with this and could provide guidance? >>> >>> _______________________________________________ >>> Chicago mailing list >>> Chicago at python.org >>> https://mail.python.org/mailman/listinfo/chicago >>> >>> >> >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> https://mail.python.org/mailman/listinfo/chicago >> >> > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From japhy at pearachute.com Thu May 1 18:59:07 2014 From: japhy at pearachute.com (Japhy Bartlett) Date: Thu, 1 May 2014 11:59:07 -0500 Subject: [Chicago] Meet Engineers & Founders Tomorrow at Uncubed In-Reply-To: References: Message-ID: Out of curiosity, anybody on this list been to one of these? On Wed, Apr 30, 2014 at 2:14 PM, Terresa Ling wrote: > Hey all, > > Apologies for the short notice, but I'm hosting another Uncubed conference > tomorrow if any of you are able to attend. > > Speakers include: > > ** Jason Cohen* - VP of Software Development, Gogo Inflight Internet > ** Alan Boyce* - Director of Ops and Platform Engineering, Sprout Social > ** Jake Battle* - VP of Engineering, GrubHub > ** Bob Doyle* - EVP of Engineering, ifbyphone > ** Margaret Jastrebski* - VP of Product Management, Narrative Science > ** Lowell Bike* - Product Manager, Gogo > > ... and founders like: > > ** Wes Shepherd*, Channel IQ > ** Brandon Passley,* VOKAL Interactive & Mobile Makers > ** Philip Tadros, *Doejo > ** Chris Campbell*, Review Trackers > > There's also going to be a Senior Dev Speakeasy, product demos, and drinks > throughout. > > Plus if anyone's looking for a new gig, *Gogo, GrubHub, Uber, SingleHop, > Sprout Social, Narrative Science, & more* will be there to hire. > > *As last time, you guys can save 50% with the code* *CHIPY.* > > *Register & view the full line-up here: chicago.getuncubed.com > * > > Hope to see you tomorrow! > > Terresa > > -- > Terresa Ling > Wakefield | Uncubed > terresa at wakefieldmedia.com > > *Subscribe > * to > our controversially addictive email on tech and startups. > *Attend > * Uncubed, > a gigantic gathering of hiring startups. > > *Up Next: CHI (5/1)* > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From shekay at pobox.com Thu May 1 20:00:38 2014 From: shekay at pobox.com (sheila miguez) Date: Thu, 1 May 2014 13:00:38 -0500 Subject: [Chicago] =?utf-8?b?UGFvbGHigJlzIFZpbnVt?= Message-ID: A little bit off topic but not entirely since it is where we are meeting next week. Will we have tables with dinner while we watch the talks? The menu looks interesting. When we met at Sully's we could order food, and I was wondering if this is similar. -- shekay at pobox.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From paul at paulmayassociates.com Thu May 1 20:23:50 2014 From: paul at paulmayassociates.com (Paul May) Date: Thu, 01 May 2014 18:23:50 -0000 Subject: [Chicago] From PMA - Position: Python Web Developer Chicago Contract Message-ID: <195884799188474@198.154.215.62:26> Dear ChiPy, Python Web Developer Contract Location - Chicago, Il 60606 Downtown (consultant must be on-site but may be able to work some remote at times) 6-8 week duration with renewal and / or hire option Immediate start Hourly: Market rate ------------------------------------------- Role: Platform Developer Reports To: Director of Technology Skills: Python Technologist with 2 to 5 years experience in development of enterprise applications or platforms OOP experience required Experience with Python required Some web development experience required Understanding of Database and SQL required C# or Java a plus Experience in small environments building soup-to-nuts solutions a plus Clinical / Healthcare Industry experience a plus Cloud computing experience a plus Good communication skills required pma123m Click here to apply online Thanks, Paul President v 708-479-1111 c 312-925-1294 Paul May & Associates, Inc. (PMA) paul at paulmayassociates.com link up http://www.linkedin.com/in/paulmayassociates like us on http://www.facebook.com/paulmayassociates Search over 100 real jobs www.paulmayassociates.com Note:- If you do not wish to receive emails from Paul May & Associates, please send an email to remove at paulmayassociates.com and put REMOVE in the Subject line. (The following links were included with this email:) http://jobs.paulmayassociates.com/pcrbin/apply.asp?r=Hs4OL%2bbExRmEEPqko8jhD6KThlyfA5bu8WV0EmGYtg0EDmtcJSwCp8TQoCiYpERyG%2fZdnho%3d mailto:paul at paulmayassociates.com http://www.linkedin.com/in/paulmayassociates http://www.facebook.com/paulmayassociates http://www.paulmayassociates.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From hundredpercentjuice at gmail.com Thu May 1 21:24:42 2014 From: hundredpercentjuice at gmail.com (JS Irick) Date: Thu, 1 May 2014 15:24:42 -0400 Subject: [Chicago] Code is really messy but it works and is open In-Reply-To: References: Message-ID: Hello All- This link no longer worked for me, I recommend: https://github.com/randy7771026/Visual-CTA-Chicago/ Thank you. -js -js On Sun, Apr 27, 2014 at 8:37 AM, Randy Baxley wrote: > Now to decide what part of Vis to work on next. > > https://github.com/randy7771026/Visual-CTA-Chicago/blob/master/sbta > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > > -- ==== JS Irick 312-307-8904 Consultant: truqua.com Coach: atlascrossfit.com Programmer: juicetux.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From dinaldo at gmail.com Thu May 1 21:34:28 2014 From: dinaldo at gmail.com (Don Sheu) Date: Thu, 1 May 2014 12:34:28 -0700 Subject: [Chicago] From PMA - Position: Python Web Developer Chicago Contract In-Reply-To: <53629d49.c1370f0a.2c7f.ffffcc96SMTPIN_ADDED_BROKEN@mx.google.com> References: <53629d49.c1370f0a.2c7f.ffffcc96SMTPIN_ADDED_BROKEN@mx.google.com> Message-ID: <42929478-F7C1-4432-A743-280B97433D56@gmail.com> Hi Paul, Joseph would be terrific for this position. Sent from my iPhone > On May 1, 2014, at 11:23 AM, "Paul May" wrote: > > Dear ChiPy, > > Python Web Developer Contract > Location - Chicago, Il 60606 Downtown (consultant must be on-site but may be able to work some remote at times) > > 6-8 week duration with renewal and / or hire option > > Immediate start > > Hourly: Market rate > > ------------------------------------------- > > Role: Platform Developer > Reports To: Director of Technology > > > Skills: > > Python Technologist with 2 to 5 years experience in development of enterprise applications or platforms > OOP experience required > Experience with Python required > Some web development experience required > Understanding of Database and SQL required > > C# or Java a plus > Experience in small environments building soup-to-nuts solutions a plus > Clinical / Healthcare Industry experience a plus > Cloud computing experience a plus > > Good communication skills required > > > pma123m > > Click here to apply online > > > > > Thanks, > > Paul > > President > > v 708-479-1111 > c 312-925-1294 > Paul May & Associates, Inc. (PMA) > paul at paulmayassociates.com > link up http://www.linkedin.com/in/paulmayassociates > like us on http://www.facebook.com/paulmayassociates > Search over 100 real jobs www.paulmayassociates.com > Note:- If you do not wish to receive emails from Paul May & Associates, > please send an email to remove at paulmayassociates.com and put REMOVE in the Subject line. > > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago -------------- next part -------------- An HTML attachment was scrubbed... URL: From AMartinez at itmmi.com Thu May 1 23:10:18 2014 From: AMartinez at itmmi.com (Alex Martinez) Date: Thu, 1 May 2014 21:10:18 +0000 Subject: [Chicago] Contract Position - Python Developer in Downtown Chicago Message-ID: Our client in Chicago is seeking a Python Developer to join their development organization in Downtown Chicago Job Description: Mid-Senior software programmer with very strong OOD experience with 7-10 years of experience and domain experience of compliance processes or investment banking. Ideally candidate must have experience with an emphasis trading/risk systems. Candidate must be a strong team player/lead with excellent communication skills, strong analytical skills and be able to solve complex technical problems. Project will involve working in a high pressure environment with deadlines that must be met. Position requires that they work closely with business groups, technology, finance and market risk. We are looking for a self-motivated and proactive individual. Must have experience working in an Agile environment and participate in the agile/scrum process as part of the project team. Qualifications: Senior Python Developer with 7+ years as an exceptional OOD in Java and Python Strong development skills in scripting languages Python and C++ / Java on Linux/UNIX. Thorough knowledge in Python programming is necessary. Experienced developing technical design and proven track record of working in a high performance environment (Agile) Strong understanding of ETL processes, database concepts and data warehousing Strong SQL skills Experience working on OO databases Solid knowledge of contemporary development processes waterfall/agile, build environments and testing tools Bachelor's degree in Computer Science or related field or Master's degree. Desired: -Messaging Middleware concepts, usage and application -Familiarity with Excel including macros. Candidate with domain expertise in the Investment Banking with trading and risk systems are highly desired. This role is to be part of a team that relies heavily on the team to deliver the necessary work on time to insure the project stays on time and on budget. Strong interpersonal skills and communication skills are required as candidate will be working closely and interfacing with different business groups required to get the development task completed. If you are interested in discussing the position in more detail please email me at the email address below as I will be doing the initial screening of anyone interested in the position. Thank You Alex R. Martinez Sr. Account Manager Mitchell Martin Inc. Phone: 312-667-0440 Mobile: 312-434-1950 Fax: 646-355-0229 amartinez at itmmi.com [cid:image001.png at 01CE2ECE.86CA7940][cid:image002.png at 01CE2ECE.86CA7940][cid:image003.png at 01CE2ECE.86CA7940] [StyleGuide_2013Lrgst_US] [cid:image004.jpg at 01CE2ECE.86CA7940] [cid:image006.jpg at 01CE2ECE.86CA7940] The information contained in this message may be privileged and confidential. It is intended to be read only by the individual or entity to whom it is addressed or by their designee. If the reader of this message is not the intended recipient, you are on notice that any distribution of this message, in any form, is strictly prohibited. If you have received this message in error, please immediately notify the sender and delete or destroy any and all copies of this message. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 2788 bytes Desc: image001.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.png Type: image/png Size: 2536 bytes Desc: image002.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image003.png Type: image/png Size: 2798 bytes Desc: image003.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image004.jpg Type: image/jpeg Size: 2771 bytes Desc: image004.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image005.jpg Type: image/jpeg Size: 2938 bytes Desc: image005.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image006.jpg Type: image/jpeg Size: 6092 bytes Desc: image006.jpg URL: From randy7771026 at gmail.com Fri May 2 02:57:19 2014 From: randy7771026 at gmail.com (Randy Baxley) Date: Thu, 1 May 2014 19:57:19 -0500 Subject: [Chicago] Meet Engineers & Founders Tomorrow at Uncubed In-Reply-To: References: Message-ID: I went to the last one. It was a nice time and there were some good speakers but the last one was a bit heavy on MS, On Thu, May 1, 2014 at 11:59 AM, Japhy Bartlett wrote: > Out of curiosity, anybody on this list been to one of these? > > > On Wed, Apr 30, 2014 at 2:14 PM, Terresa Ling wrote: > >> Hey all, >> >> Apologies for the short notice, but I'm hosting another Uncubed >> conference tomorrow if any of you are able to attend. >> >> Speakers include: >> >> ** Jason Cohen* - VP of Software Development, Gogo Inflight Internet >> ** Alan Boyce* - Director of Ops and Platform Engineering, Sprout Social >> ** Jake Battle* - VP of Engineering, GrubHub >> ** Bob Doyle* - EVP of Engineering, ifbyphone >> ** Margaret Jastrebski* - VP of Product Management, Narrative Science >> ** Lowell Bike* - Product Manager, Gogo >> >> ... and founders like: >> >> ** Wes Shepherd*, Channel IQ >> ** Brandon Passley,* VOKAL Interactive & Mobile Makers >> ** Philip Tadros, *Doejo >> ** Chris Campbell*, Review Trackers >> >> There's also going to be a Senior Dev Speakeasy, product demos, and >> drinks throughout. >> >> Plus if anyone's looking for a new gig, *Gogo, GrubHub, Uber, SingleHop, >> Sprout Social, Narrative Science, & more* will be there to hire. >> >> *As last time, you guys can save 50% with the code* *CHIPY.* >> >> *Register & view the full line-up here: chicago.getuncubed.com >> * >> >> Hope to see you tomorrow! >> >> Terresa >> >> -- >> Terresa Ling >> Wakefield | Uncubed >> terresa at wakefieldmedia.com >> >> *Subscribe >> * to >> our controversially addictive email on tech and startups. >> *Attend >> * Uncubed, >> a gigantic gathering of hiring startups. >> >> *Up Next: CHI (5/1)* >> >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> https://mail.python.org/mailman/listinfo/chicago >> >> > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jdumblauskas at gmail.com Fri May 2 05:00:57 2014 From: jdumblauskas at gmail.com (Jerry Dumblauskas) Date: Thu, 1 May 2014 22:00:57 -0500 Subject: [Chicago] Anybody want to give a review of Pycon? Message-ID: Looking for a few people who were at Pycon and would want to summarize/review what they saw -- maybe in a lightning talk format? Any volunteers? :) thx -------------- next part -------------- An HTML attachment was scrubbed... URL: From jarednash0 at gmail.com Fri May 2 05:09:47 2014 From: jarednash0 at gmail.com (Jared Nash) Date: Thu, 1 May 2014 22:09:47 -0500 Subject: [Chicago] Anybody want to give a review of Pycon? In-Reply-To: References: Message-ID: Having never been, I want to hear all the details. Please? Someone? On May 1, 2014 10:01 PM, "Jerry Dumblauskas" wrote: > Looking for a few people who were at Pycon and would want to > summarize/review what they saw -- maybe in a lightning talk format? > > Any volunteers? :) > > thx > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From shekay at pobox.com Fri May 2 17:03:57 2014 From: shekay at pobox.com (sheila miguez) Date: Fri, 2 May 2014 10:03:57 -0500 Subject: [Chicago] Programming internships? Message-ID: Hi everyone, Someone put me in touch with a student who is hoping for an internship. I am helping with Google Summer of Code, but the deadlines for application for that have already past. I was wondering if any of you could get in touch with me about a student who is hoping for an internship? I could pass along the contact information. -- shekay at pobox.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From bainada.iit at gmail.com Fri May 2 17:13:51 2014 From: bainada.iit at gmail.com (Adam Bain) Date: Fri, 2 May 2014 10:13:51 -0500 Subject: [Chicago] Anybody want to give a review of Pycon? In-Reply-To: References: Message-ID: I can give a 10 min or so talk. Though my pycon experience was pretty web and TDD heavy On May 1, 2014 10:01 PM, "Jerry Dumblauskas" wrote: > Looking for a few people who were at Pycon and would want to > summarize/review what they saw -- maybe in a lightning talk format? > > Any volunteers? :) > > thx > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From wirth.jason at gmail.com Fri May 2 18:12:06 2014 From: wirth.jason at gmail.com (Jason Wirth) Date: Fri, 2 May 2014 12:12:06 -0400 Subject: [Chicago] Anybody want to give a review of Pycon? In-Reply-To: References: Message-ID: I can talk about it as well. On Friday, May 2, 2014, Adam Bain wrote: > I can give a 10 min or so talk. Though my pycon experience was pretty web > and TDD heavy > On May 1, 2014 10:01 PM, "Jerry Dumblauskas" > > wrote: > >> Looking for a few people who were at Pycon and would want to >> summarize/review what they saw -- maybe in a lightning talk format? >> >> Any volunteers? :) >> >> thx >> >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> https://mail.python.org/mailman/listinfo/chicago >> >> -- -- Jason Wirth 213.986.5809 wirth.jason at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From jdumblauskas at gmail.com Fri May 2 23:23:32 2014 From: jdumblauskas at gmail.com (Jerry Dumblauskas) Date: Fri, 2 May 2014 16:23:32 -0500 Subject: [Chicago] Anybody want to give a review of Pycon? In-Reply-To: References: Message-ID: k -- I'm holding you too it :) thx Jerry On Fri, May 2, 2014 at 11:12 AM, Jason Wirth wrote: > I can talk about it as well. > > > On Friday, May 2, 2014, Adam Bain wrote: > >> I can give a 10 min or so talk. Though my pycon experience was pretty web >> and TDD heavy >> On May 1, 2014 10:01 PM, "Jerry Dumblauskas" >> wrote: >> >>> Looking for a few people who were at Pycon and would want to >>> summarize/review what they saw -- maybe in a lightning talk format? >>> >>> Any volunteers? :) >>> >>> thx >>> >>> _______________________________________________ >>> Chicago mailing list >>> Chicago at python.org >>> https://mail.python.org/mailman/listinfo/chicago >>> >>> > > -- > > -- > Jason Wirth > 213.986.5809 > wirth.jason at gmail.com > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian.costlow at gmail.com Sun May 4 16:14:56 2014 From: brian.costlow at gmail.com (Brian Costlow) Date: Sun, 4 May 2014 10:14:56 -0400 Subject: [Chicago] PyOhio 2014 Message-ID: Hey folks, Just a quick note about PyOhio 2014. The conference will take place the last weekend in July, this year the 26th and 27th, at the Ohio Union, The Ohio State University. Our call for proposals is nearly over, it closes on May 15th. We have some fantastic talks already submitted. But PyOhio has always been committed to finding great new speakers, and we don't have as many first-timers as we'd like. So if you've never given a talk before, consider making this your year. If you want help with a proposal, contact me (brian.costlow at gmail) and I'll match you up with a mentor who will give you a hand. Not a first time speaker, but know something cool about Python? We want to hear about it too. http://www.pyohio.org/call-for-proposals/ Conference registration is now open. As always, attending PyOhio is absolutely free! Just select Free PyOhio 2014 Admission. But if you want the cool commemorative T-Shirt, you'll need to purchase one in advance. Purchasing also registers you, so you don't need to pick both. All profit (after we pay the supplier) is used to fund PyOhio, and keep it free to attend. http://pyohio2014.eventbrite.com Thanks to a generous grant from the PSF, we will be offering two PyKids/Young Coder's classes this year, one Saturday and one Sunday, so we can teach 50 kids Python. Registration will open in mid-July. Barb Shaurette, one of the program originators, is coming up to run things for us. We'll also be working with some Columbus youth organizations to give some disadvantaged kids?who otherwise could not even get to a free class?a chance to attend. If you are an adult, and new to Python, we're once again partnering with TriPython to hold a week long python bootcamp class, from July 21 through July 25. http://trizpug.org/boot-camp/pyohio14/ This year we have a great new location for sprints. Pillar Technology, about a five minute drive away, will be hosting sprints from 6 PM-11 PM July 25, 26 and 27. Their facility, the Forge, has lots of space, is set up for coding, and has craft brew on tap. We'll bring in food. http://pillartechnology.com/forge/about/forge-columbus-ohio/ As always, we could not put on PyOhio without generous support from the Python community. Our thanks to Eventbrite, New Relic, Rackspace, Caktus, Intellovations, Wingware, O'Reilly, and No Starch Press for their sponsorship of PyOhio 2014. This year our costs are up, and the number of sponsors are down. If your company uses Python, consider asking them to sponsor the conference. Sponsorship packages start as low as $500. If you or your company want to help us out, but can only donate a lower amount, you can donate via Eventbrite. Scroll down to the bottom of the registration page. As always, thanks for speaking, volunteering, funding, and coming out and attending PyOhio. The organizers just facilitate, all of you are what makes PyOhio great. Brian Costlow Chair, PyOhio 2014 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ethan at activetrans.org Mon May 5 22:13:10 2014 From: ethan at activetrans.org (Ethan Spotts) Date: Mon, 5 May 2014 15:13:10 -0500 Subject: [Chicago] Seeking Django/Python freelancers Message-ID: <552CD98F700BD6409F70C1B72AAED63D8649FD8BB9@ATASRV1.biketraffic.lan> Hello Chicago Python community, I work with the Active Transportation Alliance, Chicagoland's bike, walk and transit nonprofit. We produce Bike the Drive (hopefully you've heard of it) and also the Bike Commuter Challenge, a regional bike commute trip tracking competition that's taking place June 13-20 this year. We licensed a registration and trip tracking software for this year's effort and have had a couple of volunteers graciously helping us customizing it. The system is built in Djano/Python. We have two major customizations (30-40 hours of work) that we are seeking freelance help with in order to get them done ASAP. Our volunteers recommended reaching out to this community in hopes of securing freelance help. Please email me ethan at activetrans.org if you are interested/available. Thanks much, Ethan Here's a blurb about the Bike Commuter Challenge: Bike Commuter Challenge - June 13-20 Sign up with more than 7,000 people at 450 Chicagoland companies and organizations for the Bike Commuter Challenge June 13-20, 2014. You don't have to bike all the way every day, just biking to your local bus or train stop counts. Groupon, Orbitz, your local bike shop and lots of businesses do it. Nearly 20% of our participants are biking to work for the first time and nearly 40% are women. We'll give you and your office all the tools you need to get going on two wheels. Meet other cool bike commuters all week before and after work at more than 40 events and socials around the region. www.bikecommuterchallenge.org. Ethan Spotts Deputy Executive Director, Events & Marketing Active Transportation Alliance 9 W. Hubbard St., Ste. 402 Chicago, IL 60654 ethan at activetrans.org p: 312.427.3325x287 f: 312.427.4907 Support bike advocacy by biking! Get ready for our 2014 big bike events! -------------- next part -------------- An HTML attachment was scrubbed... URL: From wirth.jason at gmail.com Tue May 6 07:14:35 2014 From: wirth.jason at gmail.com (Jason Wirth) Date: Tue, 6 May 2014 00:14:35 -0500 Subject: [Chicago] Pygame Message-ID: I'm wondering who uses or knows about Pygame. -- -- Jason Wirth 213.986.5809 wirth.jason at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From tal.liron at threecrickets.com Wed May 7 03:40:55 2014 From: tal.liron at threecrickets.com (Tal Liron) Date: Wed, 7 May 2014 09:40:55 +0800 Subject: [Chicago] Pygame In-Reply-To: References: Message-ID: Pygame was very useful for me in the early stages of learning OpenGL, though I've since abandoned it in favor of C (because I develop cross-platform and want to target mobile and I dislike C++). Do you have a particular question or just want an opinion about it? My opinion is that it was suprisingly comprehensive and performant, even for 3D gaming, and for me at least was a great sandbox for learning. On Tue, May 6, 2014 at 1:14 PM, Jason Wirth wrote: > I'm wondering who uses or knows about Pygame. > > > > -- > > -- > Jason Wirth > 213.986.5809 > wirth.jason at gmail.com > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > From jdumblauskas at gmail.com Wed May 7 04:06:40 2014 From: jdumblauskas at gmail.com (Jerry Dumblauskas) Date: Tue, 6 May 2014 21:06:40 -0500 Subject: [Chicago] [ANN] ChiPy May meeting , Thursday the 8th at 7pm Message-ID: reminder, please rsvp at http://www.chipy.org/ The venue is: Paola?s Vinum 328 S Jefferson St Ste 120 Chicago, IL 60661 We have 3 talks set and a very nice venue -- it should be a blast! See you there -------------- next part -------------- An HTML attachment was scrubbed... URL: From wirth.jason at gmail.com Wed May 7 04:10:32 2014 From: wirth.jason at gmail.com (Jason Wirth) Date: Tue, 6 May 2014 21:10:32 -0500 Subject: [Chicago] Pygame In-Reply-To: References: Message-ID: I don't have a particular question per se, just seeing if anyone local has used it and curious about their experiences in case I have questions. I wouldn't mind trying to learn it in an afternoon / weekend just to have some fun. I'm not a game programmer by trade but games seem to make everyone excited. -- Jason Wirth 213.986.5809 wirth.jason at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From tal.liron at threecrickets.com Wed May 7 07:18:21 2014 From: tal.liron at threecrickets.com (Tal Liron) Date: Wed, 7 May 2014 13:18:21 +0800 Subject: [Chicago] Pygame In-Reply-To: References: Message-ID: I do recommend Pygame to any Python programmer! It's fun to turn your Python skills into something colorful and interactive with relative ease. On Wed, May 7, 2014 at 10:10 AM, Jason Wirth wrote: > I don't have a particular question per se, just seeing if anyone local has > used it and curious about their experiences in case I have questions. > > I wouldn't mind trying to learn it in an afternoon / weekend just to have > some fun. I'm not a game programmer by trade but games seem to make everyone > excited. > > > -- > Jason Wirth > 213.986.5809 > wirth.jason at gmail.com > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > From ascription at yahoo.com Wed May 7 08:05:29 2014 From: ascription at yahoo.com (Aaron Brady) Date: Tue, 6 May 2014 23:05:29 -0700 (PDT) Subject: [Chicago] Pygame In-Reply-To: References: Message-ID: <1399442729.70550.YahooMailNeo@web140204.mail.bf1.yahoo.com> Jason, I've done several things in PyGame. ?What do you need? ?We can talk if you want. ?I'm on Freenode a lot. ?My nick is Castironpi , an anagram of this email. On Wednesday, May 7, 2014 12:18 AM, Tal Liron wrote: I do recommend Pygame to any Python programmer! It's fun to turn your Python skills into something colorful and interactive with relative ease. On Wed, May 7, 2014 at 10:10 AM, Jason Wirth wrote: > I don't have a particular question per se, just seeing if anyone local has > used it and curious about their experiences in case I have questions. > > I wouldn't mind trying to learn it in an afternoon / weekend just to have > some fun. I'm not a game programmer by trade but games seem to make everyone > excited. > > > -- > Jason Wirth >? ? ? 213.986.5809 >? ? wirth.jason at gmail.com > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > _______________________________________________ Chicago mailing list Chicago at python.org https://mail.python.org/mailman/listinfo/chicago -------------- next part -------------- An HTML attachment was scrubbed... URL: From ascription at yahoo.com Wed May 7 08:10:39 2014 From: ascription at yahoo.com (Aaron Brady) Date: Tue, 6 May 2014 23:10:39 -0700 (PDT) Subject: [Chicago] possible talk next week In-Reply-To: <1398631190.46236.YahooMailNeo@web140201.mail.bf1.yahoo.com> References: <1398631190.46236.YahooMailNeo@web140201.mail.bf1.yahoo.com> Message-ID: <1399443039.62401.YahooMailNeo@web140202.mail.bf1.yahoo.com> Hi all, Can I use someone's laptop for my talk please? ?My laptop is broken with a broken keyboard, but could be resurrected if necessary. ?My code is all on the web (now with markup). http://home.comcast.net/~castironpi-misc/irc-0138%20irc%20bot%20markup.html Also, what is the setting at the restaurant? ?Do we have a back room with a projector? On Sunday, April 27, 2014 3:43 PM, Aaron Brady wrote: Hi all, Would it be appropriate to discuss a talk I want to give at the next meeting on the list, before I sign up? ?I always expect someone to sign up a little earlier than they do. ?If you recall, I talked in January. The idea this time is an IRC Bot. ?The bot itself doesn't do anything much, but the implementation is neat in a couple of ways. http://home.comcast.net/~castironpi-misc/irc-0138%20irc%20bot.py Or I didn't get around to some other topics I suggested, if anyone would prefer those. _______________________________________________ Chicago mailing list Chicago at python.org https://mail.python.org/mailman/listinfo/chicago -------------- next part -------------- An HTML attachment was scrubbed... URL: From brianhray at gmail.com Wed May 7 22:08:40 2014 From: brianhray at gmail.com (Brian Ray) Date: Wed, 7 May 2014 15:08:40 -0500 Subject: [Chicago] Reminder and Thank you Message-ID: ChiPy Members and Friends, Our Chicago Python community has seen great growth the last several years. One of the key benefits is our ability to help both Python developers and those hiring find each other. There currently is a shortage of qualified Python developers in the Chicagoland area?. In order to continue our growth, ChiPy has made both formal and informal agreements with those hiring to provide us a referral bonus** whenever they find and hire someone from our network. Despite our best efforts, we have been delinquent in collecting those referrals in the past. We encourage those who have found talent and have not yet made a donation to arrange a donation to the club today. Contact any organizer, including myself, and we will give you more instructions. If you have been hired by someone who found you from our network, please forward this email to them so they can make their good faith donation. Thank you for your time in tracking this down. We would like to personally thank every member who has contributed to ChiPy in the past. We all would like ChiPy to be as self-sufficient as possible. In the past, we've had the funds to do amazing things like send students to PyCon. We now set out a new goal of our fundraising: * "Chicago Python User Group sets goal to send 3 students to PyCon in Montreal for 2015" --Brian Ray, ChiPy Organizer (ref http://bit.ly/1s87j5G )* Achieving a goal like this is a great measure of our success. It us up to every one of you to make this possible. Thank you for supporting the Python Programming language in Chicago. Warmest Regards, Brian Ray and the ChiPy Organizers ? You may forward your resume to any board member to have it distributed to our trusted network ** We recommend a referral be paid in an amount ranging between $500-$1000 per successful hire. -- Brian Ray @brianray (773) 669-7717 -------------- next part -------------- An HTML attachment was scrubbed... URL: From heflin.rosst at gmail.com Fri May 9 07:45:53 2014 From: heflin.rosst at gmail.com (Ross Heflin) Date: Fri, 9 May 2014 00:45:53 -0500 Subject: [Chicago] description for police report needed. Message-ID: Good evening, I'm sorry to report that someone on the patio was seen walking away with my bag. Is black chrome bag with orange flap. Anyone who saw something say something. Thank you, -Ross -------------- next part -------------- An HTML attachment was scrubbed... URL: From heflin.rosst at gmail.com Fri May 9 09:31:18 2014 From: heflin.rosst at gmail.com (Ross Heflin) Date: Fri, 9 May 2014 02:31:18 -0500 Subject: [Chicago] description for police report needed. In-Reply-To: References: Message-ID: Bag recovered. Citizen grabbed the wrong bag. Gave it to a cop. Call off the dogs of war. -Ross On May 9, 2014 12:45 AM, "Ross Heflin" wrote: > Good evening, > > I'm sorry to report that someone on the patio was seen walking away with > my bag. Is black chrome bag with orange flap. Anyone who saw something > say something. > > Thank you, > > -Ross > -------------- next part -------------- An HTML attachment was scrubbed... URL: From emperorcezar at gmail.com Fri May 9 15:08:05 2014 From: emperorcezar at gmail.com (Adam "Cezar" Jenkins) Date: Fri, 9 May 2014 08:08:05 -0500 Subject: [Chicago] description for police report needed. In-Reply-To: References: Message-ID: I sewed some patches to my Chrome bag and one side effects is it's pretty recognizable now. On May 9, 2014 2:31 AM, "Ross Heflin" wrote: > Bag recovered. Citizen grabbed the wrong bag. Gave it to a cop. Call > off the dogs of war. > > -Ross > On May 9, 2014 12:45 AM, "Ross Heflin" wrote: > >> Good evening, >> >> I'm sorry to report that someone on the patio was seen walking away with >> my bag. Is black chrome bag with orange flap. Anyone who saw something >> say something. >> >> Thank you, >> >> -Ross >> > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ascription at yahoo.com Fri May 9 23:10:08 2014 From: ascription at yahoo.com (Aaron Brady) Date: Fri, 9 May 2014 14:10:08 -0700 (PDT) Subject: [Chicago] possible talk next week In-Reply-To: <1399443039.62401.YahooMailNeo@web140202.mail.bf1.yahoo.com> References: <1398631190.46236.YahooMailNeo@web140201.mail.bf1.yahoo.com> <1399443039.62401.YahooMailNeo@web140202.mail.bf1.yahoo.com> Message-ID: <1399669808.40018.YahooMailNeo@web140203.mail.bf1.yahoo.com> Awesome meeting everyone. ?The talks were very fun (and giving one). The setting was, we had the *front* room with a projector, then stayed out on the patio until close. If you ever have to drive to 60th & Drexel to get Ross's bag, take the highway. On Wednesday, May 7, 2014 1:14 AM, Aaron Brady wrote: Hi all, Can I use someone's laptop for my talk please? ?My laptop is broken with a broken keyboard, but could be resurrected if necessary. ?My code is all on the web (now with markup). http://home.comcast.net/~castironpi-misc/irc-0138%20irc%20bot%20markup.html Also, what is the setting at the restaurant? ?Do we have a back room with a projector? On Sunday, April 27, 2014 3:43 PM, Aaron Brady wrote: Hi all, Would it be appropriate to discuss a talk I want to give at the next meeting on the list, before I sign up? ?I always expect someone to sign up a little earlier than they do. ?If you recall, I talked in January. The idea this time is an IRC Bot. ?The bot itself doesn't do anything much, but the implementation is neat in a couple of ways. http://home.comcast.net/~castironpi-misc/irc-0138%20irc%20bot.py Or I didn't get around to some other topics I suggested, if anyone would prefer those. _______________________________________________ Chicago mailing list Chicago at python.org https://mail.python.org/mailman/listinfo/chicago _______________________________________________ Chicago mailing list Chicago at python.org https://mail.python.org/mailman/listinfo/chicago From ascription at yahoo.com Fri May 9 23:16:55 2014 From: ascription at yahoo.com (Aaron Brady) Date: Fri, 9 May 2014 14:16:55 -0700 (PDT) Subject: [Chicago] MINI Talks Message-ID: <1399670215.60764.YahooMailNeo@web140204.mail.bf1.yahoo.com> Hi guys, I have a little experience in the performing arts. ?(I talked last night.) ?Everyone has stage fright, it's a shame. ?I propose we add some mini-talks sometimes: several talks, 5 minutes or less. ?Everyone has written code in the last month, and we should talk about it, even if we have to use Pastebin, but 30 minutes is a lot to fill. ?(Or we could just present at our tables instead if it's preferred, like introductions.) ?I start the bidding at: +5. From mhoeltin at teksystems.com Fri May 16 21:11:30 2014 From: mhoeltin at teksystems.com (Hoelting, Mark) Date: Fri, 16 May 2014 15:11:30 -0400 Subject: [Chicago] Python Developer Role @ Bank of America Message-ID: <8A785679BB69CF4499A92BD20F46FEB35BDAD1E98B@EXCH-MBX24.allegisgroup.com> Python Community - I was given the opportunity to post a Python opportunity I have to this thread. Bank of America is going through an overhaul of their risk platform globally so that they can understand their overall global risk at any given time. They have several different platforms that need to be converted to Python as well as building the framework that these applications sit on in Python. This is a top 5 initiative for the bank and is looking to be a 5 year project which is in its 2 year. A majority of the management in Chicago is continuously looking for Python developers to aide in building this framework. Below is just one of the many job descriptions, if you're interested in the role, please let me know. Job Description below: Company: Bank of America Location: 540 W Washington Duration: 18+ Month Contract (possibility of conversion) Position: Python Developer The FX Cash team at BofA is looking for a developer who can bring something to their team, something that can make them significant with the team whether it's their strong knowledge of Python or the years of experience in the Foreign Exchange markets. They are looking for a proactive developer who can join the team and start from day 1. These are senior roles so they are looking for someone who doesn't need any hand holding and can take on work without being asked to do so. They need a forward thinker who can look at a road map and let everyone know what needs to happen next instead of being told what happens next. Top 3 Skills: 1. Thinker (ability to see down the road and participate to make the strategy happen) 2. Scripting knowledge (If the individual does not have direct Python experience, someone with Object Oriented programming (C++, Java) w/ Perl, Korn or VBA scripting will be considered) 3. Team fit - this is a small group where everyone contributes, you must be willing to wear many hats to get the job done in this group Plus - Having enterprise financial experience is a plus, having FX experience is a huge plus. Job Description: Quartz FXCashDB Technology Python Developer The ideal candidate will experience facing front office users on a regular basis and providing tactical as well as strategic solutions in a high pressure environment. Experience or expertise in Foreign Exchange (FX) markets is valued. The internal market data technology team is Agile based. They are a talented, experienced, and passionate group of technologists/strategists that prides itself on quality of delivery, continuous improvement, and a relaxed atmosphere. We are seeking a developer (5+ years of experience) to join the team, grow with them as well as teach them a few things along the way within the team environment. As a successful candidate and team member you must: * Be able to demonstrate proficiency with excel and python and a reasonable subset of the following: C sharp, C++, SQL, UNIX, Messaging (MQ, RV) and Perl. * Have a proven ability to solve problems with technology - Can you describe a problem you've solved, the details of the solution, and why you chose the technology you used? Have you had demonstrated success developing large-scale sustainable applications? * Be passionate about quality, programming, and software development in general - Do you "sharpen the saw" and continually explore opportunities to improve? Are you a technology evangelist? Will you introduce the group to new technologies and approaches? * Be flexible with day-to-day responsibilities - Do you have an interest in polyglot programming? Are you comfortable with working across multiple systems and potentially using multiple programming languages and technologies? * Be organized - Are you able to remain productive even when you have multiple deliverables? * Demonstrate good judgment - Can you be trusted to make good decisions independently? More about us: * Bank of America Merrill Lynch is a global financial powerhouse that markets, trades, and manages risk for various derivative products * Together with team members in Chicago, New York, London, Singapore, India and elsewhere, the team builds and maintains systems that are key contributors to the bank's position in this high revenue business * Our developers pride themselves on their interest in technology and knowledge sharing is encouraged via informal brown-bag lunches, company-sponsored training, and annual internal developer conferences About the role: * You will be working with a team of developers and business analysts within FXCashDB team * You will participate in most phases of the software development life cycle including story writing and estimation, design, development, test planning, test automation, and deployment Regards, Mark Hoelting | Account Manager - Capital Markets & Investment Banking T 312.474.5570 | M 773.551.0422 | mhoeltin at TEKsystems.com TF 888.739.5870 | F 312.879.1012 | www.TEKsystems.com 111 N. Canal St., Suite #105, Chicago, IL 60606 [cid:image002.jpg at 01CF7110.BC198C00] ________________________________ This electronic mail (including any attachments) may contain information that is privileged, confidential, and/or otherwise protected from disclosure to anyone other than its intended recipient(s). Any dissemination or use of this electronic mail or its contents (including any attachments) by persons other than the intended recipient(s) is strictly prohibited. If you have received this message in error, please notify us immediately by reply e-mail so that we may correct our internal records. Please then delete the original message (including any attachments) in its entirety. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 2438 bytes Desc: image002.jpg URL: From shekay at pobox.com Tue May 20 22:42:05 2014 From: shekay at pobox.com (sheila miguez) Date: Tue, 20 May 2014 15:42:05 -0500 Subject: [Chicago] Python Project Night this Thursday Message-ID: http://www.meetup.com/ChicagoPythonistas/events/179921592/ Come work on Python projects, get programming help, help others, and hang out. Bring your own project or work on one of the suggested projects below. Everyone is welcome, all skill levels are encouraged. Friendly people will be here to help beginning Python programmers with language basics and practice. Audience: Everyone! All Python experience levels are welcome, and everything is self-paced. When: 6:30pm - 9:30pm Where: Braintree Food: Pizza will be provided by Braintree Things to bring: a wireless-enabled laptop and power cord. -- shekay at pobox.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From wirth.jason at gmail.com Thu May 22 21:16:32 2014 From: wirth.jason at gmail.com (Jason Wirth) Date: Thu, 22 May 2014 14:16:32 -0500 Subject: [Chicago] IBM Watson <3 IPython Notebook Message-ID: I just came across this meetup tonight about IBM's Watson. It looks cool and has a small python influence. http://www.meetup.com/Chicago-Mobile-Application-Development-Enthusiasts/events/158398592/?fromJoin=158398592 Watson itself is written in Java, IIRC, but you can imagine the ecosystem of tools needed to build, support, and analyze a system of Watson's complexity. Last year at SciPy there was a talk titled, "Analyzing IBM Watson experiments with IPython Notebook" http://youtu.be/tlontoyWX70 There's a slide around the 12 minute mark showing the tools needed to build their analysis. They started with multiple tools (java, javascript/D3, html/css) which totaled 8,350 lines of code and replaced it with the IPython notebook totaling 220 lines of code. 220 > 8350 !!! -- Jason Wirth 213.986.5809 wirth.jason at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From BAustin at skokielibrary.info Fri May 23 17:02:09 2014 From: BAustin at skokielibrary.info (Brodie Austin) Date: Fri, 23 May 2014 15:02:09 +0000 Subject: [Chicago] Full-time web developer position at Skokie Public Library Message-ID: <6C201F766186EF458C7307DE308FB08224B6A5@mercury.skokie.lib.il.us> My name is Brodie Austin. I'm the Virtual Community Engagement Manager at the Skokie Public Library. I'm looking to hire a web developer who is familiar with Django/Python (in addition to other web stuff). I saw on Meetup that you organize a local Python users' group. I was wondering if you would advertise the position to your group or pass it along to anyone you might know who would be interested in being a developer at a public library. Here's the details for the position: Put your web development skills to work for an award-winning library. Skokie Public Library is looking for a web developer familiar with Python, Django, relational databases, and front-end web development. As a key member of the Virtual Community Engagement department, you'll help build user-centered websites and services to support the library's mission and respond to the community's needs. We're looking for candidates who are familiar with the following: ? Modern web development with HTML, CSS, and Javascript ? Python/Django ? Responsive web design ? Version control with Git ? Postgres, SQL, and relational databases ? FreeBSD and Nginx server environment ? Working with third-party APIs and web services Our ideal candidate will thrive working in a collaborative environment with other team members and be willing to juggle multiple projects and learn on the job. You'll be a full participant in the design and development process from user research to deployment. You need a bachelor's degree, preferably in Computer Science or a related area. An understanding of and familiarity with libraries is a plus. Salary Range: $52,435-$78,653 Application details here: http://www.authenticjobs.com/jobs/20915/web-developer *** Brodie Austin Virtual Community Engagement Manager baustin at skokielibrary.info (847) 324-3111 -------------- next part -------------- An HTML attachment was scrubbed... URL: From p.wallenberg at gmail.com Fri May 23 22:25:24 2014 From: p.wallenberg at gmail.com (Paul Wallenberg) Date: Fri, 23 May 2014 15:25:24 -0500 Subject: [Chicago] Security Position - Python Scripting Message-ID: Hi ChiPy, I am a technology recruiter for LaSalle Network, a previous sponsor of ChiPy. I'm currently partnering with a start up in River North to find a Linux security administrator with Python scripting experience. Additional responsibilities of this position include administering LDAP and Kerberos implementations and integration with Active Directory and RADIUS. If you'd like to learn more about the company and day to day tasks, please contact me at 312-924-3683 or email pwallenberg at lasallenetwork.com. We're more than willing to donate back to the ChiPy community and I thank you all in advance for your time. Sincerely, Paul Wallenberg Sr. Project Manager - Technology Services LaSalle Network @Chi_Town_Tech -------------- next part -------------- An HTML attachment was scrubbed... URL: From brianhray at gmail.com Mon May 26 18:05:12 2014 From: brianhray at gmail.com (Brian Ray) Date: Mon, 26 May 2014 11:05:12 -0500 Subject: [Chicago] June Venue announced: GroupOn Corporate Offices Message-ID: We return to GroupOn venue (bigger space) for the best meeting ever on June 12th. RSVP Now -> http://chipy.org And guess what, they do more than just Coupons. They will fill us in more at June meeting. We also tentatively have some pretty noteworthy guest speakers lined up. We could use one more superstar talk so propose today http://www.chipy.org/meetings/topics/propose See you there! RSVP Now -> http://chipy.org -- Brian Ray @brianray (773) 669-7717 -------------- next part -------------- An HTML attachment was scrubbed... URL: From brianhray at gmail.com Mon May 26 18:41:39 2014 From: brianhray at gmail.com (Brian Ray) Date: Mon, 26 May 2014 11:41:39 -0500 Subject: [Chicago] Introducing CHIA Message-ID: More of a "Meetup," less then the best ever "User Group" like ChiPy we are introducing "Chia" http://www.meetup.com/Chia-Chicago-Applied-Cognitive-Analytics-Group/ Think of "Chia" as our newly born niece... treat her well :D Codename "Chia" is for "Chicago Applied Cognitive Analytics Group" The key word here is "Applied"... There are some great similar groups already in Chicago like Chicago Big Data and Chicago Machine Learning Study Group... their goals may overlap; however, this group focus on applied complete solutions, end to end, to solve real world problems. The future is here and this is a huge new area that now deserves our attention. What makes Chia Different, you ask: - The focus is "applied" Big Data, Cognitive Analytics, Machine Learning... All presentations are aimed to how all this technology come together to solve real world problems. - We will discuss in depth tools (open source and commercial) and techniques to "apply" solutions to problems - We will have speakers from Kaggle competitions present on how they using applied machine learning, boosting and other techniques - We will hear from engineer who worked on big cognitive solutions (like IBM Watson) - We will have have our own challenges, project, and activities - We will cover topics regarding concepts that use applied NLP and relate that back to modern machine learning techniques. - We will exist with our own independent leadership (like ChiPy does) with a focus on the groups own initiatives. Sponsor friendly; however, always independent, free, and open to everyone. Of course, Python will be covered in many areas. We can invite speakers back to ChiPy if the talk becomes interesting to ChiPy Group. Obviously, this is a big undertaking. If you're interested in helping, please send me a note and I will let you know what you can do to help. Otherwise, please participate ChiPy, Chia is a your little newborn niece. Join here: http://www.meetup.com/Chia-Chicago-Applied-Cognitive-Analytics-Group/ Welcome Chia and Long live ChiPy. Thanks All! Brian Ray Join CHIA -> http://www.meetup.com/Chia-Chicago-Applied-Cognitive-Analytics-Group/ -- Brian Ray @brianray (773) 669-7717 -------------- next part -------------- An HTML attachment was scrubbed... URL: From wirth.jason at gmail.com Mon May 26 23:55:36 2014 From: wirth.jason at gmail.com (Jason Wirth) Date: Mon, 26 May 2014 16:55:36 -0500 Subject: [Chicago] June Venue announced: GroupOn Corporate Offices In-Reply-To: References: Message-ID: Who's doing cool stuff? I'm sure everyone has a little bit of awesomeness that they are working. It would be cool to hear about it in some lightning talks. -- Jason Wirth 213.986.5809 wirth.jason at gmail.com On Mon, May 26, 2014 at 11:05 AM, Brian Ray wrote: > We return to GroupOn venue (bigger space) for the best meeting ever on > June 12th. > > RSVP Now -> http://chipy.org > > And guess what, they do more than just Coupons. They will fill us in more > at June meeting. We also tentatively have some pretty noteworthy guest > speakers lined up. We could use one more superstar talk so propose today > http://www.chipy.org/meetings/topics/propose > > See you there! > > RSVP Now -> http://chipy.org > > -- > Brian Ray > @brianray > (773) 669-7717 > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From wirth.jason at gmail.com Fri May 30 20:13:25 2014 From: wirth.jason at gmail.com (Jason Wirth) Date: Fri, 30 May 2014 13:13:25 -0500 Subject: [Chicago] Civic Hack Day This Weekend Message-ID: Hey guys, Just thought I'd share this. This weekend Adler is hosting the Civic Hack day. http://civichack.adlerplanetarium.org/2014/ This event looks unique because there's a focus on youth participation and as a community, Python is an excellent language for learning **cough** Raspberry Pi, books like "Python For Kids", youth-focused events at PyCon **cough**. Best, Jason -- Jason Wirth 213.986.5809 wirth.jason at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From nick271828 at gmail.com Fri May 30 20:20:20 2014 From: nick271828 at gmail.com (Nick Bennett) Date: Fri, 30 May 2014 13:20:20 -0500 Subject: [Chicago] Civic Hack Day This Weekend In-Reply-To: References: Message-ID: The Civic Hack day looks really cool, unfortunately it looks like the Hacker and Problem Owner registration spots are sold out. Any idea whether attendance is relaxed enough that I could just crash the party? Nick Bennett github: tothebeat 224-392-2326 On Fri, May 30, 2014 at 1:13 PM, Jason Wirth wrote: > Hey guys, > > Just thought I'd share this. > > This weekend Adler is hosting the Civic Hack day. > http://civichack.adlerplanetarium.org/2014/ > > This event looks unique because there's a focus on youth participation and > as a community, Python is an excellent language for learning **cough** > Raspberry Pi, books like "Python For Kids", youth-focused events at PyCon > **cough**. > > Best, > Jason > > > -- > Jason Wirth > 213.986.5809 > wirth.jason at gmail.com > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From randy7771026 at gmail.com Fri May 30 23:04:58 2014 From: randy7771026 at gmail.com (Randy Baxley) Date: Fri, 30 May 2014 16:04:58 -0500 Subject: [Chicago] Civic Hack Day This Weekend In-Reply-To: References: Message-ID: The National Day of Hacking has five locations in Chicago including the Adler one, one at Blue1647 or is it 37, the one below and two others. http://www.meetup.com/Illinois-Open-Technology/events/177481352/?a=cr1_grp&rv=cr1&_af_eid=177481352&_af=event Being old is fun and weird and scary. I just lost the last of my Uncles a week ago and he was 97. That would be another 35 years for me. The Englewood Codes Project to me holds great promise not only for young folks but for all folks if we can get business owners to link up little servers along cities bus routes and other transportation routes get hooked up as they are here holds promise for projects like Visual CTA Chicago even if my particular project is not the one that takes hold. Programming projects, even open source very complicated projects should not be as hard as they are. Building databases that mapped every well, every seismic line, all known oil and gas reserves and the basement of the earth went a lot faster than this. Randy On Fri, May 30, 2014 at 1:20 PM, Nick Bennett wrote: > The Civic Hack day looks really cool, unfortunately it looks like the > Hacker and Problem Owner registration spots are sold out. Any idea whether > attendance is relaxed enough that I could just crash the party? > > Nick Bennett > github: tothebeat > 224-392-2326 > > > On Fri, May 30, 2014 at 1:13 PM, Jason Wirth > wrote: > >> Hey guys, >> >> Just thought I'd share this. >> >> This weekend Adler is hosting the Civic Hack day. >> http://civichack.adlerplanetarium.org/2014/ >> >> This event looks unique because there's a focus on youth participation >> and as a community, Python is an excellent language for learning **cough** >> Raspberry Pi, books like "Python For Kids", youth-focused events at PyCon >> **cough**. >> >> Best, >> Jason >> >> >> -- >> Jason Wirth >> 213.986.5809 >> wirth.jason at gmail.com >> >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> https://mail.python.org/mailman/listinfo/chicago >> >> > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From joe at germuska.com Fri May 30 23:15:59 2014 From: joe at germuska.com (Joe Germuska) Date: Fri, 30 May 2014 16:15:59 -0500 Subject: [Chicago] Civic Hack Day This Weekend In-Reply-To: References: Message-ID: Just FYI, some of those events have already passed. As far as I know, there are two events this weekend: at Adler, which Jason mentioned, and the one at kCura in the Loop, which was Randy?s link. http://civichack.adlerplanetarium.org/2014/ http://www.meetup.com/Illinois-Open-Technology/events/177481352/?a=cr1_grp&rv=cr1&_af_eid=177481352&_af=event I?ll be at the kCura event on Saturday, at least. If anyone is looking for something to work on, our Census Reporter project is a Django app, and we?ve laid out a conceptually simple challenge for folks looking for a project: http://hackforchange.org/challenges/census-reporter/ https://github.com/censusreporter/censusreporter#about-census-reporter Joe On May 30, 2014, at 4:04 PM, Randy Baxley wrote: > The National Day of Hacking has five locations in Chicago including the Adler one, one at Blue1647 or is it 37, the one below and two others. > > http://www.meetup.com/Illinois-Open-Technology/events/177481352/?a=cr1_grp&rv=cr1&_af_eid=177481352&_af=event > > Being old is fun and weird and scary. I just lost the last of my Uncles a week ago and he was 97. That would be another 35 years for me. The Englewood Codes Project to me holds great promise not only for young folks but for all folks if we can get business owners to link up little servers along cities bus routes and other transportation routes get hooked up as they are here holds promise for projects like Visual CTA Chicago even if my particular project is not the one that takes hold. > > Programming projects, even open source very complicated projects should not be as hard as they are. Building databases that mapped every well, every seismic line, all known oil and gas reserves and the basement of the earth went a lot faster than this. > > Randy > > > On Fri, May 30, 2014 at 1:20 PM, Nick Bennett wrote: > The Civic Hack day looks really cool, unfortunately it looks like the Hacker and Problem Owner registration spots are sold out. Any idea whether attendance is relaxed enough that I could just crash the party? > > Nick Bennett > github: tothebeat > 224-392-2326 > > > On Fri, May 30, 2014 at 1:13 PM, Jason Wirth wrote: > Hey guys, > > Just thought I'd share this. > > This weekend Adler is hosting the Civic Hack day. > http://civichack.adlerplanetarium.org/2014/ > > This event looks unique because there's a focus on youth participation and as a community, Python is an excellent language for learning **cough** Raspberry Pi, books like "Python For Kids", youth-focused events at PyCon **cough**. > > Best, > Jason > > > -- > Jason Wirth > 213.986.5809 > > wirth.jason at gmail.com > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago -- Joe Germuska Joe at Germuska.com * http://blog.germuska.com * http://twitter.com/JoeGermuska "Learn to fear any church that fears drums." --Regie Gibson -------------- next part -------------- An HTML attachment was scrubbed... URL: From randy7771026 at gmail.com Fri May 30 23:57:15 2014 From: randy7771026 at gmail.com (Randy Baxley) Date: Fri, 30 May 2014 16:57:15 -0500 Subject: [Chicago] Civic Hack Day This Weekend In-Reply-To: References: Message-ID: You could be right Joe. I could be wrong. I often am. When I am I just show up at your lab door. This info though seems to say four will still be going this Saturday. Now if I can just figure out why I signed up to show up at something that starts in the morning. http://hackforchange.org/events?s=Chicago&event-type=0 Randy On Fri, May 30, 2014 at 4:15 PM, Joe Germuska wrote: > Just FYI, some of those events have already passed. As far as I know, > there are two events this weekend: at Adler, which Jason mentioned, and the > one at kCura in the Loop, which was Randy?s link. > > http://civichack.adlerplanetarium.org/2014/ > > http://www.meetup.com/Illinois-Open-Technology/events/177481352/?a=cr1_grp&rv=cr1&_af_eid=177481352&_af=event > > > I?ll be at the kCura event on Saturday, at least. If anyone is looking for > something to work on, our Census Reporter project is a Django app, and > we?ve laid out a conceptually simple challenge for folks looking for a > project: > http://hackforchange.org/challenges/census-reporter/ > https://github.com/censusreporter/censusreporter#about-census-reporter > > Joe > > On May 30, 2014, at 4:04 PM, Randy Baxley wrote: > > The National Day of Hacking has five locations in Chicago including the > Adler one, one at Blue1647 or is it 37, the one below and two others. > > > http://www.meetup.com/Illinois-Open-Technology/events/177481352/?a=cr1_grp&rv=cr1&_af_eid=177481352&_af=event > > Being old is fun and weird and scary. I just lost the last of my Uncles a > week ago and he was 97. That would be another 35 years for me. The > Englewood Codes Project to me holds great promise not only for young folks > but for all folks if we can get business owners to link up little servers > along cities bus routes and other transportation routes get hooked up as > they are here holds promise for projects like Visual CTA Chicago even if my > particular project is not the one that takes hold. > > Programming projects, even open source very complicated projects should > not be as hard as they are. Building databases that mapped every well, > every seismic line, all known oil and gas reserves and the basement of the > earth went a lot faster than this. > > Randy > > > On Fri, May 30, 2014 at 1:20 PM, Nick Bennett > wrote: > >> The Civic Hack day looks really cool, unfortunately it looks like the >> Hacker and Problem Owner registration spots are sold out. Any idea whether >> attendance is relaxed enough that I could just crash the party? >> >> Nick Bennett >> github: tothebeat >> 224-392-2326 >> >> >> On Fri, May 30, 2014 at 1:13 PM, Jason Wirth >> wrote: >> >>> Hey guys, >>> >>> Just thought I'd share this. >>> >>> This weekend Adler is hosting the Civic Hack day. >>> http://civichack.adlerplanetarium.org/2014/ >>> >>> This event looks unique because there's a focus on youth participation >>> and as a community, Python is an excellent language for learning **cough** >>> Raspberry Pi, books like "Python For Kids", youth-focused events at PyCon >>> **cough**. >>> >>> Best, >>> Jason >>> >>> >>> -- >>> Jason Wirth >>> 213.986.5809 >>> wirth.jason at gmail.com >>> >>> _______________________________________________ >>> Chicago mailing list >>> Chicago at python.org >>> https://mail.python.org/mailman/listinfo/chicago >>> >>> >> >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> https://mail.python.org/mailman/listinfo/chicago >> >> > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > > > -- > Joe Germuska > Joe at Germuska.com * http://blog.germuska.com * > http://twitter.com/JoeGermuska > > "Learn to fear any church that fears drums." --Regie Gibson > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: