From livne at uchicago.edu Fri Jun 1 18:33:43 2012 From: livne at uchicago.edu (Oren Livne) Date: Fri, 01 Jun 2012 11:33:43 -0500 Subject: [Chicago] Property Getter & Setter Problem Message-ID: <4FC8EEE7.1000308@uchicago.edu> Dear All, Sorry if this is too basic. I'm trying to understand how get & set works. I created a class "Clazz" with a mutable property "x" and immutable property "voltage". When I run the following module, I get voltage x voltage x 10 Traceback (most recent call last): File "/home/oren/ober/impute/tests/SimpleClasses.py", line 39, in assert c.voltage == 100000, 'Property not set properly' AssertionError: Property not set properly I am expecting to get voltage 100000 x 200 on the first line. Thank you so much, Oren class Clazz(object): '''Illustrates a property with a getter and setter.''' def __init__(self): print 'Creating instance of Clazz' self._x = None self.x = 200 self._voltage = 100000 @property def voltage(self): """Get the current voltage.""" return self._voltage @property def x(self): """I'm the 'x' property.""" return self._x @x.setter def x(self, value): self._x = value @x.deleter def x(self): del self._x if __name__ == "__main__": c = Clazz; print 'voltage', c.voltage, 'x', c.x c.x = 10 print 'voltage', c.voltage, 'x', c.x assert c.voltage == 100000, 'Property not set properly' From jeff at allthingsdork.com Fri Jun 1 18:47:18 2012 From: jeff at allthingsdork.com (Jeffery Smith) Date: Fri, 1 Jun 2012 11:47:18 -0500 Subject: [Chicago] Property Getter & Setter Problem In-Reply-To: <4FC8EEE7.1000308@uchicago.edu> References: <4FC8EEE7.1000308@uchicago.edu> Message-ID: You didn't instantiate the class into an object. Simple typo. c = Clazz() On Fri, Jun 1, 2012 at 11:33 AM, Oren Livne wrote: > Dear All, > > Sorry if this is too basic. I'm trying to understand how get & set works. > I created a class "Clazz" with a mutable property "x" and immutable > property "voltage". When I run the following module, I get > > voltage x 0x7f31cfea5628> > voltage x 10 > Traceback (most recent call last): > File "/home/oren/ober/impute/tests/**SimpleClasses.py", line 39, in > > assert c.voltage == 100000, 'Property not set properly' > AssertionError: Property not set properly > > I am expecting to get voltage 100000 x 200 on the first line. > > Thank you so much, > Oren > > class Clazz(object): > '''Illustrates a property with a getter and setter.''' > > def __init__(self): > print 'Creating instance of Clazz' > self._x = None > self.x = 200 > self._voltage = 100000 > > @property > def voltage(self): > """Get the current voltage.""" > return self._voltage > > @property > def x(self): > """I'm the 'x' property.""" > return self._x > > @x.setter > def x(self, value): > self._x = value > > @x.deleter > def x(self): > del self._x > > if __name__ == "__main__": > c = Clazz; > print 'voltage', c.voltage, 'x', c.x > c.x = 10 > print 'voltage', c.voltage, 'x', c.x > assert c.voltage == 100000, 'Property not set properly' > > ______________________________**_________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/**mailman/listinfo/chicago > -------------- next part -------------- An HTML attachment was scrubbed... URL: From livne at uchicago.edu Fri Jun 1 19:05:38 2012 From: livne at uchicago.edu (Oren Livne) Date: Fri, 01 Jun 2012 12:05:38 -0500 Subject: [Chicago] Property Getter & Setter Problem In-Reply-To: References: <4FC8EEE7.1000308@uchicago.edu> Message-ID: <4FC8F662.5090006@uchicago.edu> Thanks! That solved it. From livne at uchicago.edu Sun Jun 3 20:08:53 2012 From: livne at uchicago.edu (Oren Livne) Date: Sun, 03 Jun 2012 13:08:53 -0500 Subject: [Chicago] Web application framework for network visualization Message-ID: <4FCBA835.3090801@uchicago.edu> Dear All, I'd like to write a web app that can display a directed graph as an SVG image after the particular graph has been selected from a drop down menu, where nodes are click-able (say, highlighted in red when clicked) via AJAX that triggers a back-end callback function. Graphs are stored in a database. What's the best route? I thought of learning django as a web framework and using cytoscape to display graphs. Of course, I would have to generate the graph in my code and pass it to cytoscape via AJAX. Is that an overkill? Is there a simpler way? Thanks, Oren -- A person is just about as big as the things that make him angry. From bob.haugen at gmail.com Sun Jun 3 20:18:32 2012 From: bob.haugen at gmail.com (Bob Haugen) Date: Sun, 3 Jun 2012 13:18:32 -0500 Subject: [Chicago] Web application framework for network visualization In-Reply-To: <4FCBA835.3090801@uchicago.edu> References: <4FCBA835.3090801@uchicago.edu> Message-ID: On Sun, Jun 3, 2012 at 1:08 PM, Oren Livne wrote: > I'd like to write a web app that can display a directed graph as an SVG > image after the particular graph has been selected from a drop down menu, > where nodes are click-able (say, highlighted in red when clicked) via AJAX > that triggers a back-end callback function. I've been using Dracula with Django on the back end: http://www.graphdracula.net/ Not perfect. Layouts could be better. No edge-overlap optimization, for example (edges can cross nodes). Might switch myself if somebody suggests something better. But it does work. From zitterbewegung at gmail.com Sun Jun 3 20:36:33 2012 From: zitterbewegung at gmail.com (Joshua Herman) Date: Sun, 3 Jun 2012 13:36:33 -0500 Subject: [Chicago] Web application framework for network visualization In-Reply-To: <4FCBA835.3090801@uchicago.edu> References: <4FCBA835.3090801@uchicago.edu> Message-ID: http://d3js.org/ does this too you just have to write the graph in json http://mbostock.github.com/d3/ex/force.html You could just have a bunch of json files and change the graph being displayed in javascript. ---Profile:--- http://www.google.com/profiles/zitterbewegung On Sun, Jun 3, 2012 at 1:08 PM, Oren Livne wrote: > Dear All, > > I'd like to write a web app that can display a directed graph as an SVG > image after the particular graph has been selected from a drop down menu, > where nodes are click-able (say, highlighted in red when clicked) via AJAX > that triggers a back-end callback function. Graphs are stored in a database. > What's the best route? I thought of learning django as a web framework and > using cytoscape to display graphs. Of course, I would have to generate the > graph in my code and pass it to cytoscape via AJAX. Is that an overkill? Is > there a simpler way? > > Thanks, > Oren > > -- > A person is just about as big as the things that make him angry. > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago From livne at uchicago.edu Sun Jun 3 21:08:36 2012 From: livne at uchicago.edu (Oren Livne) Date: Sun, 03 Jun 2012 14:08:36 -0500 Subject: [Chicago] Web application framework for network visualization In-Reply-To: References: <4FCBA835.3090801@uchicago.edu> Message-ID: <4FCBB634.8010007@uchicago.edu> Great, this is probably faster than the Flash-backed Cygtoscape. Can I input my own node positions? Regarding a web framework, which I'd like to have, what about web2py in place of django? Thank you, Bob and Josh, Oren On 6/3/2012 1:36 PM, Joshua Herman wrote: > http://d3js.org/ does this too you just have to write the graph in json > http://mbostock.github.com/d3/ex/force.html > > You could just have a bunch of json files and change the graph being > displayed in javascript. > ---Profile:--- > http://www.google.com/profiles/zitterbewegung > > > > On Sun, Jun 3, 2012 at 1:08 PM, Oren Livne wrote: >> Dear All, >> >> I'd like to write a web app that can display a directed graph as an SVG >> image after the particular graph has been selected from a drop down menu, >> where nodes are click-able (say, highlighted in red when clicked) via AJAX >> that triggers a back-end callback function. Graphs are stored in a database. >> What's the best route? I thought of learning django as a web framework and >> using cytoscape to display graphs. Of course, I would have to generate the >> graph in my code and pass it to cytoscape via AJAX. Is that an overkill? Is >> there a simpler way? >> >> Thanks, >> Oren >> >> -- >> A person is just about as big as the things that make him angry. >> >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago -- A person is just about as big as the things that make him angry. From zitterbewegung at gmail.com Sun Jun 3 21:12:41 2012 From: zitterbewegung at gmail.com (Joshua Herman) Date: Sun, 3 Jun 2012 14:12:41 -0500 Subject: [Chicago] Web application framework for network visualization In-Reply-To: <4FCBB634.8010007@uchicago.edu> References: <4FCBA835.3090801@uchicago.edu> <4FCBB634.8010007@uchicago.edu> Message-ID: web2py can do the job that django is doing. web2py has some nice wizards too ---Profile:--- http://www.google.com/profiles/zitterbewegung On Sun, Jun 3, 2012 at 2:08 PM, Oren Livne wrote: > Great, this is probably faster than the Flash-backed Cygtoscape. Can I input > my own node positions? > Regarding a web framework, which I'd like to have, what about web2py in > place of django? > Thank you, Bob and Josh, > Oren > > > On 6/3/2012 1:36 PM, Joshua Herman wrote: >> >> http://d3js.org/ does this too you just have to write the graph in json >> http://mbostock.github.com/d3/ex/force.html >> >> You could just have a bunch of json files and change the graph being >> displayed in javascript. >> ---Profile:--- >> http://www.google.com/profiles/zitterbewegung >> >> >> >> On Sun, Jun 3, 2012 at 1:08 PM, Oren Livne ?wrote: >>> >>> Dear All, >>> >>> I'd like to write a web app that can display a directed graph as an SVG >>> image after the particular graph has been selected from a drop down menu, >>> where nodes are click-able (say, highlighted in red when clicked) via >>> AJAX >>> that triggers a back-end callback function. Graphs are stored in a >>> database. >>> What's the best route? I thought of learning django as a web framework >>> and >>> using cytoscape to display graphs. Of course, I would have to generate >>> the >>> graph in my code and pass it to cytoscape via AJAX. Is that an overkill? >>> Is >>> there a simpler way? >>> >>> Thanks, >>> Oren >>> >>> -- >>> A person is just about as big as the things that make him angry. >>> >>> _______________________________________________ >>> Chicago mailing list >>> Chicago at python.org >>> http://mail.python.org/mailman/listinfo/chicago >> >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago > > > > -- > A person is just about as big as the things that make him angry. > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago From bob.haugen at gmail.com Sun Jun 3 21:15:13 2012 From: bob.haugen at gmail.com (Bob Haugen) Date: Sun, 3 Jun 2012 14:15:13 -0500 Subject: [Chicago] Web application framework for network visualization In-Reply-To: <4FCBB634.8010007@uchicago.edu> References: <4FCBA835.3090801@uchicago.edu> <4FCBB634.8010007@uchicago.edu> Message-ID: On Sun, Jun 3, 2012 at 2:08 PM, Oren Livne wrote: > Great, this is probably faster than the Flash-backed Cygtoscape. Can I input > my own node positions? Dracula does not easily allow you to input your own node positions. > Regarding a web framework, which I'd like to have, what about web2py in > place of django? Neither Dracula or D3 care about framework or no framework. From mdipierro at cs.depaul.edu Sun Jun 3 23:42:09 2012 From: mdipierro at cs.depaul.edu (Massimo DiPierro) Date: Sun, 3 Jun 2012 16:42:09 -0500 Subject: [Chicago] Web application framework for network visualization In-Reply-To: <4FCBA835.3090801@uchicago.edu> References: <4FCBA835.3090801@uchicago.edu> Message-ID: <582741D4-2E9F-4FB7-BA28-291040862DFA@cs.depaul.edu> You may want to look into this: http://www.graphdracula.net/ It is not svg but that may be a plus. On Jun 3, 2012, at 1:08 PM, Oren Livne wrote: > Dear All, > > I'd like to write a web app that can display a directed graph as an SVG image after the particular graph has been selected from a drop down menu, where nodes are click-able (say, highlighted in red when clicked) via AJAX that triggers a back-end callback function. Graphs are stored in a database. What's the best route? I thought of learning django as a web framework and using cytoscape to display graphs. Of course, I would have to generate the graph in my code and pass it to cytoscape via AJAX. Is that an overkill? Is there a simpler way? > > Thanks, > Oren > > -- > A person is just about as big as the things that make him angry. > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago -------------- next part -------------- An HTML attachment was scrubbed... URL: From livne at uchicago.edu Mon Jun 4 20:26:45 2012 From: livne at uchicago.edu (Oren Livne) Date: Mon, 04 Jun 2012 13:26:45 -0500 Subject: [Chicago] Django + AJAX Message-ID: <4FCCFDE5.4070301@uchicago.edu> Dear All, What is the best practice of creating a django app with ajax? In particular, polling (periodically updating a portion of a page) and updating a portion upon an event (button click/link click/drop down menu). Sample code would be great. [I did google it first] Thank you so much in advance, Oren From danieltpeters at gmail.com Mon Jun 4 20:42:20 2012 From: danieltpeters at gmail.com (Daniel Peters) Date: Mon, 4 Jun 2012 13:42:20 -0500 Subject: [Chicago] Django + AJAX In-Reply-To: <4FCCFDE5.4070301@uchicago.edu> References: <4FCCFDE5.4070301@uchicago.edu> Message-ID: I've found it useful sometimes to go here http://www.djangosites.org/ and check search for "sites with source". It may not be best practices per se, but can give you some ideas. theres also an app out there called dajax? Dajaxice as well, i think. I've never used either of them but they seem to allow for python driven ajax calls. and then maybe, last call, try searching through github. On Mon, Jun 4, 2012 at 1:26 PM, Oren Livne wrote: > Dear All, > > What is the best practice of creating a django app with ajax? In > particular, polling (periodically updating a portion of a page) and > updating a portion upon an event (button click/link click/drop down menu). > Sample code would be great. > [I did google it first] > > Thank you so much in advance, > Oren > ______________________________**_________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/**mailman/listinfo/chicago > -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob.haugen at gmail.com Mon Jun 4 20:52:21 2012 From: bob.haugen at gmail.com (Bob Haugen) Date: Mon, 4 Jun 2012 13:52:21 -0500 Subject: [Chicago] Django + AJAX In-Reply-To: References: <4FCCFDE5.4070301@uchicago.edu> Message-ID: > On Mon, Jun 4, 2012 at 1:26 PM, Oren Livne wrote: >> >> Dear All, >> >> What is the best practice of creating a django app with ajax? In >> particular, polling (periodically updating a portion of a page) and updating >> a portion upon an event (button click/link click/drop down menu). Both of the features you mentioned depend mostly on Javascript - not much on Django. All of the popular js frameworks assist you in doing ajaxy interactions. The most popular among Django programmers I know is Jquery, but Dojo also has a big Django following. Besides the other places people suggested for searching, look in: http://groups.google.com/group/django-users/ and http://stackoverflow.com/ From KBoers at leapfrogonline.com Mon Jun 4 21:26:47 2012 From: KBoers at leapfrogonline.com (Kevin Boers) Date: Mon, 4 Jun 2012 14:26:47 -0500 Subject: [Chicago] Django + AJAX In-Reply-To: References: <4FCCFDE5.4070301@uchicago.edu> Message-ID: <76E12BE9-999A-4AF3-ADB4-8297C802EB69@leapfrogonline.com> +1 With regard to the 'polling' update of a specific div, I've usually done something like this: That will call the django view on document ready, and then again every 2000ms. In this case, the view would return plain html, but you can use a similar method to poll for json and do something with it using callbacks. The jQuery docs are awesome; see load() and getJSON() for examples. Kevin On Jun 4, 2012, at 1:52 PM, Bob Haugen wrote: On Mon, Jun 4, 2012 at 1:26 PM, Oren Livne > wrote: Dear All, What is the best practice of creating a django app with ajax? In particular, polling (periodically updating a portion of a page) and updating a portion upon an event (button click/link click/drop down menu). Both of the features you mentioned depend mostly on Javascript - not much on Django. All of the popular js frameworks assist you in doing ajaxy interactions. The most popular among Django programmers I know is Jquery, but Dojo also has a big Django following. Besides the other places people suggested for searching, look in: http://groups.google.com/group/django-users/ and http://stackoverflow.com/ _______________________________________________ Chicago mailing list Chicago at python.org http://mail.python.org/mailman/listinfo/chicago Kevin P. Boers Senior Manager, Quality Assurance 847-440-8381 Leapfrog Online 807 Greenwood Evanston, IL 60201 Main 847-492-1968 Fax 847-492-1990 kboers at leapfrogonline.com www.leapfrogonline.com ________________________________ CONFIDENTIALITY NOTE The document(s) accompanying this e-mail transmission, if any, and the e-mail transmittal message containing information from Leapfrog Online Customer Acquisition, LLC is confidential or privileged. The information is intended to be for the use of the individual(s) or entity(ies) named on this e-mail transmission message. If you are not the intended recipient, be aware that any disclosure, copying, distribution or use of the contents of this e-mail is prohibited. If you have received this e-mail in error, please immediately delete this e-mail and notify us by telephone of the error. -------------- next part -------------- An HTML attachment was scrubbed... URL: From carl at personnelware.com Mon Jun 4 21:46:51 2012 From: carl at personnelware.com (Carl Karsten) Date: Mon, 4 Jun 2012 14:46:51 -0500 Subject: [Chicago] Django + AJAX In-Reply-To: References: <4FCCFDE5.4070301@uchicago.edu> Message-ID: over a year ago, I did a tiny bit of ajax with django, here it is: https://github.com/CarlFK/veyepar/tree/master/dj/accounts I have no idea if that is state of the art, but I would highly recommend looking at it and figuring out how it works, I will be happy to answer questions. It will give you an idea of the mechanics that need to be set up on client and server, and will help me clean up the code to make it a better example. It is possible that there is some new nifty drop in stuff that abstracts the mechanics, but I would still recommend knowing how it works. On Mon, Jun 4, 2012 at 1:42 PM, Daniel Peters wrote: > I've found it useful sometimes to go here > > http://www.djangosites.org/ > > and check search for "sites with source".? It may not be best practices per > se, but can give you some ideas.? theres also an app out there called > dajax?? Dajaxice as well, i think.? I've never used either of them but they > seem to allow for python driven ajax calls. > > and then maybe, last call, try searching through github. > > On Mon, Jun 4, 2012 at 1:26 PM, Oren Livne wrote: >> >> Dear All, >> >> What is the best practice of creating a django app with ajax? In >> particular, polling (periodically updating a portion of a page) and updating >> a portion upon an event (button click/link click/drop down menu). Sample >> code would be great. >> [I did google it first] >> >> Thank you so much in advance, >> Oren >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago > > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > -- Carl K From mdipierro at cs.depaul.edu Mon Jun 4 22:10:06 2012 From: mdipierro at cs.depaul.edu (Massimo DiPierro) Date: Mon, 4 Jun 2012 15:10:06 -0500 Subject: [Chicago] Django + AJAX In-Reply-To: <76E12BE9-999A-4AF3-ADB4-8297C802EB69@leapfrogonline.com> References: <4FCCFDE5.4070301@uchicago.edu> <76E12BE9-999A-4AF3-ADB4-8297C802EB69@leapfrogonline.com> Message-ID: <265A8B3E-E403-451E-BA89-CDDD8AA22713@cs.depaul.edu> There is some JS code in web2py which can be used in Django as well (so do not let the naming convention deter you). It allows you to do this: It will do a few things for you: - it will load http//yourdjangourl.com into the target div - it will capture all form submissions so that, if the target div contains a form and it is submitted it only refreshes the content of that div, and does not reload the entire page. This works great for post back forms like web2py and django use. - if it finds an http header "web2py-component-flash" in the ajax response it will inject the value in a
if it exist, and flash it. - if it finds an http header "web2py-component-command" in the ajax response, it will eval() the content (server side, in js). It can be used for example to allow a jailed form submission to break out and force the page reload, or the reload of another web2py_component in the same page. This has nothing web2py specific and works with any framework. We use it a lot to build modular pages. The page components can be coded using the normal Django actions and templates. web2py additionally provides helpers to generate the javascript above server side, so that you can build pages in terms of components without js programming at all. But that is another story. Massimo On Jun 4, 2012, at 2:26 PM, Kevin Boers wrote: > +1 > > With regard to the 'polling' update of a specific div, I've usually done something like this: > > > > That will call the django view on document ready, and then again every 2000ms. In this case, the view would return plain html, but you can use a similar method to poll for json and do something with it using callbacks. The jQuery docs are awesome; see load() and getJSON() for examples. > > Kevin > > On Jun 4, 2012, at 1:52 PM, Bob Haugen wrote: > >>> On Mon, Jun 4, 2012 at 1:26 PM, Oren Livne wrote: >>>> >>>> Dear All, >>>> >>>> What is the best practice of creating a django app with ajax? In >>>> particular, polling (periodically updating a portion of a page) and updating >>>> a portion upon an event (button click/link click/drop down menu). >> >> Both of the features you mentioned depend mostly on Javascript - not >> much on Django. All of the popular js frameworks assist you in doing >> ajaxy interactions. The most popular among Django programmers I know >> is Jquery, but Dojo also has a big Django following. >> >> Besides the other places people suggested for searching, look in: >> http://groups.google.com/group/django-users/ >> and >> http://stackoverflow.com/ >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago > > Kevin P. Boers > Senior Manager, Quality Assurance > 847-440-8381 > > Leapfrog Online > 807 Greenwood > Evanston, IL 60201 > Main 847-492-1968 > Fax 847-492-1990 > kboers at leapfrogonline.com > www.leapfrogonline.com > > > CONFIDENTIALITY NOTE > The document(s) accompanying this e-mail transmission, if any, and the e-mail transmittal message containing information from Leapfrog Online Customer Acquisition, LLC is confidential or privileged. The information is intended to be for the use of the individual(s) or entity(ies) named on this e-mail transmission message. If you are not the intended recipient, be aware that any disclosure, copying, distribution or use of the contents of this e-mail is prohibited. If you have received this e-mail in error, please immediately delete this e-mail and notify us by telephone of the error. > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago -------------- next part -------------- An HTML attachment was scrubbed... URL: From DHanley at tekmarkinc.com Tue Jun 5 16:48:53 2012 From: DHanley at tekmarkinc.com (Hanley, Denise (Tekmark Global Solutions)) Date: Tue, 5 Jun 2012 10:48:53 -0400 Subject: [Chicago] Great Opportunity Message-ID: <463BDACD927BE34A99D1C17899D22E3C044C6C98@spike.tekmarkinc.com> We seek an experienced Python system developer to assist in the delivery of a challenging document generation and workflow platform in the derivatives space. Role Specific Responsibilities: The candidate will be a mid-level developer (FULLTIM OR CONTRACT OR CONTRACT TO HIRE) responsible for contributing to all phases of the SDLC including analysis, design, development, QA, UAT, and tier-2 production support. Candidate will interact with architects, business analysts, and developers within and outside of GMOT. Required Technical Skills: -- 3+ years Object Oriented Programming experience -- 2+ years Python programming -- 2+ years XML experience -- Experience with SQL databases -- Working knowledge of Unix/Linux -- Agile development life-cycle experience Peripheral Skills: --Financial experience a plus -- Knowledge of derivative products a plus Personal Skills: --Structured & logical thinking --Problem solving --Results oriented --Client focus Independent, self-motivated Strong communication (written & verbal) Project Description: The client is building a new document generation and workflow system to more closely align with the needs of the business. The new system will be tightly integrated with a quickly evolving cross-asset strategic trading and processing platform being developed. The document generation piece is to be handled through a third party vendor product tightly coupled into the python based infrastructure and workflow framework. In addition to paper documentation generation, the system is also being built to support electronic confirmation and matching through DTCC and SWIFT. Team Specific Structure and Responsibilities: Client has developers based in Chicago, New York, and India, and Projects teams in Charlotte and London. Coordination across all regions and front office development teams will be required to deliver a trade confirmation solution that will provide central and efficient confirm generation for various financial products. Thanks, Denise Hanley Sr. Technical Recruiter dhanley at tekmarkinc.com | 908-227-9527 TEKMARK GLOBAL SOLUTIONS 100 Metroplex Drive, Suite 102, Edison, NJ 08817 http://hotjobs.tekmarkinc.com ------------------------------------------------------------------------ This message is for the designated recipient only and it, as well as any attachments, may contain privileged, proprietary or confidential information. If you are not the intended recipient, do not read, copy or distribute it. Please notify the sender immediately and delete the original at once. Any other use of the email by you is prohibited. Thank you. ------------------------------------------------------------------------ -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 3386 bytes Desc: image001.gif URL: From shekay at pobox.com Wed Jun 6 22:52:35 2012 From: shekay at pobox.com (sheila miguez) Date: Wed, 6 Jun 2012 15:52:35 -0500 Subject: [Chicago] python office hours tomorrow Message-ID: Reminder that python study office hours is tomorrow at Pumping Station: One. details here on this page.... http://pumpingstationone.org/events/ I will be there as a relatively inexperienced person to help with newish questions. Other more advanced people will also most likely be there. -- sheila From tim.saylor at gmail.com Wed Jun 6 23:08:16 2012 From: tim.saylor at gmail.com (Tim Saylor) Date: Wed, 6 Jun 2012 16:08:16 -0500 Subject: [Chicago] python office hours tomorrow In-Reply-To: References: Message-ID: I'll be there to answer advanced questions, and I can cover Django also. On Wed, Jun 6, 2012 at 3:52 PM, sheila miguez wrote: > Reminder that python study office hours is tomorrow at Pumping Station: > One. > > details here on this page.... > > http://pumpingstationone.org/events/ > > I will be there as a relatively inexperienced person to help with > newish questions. > > Other more advanced people will also most likely be there. > > > -- > sheila > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > -- Tim Saylor @tsaylor http://www.timsaylor.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From jonathan at creativecommons.org Wed Jun 6 23:31:53 2012 From: jonathan at creativecommons.org (Jonathan Palecek) Date: Wed, 6 Jun 2012 16:31:53 -0500 Subject: [Chicago] python office hours tomorrow In-Reply-To: References: Message-ID: I will be there to provide deep insight into the secrets of the universe. On Wed, Jun 6, 2012 at 4:08 PM, Tim Saylor wrote: > I'll be there to answer advanced questions, and I can cover Django also. > > > On Wed, Jun 6, 2012 at 3:52 PM, sheila miguez wrote: >> >> Reminder that python study office hours is tomorrow at Pumping Station: >> One. >> >> details here on this page.... >> >> http://pumpingstationone.org/events/ >> >> I will be there as a relatively inexperienced person to help with >> newish questions. >> >> Other more advanced people will also most likely be there. >> >> >> -- >> sheila >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago > > > > > -- > Tim Saylor > @tsaylor > http://www.timsaylor.com/ > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > From brianhray at gmail.com Fri Jun 8 20:52:53 2012 From: brianhray at gmail.com (Brian Ray) Date: Fri, 8 Jun 2012 13:52:53 -0500 Subject: [Chicago] Next week ... will be the best you yet Message-ID: Looks like this meeting is is going to be real hit! Nearly 80 or so expected and it is only Sunday. No worries 1871 will accommodate so let's make this the best ever. Does anyone from ChiPy side want to give a 20 minute talk on something Big Data / Open Data or likes? Perhaps a project you worked on in that area? I just wanted to check once more before sending out the announcement. I will probably do that Tuesday at the latest. RSVP: http://chipy.org AND/OR http://www.meetup.com/OpenGovChicago/events/67975692/ -- Brian Ray @brianray (773) 669-7717 From pkaushik at alum.mit.edu Fri Jun 8 21:18:06 2012 From: pkaushik at alum.mit.edu (Pallavi Anderson) Date: Fri, 8 Jun 2012 14:18:06 -0500 Subject: [Chicago] Next week ... will be the best you yet In-Reply-To: References: Message-ID: *cough* @dabeaz @adrianholovaty *cough* On Fri, Jun 8, 2012 at 1:52 PM, Brian Ray wrote: > Looks like this meeting is is going to be real hit! Nearly 80 or so > expected and it is only Sunday. No worries 1871 will accommodate so > let's make this the best ever. > > Does anyone from ChiPy side want to give a 20 minute talk on something > Big Data / Open Data or likes? Perhaps a project you worked on in that > area? > > I just wanted to check once more before sending out the announcement. > I will probably do that Tuesday at the latest. > > RSVP: > > http://chipy.org > > AND/OR > > http://www.meetup.com/OpenGovChicago/events/67975692/ > > -- > Brian Ray > @brianray > (773) 669-7717 > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago -- @pkaushik From brianhray at gmail.com Fri Jun 8 21:21:13 2012 From: brianhray at gmail.com (Brian Ray) Date: Fri, 8 Jun 2012 14:21:13 -0500 Subject: [Chicago] Next week ... will be the best you yet In-Reply-To: References: Message-ID: On Fri, Jun 8, 2012 at 2:18 PM, Pallavi Anderson wrote: > *cough* @dabeaz @adrianholovaty *cough* > ... I know Adrian can not make it but he is booked for July. @gvanrossum ? -- Brian Ray @brianray From adrian at holovaty.com Fri Jun 8 22:34:27 2012 From: adrian at holovaty.com (Adrian Holovaty) Date: Fri, 8 Jun 2012 15:34:27 -0500 Subject: [Chicago] Next week ... will be the best you yet In-Reply-To: References: Message-ID: On Fri, Jun 8, 2012 at 2:21 PM, Brian Ray wrote: > On Fri, Jun 8, 2012 at 2:18 PM, Pallavi Anderson wrote: >> *cough* @dabeaz @adrianholovaty *cough* > > ... I know Adrian can not make it but he is booked for July. Yeah, Thursdays have been bad for me for the last 1.5 years, as I teach guitar classes that night. Haven't been to a Chipy in way too long. :-( Adrian From japhy at pearachute.com Sat Jun 9 01:20:55 2012 From: japhy at pearachute.com (Japhy Bartlett) Date: Fri, 8 Jun 2012 18:20:55 -0500 Subject: [Chicago] Next week ... will be the best you yet In-Reply-To: References: Message-ID: I built a search engine with redis and tornado the other day that was pretty concise. I could show that and talk about some basic indexing / stemming / scoring libraries that I like to use. - Japhy On Fri, Jun 8, 2012 at 3:34 PM, Adrian Holovaty wrote: > On Fri, Jun 8, 2012 at 2:21 PM, Brian Ray wrote: > > On Fri, Jun 8, 2012 at 2:18 PM, Pallavi Anderson > wrote: > >> *cough* @dabeaz @adrianholovaty *cough* > > > > ... I know Adrian can not make it but he is booked for July. > > Yeah, Thursdays have been bad for me for the last 1.5 years, as I > teach guitar classes that night. Haven't been to a Chipy in way too > long. :-( > > Adrian > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > -------------- next part -------------- An HTML attachment was scrubbed... URL: From chicagomackay at gmail.com Sat Jun 9 01:33:13 2012 From: chicagomackay at gmail.com (Alex MacKay) Date: Fri, 8 Jun 2012 18:33:13 -0500 Subject: [Chicago] Next week ... will be the best you yet In-Reply-To: References: Message-ID: Sounds good to me. Alex On Jun 8, 2012, at 6:20 PM, Japhy Bartlett wrote: > I built a search engine with redis and tornado the other day that was pretty concise. I could show that and talk about some basic indexing / stemming / scoring libraries that I like to use. > > - Japhy > > On Fri, Jun 8, 2012 at 3:34 PM, Adrian Holovaty wrote: > On Fri, Jun 8, 2012 at 2:21 PM, Brian Ray wrote: > > On Fri, Jun 8, 2012 at 2:18 PM, Pallavi Anderson wrote: > >> *cough* @dabeaz @adrianholovaty *cough* > > > > ... I know Adrian can not make it but he is booked for July. > > Yeah, Thursdays have been bad for me for the last 1.5 years, as I > teach guitar classes that night. Haven't been to a Chipy in way too > long. :-( > > Adrian > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago -------------- next part -------------- An HTML attachment was scrubbed... URL: From zitterbewegung at gmail.com Sat Jun 9 01:57:32 2012 From: zitterbewegung at gmail.com (Joshua Herman) Date: Fri, 8 Jun 2012 18:57:32 -0500 Subject: [Chicago] Next week ... will be the best you yet In-Reply-To: References: Message-ID: I'm using bottle.py ---Profile:--- http://www.google.com/profiles/zitterbewegung On Fri, Jun 8, 2012 at 6:33 PM, Alex MacKay wrote: > Sounds good to me. > Alex > > On Jun 8, 2012, at 6:20 PM, Japhy Bartlett wrote: > > I built a search engine with redis and tornado the other day that was pretty > concise. ?I could show that and talk about some basic indexing / stemming / > scoring libraries that I like to use. > > - Japhy > > On Fri, Jun 8, 2012 at 3:34 PM, Adrian Holovaty wrote: >> >> On Fri, Jun 8, 2012 at 2:21 PM, Brian Ray wrote: >> > On Fri, Jun 8, 2012 at 2:18 PM, Pallavi Anderson >> > wrote: >> >> *cough* @dabeaz @adrianholovaty *cough* >> > >> > ... I know Adrian can not make it but he is booked for July. >> >> Yeah, Thursdays have been bad for me for the last 1.5 years, as I >> teach guitar classes that night. Haven't been to a Chipy in way too >> long. :-( >> >> Adrian >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > From brianhray at gmail.com Tue Jun 12 15:30:01 2012 From: brianhray at gmail.com (Brian Ray) Date: Tue, 12 Jun 2012 08:30:01 -0500 Subject: [Chicago] [ANN] ChiPy *special* Monthly Meeting: Python Open Data Summit Message-ID: Chicago Python User Group ========================= Special Event: "Python Open Data Summit" Open you Python Interpreter; open your data; and open your minds -- this month's meeting is a convergence of all these things. Held at our sizable new venue 1871, we have plenty of room / food / drink for all of you and your friends. Friends of Python; Fans of Big Data; Observers of the Open Government Data Initiative, you will not want to miss this one. This will be our best meeting ever. ** Feel Free to Redistribute this information to anyone interested in Open Government Data in Chicago land area ** RSVP at http://chipy.org/ (please note you can also RSVP on OpenGovChicago meetup.com currently has 54, Chipy has 50 as of 8am Tuesday) Quick Links: YES http://chipy.org/meetings/rsvp/49/yes MAYBE http://chipy.org/meetings/rsvp/49/maybe When ---- Thursday June 14th, 2012 at 7PM Where ----- "1871" The Merchandise Mart 222 W. Merchandise Mart Plaza 12th Floor Chicago, IL, 60654 Directions to The Mart: http://www.mmart.com/merchmart/index.cfm/plan-your-visit/directions/ Directions once you're in the building: Walk to any center bank of elevators, take to the 12 floor. Walk to West end of the building. Topics --------------- Open Government Data Movement (:30 Thirty Minutes) By: Paul Baker The history and goals of the open government data movement nationally and in Chicago, previous commercial uses of open data, such as weather data, and a couple of contemporary examples of how cities and independent groups are using open data. Big Data De-Duping (:45 Forty-Five Minutes) By: Forest Gregg, Derek Eder Derek Eder of Webitects and Forest Gregg, a Ph.D. student of sociology at the U of C, will describe the Python library they are developing to deduplicate tabular data, quickly, accurately, and at a large scale. The library facilitates the matching of related records in different data sets, using a machine learning approach. They expect to have a demo to show and will explain how they expect that the library will be used. Python powered search Python Powered Search Engine By: Japhy Bartlett (:20 Twenty Minutes) Explore the indexing / stemming / scoring libraries used to built a highly concise search engine along with redis and tornado. About ChiPy ----------- ChiPy is a group of Chicago Python Programmers. Participants range from absolute beginners to seasoned veterans. In short, *everyone* is welcome (including you)! Every second Thursday of the month ChiPy members gather to give talks on a wide variety of topics related to Python and related technology. Our community benefits from a variety of participants, so we would love it if you would make yourself a participant! ChiPy website: http://chipy.org ChiPy Mailing List: http://mail.python.org/mailman/listinfo/chicago ChiPy Announcement *ONLY* Mailing List: http://mail.python.org/mailman/listinfo/chipy-announce Python website: http://python.org -- Brian Ray @brianray (773) 669-7717 From pkaushik at alum.mit.edu Wed Jun 13 18:45:16 2012 From: pkaushik at alum.mit.edu (Pallavi Anderson) Date: Wed, 13 Jun 2012 11:45:16 -0500 Subject: [Chicago] Researchers work on smart city search engine Message-ID: http://www.bbc.com/news/technology-18408123 (food for thought especially in light of tomorrow's meetup) From danieltpeters at gmail.com Wed Jun 13 19:11:14 2012 From: danieltpeters at gmail.com (Daniel Peters) Date: Wed, 13 Jun 2012 12:11:14 -0500 Subject: [Chicago] Researchers work on smart city search engine In-Reply-To: References: Message-ID: Cool find! cordis link: http://cordis.europa.eu/search/index.cfm?fuseaction=proj.document&PJ_RCN=12437221 wonder whats going to happen when those sensor systems are capable of recording biometric data....... "SMART, how many people less than six feet tall who appear out of breath are in trafalgar square....? Do they have luggage? " On Wed, Jun 13, 2012 at 11:45 AM, Pallavi Anderson wrote: > http://www.bbc.com/news/technology-18408123 > > (food for thought especially in light of tomorrow's meetup) > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jp at zavteq.com Wed Jun 13 22:57:14 2012 From: jp at zavteq.com (JP Bader) Date: Wed, 13 Jun 2012 15:57:14 -0500 Subject: [Chicago] Happy hour before meetup? Message-ID: Hey Chipy-ers, I'm excited to be at the open data meetup tomorrow and just wanted to let everyone know Chicago Dev Happy Hour (www.meetup.com/chicagodev) is meeting up tomorrow at Fados (just 4 blocks from Merchandise Mart) for some drinks and to talk a bit (partly focused on the javascript framework Sencha). If you've got nothing better to do but talk with a few geeks before listening and talking to more geeks, come have a drink with us. Otherwise, see y'all at the best Chipy meetup ever! Cheers, -- JP Bader Principal Zavteq, Inc. @lordB8r | jp at zavteq.com 608.692.2468 From tathagatadg at gmail.com Wed Jun 13 23:34:27 2012 From: tathagatadg at gmail.com (Tathagata Dasgupta) Date: Wed, 13 Jun 2012 16:34:27 -0500 Subject: [Chicago] Researchers work on smart city search engine In-Reply-To: References: Message-ID: While the application prospect is pretty wild, I was just wondering how will these solutions provide a uniform api for such heterogeneous collection of sensors? Is there a standard that all devices would talk in or some middleware intervenes does the job? This is the internet of things dream, right? On Wed, Jun 13, 2012 at 12:11 PM, Daniel Peters wrote: > Cool find! > > cordis > link:http://cordis.europa.eu/search/index.cfm?fuseaction=proj.document&PJ_RCN=12437221 > > wonder whats going to happen when those sensor systems are capable of > recording biometric data....... > > "SMART, how many people less than six feet tall who appear out of breath are > in trafalgar square....? Do they have luggage? " > > > > On Wed, Jun 13, 2012 at 11:45 AM, Pallavi Anderson > wrote: >> >> http://www.bbc.com/news/technology-18408123 >> >> (food for thought especially in light of tomorrow's meetup) >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago > > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > -- Cheers, T From DHanley at tekmarkinc.com Thu Jun 14 00:26:10 2012 From: DHanley at tekmarkinc.com (Hanley, Denise (Tekmark Global Solutions)) Date: Wed, 13 Jun 2012 18:26:10 -0400 Subject: [Chicago] Great Opportunities.... Message-ID: <463BDACD927BE34A99D1C17899D22E3C04533CD8@spike.tekmarkinc.com> Hi Everybody... Bank of America is looking for Python developers with 3-4 years of experience for fulltime or contract. If you or anyone you know would be interested in discussing the opportunities please let me know. Have fun at your meetup. Thanks -----Original Message----- From: chicago-bounces+dhanley=tekmarkinc.com at python.org [mailto:chicago-bounces+dhanley=tekmarkinc.com at python.org] On Behalf Of Tathagata Dasgupta Sent: Wednesday, June 13, 2012 5:34 PM To: The Chicago Python Users Group Subject: Re: [Chicago] Researchers work on smart city search engine While the application prospect is pretty wild, I was just wondering how will these solutions provide a uniform api for such heterogeneous collection of sensors? Is there a standard that all devices would talk in or some middleware intervenes does the job? This is the internet of things dream, right? On Wed, Jun 13, 2012 at 12:11 PM, Daniel Peters wrote: > Cool find! > > cordis > link:http://cordis.europa.eu/search/index.cfm?fuseaction=proj.document > &PJ_RCN=12437221 > > wonder whats going to happen when those sensor systems are capable of > recording biometric data....... > > "SMART, how many people less than six feet tall who appear out of > breath are in trafalgar square....? Do they have luggage? " > > > > On Wed, Jun 13, 2012 at 11:45 AM, Pallavi Anderson > > wrote: >> >> http://www.bbc.com/news/technology-18408123 >> >> (food for thought especially in light of tomorrow's meetup) >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago > > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > -- Cheers, T _______________________________________________ Chicago mailing list Chicago at python.org http://mail.python.org/mailman/listinfo/chicago ------------------------------------------------------------------------ This message is for the designated recipient only and it, as well as any attachments, may contain privileged, proprietary or confidential information. If you are not the intended recipient, do not read, copy or distribute it. Please notify the sender immediately and delete the original at once. Any other use of the email by you is prohibited. Thank you. ------------------------------------------------------------------------ From zitterbewegung at gmail.com Thu Jun 14 00:54:40 2012 From: zitterbewegung at gmail.com (Joshua Herman) Date: Wed, 13 Jun 2012 17:54:40 -0500 Subject: [Chicago] Researchers work on smart city search engine In-Reply-To: References: Message-ID: I would think middleware would be an appropriate solution. I don't believe a heterogeneous solution exists. ---Profile:--- http://www.google.com/profiles/zitterbewegung On Wed, Jun 13, 2012 at 4:34 PM, Tathagata Dasgupta wrote: > While the application prospect is pretty wild, I was just wondering > how will these solutions provide a uniform api for such heterogeneous > collection of sensors? Is there a standard that all devices would talk > in or some middleware intervenes does the job? This is the internet of > things dream, right? > > On Wed, Jun 13, 2012 at 12:11 PM, Daniel Peters wrote: >> Cool find! >> >> cordis >> link:http://cordis.europa.eu/search/index.cfm?fuseaction=proj.document&PJ_RCN=12437221 >> >> wonder whats going to happen when those sensor systems are capable of >> recording biometric data....... >> >> "SMART, how many people less than six feet tall who appear out of breath are >> in trafalgar square....? Do they have luggage? " >> >> >> >> On Wed, Jun 13, 2012 at 11:45 AM, Pallavi Anderson >> wrote: >>> >>> http://www.bbc.com/news/technology-18408123 >>> >>> (food for thought especially in light of tomorrow's meetup) >>> _______________________________________________ >>> Chicago mailing list >>> Chicago at python.org >>> http://mail.python.org/mailman/listinfo/chicago >> >> >> >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago >> > > > > -- > Cheers, > T > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago From zitterbewegung at gmail.com Thu Jun 14 01:34:15 2012 From: zitterbewegung at gmail.com (Joshua Herman) Date: Wed, 13 Jun 2012 18:34:15 -0500 Subject: [Chicago] Researchers work on smart city search engine In-Reply-To: References: Message-ID: Capable? I believe facial recognition systems are capable of recording bio metric data. If you had really high resolution cameras (maybe 4k cameras) then you MIGHT be able to get a iris scan of of people passing by. You could have DNA samples automatically taken and sent somewhere but the problem would be processing the volume of DNA. One way you could solve this is through aggregation. Fingerprints would be interesting to store, hard to map back to people and demographics would be useless. On Wednesday, June 13, 2012, Daniel Peters wrote: > Cool find! > > cordis link: > http://cordis.europa.eu/search/index.cfm?fuseaction=proj.document&PJ_RCN=12437221 > > wonder whats going to happen when those sensor systems are capable of > recording biometric data....... > > "SMART, how many people less than six feet tall who appear out of breath > are in trafalgar square....? Do they have luggage? " > > > > On Wed, Jun 13, 2012 at 11:45 AM, Pallavi Anderson > > wrote: > >> http://www.bbc.com/news/technology-18408123 >> >> (food for thought especially in light of tomorrow's meetup) >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago >> > > -- ---Profile:--- http://www.google.com/profiles/zitterbewegung -------------- next part -------------- An HTML attachment was scrubbed... URL: From danieltpeters at gmail.com Thu Jun 14 02:33:41 2012 From: danieltpeters at gmail.com (Daniel Peters) Date: Wed, 13 Jun 2012 19:33:41 -0500 Subject: [Chicago] Researchers work on smart city search engine In-Reply-To: References: Message-ID: Yeah, as soon as I sent it I was like, shit. they already *do* take "biometric" information via CV. Foot in mouth. Good call on that one. I think systems like that have already been deployed stateside for almost 4 years? The MALINTENT system. Now, I personally have deep reservations about the reliability of such gathered information, but in reality thats only a matter of time. Meaning, the mal-intent system gathers metrics analogous to a lie detector (i think). So what ever thats worth. On Wed, Jun 13, 2012 at 6:34 PM, Joshua Herman wrote: > Capable? I believe facial recognition systems are capable of recording bio > metric data. > If you had really high resolution cameras (maybe 4k cameras) then you > MIGHT be able to get a iris scan of of people passing by. > You could have DNA samples automatically taken and sent somewhere but the > problem would be processing the volume of DNA. > One way you could solve this is through aggregation. > Fingerprints would be interesting to store, hard to map back to people and > demographics would be useless. > > > On Wednesday, June 13, 2012, Daniel Peters wrote: > >> Cool find! >> >> cordis link: >> http://cordis.europa.eu/search/index.cfm?fuseaction=proj.document&PJ_RCN=12437221 >> >> wonder whats going to happen when those sensor systems are capable of >> recording biometric data....... >> >> "SMART, how many people less than six feet tall who appear out of breath >> are in trafalgar square....? Do they have luggage? " >> >> >> >> On Wed, Jun 13, 2012 at 11:45 AM, Pallavi Anderson > > wrote: >> >>> http://www.bbc.com/news/technology-18408123 >>> >>> (food for thought especially in light of tomorrow's meetup) >>> _______________________________________________ >>> Chicago mailing list >>> Chicago at python.org >>> http://mail.python.org/mailman/listinfo/chicago >>> >> >> > > -- > ---Profile:--- > http://www.google.com/profiles/zitterbewegung > > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From brianhray at gmail.com Thu Jun 14 17:14:58 2012 From: brianhray at gmail.com (Brian Ray) Date: Thu, 14 Jun 2012 10:14:58 -0500 Subject: [Chicago] Amazing... Message-ID: Just a reminder tonight will be amazing... http://chipy.org We start at 7pm. I will try to get food there before 7pm. 6:30? ... we will see. Also, who can help me carry beverages? Carl? Did you want to meet me at Binny's on Grand? -- Brian Ray @brianray From carl at personnelware.com Thu Jun 14 17:36:32 2012 From: carl at personnelware.com (Carl Karsten) Date: Thu, 14 Jun 2012 10:36:32 -0500 Subject: [Chicago] Amazing... In-Reply-To: References: Message-ID: On Thu, Jun 14, 2012 at 10:14 AM, Brian Ray wrote: > Just a reminder tonight will be amazing... http://chipy.org We start > at 7pm. I will try to get food there before 7pm. 6:30? ... we will > see. > > Also, who can help me carry beverages? Carl? Did you want to meet me > at Binny's on Grand? I would rather pick up bear from the store near me. I can park by the front door. Give me some sort of order and budget. I do need someone to meet me at the loading doc. Which I never got details on other than "yes" Can you work that out? The freight elevator stops at 6, so I want to be there at 5:30. While you are at it, figure out where I can park. often I can stay in the loading bay after hours. or next to it. -- Carl K From brianhray at gmail.com Thu Jun 14 17:42:11 2012 From: brianhray at gmail.com (Brian Ray) Date: Thu, 14 Jun 2012 10:42:11 -0500 Subject: [Chicago] Amazing... In-Reply-To: References: Message-ID: OK, we will meet you at the dock at 5:30. Anyone else want to help carry "Bears". I will ping you off the list on budget. On Thu, Jun 14, 2012 at 10:36 AM, Carl Karsten wrote: > On Thu, Jun 14, 2012 at 10:14 AM, Brian Ray wrote: >> Just a reminder tonight will be amazing... http://chipy.org We start >> at 7pm. I will try to get food there before 7pm. 6:30? ... we will >> see. >> >> Also, who can help me carry beverages? Carl? Did you want to meet me >> at Binny's on Grand? > > I would rather pick up bear from the store near me. ?I can park by the > front door. ?Give me some sort of order and budget. > > I do need someone to meet me at the loading doc. ?Which I never got > details on other than "yes" ?Can you work that out? ? The freight > elevator stops at 6, so I want to be there at 5:30. > > While you are at it, figure out where I can park. ?often I can stay in > the loading bay after hours. ?or next to it. > > > -- > Carl K > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago -- Brian Ray @brianray (773) 669-7717 From brianhray at gmail.com Thu Jun 14 17:44:07 2012 From: brianhray at gmail.com (Brian Ray) Date: Thu, 14 Jun 2012 10:44:07 -0500 Subject: [Chicago] Amazing... In-Reply-To: References: Message-ID: Also, Carl I bought you parking. I will bring the print out with me. https://spothero.com/spot/421?rid=1000&starts=2012-06-14T16%3A00%3A00&ends=2012-06-15T07%3A00%3A00 Thanks Spothero! On Thu, Jun 14, 2012 at 10:42 AM, Brian Ray wrote: > OK, we will meet you at the dock at 5:30. Anyone else want to help > carry "Bears". > > I will ping you off the list on budget. > > > On Thu, Jun 14, 2012 at 10:36 AM, Carl Karsten wrote: >> On Thu, Jun 14, 2012 at 10:14 AM, Brian Ray wrote: >>> Just a reminder tonight will be amazing... http://chipy.org We start >>> at 7pm. I will try to get food there before 7pm. 6:30? ... we will >>> see. >>> >>> Also, who can help me carry beverages? Carl? Did you want to meet me >>> at Binny's on Grand? >> >> I would rather pick up bear from the store near me. ?I can park by the >> front door. ?Give me some sort of order and budget. >> >> I do need someone to meet me at the loading doc. ?Which I never got >> details on other than "yes" ?Can you work that out? ? The freight >> elevator stops at 6, so I want to be there at 5:30. >> >> While you are at it, figure out where I can park. ?often I can stay in >> the loading bay after hours. ?or next to it. >> >> >> -- >> Carl K >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago > > > > -- > Brian Ray > @brianray > (773) 669-7717 -- Brian Ray @brianray (773) 669-7717 From shekay at pobox.com Thu Jun 14 18:01:06 2012 From: shekay at pobox.com (sheila miguez) Date: Thu, 14 Jun 2012 11:01:06 -0500 Subject: [Chicago] Amazing... In-Reply-To: References: Message-ID: Hi all, please help after the event too since I won't be there to carry equipment or stand by it while he drives the jeep around. On Thu, Jun 14, 2012 at 10:44 AM, Brian Ray wrote: > Also, Carl I bought you parking. I will bring the print out with me. > > https://spothero.com/spot/421?rid=1000&starts=2012-06-14T16%3A00%3A00&ends=2012-06-15T07%3A00%3A00 > > Thanks Spothero! > > On Thu, Jun 14, 2012 at 10:42 AM, Brian Ray wrote: >> OK, we will meet you at the dock at 5:30. Anyone else want to help >> carry "Bears". >> >> I will ping you off the list on budget. >> >> >> On Thu, Jun 14, 2012 at 10:36 AM, Carl Karsten wrote: >>> On Thu, Jun 14, 2012 at 10:14 AM, Brian Ray wrote: >>>> Just a reminder tonight will be amazing... http://chipy.org We start >>>> at 7pm. I will try to get food there before 7pm. 6:30? ... we will >>>> see. >>>> >>>> Also, who can help me carry beverages? Carl? Did you want to meet me >>>> at Binny's on Grand? >>> >>> I would rather pick up bear from the store near me. ?I can park by the >>> front door. ?Give me some sort of order and budget. >>> >>> I do need someone to meet me at the loading doc. ?Which I never got >>> details on other than "yes" ?Can you work that out? ? The freight >>> elevator stops at 6, so I want to be there at 5:30. >>> >>> While you are at it, figure out where I can park. ?often I can stay in >>> the loading bay after hours. ?or next to it. >>> >>> >>> -- >>> Carl K >>> _______________________________________________ >>> Chicago mailing list >>> Chicago at python.org >>> http://mail.python.org/mailman/listinfo/chicago >> >> >> >> -- >> Brian Ray >> @brianray >> (773) 669-7717 > > > > -- > Brian Ray > @brianray > (773) 669-7717 > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago -- sheila From danieltpeters at gmail.com Thu Jun 14 18:05:27 2012 From: danieltpeters at gmail.com (Daniel Peters) Date: Thu, 14 Jun 2012 11:05:27 -0500 Subject: [Chicago] Amazing... In-Reply-To: References: Message-ID: I personally love to carry bears. its a hobby, really. I'll be there early too, so just text me when ya'll show up, i'll go to whereever you are. I can also help move equipment afterward sheila. ps, I went to a Ruby hack night last night and handed out cards to a couple of people for tonights meeting, proselytizing. The sacrilege was worth it if they come though, yes? Will I be burned? *Will I be burned......?* On Thu, Jun 14, 2012 at 10:44 AM, Brian Ray wrote: > Also, Carl I bought you parking. I will bring the print out with me. > > > https://spothero.com/spot/421?rid=1000&starts=2012-06-14T16%3A00%3A00&ends=2012-06-15T07%3A00%3A00 > > Thanks Spothero! > > On Thu, Jun 14, 2012 at 10:42 AM, Brian Ray wrote: > > OK, we will meet you at the dock at 5:30. Anyone else want to help > > carry "Bears". > > > > I will ping you off the list on budget. > > > > > > On Thu, Jun 14, 2012 at 10:36 AM, Carl Karsten > wrote: > >> On Thu, Jun 14, 2012 at 10:14 AM, Brian Ray > wrote: > >>> Just a reminder tonight will be amazing... http://chipy.org We start > >>> at 7pm. I will try to get food there before 7pm. 6:30? ... we will > >>> see. > >>> > >>> Also, who can help me carry beverages? Carl? Did you want to meet me > >>> at Binny's on Grand? > >> > >> I would rather pick up bear from the store near me. I can park by the > >> front door. Give me some sort of order and budget. > >> > >> I do need someone to meet me at the loading doc. Which I never got > >> details on other than "yes" Can you work that out? The freight > >> elevator stops at 6, so I want to be there at 5:30. > >> > >> While you are at it, figure out where I can park. often I can stay in > >> the loading bay after hours. or next to it. > >> > >> > >> -- > >> Carl K > >> _______________________________________________ > >> Chicago mailing list > >> Chicago at python.org > >> http://mail.python.org/mailman/listinfo/chicago > > > > > > > > -- > > Brian Ray > > @brianray > > (773) 669-7717 > > > > -- > Brian Ray > @brianray > (773) 669-7717 > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > -------------- next part -------------- An HTML attachment was scrubbed... URL: From skip at pobox.com Thu Jun 14 18:25:05 2012 From: skip at pobox.com (Skip Montanaro) Date: Thu, 14 Jun 2012 11:25:05 -0500 Subject: [Chicago] Amazing... In-Reply-To: References: Message-ID: > > I personally love to carry bears. its a hobby, really. > > But aren't they smelly? Don't you get scratched? S -------------- next part -------------- An HTML attachment was scrubbed... URL: From jp at zavteq.com Thu Jun 14 19:00:05 2012 From: jp at zavteq.com (JP Bader) Date: Thu, 14 Jun 2012 12:00:05 -0500 Subject: [Chicago] Amazing... In-Reply-To: References: Message-ID: So long as you aren't a Packer's fan, carrying a Bear would be perfectly acceptable in Chicago, if they let you. You must remember to approach them cautiously, offering merchandising agreements and clothing lines (even alcohol or deodorant endorsements might work), and they'll let you carry them anywhere. http://wikiality.wikia.com/Chicago_Bears On Thu, Jun 14, 2012 at 11:25 AM, Skip Montanaro wrote: >> I personally love to carry bears. its a hobby, really. >> > But aren't they smelly? ?Don't you get scratched? > > S > > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > -- JP Bader Principal Zavteq, Inc. @lordB8r | jp at zavteq.com 608.692.2468 From derek.eder at gmail.com Fri Jun 15 15:48:31 2012 From: derek.eder at gmail.com (Derek Eder) Date: Fri, 15 Jun 2012 08:48:31 -0500 Subject: [Chicago] Dedupe presentation follow-up Message-ID: Thanks to everyone who made it out to the Python Open Data Summit. If anyone is interested in the dedupe library Forest and I are working on, here are some places to get started: - github repo: https://github.com/open-city/dedupe - presentation slides: https://docs.google.com/presentation/d/1i2q8BP9OvH8G_okrJtdw9u8XVc7EAEkdk_nIRCLxxU8/edit - Google group: https://groups.google.com/d/forum/open-source-deduplication Derek -- Derek Eder @derek_eder derekeder.com derek.eder at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From brianhray at gmail.com Fri Jun 15 20:01:08 2012 From: brianhray at gmail.com (Brian Ray) Date: Fri, 15 Jun 2012 13:01:08 -0500 Subject: [Chicago] Dedupe presentation follow-up In-Reply-To: References: Message-ID: Thanks for presenting, that was solid. On Fri, Jun 15, 2012 at 8:48 AM, Derek Eder wrote: > Thanks to everyone who made it out to the Python Open Data Summit. > > If anyone is interested in the dedupe library Forest and I are working on, > here are some places to get started: > > github repo:?https://github.com/open-city/dedupe > presentation > slides:?https://docs.google.com/presentation/d/1i2q8BP9OvH8G_okrJtdw9u8XVc7EAEkdk_nIRCLxxU8/edit > Google group:?https://groups.google.com/d/forum/open-source-deduplication > > Derek > > -- > Derek Eder > @derek_eder > derekeder.com > derek.eder at gmail.com > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > -- Brian Ray @brianray (773) 669-7717 From zitterbewegung at gmail.com Fri Jun 15 23:00:58 2012 From: zitterbewegung at gmail.com (Joshua Herman) Date: Fri, 15 Jun 2012 16:00:58 -0500 Subject: [Chicago] Dedupe presentation follow-up In-Reply-To: References: Message-ID: I liked it too. I might think about if I can plug it into google refine if I have time with all the things I am doing. ---Profile:--- http://www.google.com/profiles/zitterbewegung On Fri, Jun 15, 2012 at 1:01 PM, Brian Ray wrote: > Thanks for presenting, that was solid. > > On Fri, Jun 15, 2012 at 8:48 AM, Derek Eder wrote: > > Thanks to everyone who made it out to the Python Open Data Summit. > > > > If anyone is interested in the dedupe library Forest and I are working > on, > > here are some places to get started: > > > > github repo: https://github.com/open-city/dedupe > > presentation > > slides: > https://docs.google.com/presentation/d/1i2q8BP9OvH8G_okrJtdw9u8XVc7EAEkdk_nIRCLxxU8/edit > > Google group: > https://groups.google.com/d/forum/open-source-deduplication > > > > Derek > > > > -- > > Derek Eder > > @derek_eder > > derekeder.com > > derek.eder at gmail.com > > > > > > _______________________________________________ > > Chicago mailing list > > Chicago at python.org > > http://mail.python.org/mailman/listinfo/chicago > > > > > > -- > Brian Ray > @brianray > (773) 669-7717 > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kumar.mcmillan at gmail.com Sat Jun 16 02:32:34 2012 From: kumar.mcmillan at gmail.com (Kumar McMillan) Date: Fri, 15 Jun 2012 19:32:34 -0500 Subject: [Chicago] Dedupe presentation follow-up In-Reply-To: References: Message-ID: I was planning to come out for this talk specifically but something came up and I couldn't attend. Is there video that will be posted soon? Hi Carl! On Fri, Jun 15, 2012 at 4:00 PM, Joshua Herman wrote: > I liked it too. I might think about if I can plug it into google refine > if I have time with all the things I am doing. > ---Profile:--- > http://www.google.com/profiles/zitterbewegung > > > > > > On Fri, Jun 15, 2012 at 1:01 PM, Brian Ray wrote: > >> Thanks for presenting, that was solid. >> >> On Fri, Jun 15, 2012 at 8:48 AM, Derek Eder wrote: >> > Thanks to everyone who made it out to the Python Open Data Summit. >> > >> > If anyone is interested in the dedupe library Forest and I are working >> on, >> > here are some places to get started: >> > >> > github repo: https://github.com/open-city/dedupe >> > presentation >> > slides: >> https://docs.google.com/presentation/d/1i2q8BP9OvH8G_okrJtdw9u8XVc7EAEkdk_nIRCLxxU8/edit >> > Google group: >> https://groups.google.com/d/forum/open-source-deduplication >> > >> > Derek >> > >> > -- >> > Derek Eder >> > @derek_eder >> > derekeder.com >> > derek.eder at gmail.com >> > >> > >> > _______________________________________________ >> > Chicago mailing list >> > Chicago at python.org >> > http://mail.python.org/mailman/listinfo/chicago >> > >> >> >> >> -- >> Brian Ray >> @brianray >> (773) 669-7717 >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago >> > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From carl at personnelware.com Sat Jun 16 02:40:41 2012 From: carl at personnelware.com (Carl Karsten) Date: Fri, 15 Jun 2012 19:40:41 -0500 Subject: [Chicago] Dedupe presentation follow-up In-Reply-To: References: Message-ID: Upload: 6% |\\ | ETA: 0:07:29 765.17 kB/s soon. On Fri, Jun 15, 2012 at 7:32 PM, Kumar McMillan wrote: > I was planning to come out for this talk specifically but something came up > and I couldn't attend. Is there video that will be posted soon? Hi Carl! > > > On Fri, Jun 15, 2012 at 4:00 PM, Joshua Herman > wrote: >> >> I liked it too. ?I might think about if I can plug it into google refine >> if I have time with all the things I am doing. >> ---Profile:--- >> http://www.google.com/profiles/zitterbewegung >> >> >> >> >> >> On Fri, Jun 15, 2012 at 1:01 PM, Brian Ray wrote: >>> >>> Thanks for presenting, that was solid. >>> >>> On Fri, Jun 15, 2012 at 8:48 AM, Derek Eder wrote: >>> > Thanks to everyone who made it out to the Python Open Data Summit. >>> > >>> > If anyone is interested in the dedupe library Forest and I are working >>> > on, >>> > here are some places to get started: >>> > >>> > github repo:?https://github.com/open-city/dedupe >>> > presentation >>> > >>> > slides:?https://docs.google.com/presentation/d/1i2q8BP9OvH8G_okrJtdw9u8XVc7EAEkdk_nIRCLxxU8/edit >>> > Google >>> > group:?https://groups.google.com/d/forum/open-source-deduplication >>> > >>> > Derek >>> > >>> > -- >>> > Derek Eder >>> > @derek_eder >>> > derekeder.com >>> > derek.eder at gmail.com >>> > >>> > >>> > _______________________________________________ >>> > Chicago mailing list >>> > Chicago at python.org >>> > http://mail.python.org/mailman/listinfo/chicago >>> > >>> >>> >>> >>> -- >>> Brian Ray >>> @brianray >>> (773) 669-7717 >>> _______________________________________________ >>> Chicago mailing list >>> Chicago at python.org >>> http://mail.python.org/mailman/listinfo/chicago >> >> >> >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago >> > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > -- Carl K From carl at personnelware.com Sat Jun 16 03:42:31 2012 From: carl at personnelware.com (Carl Karsten) Date: Fri, 15 Jun 2012 20:42:31 -0500 Subject: [Chicago] Dedupe presentation follow-up In-Reply-To: References: Message-ID: dedupe is top of http://pyvideo.org/category/14/chipy On Fri, Jun 15, 2012 at 7:40 PM, Carl Karsten wrote: > Upload: ? 6% |\\ ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | ETA: ?0:07:29 765.17 kB/s > > soon. > > On Fri, Jun 15, 2012 at 7:32 PM, Kumar McMillan > wrote: >> I was planning to come out for this talk specifically but something came up >> and I couldn't attend. Is there video that will be posted soon? Hi Carl! >> >> >> On Fri, Jun 15, 2012 at 4:00 PM, Joshua Herman >> wrote: >>> >>> I liked it too. ?I might think about if I can plug it into google refine >>> if I have time with all the things I am doing. >>> ---Profile:--- >>> http://www.google.com/profiles/zitterbewegung >>> >>> >>> >>> >>> >>> On Fri, Jun 15, 2012 at 1:01 PM, Brian Ray wrote: >>>> >>>> Thanks for presenting, that was solid. >>>> >>>> On Fri, Jun 15, 2012 at 8:48 AM, Derek Eder wrote: >>>> > Thanks to everyone who made it out to the Python Open Data Summit. >>>> > >>>> > If anyone is interested in the dedupe library Forest and I are working >>>> > on, >>>> > here are some places to get started: >>>> > >>>> > github repo:?https://github.com/open-city/dedupe >>>> > presentation >>>> > >>>> > slides:?https://docs.google.com/presentation/d/1i2q8BP9OvH8G_okrJtdw9u8XVc7EAEkdk_nIRCLxxU8/edit >>>> > Google >>>> > group:?https://groups.google.com/d/forum/open-source-deduplication >>>> > >>>> > Derek >>>> > >>>> > -- >>>> > Derek Eder >>>> > @derek_eder >>>> > derekeder.com >>>> > derek.eder at gmail.com >>>> > >>>> > >>>> > _______________________________________________ >>>> > Chicago mailing list >>>> > Chicago at python.org >>>> > http://mail.python.org/mailman/listinfo/chicago >>>> > >>>> >>>> >>>> >>>> -- >>>> Brian Ray >>>> @brianray >>>> (773) 669-7717 >>>> _______________________________________________ >>>> Chicago mailing list >>>> Chicago at python.org >>>> http://mail.python.org/mailman/listinfo/chicago >>> >>> >>> >>> _______________________________________________ >>> Chicago mailing list >>> Chicago at python.org >>> http://mail.python.org/mailman/listinfo/chicago >>> >> >> >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago >> > > > > -- > Carl K -- Carl K From pkaushik at alum.mit.edu Sat Jun 16 17:18:31 2012 From: pkaushik at alum.mit.edu (Pallavi Anderson) Date: Sat, 16 Jun 2012 10:18:31 -0500 Subject: [Chicago] Dedupe presentation follow-up In-Reply-To: References: Message-ID: Thank you, Carl! On Fri, Jun 15, 2012 at 8:42 PM, Carl Karsten wrote: > dedupe is top of > http://pyvideo.org/category/14/chipy > > On Fri, Jun 15, 2012 at 7:40 PM, Carl Karsten wrote: >> Upload: ? 6% |\\ ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | ETA: ?0:07:29 765.17 kB/s >> >> soon. >> >> On Fri, Jun 15, 2012 at 7:32 PM, Kumar McMillan >> wrote: >>> I was planning to come out for this talk specifically but something came up >>> and I couldn't attend. Is there video that will be posted soon? Hi Carl! >>> >>> >>> On Fri, Jun 15, 2012 at 4:00 PM, Joshua Herman >>> wrote: >>>> >>>> I liked it too. ?I might think about if I can plug it into google refine >>>> if I have time with all the things I am doing. >>>> ---Profile:--- >>>> http://www.google.com/profiles/zitterbewegung >>>> >>>> >>>> >>>> >>>> >>>> On Fri, Jun 15, 2012 at 1:01 PM, Brian Ray wrote: >>>>> >>>>> Thanks for presenting, that was solid. >>>>> >>>>> On Fri, Jun 15, 2012 at 8:48 AM, Derek Eder wrote: >>>>> > Thanks to everyone who made it out to the Python Open Data Summit. >>>>> > >>>>> > If anyone is interested in the dedupe library Forest and I are working >>>>> > on, >>>>> > here are some places to get started: >>>>> > >>>>> > github repo:?https://github.com/open-city/dedupe >>>>> > presentation >>>>> > >>>>> > slides:?https://docs.google.com/presentation/d/1i2q8BP9OvH8G_okrJtdw9u8XVc7EAEkdk_nIRCLxxU8/edit >>>>> > Google >>>>> > group:?https://groups.google.com/d/forum/open-source-deduplication >>>>> > >>>>> > Derek >>>>> > >>>>> > -- >>>>> > Derek Eder >>>>> > @derek_eder >>>>> > derekeder.com >>>>> > derek.eder at gmail.com >>>>> > >>>>> > >>>>> > _______________________________________________ >>>>> > Chicago mailing list >>>>> > Chicago at python.org >>>>> > http://mail.python.org/mailman/listinfo/chicago >>>>> > >>>>> >>>>> >>>>> >>>>> -- >>>>> Brian Ray >>>>> @brianray >>>>> (773) 669-7717 >>>>> _______________________________________________ >>>>> Chicago mailing list >>>>> Chicago at python.org >>>>> http://mail.python.org/mailman/listinfo/chicago >>>> >>>> >>>> >>>> _______________________________________________ >>>> Chicago mailing list >>>> Chicago at python.org >>>> http://mail.python.org/mailman/listinfo/chicago >>>> >>> >>> >>> _______________________________________________ >>> Chicago mailing list >>> Chicago at python.org >>> http://mail.python.org/mailman/listinfo/chicago >>> >> >> >> >> -- >> Carl K > > > > -- > Carl K > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago -- @pkaushik From carl at personnelware.com Mon Jun 18 00:52:43 2012 From: carl at personnelware.com (Carl Karsten) Date: Sun, 17 Jun 2012 17:52:43 -0500 Subject: [Chicago] vids 1/3 up Message-ID: http://pyvideo.org/video/974/python-powered-search Can someone look that over and let me know if it is ok? -- Carl K From carl at personnelware.com Mon Jun 18 01:46:57 2012 From: carl at personnelware.com (Carl Karsten) Date: Sun, 17 Jun 2012 18:46:57 -0500 Subject: [Chicago] vids 1/3 up In-Reply-To: References: Message-ID: http://pyvideo.org/video/975/open-government-data-movement Same - I haven't had a chance to review, till someone tells me it is OK it isn't indexed. On Sun, Jun 17, 2012 at 5:52 PM, Carl Karsten wrote: > http://pyvideo.org/video/974/python-powered-search > > Can someone look that over and let me know if it is ok? > > -- > Carl K -- Carl K From tathagatadg at gmail.com Mon Jun 18 02:35:13 2012 From: tathagatadg at gmail.com (Tathagata Dasgupta) Date: Sun, 17 Jun 2012 19:35:13 -0500 Subject: [Chicago] vids 1/3 up In-Reply-To: References: Message-ID: I didn't go through them entirely, but Japhy's talk is a bit low res (can barely see his face), compared to the opengovdata ...Audio is clear on both. Nonetheless, as always thanks a lot for all effort that you put in ... How has been your experience with richard (https://github.com/willkg/richard)? On Sun, Jun 17, 2012 at 6:46 PM, Carl Karsten wrote: > http://pyvideo.org/video/975/open-government-data-movement > > Same - I haven't had a chance to review, till someone tells me it is > OK it isn't indexed. > > On Sun, Jun 17, 2012 at 5:52 PM, Carl Karsten wrote: >> http://pyvideo.org/video/974/python-powered-search >> >> Can someone look that over and let me know if it is ok? >> >> -- >> Carl K > > > > -- > Carl K > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago -- Cheers, T From carl at personnelware.com Mon Jun 18 20:53:25 2012 From: carl at personnelware.com (Carl Karsten) Date: Mon, 18 Jun 2012 13:53:25 -0500 Subject: [Chicago] vids 1/3 up In-Reply-To: References: Message-ID: On Sun, Jun 17, 2012 at 7:35 PM, Tathagata Dasgupta wrote: > I didn't go through them entirely, but Japhy's talk is a bit low res > (can barely see his face), compared to the opengovdata ...Audio is > clear on both. There wasn't much lighting in the room, so the sun provided light for OpenData, then went away, so low light = low amount of video data = crap. > Nonetheless, as always thanks a lot for all effort that you put in ... > > How has been your experience with richard (https://github.com/willkg/richard)? Good enough. It is really Will's baby, but it seems to be working out just fine. And others are committing to it, which says a few good things about any project. > > On Sun, Jun 17, 2012 at 6:46 PM, Carl Karsten wrote: >> http://pyvideo.org/video/975/open-government-data-movement >> >> Same - I haven't had a chance to review, till someone tells me it is >> OK it isn't indexed. >> >> On Sun, Jun 17, 2012 at 5:52 PM, Carl Karsten wrote: >>> http://pyvideo.org/video/974/python-powered-search >>> >>> Can someone look that over and let me know if it is ok? >>> >>> -- >>> Carl K >> >> >> >> -- >> Carl K >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago > > > > -- > Cheers, > T > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago -- Carl K From caitlin at walkjogrun.net Wed Jun 20 17:55:16 2012 From: caitlin at walkjogrun.net (Caitlin Seick) Date: Wed, 20 Jun 2012 10:55:16 -0500 Subject: [Chicago] Desks available in Chicago Message-ID: Hi Chicago Python User Group, I wanted to see if you'd be able to share this with your grop members to see if anyone may be interested. We're looking to fill two empty desks in our Ravenswood/North Center office. The office, at 3759 N. Ravenswood Ave is the home of WalkJogRun.net, one of the biggest running websites, and iPhone running apps in the world. It's also the headquarters of online marketing firm, Adam Howitt Consulting. This space is perfect for small business owners looking for a place to work and get creative. We're looking for designers and developers to create an environment to get creative work done but have access to the "watercooler effect" by sharing a space with other developers and designers. Details $250 / per desk per month Month-to-month renting High-Speed Internet included Office has a refrigerator, freezer, microwave and water cooler Super close to the Addison Brown Line Parking available on-site If you're interested in seeing the space, please email Caitlin at caitlin at walkjogrun.net. Thanks for your time! -- Caitlin Seick Marketing Associate WalkJogRun 3759 N. Ravenswood Ave, #226A Chicago, IL 60613 caitlin at walkjogrun.net (P) 312-772-6277 Like us on Facebook Follow us on Twitter Listen to our Podcast Read our Blog -------------- next part -------------- An HTML attachment was scrubbed... URL: From emperorcezar at gmail.com Sat Jun 23 15:47:44 2012 From: emperorcezar at gmail.com (Adam "Cezar" Jenkins) Date: Sat, 23 Jun 2012 08:47:44 -0500 Subject: [Chicago] Per virtualenv environment variables Message-ID: At work I'm working on a new infrastructure. For various reasons, I really like how Heroku does app local settings, but can't use Heroku. They are set in the environment variables. For instance, I would use the Heroku command like so heroku config:add aws_key=1234567890 and I could pull that in side my Django settings file with env['aws_key'] So I've been wondering what the best way is to set environment variables on a per virtualenv case? So far I've only come up with a custom activate script, or code in my Django app that updates the env dictionary using a .cfg or .yml file found in the virtualenv. I'm sure there's some python or bash magic that would make it easier? -------------- next part -------------- An HTML attachment was scrubbed... URL: From japhy at pearachute.com Fri Jun 22 22:42:37 2012 From: japhy at pearachute.com (Japhy Bartlett) Date: Fri, 22 Jun 2012 15:42:37 -0500 Subject: [Chicago] searching concisely with redis and tornado Message-ID: Hi all - I got a few requests for a copy of the demo code which I wasn't able to demo during my talk. Everything's dumped into http://github.com/japherwocky/navel and there are some instructions on how to get things up and running. Feel free to send questions my way! - Japhy -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.saylor at gmail.com Tue Jun 26 22:06:05 2012 From: tim.saylor at gmail.com (Tim Saylor) Date: Tue, 26 Jun 2012 15:06:05 -0500 Subject: [Chicago] Per virtualenv environment variables In-Reply-To: References: Message-ID: If you use virtualenvwrapper then the pre- and post- activate scripts are the way to do it. On Sat, Jun 23, 2012 at 8:47 AM, Adam "Cezar" Jenkins < emperorcezar at gmail.com> wrote: > At work I'm working on a new infrastructure. For various reasons, I really > like how Heroku does app local settings, but can't use Heroku. They are set > in the environment variables. For instance, I would use the Heroku command > like so > > heroku config:add aws_key=1234567890 > > and I could pull that in side my Django settings file with env['aws_key'] > > So I've been wondering what the best way is to set environment variables > on a per virtualenv case? So far I've only come up with a custom activate > script, or code in my Django app that updates the env dictionary using a > .cfg or .yml file found in the virtualenv. I'm sure there's some python or > bash magic that would make it easier? > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > > -- Tim Saylor @tsaylor http://www.timsaylor.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From emperorcezar at gmail.com Tue Jun 26 22:15:29 2012 From: emperorcezar at gmail.com (Adam "Cezar" Jenkins) Date: Tue, 26 Jun 2012 15:15:29 -0500 Subject: [Chicago] Per virtualenv environment variables In-Reply-To: References: Message-ID: Does virtualenvwrapper alter bin/activate to call the hooks? On Tue, Jun 26, 2012 at 3:06 PM, Tim Saylor wrote: > If you use virtualenvwrapper then the pre- and post- activate scripts are > the way to do it. > > On Sat, Jun 23, 2012 at 8:47 AM, Adam "Cezar" Jenkins < > emperorcezar at gmail.com> wrote: > >> At work I'm working on a new infrastructure. For various reasons, I >> really like how Heroku does app local settings, but can't use Heroku. They >> are set in the environment variables. For instance, I would use the Heroku >> command like so >> >> heroku config:add aws_key=1234567890 >> >> and I could pull that in side my Django settings file with env['aws_key'] >> >> So I've been wondering what the best way is to set environment variables >> on a per virtualenv case? So far I've only come up with a custom activate >> script, or code in my Django app that updates the env dictionary using a >> .cfg or .yml file found in the virtualenv. I'm sure there's some python or >> bash magic that would make it easier? >> >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago >> >> > > > -- > Tim Saylor > @tsaylor > http://www.timsaylor.com/ > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From hundredpercentjuice at gmail.com Wed Jun 27 00:21:46 2012 From: hundredpercentjuice at gmail.com (JS Irick) Date: Tue, 26 Jun 2012 18:21:46 -0400 Subject: [Chicago] Business internet Message-ID: Good evening pythonistas- Do any of you have an ISP that your business is happy with? I am looking in the range of 20mbps up/down, but would be amicable to faster, of course. Second, more on topic q, does anyone have a preferred SOAP python client library? Thanks in advance for your help with both. It is appreciated. -js -------------- next part -------------- An HTML attachment was scrubbed... URL: From chad at glendenin.com Wed Jun 27 00:29:28 2012 From: chad at glendenin.com (Chad Glendenin) Date: Tue, 26 Jun 2012 17:29:28 -0500 Subject: [Chicago] Business internet In-Reply-To: References: Message-ID: On Tue, Jun 26, 2012 at 5:21 PM, JS Irick wrote: > ??? Second, more on topic q, does anyone have a preferred SOAP python client > library? I found it fairly easy to use the 'suds' module to access the Jira SOAP API. Admittedly, that was probably a year ago, so there might be something better now, but suds definitely worked. From vceder at gmail.com Wed Jun 27 00:32:21 2012 From: vceder at gmail.com (Vern Ceder) Date: Tue, 26 Jun 2012 17:32:21 -0500 Subject: [Chicago] Business internet In-Reply-To: References: Message-ID: On Tue, Jun 26, 2012 at 5:29 PM, Chad Glendenin wrote: > On Tue, Jun 26, 2012 at 5:21 PM, JS Irick > wrote: > > Second, more on topic q, does anyone have a preferred SOAP python > client > > library? > > I found it fairly easy to use the 'suds' module to access the Jira > SOAP API. Admittedly, that was probably a year ago, so there might be > something better now, but suds definitely worked. > I've also used suds and found it worked pretty well. -- Vern Ceder vceder at gmail.com, vceder at dogsinmotion.com The Quick Python Book, 2nd Ed - http://bit.ly/bRsWDW -------------- next part -------------- An HTML attachment was scrubbed... URL: From sakamura at gmail.com Wed Jun 27 04:36:01 2012 From: sakamura at gmail.com (Ishmael Rufus) Date: Tue, 26 Jun 2012 21:36:01 -0500 Subject: [Chicago] Business internet In-Reply-To: References: Message-ID: >Do any of you have an ISP that your business is happy with? I am looking in the range of 20mbps up/down, but would be amicable to faster, of course. We use AT&T at my workplace downtown for 20m down speeds. You would probably get a better return on your inquiry if you try the nanog mailing list. On Tue, Jun 26, 2012 at 5:32 PM, Vern Ceder wrote: > On Tue, Jun 26, 2012 at 5:29 PM, Chad Glendenin wrote: > >> On Tue, Jun 26, 2012 at 5:21 PM, JS Irick >> wrote: >> > Second, more on topic q, does anyone have a preferred SOAP python >> client >> > library? >> >> I found it fairly easy to use the 'suds' module to access the Jira >> SOAP API. Admittedly, that was probably a year ago, so there might be >> something better now, but suds definitely worked. >> > > I've also used suds and found it worked pretty well. > > -- > Vern Ceder > vceder at gmail.com, vceder at dogsinmotion.com > The Quick Python Book, 2nd Ed - http://bit.ly/bRsWDW > > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeffh at dundeemt.com Wed Jun 27 04:51:52 2012 From: jeffh at dundeemt.com (Jeff Hinrichs - DM&T) Date: Tue, 26 Jun 2012 21:51:52 -0500 Subject: [Chicago] Per virtualenv environment variables In-Reply-To: References: Message-ID: On Sat, Jun 23, 2012 at 8:47 AM, Adam "Cezar" Jenkins < emperorcezar at gmail.com> wrote: > At work I'm working on a new infrastructure. For various reasons, I really > like how Heroku does app local settings, but can't use Heroku. They are set > in the environment variables. For instance, I would use the Heroku command > like so > > heroku config:add aws_key=1234567890 > > and I could pull that in side my Django settings file with env['aws_key'] > > So I've been wondering what the best way is to set environment variables > on a per virtualenv case? So far I've only come up with a custom activate > script, or code in my Django app that updates the env dictionary using a > .cfg or .yml file found in the virtualenv. I'm sure there's some python or > bash magic that would make it easier? > > I use YamJam, a yaml config file setup. I work in a corp environment, so lots of my settings are the same for different projects, i.e. where is the accounting data, where are pdfs stored, etc. So I end up with a system that uses config settings at a user level and then project specific, or overrides at the project level (machine or debug/production specific). ~/.yamjam/config.yaml + project/config.yaml I like YamJam because it's just a light layer over pyyaml that handles config setting merging intelligently. http://code.google.com/p/yamjam/ May not be what you are looking for, but it would save you from re-inventing your .cfg/.yml code to update settings.py. Django needs some work there, storing db credentials and SECRET_KEY in a piece of code that needs to be in a repository is troublesome. -- Best, Jeff Hinrichs 402.218.1473 -------------- next part -------------- An HTML attachment was scrubbed... URL: From tjurewicz at gmail.com Wed Jun 27 17:28:56 2012 From: tjurewicz at gmail.com (Trent Jurewicz) Date: Wed, 27 Jun 2012 10:28:56 -0500 Subject: [Chicago] Business internet In-Reply-To: References: Message-ID: +1 for suds. I've used it on many projects (SOAP still, really?!?) and, assuming your WSDL is well-formed and accurate, it is the best for creating a Python client. ~T On Tue, Jun 26, 2012 at 9:36 PM, Ishmael Rufus wrote: > >Do any of you have an ISP that your business is happy with? I am looking > in the range of 20mbps up/down, but would be amicable to faster, of course. > > We use AT&T at my workplace downtown for 20m down speeds. You would > probably get a better return on your inquiry if you try the nanog mailing > list. > > On Tue, Jun 26, 2012 at 5:32 PM, Vern Ceder wrote: > >> On Tue, Jun 26, 2012 at 5:29 PM, Chad Glendenin wrote: >> >>> On Tue, Jun 26, 2012 at 5:21 PM, JS Irick >>> wrote: >>> > Second, more on topic q, does anyone have a preferred SOAP python >>> client >>> > library? >>> >>> I found it fairly easy to use the 'suds' module to access the Jira >>> SOAP API. Admittedly, that was probably a year ago, so there might be >>> something better now, but suds definitely worked. >>> >> >> I've also used suds and found it worked pretty well. >> >> -- >> Vern Ceder >> vceder at gmail.com, vceder at dogsinmotion.com >> The Quick Python Book, 2nd Ed - http://bit.ly/bRsWDW >> >> >> >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago >> >> > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From cwebber at dustycloud.org Wed Jun 27 17:24:36 2012 From: cwebber at dustycloud.org (Christopher Allan Webber) Date: Wed, 27 Jun 2012 10:24:36 -0500 Subject: [Chicago] Let's Get Louder Message-ID: <87mx3og4ln.fsf@grumps.lan> This is pretty great: http://letsgetlouder.com/ I'm proud that the python community is being super-proactive on diversity issues over the last few years. Really great to see. I wouldn't mind ChiPy taking on such a policy. I can't sign it though, because I don't have a facebook or twitter account on principle. ;) Still, I appreciate seeing this up. - Chris From bob.haugen at gmail.com Wed Jun 27 17:46:19 2012 From: bob.haugen at gmail.com (Bob Haugen) Date: Wed, 27 Jun 2012 10:46:19 -0500 Subject: [Chicago] Let's Get Louder In-Reply-To: <87mx3og4ln.fsf@grumps.lan> References: <87mx3og4ln.fsf@grumps.lan> Message-ID: On Wed, Jun 27, 2012 at 10:24 AM, Christopher Allan Webber wrote: > I can't sign it though, because I don't have a facebook or twitter > account on principle. ;) ?Still, I appreciate seeing this up. I'm in the same boat. Anybody know any of the principals who might be able to broaden the participation rules? From alex.gaynor at gmail.com Wed Jun 27 18:04:41 2012 From: alex.gaynor at gmail.com (Alex Gaynor) Date: Wed, 27 Jun 2012 09:04:41 -0700 Subject: [Chicago] Let's Get Louder In-Reply-To: References: <87mx3og4ln.fsf@grumps.lan> Message-ID: On Wed, Jun 27, 2012 at 8:46 AM, Bob Haugen wrote: > On Wed, Jun 27, 2012 at 10:24 AM, Christopher Allan Webber > wrote: > > I can't sign it though, because I don't have a facebook or twitter > > account on principle. ;) Still, I appreciate seeing this up. > > I'm in the same boat. Anybody know any of the principals who might be > able to broaden the participation rules? > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > The site was created by Julia Elman (http://juliaelman.com/). Alex -- "I disapprove of what you say, but I will defend to the death your right to say it." -- Evelyn Beatrice Hall (summarizing Voltaire) "The people's good is the highest law." -- Cicero -------------- next part -------------- An HTML attachment was scrubbed... URL: From emperorcezar at gmail.com Wed Jun 27 18:34:06 2012 From: emperorcezar at gmail.com (Adam "Cezar" Jenkins) Date: Wed, 27 Jun 2012 11:34:06 -0500 Subject: [Chicago] Let's Get Louder In-Reply-To: References: <87mx3og4ln.fsf@grumps.lan> Message-ID: I would suggest to him what accounts you do have, or generic OpenID. I can see where he's coming from, not wanting to keep passwords and deal with registration for such a small app. On Wed, Jun 27, 2012 at 10:46 AM, Bob Haugen wrote: > On Wed, Jun 27, 2012 at 10:24 AM, Christopher Allan Webber > wrote: > > I can't sign it though, because I don't have a facebook or twitter > > account on principle. ;) Still, I appreciate seeing this up. > > I'm in the same boat. Anybody know any of the principals who might be > able to broaden the participation rules? > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob.haugen at gmail.com Wed Jun 27 19:05:29 2012 From: bob.haugen at gmail.com (Bob Haugen) Date: Wed, 27 Jun 2012 12:05:29 -0500 Subject: [Chicago] Let's Get Louder In-Reply-To: References: <87mx3og4ln.fsf@grumps.lan> Message-ID: Julia responded, is thinking about adding Google+ and OpenID. From emperorcezar at gmail.com Wed Jun 27 19:32:41 2012 From: emperorcezar at gmail.com (Adam "Cezar" Jenkins) Date: Wed, 27 Jun 2012 12:32:41 -0500 Subject: [Chicago] Let's Get Louder In-Reply-To: References: <87mx3og4ln.fsf@grumps.lan> Message-ID: My mistake. Her. I broke the name up as Juliael Man instead of Julia Elman till I clicked the link. On Wed, Jun 27, 2012 at 11:34 AM, Adam "Cezar" Jenkins < emperorcezar at gmail.com> wrote: > I would suggest to him what accounts you do have, or generic OpenID. > > I can see where he's coming from, not wanting to keep passwords and deal > with registration for such a small app. > > > On Wed, Jun 27, 2012 at 10:46 AM, Bob Haugen wrote: > >> On Wed, Jun 27, 2012 at 10:24 AM, Christopher Allan Webber >> wrote: >> > I can't sign it though, because I don't have a facebook or twitter >> > account on principle. ;) Still, I appreciate seeing this up. >> >> I'm in the same boat. Anybody know any of the principals who might be >> able to broaden the participation rules? >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From cwebber at dustycloud.org Wed Jun 27 19:38:59 2012 From: cwebber at dustycloud.org (Christopher Allan Webber) Date: Wed, 27 Jun 2012 12:38:59 -0500 Subject: [Chicago] Let's Get Louder In-Reply-To: (Bob Haugen's message of "Wed, 27 Jun 2012 12:05:29 -0500") References: <87mx3og4ln.fsf@grumps.lan> Message-ID: <87d34kejt8.fsf@grumps.lan> OpenID would be welcome. Persona (BrowserID) also! - http://www.mozilla.org/en-US/persona/ - https://developer.mozilla.org/en/browserid Bob Haugen writes: > Julia responded, is thinking about adding Google+ and OpenID. > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago From carl at personnelware.com Thu Jun 28 23:03:03 2012 From: carl at personnelware.com (Carl Karsten) Date: Thu, 28 Jun 2012 16:03:03 -0500 Subject: [Chicago] July venue Message-ID: Do we have a plan for July? Some other group would like to use ITA in July - I think we should let them have it. If I don't hear any objections in 24 hours, I'll let them know. -- Carl K From brianhray at gmail.com Thu Jun 28 23:11:17 2012 From: brianhray at gmail.com (Brian Ray) Date: Thu, 28 Jun 2012 16:11:17 -0500 Subject: [Chicago] July venue In-Reply-To: References: Message-ID: OK, for venues I am looking for something really good.. I do have some pretty good leads. Morningstar, for example, can't however they can for August so I think we should take them up on it. I would wait a couple days before canceling ITA. 1871 has introduced a clean up cost that is pretty heavy; however, they are still an option if we find enough sponsorship. more later... On Thu, Jun 28, 2012 at 4:03 PM, Carl Karsten wrote: > Do we have a plan for July? > > Some other group would like to use ITA in July - I think we should > let them have it. If I don't hear any objections in 24 hours, I'll > let them know. > > -- > Carl K > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > -- Brian Ray @brianray (773) 669-7717 -------------- next part -------------- An HTML attachment was scrubbed... URL: From emperorcezar at gmail.com Thu Jun 28 23:13:23 2012 From: emperorcezar at gmail.com (Adam "Cezar" Jenkins) Date: Thu, 28 Jun 2012 16:13:23 -0500 Subject: [Chicago] July venue In-Reply-To: References: Message-ID: I can bring a broom. :) On Thu, Jun 28, 2012 at 4:11 PM, Brian Ray wrote: > OK, for venues I am looking for something really good.. I do have some > pretty good leads. Morningstar, for example, can't however they can for > August so I think we should take them up on it. > > I would wait a couple days before canceling ITA. > > 1871 has introduced a clean up cost that is pretty heavy; however, they > are still an option if we find enough sponsorship. > > more later... > > > On Thu, Jun 28, 2012 at 4:03 PM, Carl Karsten wrote: > >> Do we have a plan for July? >> >> Some other group would like to use ITA in July - I think we should >> let them have it. If I don't hear any objections in 24 hours, I'll >> let them know. >> >> -- >> Carl K >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago >> > > > > -- > Brian Ray > @brianray > (773) 669-7717 > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From zitterbewegung at gmail.com Thu Jun 28 23:25:39 2012 From: zitterbewegung at gmail.com (Joshua Herman) Date: Thu, 28 Jun 2012 16:25:39 -0500 Subject: [Chicago] July venue In-Reply-To: References: Message-ID: I can give a 15-30 minute talk about bottle.py since I use that at work. ---Profile:--- http://www.google.com/profiles/zitterbewegung On Thu, Jun 28, 2012 at 4:11 PM, Brian Ray wrote: > OK, for venues I am looking for something really good.. I do have some > pretty good leads. Morningstar, for example, can't however they can for > August so I think we should take them up on it. > > I would wait a couple days before canceling ITA. > > 1871 has introduced a clean up cost that is pretty heavy; however, they > are still an option if we find enough sponsorship. > > more later... > > > On Thu, Jun 28, 2012 at 4:03 PM, Carl Karsten wrote: > >> Do we have a plan for July? >> >> Some other group would like to use ITA in July - I think we should >> let them have it. If I don't hear any objections in 24 hours, I'll >> let them know. >> >> -- >> Carl K >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago >> > > > > -- > Brian Ray > @brianray > (773) 669-7717 > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From asl2 at pobox.com Thu Jun 28 23:18:34 2012 From: asl2 at pobox.com (Aaron Lav) Date: Thu, 28 Jun 2012 17:18:34 -0400 Subject: [Chicago] July venue In-Reply-To: References: Message-ID: <20120628211833.GA1594@panix.com> On Thu, Jun 28, 2012 at 04:11:17PM -0500, Brian Ray wrote: > OK, for venues I am looking for something really good.. I do have some > pretty good leads. Morningstar, for example, can't however they can for > August so I think we should take them up on it. > > I would wait a couple days before canceling ITA. > > 1871 has introduced a clean up cost that is pretty heavy ... Don't we have built in garbage collection? Aaron (asl2 at pobox.com) From adrian at holovaty.com Fri Jun 29 00:10:58 2012 From: adrian at holovaty.com (Adrian Holovaty) Date: Thu, 28 Jun 2012 17:10:58 -0500 Subject: [Chicago] July venue In-Reply-To: References: Message-ID: On Thu, Jun 28, 2012 at 4:03 PM, Carl Karsten wrote: > Do we have a plan for July? I chatted with Brian about giving a talk in July, but I don't have anything planned as of yet. I could do my PyCon talk -- "Extracting musical information from sound," https://us.pycon.org/2012/schedule/presentation/6/ -- if there's interest. Adrian From zitterbewegung at gmail.com Fri Jun 29 03:08:39 2012 From: zitterbewegung at gmail.com (Joshua Herman) Date: Thu, 28 Jun 2012 20:08:39 -0500 Subject: [Chicago] July venue In-Reply-To: References: Message-ID: Web app development with bottle.py, twitter bootstrap and formalchemy. Bottle is a fast, simple and lightweight micro web-framework for Python. It is distributed as a single file module. I will show you how to use it with twitter bootstrap and interface with form alchemy so you can make a quick utility fast. ---Profile:--- http://www.google.com/profiles/zitterbewegung On Thu, Jun 28, 2012 at 5:10 PM, Adrian Holovaty wrote: > On Thu, Jun 28, 2012 at 4:03 PM, Carl Karsten > wrote: > > Do we have a plan for July? > > I chatted with Brian about giving a talk in July, but I don't have > anything planned as of yet. I could do my PyCon talk -- "Extracting > musical information from sound," > https://us.pycon.org/2012/schedule/presentation/6/ -- if there's > interest. > > Adrian > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > -------------- next part -------------- An HTML attachment was scrubbed... URL: From brianhray at gmail.com Fri Jun 29 04:42:28 2012 From: brianhray at gmail.com (Brian Ray) Date: Thu, 28 Jun 2012 21:42:28 -0500 Subject: [Chicago] July venue In-Reply-To: References: Message-ID: <59846289-0B38-4D58-A197-05C03F28A7DB@gmail.com> On Jun 28, 2012, at 5:10 PM, Adrian Holovaty wrote: > On Thu, Jun 28, 2012 at 4:03 PM, Carl Karsten wrote: >> Do we have a plan for July? > > I chatted with Brian about giving a talk in July, but I don't have > anything planned as of yet. I could do my PyCon talk -- "Extracting > musical information from sound," > https://us.pycon.org/2012/schedule/presentation/6/ -- if there's > interest. > > ... that was a fine talk especially for those who like music or deconstructing things. Something Django (the web framework) related I am sure would be well received. The talks last month were very news-hacker-esk. Ideally we could take off from there and drill a bit more into some details and applications? However, I think I said you can talk about whatever you like. How is that for diplomatic immunity? Then again it is this list job to make sarcastic remarks and vote on topics ;) -B From mastahyeti at gmail.com Fri Jun 29 05:24:32 2012 From: mastahyeti at gmail.com (Ben Toews) Date: Thu, 28 Jun 2012 22:24:32 -0500 Subject: [Chicago] July venue In-Reply-To: <59846289-0B38-4D58-A197-05C03F28A7DB@gmail.com> References: <59846289-0B38-4D58-A197-05C03F28A7DB@gmail.com> Message-ID: I will be talking at DEFCON 20 about a python tool I have been working on (http://github.com/mastahyeti/bbqsql). The app relies heavily on gevent. If you think it would be interesting I would be happy to talk a bit about gevent and evented concurrency in general and how it is useful for networking tools... I have also been working a lot with node.js lately for eventing, so maybe I could do some compare/contrast..... On Thu, Jun 28, 2012 at 9:42 PM, Brian Ray wrote: > > > > > On Jun 28, 2012, at 5:10 PM, Adrian Holovaty wrote: > >> On Thu, Jun 28, 2012 at 4:03 PM, Carl Karsten wrote: >>> Do we have a plan for July? >> >> I chatted with Brian about giving a talk in July, but I don't have >> anything planned as of yet. I could do my PyCon talk -- "Extracting >> musical information from sound," >> https://us.pycon.org/2012/schedule/presentation/6/ -- if there's >> interest. >> >> > ... that was a fine talk especially for those who like music or deconstructing things. > > Something Django (the web framework) ?related I am sure would be well received. > > The talks last month were very news-hacker-esk. Ideally we could take off from there and drill a bit more into some details and applications? > > However, I think I said you can talk about whatever you like. How is that for diplomatic immunity? Then again it is this list job to make sarcastic remarks and vote on topics ?;) > > -B > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago -- -Ben Toews From emperorcezar at gmail.com Fri Jun 29 06:00:42 2012 From: emperorcezar at gmail.com (Adam "Cezar" Jenkins) Date: Thu, 28 Jun 2012 23:00:42 -0500 Subject: [Chicago] July venue In-Reply-To: <59846289-0B38-4D58-A197-05C03F28A7DB@gmail.com> References: <59846289-0B38-4D58-A197-05C03F28A7DB@gmail.com> Message-ID: I know it's not _really_ python, but I would love to hear more about the move to Github. I'd have to say I have a crush on Github and followed the thread on the dev list, but end the end I'm still not sure how everything went. On Thu, Jun 28, 2012 at 9:42 PM, Brian Ray wrote: > > > > > On Jun 28, 2012, at 5:10 PM, Adrian Holovaty wrote: > > > On Thu, Jun 28, 2012 at 4:03 PM, Carl Karsten > wrote: > >> Do we have a plan for July? > > > > I chatted with Brian about giving a talk in July, but I don't have > > anything planned as of yet. I could do my PyCon talk -- "Extracting > > musical information from sound," > > https://us.pycon.org/2012/schedule/presentation/6/ -- if there's > > interest. > > > > > ... that was a fine talk especially for those who like music or > deconstructing things. > > Something Django (the web framework) related I am sure would be well > received. > > The talks last month were very news-hacker-esk. Ideally we could take off > from there and drill a bit more into some details and applications? > > However, I think I said you can talk about whatever you like. How is that > for diplomatic immunity? Then again it is this list job to make sarcastic > remarks and vote on topics ;) > > -B > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > -------------- next part -------------- An HTML attachment was scrubbed... URL: From adrian at holovaty.com Fri Jun 29 17:00:34 2012 From: adrian at holovaty.com (Adrian Holovaty) Date: Fri, 29 Jun 2012 10:00:34 -0500 Subject: [Chicago] July venue In-Reply-To: References: <59846289-0B38-4D58-A197-05C03F28A7DB@gmail.com> Message-ID: On Thu, Jun 28, 2012 at 11:00 PM, Adam "Cezar" Jenkins wrote: > I know it's not _really_ python, but I would love to hear more about the > move to Github. I'd have to say I have a crush on Github and followed the > thread on the dev list, but end the end I'm still not sure how everything > went. There's not much interesting stuff to say about it beyond what I put in my blog post -- http://www.holovaty.com/writing/django-github/ Adrian From brianhray at gmail.com Fri Jun 29 17:29:09 2012 From: brianhray at gmail.com (Brian Ray) Date: Fri, 29 Jun 2012 10:29:09 -0500 Subject: [Chicago] July venue In-Reply-To: References: <59846289-0B38-4D58-A197-05C03F28A7DB@gmail.com> Message-ID: On Thu, Jun 28, 2012 at 10:24 PM, Ben Toews wrote: > I will be talking at DEFCON 20 about a python tool I have been working > on (http://github.com/mastahyeti/bbqsql). The app relies heavily on > gevent. If you think it would be interesting I would be happy to talk > a bit about gevent and evented concurrency in general and how it is > useful for networking tools... I have also been working a lot with > node.js lately for eventing, so maybe I could do some > compare/contrast..... +1 -- Brian Ray @brianray -------------- next part -------------- An HTML attachment was scrubbed... URL: From dan at streemit.net Fri Jun 29 17:29:07 2012 From: dan at streemit.net (Dan M) Date: Fri, 29 Jun 2012 10:29:07 -0500 Subject: [Chicago] July venue In-Reply-To: References: Message-ID: <4FEDC9C3.8000707@streemit.net> Very much +1 on this. On 06/28/2012 08:08 PM, Joshua Herman wrote: > Web app development with bottle.py, twitter bootstrap and formalchemy. > > Bottle is a fast, simple and lightweight micro web-framework for > Python . It is distributed as a single file > module. I will show you how to use it with twitter bootstrap and > interface with form alchemy so you can make a quick utility fast. > > > ---Profile:--- > http://www.google.com/profiles/zitterbewegung -------------- next part -------------- An HTML attachment was scrubbed... URL: From pkaushik at alum.mit.edu Fri Jun 29 17:42:27 2012 From: pkaushik at alum.mit.edu (Pallavi Anderson) Date: Fri, 29 Jun 2012 10:42:27 -0500 Subject: [Chicago] July venue In-Reply-To: References: <59846289-0B38-4D58-A197-05C03F28A7DB@gmail.com> Message-ID: Some compare / contrast would be great! On Fri, Jun 29, 2012 at 10:29 AM, Brian Ray wrote: > > > On Thu, Jun 28, 2012 at 10:24 PM, Ben Toews wrote: >> >> I will be talking at DEFCON 20 about a python tool I have been working >> on (http://github.com/mastahyeti/bbqsql). The app relies heavily on >> gevent. If you think it would be interesting I would be happy to talk >> a bit about gevent and evented concurrency in general and how it is >> useful for networking tools... I have also been working a lot with >> node.js lately for eventing, so maybe I could do some >> compare/contrast..... > > > +1 > > -- > Brian Ray > @brianray > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > -- @pkaushik From jp at zavteq.com Fri Jun 29 17:58:50 2012 From: jp at zavteq.com (JP Bader) Date: Fri, 29 Jun 2012 10:58:50 -0500 Subject: [Chicago] July venue In-Reply-To: <4FEDC9C3.8000707@streemit.net> References: <4FEDC9C3.8000707@streemit.net> Message-ID: +1 on Bottle On Fri, Jun 29, 2012 at 10:29 AM, Dan M wrote: > Very much +1 on this. > > On 06/28/2012 08:08 PM, Joshua Herman wrote: > > Web app development with bottle.py, twitter bootstrap and formalchemy. > > Bottle is a fast, simple and lightweight?micro web-framework for?Python. It > is distributed as a single file module. I will show you how to use it with > twitter bootstrap and interface with form alchemy so you can make a quick > utility fast. > > > ---Profile:--- > http://www.google.com/profiles/zitterbewegung > > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > -- JP Bader Principal Zavteq, Inc. @lordB8r | jp at zavteq.com 608.692.2468 From zitterbewegung at gmail.com Fri Jun 29 22:10:23 2012 From: zitterbewegung at gmail.com (Joshua Herman) Date: Fri, 29 Jun 2012 15:10:23 -0500 Subject: [Chicago] July venue In-Reply-To: <59846289-0B38-4D58-A197-05C03F28A7DB@gmail.com> References: <59846289-0B38-4D58-A197-05C03F28A7DB@gmail.com> Message-ID: I can adapt my talk for django. I know that enough to do the talk. ---Profile:--- http://www.google.com/profiles/zitterbewegung On Thu, Jun 28, 2012 at 9:42 PM, Brian Ray wrote: > > > > > On Jun 28, 2012, at 5:10 PM, Adrian Holovaty wrote: > > > On Thu, Jun 28, 2012 at 4:03 PM, Carl Karsten > wrote: > >> Do we have a plan for July? > > > > I chatted with Brian about giving a talk in July, but I don't have > > anything planned as of yet. I could do my PyCon talk -- "Extracting > > musical information from sound," > > https://us.pycon.org/2012/schedule/presentation/6/ -- if there's > > interest. > > > > > ... that was a fine talk especially for those who like music or > deconstructing things. > > Something Django (the web framework) related I am sure would be well > received. > > The talks last month were very news-hacker-esk. Ideally we could take off > from there and drill a bit more into some details and applications? > > However, I think I said you can talk about whatever you like. How is that > for diplomatic immunity? Then again it is this list job to make sarcastic > remarks and vote on topics ;) > > -B > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > -------------- next part -------------- An HTML attachment was scrubbed... URL: From danieltpeters at gmail.com Fri Jun 29 22:36:48 2012 From: danieltpeters at gmail.com (Daniel Peters) Date: Fri, 29 Jun 2012 15:36:48 -0500 Subject: [Chicago] July venue In-Reply-To: References: <59846289-0B38-4D58-A197-05C03F28A7DB@gmail.com> Message-ID: +1 on the music talk for adrian. for what its worth I went to the talk at pycon and would be interested in hearing you riff about extracting musical information in general. On Fri, Jun 29, 2012 at 3:10 PM, Joshua Herman wrote: > I can adapt my talk for django. I know that enough to do the talk. > ---Profile:--- > http://www.google.com/profiles/zitterbewegung > > > > > On Thu, Jun 28, 2012 at 9:42 PM, Brian Ray wrote: > >> >> >> >> >> On Jun 28, 2012, at 5:10 PM, Adrian Holovaty wrote: >> >> > On Thu, Jun 28, 2012 at 4:03 PM, Carl Karsten >> wrote: >> >> Do we have a plan for July? >> > >> > I chatted with Brian about giving a talk in July, but I don't have >> > anything planned as of yet. I could do my PyCon talk -- "Extracting >> > musical information from sound," >> > https://us.pycon.org/2012/schedule/presentation/6/ -- if there's >> > interest. >> > >> > >> ... that was a fine talk especially for those who like music or >> deconstructing things. >> >> Something Django (the web framework) related I am sure would be well >> received. >> >> The talks last month were very news-hacker-esk. Ideally we could take off >> from there and drill a bit more into some details and applications? >> >> However, I think I said you can talk about whatever you like. How is that >> for diplomatic immunity? Then again it is this list job to make sarcastic >> remarks and vote on topics ;) >> >> -B >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> http://mail.python.org/mailman/listinfo/chicago >> > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From cwebber at dustycloud.org Sat Jun 30 19:54:45 2012 From: cwebber at dustycloud.org (Christopher Allan Webber) Date: Sat, 30 Jun 2012 12:54:45 -0500 Subject: [Chicago] July venue In-Reply-To: (Adrian Holovaty's message of "Thu, 28 Jun 2012 17:10:58 -0500") References: Message-ID: <87hatsbs7u.fsf@grumps.lan> I'll be at this ChiPy. I'm going to give a talk on MediaGoblin at OSCON. I already gave one on MediaGoblin a year ago at ChiPy, but there's a lot more to show now. Not sure if people would find another run of that interesting. Caveat that this version would be more tailored for an OSCON type audience, so it's kind of more "talking about the project and community" than code stuff, probably. - Chris From zitterbewegung at gmail.com Sat Jun 30 22:22:25 2012 From: zitterbewegung at gmail.com (Joshua Herman) Date: Sat, 30 Jun 2012 15:22:25 -0500 Subject: [Chicago] July venue In-Reply-To: <87hatsbs7u.fsf@grumps.lan> References: <87hatsbs7u.fsf@grumps.lan> Message-ID: So, I was going to do a socratic talk where the task is to design a website . Please have some questions in mind or I will ask them for you. I am going to cover the following parts of bottle - routing - templates In formalchemy I am going to show you how to set it up with drizzle a mysql clone for the "cloud" or various other forms of vapor. For some reason people from this bird watching website have this view template called bootstrap. I have no idea how this relates to the web but it makes stuff look pretty. I will do a small compare and contrast to django since I am brony. Actually I'm not. The previous sentence was supposed to make you laugh. Why are you still reading this?? Don't read any longer. --- Resident cookie monster --- Fooled you into reading to the end :) On Sat, Jun 30, 2012 at 12:54 PM, Christopher Allan Webber < cwebber at dustycloud.org> wrote: > I'll be at this ChiPy. > > I'm going to give a talk on MediaGoblin at OSCON. I already gave one on > MediaGoblin a year ago at ChiPy, but there's a lot more to show now. > Not sure if people would find another run of that interesting. Caveat > that this version would be more tailored for an OSCON type audience, so > it's kind of more "talking about the project and community" than code > stuff, probably. > > - Chris > _______________________________________________ > Chicago mailing list > Chicago at python.org > http://mail.python.org/mailman/listinfo/chicago > -------------- next part -------------- An HTML attachment was scrubbed... URL: