From james at atlantixeng.com Wed Apr 1 00:13:53 2015 From: james at atlantixeng.com (James Bonanno) Date: Tue, 31 Mar 2015 18:13:53 -0400 Subject: [CentralOH] IPython Paradigm Message-ID: <551B1C21.2050800@atlantixeng.com> I have downloaded jep's IPython notebook from last month on @memoize and the overall thought has occurred how good of a format this is. In particular, it is one file (that may generate or link to other files) but nonetheless it's simple to manage and learn from. -James From nathan at chowning.me Wed Apr 1 19:05:37 2015 From: nathan at chowning.me (nathan at chowning.me) Date: Wed, 1 Apr 2015 13:05:37 -0400 Subject: [CentralOH] Python 101 Screencast Kickstarter Message-ID: <20150401170537.GA19742@caprica> Hello COhPy, I wanted to spread the word about Mike Driscoll's new Kickstarter. Mike Driscoll runs the Mouse Vs Python blog (http://blog.pythonlibrary.org) and recently released a book titled Python 101 (https://gumroad.com/l/bppWr) which was also funded via kickstarter. He is now working to fund a series of Python 101 screencasts based on his Python 101 book. If you're interested, the Kickstarter can be found here: https://www.kickstarter.com/projects/34257246/the-python-101-screencast -Nathan Chowning From eric at intellovations.com Sun Apr 5 02:16:54 2015 From: eric at intellovations.com (Eric Floehr) Date: Sat, 4 Apr 2015 20:16:54 -0400 Subject: [CentralOH] Memorial Day Monthly Meeting Poll Message-ID: All, May's monthly meeting would normally fall on Memorial Day this year. Do you have a preference on if the monthly meeting should be: 1. The Monday before (May 18th) 2. The Monday after (June 1st) If it makes a difference, Raymond Chandler will be speaking on BDD in Python. Thanks! Eric -------------- next part -------------- An HTML attachment was scrubbed... URL: From jep200404 at columbus.rr.com Sun Apr 5 03:23:17 2015 From: jep200404 at columbus.rr.com (jep200404 at columbus.rr.com) Date: Sat, 4 Apr 2015 21:23:17 -0400 Subject: [CentralOH] Memorial Day Monthly Meeting Poll: June 1st for More Evenly Spaced Meetings In-Reply-To: References: Message-ID: <20150404212317.09f7af80.jep200404@columbus.rr.com> On Sat, 4 Apr 2015 20:16:54 -0400, Eric Floehr wrote: > May's monthly meeting would normally fall on Memorial Day this year. Do you > have a preference on if the monthly meeting should be: > > 1. The Monday before (May 18th) > > 2. The Monday after (June 1st) I prefer June 1st, because it spaces the meetings evenly. Monday before (May 18th) 3 weeks from April 27 to May 18 6 weeks from May 18 to June 29 Monday after (June 1st) 5 weeks from April 27 to June 1 4 weeks from June 1 to June 29 sum(map(lambda x: x*x, (5, 4))) < sum(map(lambda x: x*x, (3, 6))) From miller.eric.t at gmail.com Sun Apr 5 06:02:36 2015 From: miller.eric.t at gmail.com (Eric Miller) Date: Sun, 5 Apr 2015 00:02:36 -0400 Subject: [CentralOH] not as sexy as efloehr's cloud graphing.... Message-ID: ...but, still chuckleworthy I hope. http://www.reddit.com/r/thebutton/comments/31hk2g/realtime_graph_to_predict_the_ultimate_heat_death/ Please excuse the lazy error handling, lack of comments, and the obvious need to make functions in at least two places. I was just screwing around... from lxml import htmlimport requestsimport timeimport librato user = 'yourLibratoEmail at gmail.com' token = 'your_____API____________key' api = librato.connect(user, token) while True: try: page = requests.get('http://www.reddit.com/r/thebutton') tree = html.fromstring(page.text) participants = tree.xpath('//span[@class="thebutton-participants"]/text()') numbers = tree.xpath('//span[@class="number"]/text()') page = requests.get('http://www.reddit.com/about') tree = html.fromstring(page.text) dailyStats = tree.xpath('//div[@class="value"]/text()') pressers = participants[0] subcribers = numbers[0] activeViewers = numbers[1] dailyRedditUsers = dailyStats[4] pressers = pressers.replace(',', '') subcribers = subcribers.replace(',', '') activeViewers = activeViewers.replace(',', '') dailyRedditUsers = dailyRedditUsers.replace(',', '') api.submit("pressers", pressers) api.submit("subcribers", subcribers) api.submit("activeViewers", activeViewers) api.submit("dailyRedditUsers", dailyRedditUsers) print pressers print subcribers print activeViewers print dailyRedditUsers time.sleep(5) except: continue -------------- next part -------------- An HTML attachment was scrubbed... URL: From eric at intellovations.com Mon Apr 6 02:26:45 2015 From: eric at intellovations.com (Eric Floehr) Date: Sun, 5 Apr 2015 20:26:45 -0400 Subject: [CentralOH] not as sexy as efloehr's cloud graphing.... In-Reply-To: References: Message-ID: Oh that's awesome! And I never would have thought to use something like Librato for this, so double awesome. But why didn't you tell me I was supposed to wait to press the button? That you could only press it once! :-) Thanks for sharing that! On Sun, Apr 5, 2015 at 12:02 AM, Eric Miller wrote: > ...but, still chuckleworthy I hope. > > > http://www.reddit.com/r/thebutton/comments/31hk2g/realtime_graph_to_predict_the_ultimate_heat_death/ > > Please excuse the lazy error handling, lack of comments, and the obvious > need to make functions in at least two places. I was just screwing > around... > > from lxml import htmlimport requestsimport timeimport librato > > user = 'yourLibratoEmail at gmail.com' > token = 'your_____API____________key' > api = librato.connect(user, token) > while True: > try: > page = requests.get('http://www.reddit.com/r/thebutton') > tree = html.fromstring(page.text) > participants = tree.xpath('//span[@class="thebutton-participants"]/text()') > numbers = tree.xpath('//span[@class="number"]/text()') > > page = requests.get('http://www.reddit.com/about') > tree = html.fromstring(page.text) > dailyStats = tree.xpath('//div[@class="value"]/text()') > > pressers = participants[0] > subcribers = numbers[0] > activeViewers = numbers[1] > dailyRedditUsers = dailyStats[4] > > pressers = pressers.replace(',', '') > subcribers = subcribers.replace(',', '') > activeViewers = activeViewers.replace(',', '') > dailyRedditUsers = dailyRedditUsers.replace(',', '') > > api.submit("pressers", pressers) > api.submit("subcribers", subcribers) > api.submit("activeViewers", activeViewers) > api.submit("dailyRedditUsers", dailyRedditUsers) > > print pressers > print subcribers > print activeViewers > print dailyRedditUsers > > time.sleep(5) > except: > continue > > > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From nathan at chowning.me Mon Apr 6 04:40:41 2015 From: nathan at chowning.me (Nathan Chowning) Date: Sun, 05 Apr 2015 22:40:41 -0400 Subject: [CentralOH] Memorial Day Monthly Meeting Poll In-Reply-To: References: Message-ID: <274FF742-3A2E-4A34-AF7C-1D1106CAA300@chowning.me> I'd prefer May 18th for selfish reasons - I'm out of town the first week of June. -Nathan Chowning On April 4, 2015 8:16:54 PM EDT, Eric Floehr wrote: >All, > >May's monthly meeting would normally fall on Memorial Day this year. Do >you >have a preference on if the monthly meeting should be: > >1. The Monday before (May 18th) > >2. The Monday after (June 1st) > >If it makes a difference, Raymond Chandler will be speaking on BDD in >Python. > >Thanks! >Eric > > >------------------------------------------------------------------------ > >_______________________________________________ >CentralOH mailing list >CentralOH at python.org >https://mail.python.org/mailman/listinfo/centraloh -- Sent from my Android device with K-9 Mail. Please excuse my brevity. -------------- next part -------------- An HTML attachment was scrubbed... URL: From james at atlantixeng.com Mon Apr 6 04:38:21 2015 From: james at atlantixeng.com (James Bonanno) Date: Sun, 05 Apr 2015 22:38:21 -0400 Subject: [CentralOH] Cython Bootstrap::Decorators Message-ID: <5521F19D.2070002@atlantixeng.com> Hello All; As a follow up from last weeks presentation on Cython, I would like to add a quick explanation of how to use Cython in a more "pure" Pythonic way. You can use a cython decorator. For example, in the code below, the @cython.locals decorator is the same as a "cdef" static type definition. I added this example to the Cython Bootstrap notebook and pushed it to the GIT repo. The basic code is shown below. To get the repo : git clone git at github.com:saturn77/CythonBootstrap.git %%file ./src/exponent.pyx @cython.locals(a = cython.int, x = cython.int, y = cython.int) def power(a, x): y = a**x return y from src import exponent [exponent.power(x,3) for x in range(10)] Out[222]: [0, 1, 8, 27, 64, 125, 216, 343, 512, 729] From miller.eric.t at gmail.com Mon Apr 6 15:35:38 2015 From: miller.eric.t at gmail.com (Eric Miller) Date: Mon, 6 Apr 2015 09:35:38 -0400 Subject: [CentralOH] not as sexy as efloehr's cloud graphing.... In-Reply-To: References: Message-ID: here's a better version. Switched to statsd/grafana https://www.hostedgraphite.com/7cc81a60/grafana/#dashboard/temp/e6c6a737196e70ca561009cf6bc6abd7b41a4402 On Sun, Apr 5, 2015 at 8:26 PM, Eric Floehr wrote: > Oh that's awesome! And I never would have thought to use something like > Librato for this, so double awesome. > > But why didn't you tell me I was supposed to wait to press the button? > That you could only press it once! :-) > > Thanks for sharing that! > > On Sun, Apr 5, 2015 at 12:02 AM, Eric Miller > wrote: > >> ...but, still chuckleworthy I hope. >> >> >> http://www.reddit.com/r/thebutton/comments/31hk2g/realtime_graph_to_predict_the_ultimate_heat_death/ >> >> Please excuse the lazy error handling, lack of comments, and the obvious >> need to make functions in at least two places. I was just screwing >> around... >> >> from lxml import htmlimport requestsimport timeimport librato >> >> user = 'yourLibratoEmail at gmail.com' >> token = 'your_____API____________key' >> api = librato.connect(user, token) >> while True: >> try: >> page = requests.get('http://www.reddit.com/r/thebutton') >> tree = html.fromstring(page.text) >> participants = tree.xpath('//span[@class="thebutton-participants"]/text()') >> numbers = tree.xpath('//span[@class="number"]/text()') >> >> page = requests.get('http://www.reddit.com/about') >> tree = html.fromstring(page.text) >> dailyStats = tree.xpath('//div[@class="value"]/text()') >> >> pressers = participants[0] >> subcribers = numbers[0] >> activeViewers = numbers[1] >> dailyRedditUsers = dailyStats[4] >> >> pressers = pressers.replace(',', '') >> subcribers = subcribers.replace(',', '') >> activeViewers = activeViewers.replace(',', '') >> dailyRedditUsers = dailyRedditUsers.replace(',', '') >> >> api.submit("pressers", pressers) >> api.submit("subcribers", subcribers) >> api.submit("activeViewers", activeViewers) >> api.submit("dailyRedditUsers", dailyRedditUsers) >> >> print pressers >> print subcribers >> print activeViewers >> print dailyRedditUsers >> >> time.sleep(5) >> except: >> continue >> >> >> _______________________________________________ >> CentralOH mailing list >> CentralOH at python.org >> https://mail.python.org/mailman/listinfo/centraloh >> >> > > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From james at atlantixeng.com Mon Apr 6 16:05:35 2015 From: james at atlantixeng.com (James Bonanno) Date: Mon, 06 Apr 2015 10:05:35 -0400 Subject: [CentralOH] Nuitka vs Cython Message-ID: <552292AF.6020409@atlantixeng.com> In another follow up from last week, I compiled some basic programs with Nuitka. It's actually somewhat impressive that you can compile a static python program to a standalone C++ executable. For the various reasons that I talked about last week, I still prefer Cython. However, Nuitka is promising ... Below I show a python file, math.py, that is compile to an executable in one command line statement. %% file math.py def fib(n): """Print the Fibonacci series up to n.""" a, b = 0, 1 index = 0 while b < n: print ("%d, %d, \n" % (index, b) ) a, b = b, a + b index += 1 if __name__=="__main__": fib(1000) Here I compile with Nuitka and execute, in standalone mode: james at saturn9 ~/crc $ nuitka --execute --standalone math.py 0, 1, 1, 1, 2, 2, 3, 3, 4, 5, 5, 8, 6, 13, 7, 21, 8, 34, 9, 55, 10, 89, 11, 144, 12, 233, 13, 377, 14, 610, 15, 987, From james at atlantixeng.com Tue Apr 7 12:41:05 2015 From: james at atlantixeng.com (James Bonanno) Date: Tue, 07 Apr 2015 06:41:05 -0400 Subject: [CentralOH] Nuitka Compiler Docs Message-ID: <5523B441.4030907@atlantixeng.com> One more note on Nuitka. It seems to be well supported by it's author; and there are installers for just above every platform. The user manual and other documentation can be found here: http://nuitka.net/doc/user-manual.htmln I am still looking at doing one more more basic programs with Theano or Shedskin, and then adding those to the Cython Bootstrap notebook file... The amount of optimizing compilers for Python is now quite large. James From smashing_good_show at hotmail.com Tue Apr 7 14:52:12 2015 From: smashing_good_show at hotmail.com (timothy spencer) Date: Tue, 7 Apr 2015 05:52:12 -0700 Subject: [CentralOH] Code by voice video In-Reply-To: References: Message-ID: I found another video of coding by voice. This one is with VB, but still pretty neat. He is also using the Dragon software from Nuance. > From: centraloh-request at python.org > Subject: CentralOH Digest, Vol 96, Issue 5 > To: centraloh at python.org > Date: Tue, 7 Apr 2015 12:00:02 +0200 > > Send CentralOH mailing list submissions to > centraloh at python.org > > To subscribe or unsubscribe via the World Wide Web, visit > https://mail.python.org/mailman/listinfo/centraloh > or, via email, send a message with subject or body 'help' to > centraloh-request at python.org > > You can reach the person managing the list at > centraloh-owner at python.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of CentralOH digest..." > > > Today's Topics: > > 1. Re: not as sexy as efloehr's cloud graphing.... (Eric Miller) > 2. Nuitka vs Cython (James Bonanno) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Mon, 6 Apr 2015 09:35:38 -0400 > From: Eric Miller > To: "Mailing list for Central Ohio Python User Group (COhPy)" > > Subject: Re: [CentralOH] not as sexy as efloehr's cloud graphing.... > Message-ID: > > Content-Type: text/plain; charset="utf-8" > > here's a better version. Switched to statsd/grafana > > https://www.hostedgraphite.com/7cc81a60/grafana/#dashboard/temp/e6c6a737196e70ca561009cf6bc6abd7b41a4402 > > On Sun, Apr 5, 2015 at 8:26 PM, Eric Floehr wrote: > > > Oh that's awesome! And I never would have thought to use something like > > Librato for this, so double awesome. > > > > But why didn't you tell me I was supposed to wait to press the button? > > That you could only press it once! :-) > > > > Thanks for sharing that! > > > > On Sun, Apr 5, 2015 at 12:02 AM, Eric Miller > > wrote: > > > >> ...but, still chuckleworthy I hope. > >> > >> > >> http://www.reddit.com/r/thebutton/comments/31hk2g/realtime_graph_to_predict_the_ultimate_heat_death/ > >> > >> Please excuse the lazy error handling, lack of comments, and the obvious > >> need to make functions in at least two places. I was just screwing > >> around... > >> > >> from lxml import htmlimport requestsimport timeimport librato > >> > >> user = 'yourLibratoEmail at gmail.com' > >> token = 'your_____API____________key' > >> api = librato.connect(user, token) > >> while True: > >> try: > >> page = requests.get('http://www.reddit.com/r/thebutton') > >> tree = html.fromstring(page.text) > >> participants = tree.xpath('//span[@class="thebutton-participants"]/text()') > >> numbers = tree.xpath('//span[@class="number"]/text()') > >> > >> page = requests.get('http://www.reddit.com/about') > >> tree = html.fromstring(page.text) > >> dailyStats = tree.xpath('//div[@class="value"]/text()') > >> > >> pressers = participants[0] > >> subcribers = numbers[0] > >> activeViewers = numbers[1] > >> dailyRedditUsers = dailyStats[4] > >> > >> pressers = pressers.replace(',', '') > >> subcribers = subcribers.replace(',', '') > >> activeViewers = activeViewers.replace(',', '') > >> dailyRedditUsers = dailyRedditUsers.replace(',', '') > >> > >> api.submit("pressers", pressers) > >> api.submit("subcribers", subcribers) > >> api.submit("activeViewers", activeViewers) > >> api.submit("dailyRedditUsers", dailyRedditUsers) > >> > >> print pressers > >> print subcribers > >> print activeViewers > >> print dailyRedditUsers > >> > >> time.sleep(5) > >> except: > >> continue > >> > >> > >> _______________________________________________ > >> CentralOH mailing list > >> CentralOH at python.org > >> https://mail.python.org/mailman/listinfo/centraloh > >> > >> > > > > _______________________________________________ > > CentralOH mailing list > > CentralOH at python.org > > https://mail.python.org/mailman/listinfo/centraloh > > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > > ------------------------------ > > Message: 2 > Date: Mon, 06 Apr 2015 10:05:35 -0400 > From: James Bonanno > To: centraloh at python.org > Subject: [CentralOH] Nuitka vs Cython > Message-ID: <552292AF.6020409 at atlantixeng.com> > Content-Type: text/plain; charset=utf-8; format=flowed > > In another follow up from last week, I compiled some basic programs with > Nuitka. It's actually somewhat impressive that you can compile a static > python program to a standalone C++ executable. For the various reasons > that I talked about last week, I still prefer Cython. However, Nuitka is > promising ... > > Below I show a python file, math.py, that is compile to an executable in > one command line statement. > > %% file math.py > > def fib(n): > """Print the Fibonacci series up to n.""" > a, b = 0, 1 > index = 0 > while b < n: > print ("%d, %d, \n" % (index, b) ) > a, b = b, a + b > index += 1 > > > if __name__=="__main__": > fib(1000) > > Here I compile with Nuitka and execute, in standalone mode: > > james at saturn9 ~/crc $ nuitka --execute --standalone math.py > 0, 1, > > 1, 1, > > 2, 2, > > 3, 3, > > 4, 5, > > 5, 8, > > 6, 13, > > 7, 21, > > 8, 34, > > 9, 55, > > 10, 89, > > 11, 144, > > 12, 233, > > 13, 377, > > 14, 610, > > 15, 987, > > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > > > ------------------------------ > > End of CentralOH Digest, Vol 96, Issue 5 > **************************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: From jep200404 at columbus.rr.com Wed Apr 8 15:08:28 2015 From: jep200404 at columbus.rr.com (jep200404 at columbus.rr.com) Date: Wed, 8 Apr 2015 09:08:28 -0400 Subject: [CentralOH] Ubuntu 15.10 to Finally Drop Python 2.X Support Message-ID: <20150408090828.0ca27ff3.jep200404@columbus.rr.com> Ubuntu 15.10 to Finally Drop Python 2.X Support http://news.softpedia.com/news/Ubuntu-15-10-to-Finally-Drop-Python-2-X-Support-477830.shtml From eric at intellovations.com Wed Apr 8 15:44:40 2015 From: eric at intellovations.com (Eric Floehr) Date: Wed, 8 Apr 2015 09:44:40 -0400 Subject: [CentralOH] Ubuntu 15.10 to Finally Drop Python 2.X Support In-Reply-To: <20150408090828.0ca27ff3.jep200404@columbus.rr.com> References: <20150408090828.0ca27ff3.jep200404@columbus.rr.com> Message-ID: Fedora 23 is also planning on having Fedora internal Python programs default to 3 as well[1]. In Fedora's case however, it is still following the recommendation in PEP 394[2] that "python" still run python2, so it's not as drastic a change as Ubuntu, who is proposing (like ArchLinux) to make "python" point to python3 and not include python2 at all in the default install. [1] https://fedoraproject.org/wiki/Changes/Python_3_as_Default [2] https://www.python.org/dev/peps/pep-0394/ On Wed, Apr 8, 2015 at 9:08 AM, wrote: > Ubuntu 15.10 to Finally Drop Python 2.X Support > > http://news.softpedia.com/news/Ubuntu-15-10-to-Finally-Drop-Python-2-X-Support-477830.shtml > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jep200404 at columbus.rr.com Sun Apr 12 00:37:43 2015 From: jep200404 at columbus.rr.com (jep200404 at columbus.rr.com) Date: Sat, 11 Apr 2015 18:37:43 -0400 Subject: [CentralOH] =?utf-8?q?2015-04-10_=E9=81=93=E5=A0=B4_Scribbles_?= =?utf-8?b?76SY5pu4L+aDoeaWhz8gU2VsZi1wcmludGluZyBQcm9ncmFtczsgU3F1YXR0?= =?utf-8?q?ing=3B_Books=3B_nose=3B_pip_v_PEP=3B_modbus_pi=3B_visualization?= =?utf-8?q?=3B_Frying_Bird_in_Flight=3B_Para=28sol=7Cguas=29=3B_umbra=3B_r?= =?utf-8?q?efactoring?= Message-ID: <20150411183743.1b1fb549.jep200404@columbus.rr.com> wp: prefix means Wikipedia To get good answers, consider following the advice in the links below. http://catb.org/~esr/faqs/smart-questions.html http://web.archive.org/web/20090627155454/www.greenend.org.uk/rjk/2000/06/14/quoting.html Playing with programs that print themselves out. Which is easiest for you to understand? ==> quince1.py <== import sys with open(sys.argv[0]) as _file: for line in _file: print(line, file=sys.stdout, end='') # The file=sys.stdout is unnecessary. ==> quince2.py <== import sys with open(sys.argv[0]) as _file: for line in _file: print(line, end='') # Note the leading underscore in _file. ==> quince3.py <== import sys with open(sys.argv[0]) as _file: for line in _file: sys.stdout.write(line) # .write() does not add a newline. # print() adds a newline by default, hence end=''. ==> quince4.py <== import sys for line in open(sys.argv[0]): print(line, end='') ==> quince5.py <== import sys print(open(sys.argv[0]).read(), end='') ==> quince6.py <== import sys sys.stdout.write(open(sys.argv[0]).read()) Somebody else had reservation for Community Room but they did not show up, so we got the room anyway. This is second such incident in recent months. Two books were borrowed: Beginning Python Visualization Crafting Visual Transformation Scripts http://www.apress.com/9781430218432/ Learning Python, 5th Edition http://shop.oreilly.com/product/0636920028154.do nose program https://pypi.python.org/pypi/nose/ pip versus PEP PEP: Python Enhancement Proposals https://www.python.org/dev/peps/ pip: The PyPA recommended tool for installing Python packages. https://pypi.python.org/pypi/pip/ https://www.python.org/dev/peps/pep-0020/ https://www.python.org/dev/peps/pep-0008/ Modbus sensor raspberry pi http://pyvideo.org/search?models=videos.video&q=visualization explored recursive functions http://stackoverflow.com/questions/2917210/python-what-is-the-hard-recursion-limit-for-linux-mac-and-windows https://duckduckgo.com/html/?q=python+recursion+limit See colug.net/python/dojo/20150410 wp:Crescent Dunes Solar Energy Project fries birds like ants under a magnifying glass When microwave radar pioneers could track birds, they killed some. parasol for sun paraguas for water umbrella umbra (shadow) penumbra Was asked if it was OK to bring code for refactoring. It most certainly is. From james at atlantixeng.com Tue Apr 14 17:57:32 2015 From: james at atlantixeng.com (James Bonanno) Date: Tue, 14 Apr 2015 11:57:32 -0400 Subject: [CentralOH] Jupyter vs IPython Notebook Message-ID: <552D38EC.5050405@atlantixeng.com> I have found that installing IPython notebook from GitHub fails. After some discovery process time, I realized that there is actually a Jupyter repo on GitHub now. I cloned and installed that, and also did some pip3 installs into my Python3 dist-packages to get everything congruent. I know some people that tried to run my CythonBootstrap.ipynb had some difficulties installing; the maintainers of IPython/Jupyter are in the midst of the "big split" right now. After all the installation, here is what I get in terms of kernel information: Python 3.4.0 (default, Apr 11 2014, 13:05:11) [GCC 4.8.2] IPython 3.1.0 -- An enhanced Interactive Python. So, I am now in the domain of using Python3 for my apps .... because I use IPython and notebook so much. -James From smashing_good_show at hotmail.com Tue Apr 14 20:43:32 2015 From: smashing_good_show at hotmail.com (timothy spencer) Date: Tue, 14 Apr 2015 11:43:32 -0700 Subject: [CentralOH] Dvorak Keyboard Brands In-Reply-To: References: Message-ID: Hello all, my forearms are getting better, and I am just going to go ahead and get a Dvorak keyboard. Any recommendations for brands? On Amazon, I am seeing, iMichro, 4Keyboard, Matius, TypeMatrix... The later two look pretty nice. Let me know, Thanks. > From: centraloh-request at python.org > Subject: CentralOH Digest, Vol 96, Issue 8 > To: centraloh at python.org > Date: Sun, 12 Apr 2015 12:00:02 +0200 > > Send CentralOH mailing list submissions to > centraloh at python.org > > To subscribe or unsubscribe via the World Wide Web, visit > https://mail.python.org/mailman/listinfo/centraloh > or, via email, send a message with subject or body 'help' to > centraloh-request at python.org > > You can reach the person managing the list at > centraloh-owner at python.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of CentralOH digest..." > > > Today's Topics: > > 1. 2015-04-10 ?? Scribbles ??/??? Self-printing Programs; > Squatting; Books; nose; pip v PEP; modbus pi; visualization; > Frying Bird in Flight; Para(sol|guas); umbra; refactoring > (jep200404 at columbus.rr.com) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sat, 11 Apr 2015 18:37:43 -0400 > From: jep200404 at columbus.rr.com > To: centraloh at python.org > Subject: [CentralOH] 2015-04-10 ?? Scribbles ??/??? Self-printing > Programs; Squatting; Books; nose; pip v PEP; modbus pi; visualization; > Frying Bird in Flight; Para(sol|guas); umbra; refactoring > Message-ID: <20150411183743.1b1fb549.jep200404 at columbus.rr.com> > Content-Type: text/plain; charset=US-ASCII > > wp: prefix means Wikipedia > To get good answers, consider following the advice in the links below. > http://catb.org/~esr/faqs/smart-questions.html > http://web.archive.org/web/20090627155454/www.greenend.org.uk/rjk/2000/06/14/quoting.html > > Playing with programs that print themselves out. > Which is easiest for you to understand? > > ==> quince1.py <== > import sys > > with open(sys.argv[0]) as _file: > for line in _file: > print(line, file=sys.stdout, end='') > > # The file=sys.stdout is unnecessary. > > ==> quince2.py <== > import sys > > with open(sys.argv[0]) as _file: > for line in _file: > print(line, end='') > > # Note the leading underscore in _file. > > ==> quince3.py <== > import sys > > with open(sys.argv[0]) as _file: > for line in _file: > sys.stdout.write(line) > > # .write() does not add a newline. > # print() adds a newline by default, hence end=''. > > ==> quince4.py <== > import sys > > for line in open(sys.argv[0]): > print(line, end='') > > ==> quince5.py <== > import sys > > print(open(sys.argv[0]).read(), end='') > > ==> quince6.py <== > import sys > > sys.stdout.write(open(sys.argv[0]).read()) > > Somebody else had reservation for Community Room but they did not show up, > so we got the room anyway. This is second such incident in recent months. > > Two books were borrowed: > > Beginning Python Visualization > Crafting Visual Transformation Scripts > http://www.apress.com/9781430218432/ > > Learning Python, 5th Edition > http://shop.oreilly.com/product/0636920028154.do > > nose program > https://pypi.python.org/pypi/nose/ > > pip versus PEP > > PEP: Python Enhancement Proposals > https://www.python.org/dev/peps/ > > pip: The PyPA recommended tool for installing Python packages. > https://pypi.python.org/pypi/pip/ > > https://www.python.org/dev/peps/pep-0020/ > https://www.python.org/dev/peps/pep-0008/ > > Modbus sensor > raspberry pi > http://pyvideo.org/search?models=videos.video&q=visualization > > explored recursive functions > http://stackoverflow.com/questions/2917210/python-what-is-the-hard-recursion-limit-for-linux-mac-and-windows > https://duckduckgo.com/html/?q=python+recursion+limit > See colug.net/python/dojo/20150410 > > wp:Crescent Dunes Solar Energy Project > fries birds like ants under a magnifying glass > When microwave radar pioneers could track birds, they killed some. > > parasol for sun > paraguas for water > umbrella > umbra (shadow) > penumbra > > Was asked if it was OK to bring code for refactoring. > It most certainly is. > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > > > ------------------------------ > > End of CentralOH Digest, Vol 96, Issue 8 > **************************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: From nludban at columbus.rr.com Wed Apr 15 00:49:01 2015 From: nludban at columbus.rr.com (Neil Ludban) Date: Tue, 14 Apr 2015 18:49:01 -0400 Subject: [CentralOH] Dvorak Keyboard Brands In-Reply-To: References: Message-ID: <20150414184901.d54bb5c1.nludban@columbus.rr.com> It's cheaper to just go with a qwerty keyboard - Windows and Mac have supported switching layouts for many years, X11 has had xmodmap for even longer. On Tue, 14 Apr 2015 11:43:32 -0700 timothy spencer wrote: > Hello all, my forearms are getting better, and I am just going to go ahead and get a Dvorak keyboard. Any recommendations for brands? On Amazon, I am seeing, iMichro, 4Keyboard, Matius, TypeMatrix... The later two look pretty nice. > > Let me know, > Thanks. > From gjigsaw at gmail.com Sat Apr 18 13:58:43 2015 From: gjigsaw at gmail.com (Jason Green) Date: Sat, 18 Apr 2015 11:58:43 +0000 Subject: [CentralOH] Memorial Day Monthly Meeting Poll In-Reply-To: <274FF742-3A2E-4A34-AF7C-1D1106CAA300@chowning.me> References: <274FF742-3A2E-4A34-AF7C-1D1106CAA300@chowning.me> Message-ID: I would also miss the June date, but could make the May. On Sun, Apr 5, 2015, 10:40 PM Nathan Chowning wrote: > I'd prefer May 18th for selfish reasons - I'm out of town the first week > of June. > > -Nathan Chowning > > On April 4, 2015 8:16:54 PM EDT, Eric Floehr > wrote: > >> All, >> >> May's monthly meeting would normally fall on Memorial Day this year. Do >> you have a preference on if the monthly meeting should be: >> >> 1. The Monday before (May 18th) >> >> 2. The Monday after (June 1st) >> >> If it makes a difference, Raymond Chandler will be speaking on BDD in >> Python. >> >> Thanks! >> Eric >> >> CentralOH mailing list >> CentralOH at python.org >> https://mail.python.org/mailman/listinfo/centraloh >> >> > -- > Sent from my Android device with K-9 Mail. Please excuse my brevity. > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian.costlow at gmail.com Sat Apr 18 14:32:48 2015 From: brian.costlow at gmail.com (Brian Costlow) Date: Sat, 18 Apr 2015 08:32:48 -0400 Subject: [CentralOH] Memorial Day Monthly Meeting Poll In-Reply-To: References: <274FF742-3A2E-4A34-AF7C-1D1106CAA300@chowning.me> Message-ID: I am neutral on this one. On Sat, Apr 18, 2015 at 7:58 AM, Jason Green wrote: > I would also miss the June date, but could make the May. > > On Sun, Apr 5, 2015, 10:40 PM Nathan Chowning wrote: > >> I'd prefer May 18th for selfish reasons - I'm out of town the first week >> of June. >> >> -Nathan Chowning >> >> On April 4, 2015 8:16:54 PM EDT, Eric Floehr >> wrote: >> >>> All, >>> >>> May's monthly meeting would normally fall on Memorial Day this year. Do >>> you have a preference on if the monthly meeting should be: >>> >>> 1. The Monday before (May 18th) >>> >>> 2. The Monday after (June 1st) >>> >>> If it makes a difference, Raymond Chandler will be speaking on BDD in >>> Python. >>> >>> Thanks! >>> Eric >>> >>> CentralOH mailing list >>> CentralOH at python.org >>> https://mail.python.org/mailman/listinfo/centraloh >>> >>> >> -- >> Sent from my Android device with K-9 Mail. Please excuse my brevity. >> _______________________________________________ >> CentralOH mailing list >> CentralOH at python.org >> https://mail.python.org/mailman/listinfo/centraloh >> > > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From eric at intellovations.com Mon Apr 20 14:18:10 2015 From: eric at intellovations.com (Eric Floehr) Date: Mon, 20 Apr 2015 08:18:10 -0400 Subject: [CentralOH] April Monthly Meeting Message-ID: RSVP here: http://www.meetup.com/Central-Ohio-Python-Users-Group/events/221847666/ After-meeting RSVP here: http://www.meetup.com/Central-Ohio-Python-Users-Group/events/221847762/ We will meet at 6pm informally and the formal presentation will start at 6:30pm. This month, Professor Jim Reed will be talking about "Making Even Better Decisions in Python -- Using IFs with Supporting Assertions". This talk is for both new Python programmers and old, and you will learn both about the syntax of Python as well as how to code better regardless of your language of choice. While offering the NASA/JPL Coding Standards as a backdrop to this presentation--an attempt is made to adhere to these strict standards as Pythonists to develop clean coding habits and better decision making in their Python code. A brief overview of using Python IFs are correctly demonstrated in Python Code according to the NASA Standards presented earlier. A possible pseudo Case/Select Class is explored together as an alternative to Python IFs, but just might not past the test of meeting these self imposed coding standards. And finally, an introduction to the Python Assert Statement is provided with correct usage and demonstrating the suitable usefulness of Assertions for better program design from the beginning of your very next programming project. As always lightning talks are welcome and are a great opportunity to practice speaking and sharing your favorite Python tips! We will adjourn promptly at 8:30pm. -------------- next part -------------- An HTML attachment was scrubbed... URL: From eric at intellovations.com Mon Apr 20 15:05:59 2015 From: eric at intellovations.com (Eric Floehr) Date: Mon, 20 Apr 2015 09:05:59 -0400 Subject: [CentralOH] One of the Best Keynotes Ever Message-ID: I believe that you need to watch this PyCon 2015 Keynote by Jacob-Kaplan Moss. If you care about the health and future of the tech industry, if you care about diversity, if you have ever questioned your talents and abilities, if you have daughters who you want to live in a world where they are respected and treated equally, if you are new to programming, if you are old to programming, or if you hire developers, you need to watch this talk. Jacob's points are very cogent and I came away with new insights and perspective. Here's the link: https://www.youtube.com/watch?v=hIJdFxYlEKE -------------- next part -------------- An HTML attachment was scrubbed... URL: From miller.eric.t at gmail.com Tue Apr 21 14:47:59 2015 From: miller.eric.t at gmail.com (Eric Miller) Date: Tue, 21 Apr 2015 08:47:59 -0400 Subject: [CentralOH] One of the Best Keynotes Ever In-Reply-To: References: Message-ID: +1. My 16 year old daughter will be watching this. Thanks, E. On Mon, Apr 20, 2015 at 9:05 AM, Eric Floehr wrote: > I believe that you need to watch this PyCon 2015 Keynote by Jacob-Kaplan > Moss. > > If you care about the health and future of the tech industry, if you care > about diversity, if you have ever questioned your talents and abilities, if > you have daughters who you want to live in a world where they are respected > and treated equally, if you are new to programming, if you are old to > programming, or if you hire developers, you need to watch this talk. > > Jacob's points are very cogent and I came away with new insights and > perspective. Here's the link: > > https://www.youtube.com/watch?v=hIJdFxYlEKE > > > > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From eric at intellovations.com Tue Apr 21 16:33:12 2015 From: eric at intellovations.com (Eric Floehr) Date: Tue, 21 Apr 2015 10:33:12 -0400 Subject: [CentralOH] Data Science with Python -- Friday, May 1 Message-ID: Anyone from COhPy want to go? ---------------------------------- On Friday, May 1st, IndyPy will explore ?Data Science with Python? as part of our quarterly Pythology Lecture Series. Python has a robust ecosystem of tools and is quickly becoming the go-to programming language for Data Science applications. In fact, over the past year Python has succeeded in overtaking R in big data jobs (see stats at http://bit.ly/1NEaURU?). On May 1st, Python developers will gain insight into what it looks like to leverage real world Python applications for use in projects that use Big Data. Speakers include Sean Mooney, Chief Research Information Officer at the University of Washington Medicine, and Tyler Foxworthy, Chief Data Scientist at KSM Consulting, among others. Presentations will cover Spark, Python pandas, graph theory, extracting data, visualization tools, etc. The Eleven Fifty Coding Academy has graciously offered to host us at their amazing venue in Carmel, Scott Jones?s mansion, an award-winning house that was built to include cutting-edge technology while still maintaining an English country manor house look and feel. Join us for this focused day of Python, meet fellow Pythoneers, and advance your knowledge while working with Data Science applications. IMPORTANT: COhPy members get a $20 discount - Use code INDYPY20 when registering at https://www.eventbrite.com/e/pythology-lecture-series-data-science-with-python-tickets-15920135554 -------------- next part -------------- An HTML attachment was scrubbed... URL: From catherine.devlin at gmail.com Tue Apr 21 17:27:57 2015 From: catherine.devlin at gmail.com (Catherine Devlin) Date: Tue, 21 Apr 2015 11:27:57 -0400 Subject: [CentralOH] Data Science with Python -- Friday, May 1 In-Reply-To: References: Message-ID: Python? Data? Naturally, I'm going. I live in Brookville, slightly west of Dayton on I-70. If anybody from CMH wants to, we could meet up at an exit 21 business and carpool from there. On Tue, Apr 21, 2015 at 10:33 AM, Eric Floehr wrote: > Anyone from COhPy want to go? > > ---------------------------------- > > On Friday, May 1st, IndyPy will explore ?Data Science with Python? as part > of our quarterly Pythology Lecture Series. > > Python has a robust ecosystem of tools and is quickly becoming the go-to > programming language for Data Science applications. In fact, over the past > year Python has succeeded in overtaking R in big data jobs (see stats at > http://bit.ly/1NEaURU?). On May 1st, Python developers will gain insight > into what it looks like to leverage real world Python applications for use > in projects that use Big Data. Speakers include Sean Mooney, Chief Research > Information Officer at the University of Washington Medicine, and Tyler > Foxworthy, Chief Data Scientist at KSM Consulting, among others. > Presentations will cover Spark, Python pandas, graph theory, extracting > data, visualization tools, etc. > > The Eleven Fifty Coding Academy has graciously offered to host us at their > amazing venue in Carmel, Scott Jones?s mansion, an award-winning house that > was built to include cutting-edge technology while still maintaining an > English country manor house look and feel. > > Join us for this focused day of Python, meet fellow Pythoneers, and > advance your knowledge while working with Data Science applications. > > IMPORTANT: COhPy members get a $20 discount - Use code INDYPY20 when > registering at > > https://www.eventbrite.com/e/pythology-lecture-series-data-science-with-python-tickets-15920135554 > > > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > > -- - Catherine http://catherinedevlin.blogspot.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From eric at intellovations.com Wed Apr 22 01:55:28 2015 From: eric at intellovations.com (Eric Floehr) Date: Tue, 21 Apr 2015 19:55:28 -0400 Subject: [CentralOH] Data Science with Python -- Friday, May 1 In-Reply-To: References: Message-ID: I'm going and can drive. Pete might also come. I'll try and snag my daughter's Taurus, as the PT might get a little small with 3 or 4. On Tue, Apr 21, 2015 at 11:27 AM, Catherine Devlin < catherine.devlin at gmail.com> wrote: > Python? Data? Naturally, I'm going. I live in Brookville, slightly west > of Dayton on I-70. If anybody from CMH wants to, we could meet up at an > exit 21 business and carpool from there. > > On Tue, Apr 21, 2015 at 10:33 AM, Eric Floehr > wrote: > >> Anyone from COhPy want to go? >> >> ---------------------------------- >> >> On Friday, May 1st, IndyPy will explore ?Data Science with Python? as >> part of our quarterly Pythology Lecture Series. >> >> Python has a robust ecosystem of tools and is quickly becoming the go-to >> programming language for Data Science applications. In fact, over the past >> year Python has succeeded in overtaking R in big data jobs (see stats at >> http://bit.ly/1NEaURU?). On May 1st, Python developers will gain insight >> into what it looks like to leverage real world Python applications for use >> in projects that use Big Data. Speakers include Sean Mooney, Chief Research >> Information Officer at the University of Washington Medicine, and Tyler >> Foxworthy, Chief Data Scientist at KSM Consulting, among others. >> Presentations will cover Spark, Python pandas, graph theory, extracting >> data, visualization tools, etc. >> >> The Eleven Fifty Coding Academy has graciously offered to host us at >> their amazing venue in Carmel, Scott Jones?s mansion, an award-winning >> house that was built to include cutting-edge technology while still >> maintaining an English country manor house look and feel. >> >> Join us for this focused day of Python, meet fellow Pythoneers, and >> advance your knowledge while working with Data Science applications. >> >> IMPORTANT: COhPy members get a $20 discount - Use code INDYPY20 when >> registering at >> >> https://www.eventbrite.com/e/pythology-lecture-series-data-science-with-python-tickets-15920135554 >> >> >> _______________________________________________ >> CentralOH mailing list >> CentralOH at python.org >> https://mail.python.org/mailman/listinfo/centraloh >> >> > > > -- > - Catherine > http://catherinedevlin.blogspot.com > > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From godber at gmail.com Wed Apr 22 02:23:54 2015 From: godber at gmail.com (Austin Godber) Date: Tue, 21 Apr 2015 17:23:54 -0700 Subject: [CentralOH] Data Science with Python -- Friday, May 1 In-Reply-To: References: Message-ID: If you guys don't mind a 28 hour drive you could come to the DesertPy Data Science Workshop: http://www.meetup.com/Phoenix-Python-Meetup-Group/events/211120292/ On Tue, Apr 21, 2015 at 4:55 PM, Eric Floehr wrote: > I'm going and can drive. Pete might also come. I'll try and snag my > daughter's Taurus, as the PT might get a little small with 3 or 4. > > > On Tue, Apr 21, 2015 at 11:27 AM, Catherine Devlin < > catherine.devlin at gmail.com> wrote: > >> Python? Data? Naturally, I'm going. I live in Brookville, slightly >> west of Dayton on I-70. If anybody from CMH wants to, we could meet up at >> an exit 21 business and carpool from there. >> >> On Tue, Apr 21, 2015 at 10:33 AM, Eric Floehr >> wrote: >> >>> Anyone from COhPy want to go? >>> >>> ---------------------------------- >>> >>> On Friday, May 1st, IndyPy will explore ?Data Science with Python? as >>> part of our quarterly Pythology Lecture Series. >>> >>> Python has a robust ecosystem of tools and is quickly becoming the go-to >>> programming language for Data Science applications. In fact, over the past >>> year Python has succeeded in overtaking R in big data jobs (see stats at >>> http://bit.ly/1NEaURU?). On May 1st, Python developers will gain >>> insight into what it looks like to leverage real world Python applications >>> for use in projects that use Big Data. Speakers include Sean Mooney, Chief >>> Research Information Officer at the University of Washington Medicine, and >>> Tyler Foxworthy, Chief Data Scientist at KSM Consulting, among others. >>> Presentations will cover Spark, Python pandas, graph theory, extracting >>> data, visualization tools, etc. >>> >>> The Eleven Fifty Coding Academy has graciously offered to host us at >>> their amazing venue in Carmel, Scott Jones?s mansion, an award-winning >>> house that was built to include cutting-edge technology while still >>> maintaining an English country manor house look and feel. >>> >>> Join us for this focused day of Python, meet fellow Pythoneers, and >>> advance your knowledge while working with Data Science applications. >>> >>> IMPORTANT: COhPy members get a $20 discount - Use code INDYPY20 when >>> registering at >>> >>> https://www.eventbrite.com/e/pythology-lecture-series-data-science-with-python-tickets-15920135554 >>> >>> >>> _______________________________________________ >>> CentralOH mailing list >>> CentralOH at python.org >>> https://mail.python.org/mailman/listinfo/centraloh >>> >>> >> >> >> -- >> - Catherine >> http://catherinedevlin.blogspot.com >> >> _______________________________________________ >> CentralOH mailing list >> CentralOH at python.org >> https://mail.python.org/mailman/listinfo/centraloh >> >> > > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From pcarswell.1 at gmail.com Wed Apr 22 21:11:30 2015 From: pcarswell.1 at gmail.com (Peter Carswell) Date: Wed, 22 Apr 2015 15:11:30 -0400 Subject: [CentralOH] Data Science with Python -- Friday, May 1 In-Reply-To: References: Message-ID: I have blocked off the entire Friday and I am looking forward to a day of python programming. Should be interesting as the next day, Saturday, I have the entire day working with Unity 5, a workshop learning the new tools in Unity. On Tue, Apr 21, 2015 at 7:55 PM, Eric Floehr wrote: > I'm going and can drive. Pete might also come. I'll try and snag my > daughter's Taurus, as the PT might get a little small with 3 or 4. > > > On Tue, Apr 21, 2015 at 11:27 AM, Catherine Devlin < > catherine.devlin at gmail.com> wrote: > >> Python? Data? Naturally, I'm going. I live in Brookville, slightly >> west of Dayton on I-70. If anybody from CMH wants to, we could meet up at >> an exit 21 business and carpool from there. >> >> On Tue, Apr 21, 2015 at 10:33 AM, Eric Floehr >> wrote: >> >>> Anyone from COhPy want to go? >>> >>> ---------------------------------- >>> >>> On Friday, May 1st, IndyPy will explore ?Data Science with Python? as >>> part of our quarterly Pythology Lecture Series. >>> >>> Python has a robust ecosystem of tools and is quickly becoming the go-to >>> programming language for Data Science applications. In fact, over the past >>> year Python has succeeded in overtaking R in big data jobs (see stats at >>> http://bit.ly/1NEaURU?). On May 1st, Python developers will gain >>> insight into what it looks like to leverage real world Python applications >>> for use in projects that use Big Data. Speakers include Sean Mooney, Chief >>> Research Information Officer at the University of Washington Medicine, and >>> Tyler Foxworthy, Chief Data Scientist at KSM Consulting, among others. >>> Presentations will cover Spark, Python pandas, graph theory, extracting >>> data, visualization tools, etc. >>> >>> The Eleven Fifty Coding Academy has graciously offered to host us at >>> their amazing venue in Carmel, Scott Jones?s mansion, an award-winning >>> house that was built to include cutting-edge technology while still >>> maintaining an English country manor house look and feel. >>> >>> Join us for this focused day of Python, meet fellow Pythoneers, and >>> advance your knowledge while working with Data Science applications. >>> >>> IMPORTANT: COhPy members get a $20 discount - Use code INDYPY20 when >>> registering at >>> >>> https://www.eventbrite.com/e/pythology-lecture-series-data-science-with-python-tickets-15920135554 >>> >>> >>> _______________________________________________ >>> CentralOH mailing list >>> CentralOH at python.org >>> https://mail.python.org/mailman/listinfo/centraloh >>> >>> >> >> >> -- >> - Catherine >> http://catherinedevlin.blogspot.com >> >> _______________________________________________ >> CentralOH mailing list >> CentralOH at python.org >> https://mail.python.org/mailman/listinfo/centraloh >> >> > > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From smashing_good_show at hotmail.com Thu Apr 23 12:34:36 2015 From: smashing_good_show at hotmail.com (timothy spencer) Date: Thu, 23 Apr 2015 03:34:36 -0700 Subject: [CentralOH] IndyPy In-Reply-To: References: Message-ID: I'll go to IndyPy. I have been curious about data science, and I am not doing anything on the first. > From: centraloh-request at python.org > Subject: CentralOH Digest, Vol 96, Issue 12 > To: centraloh at python.org > Date: Wed, 22 Apr 2015 01:55:52 +0200 > > Send CentralOH mailing list submissions to > centraloh at python.org > > To subscribe or unsubscribe via the World Wide Web, visit > https://mail.python.org/mailman/listinfo/centraloh > or, via email, send a message with subject or body 'help' to > centraloh-request at python.org > > You can reach the person managing the list at > centraloh-owner at python.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of CentralOH digest..." > > > Today's Topics: > > 1. Re: One of the Best Keynotes Ever (Eric Miller) > 2. Data Science with Python -- Friday, May 1 (Eric Floehr) > 3. Re: Data Science with Python -- Friday, May 1 (Catherine Devlin) > 4. Re: Data Science with Python -- Friday, May 1 (Eric Floehr) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Tue, 21 Apr 2015 08:47:59 -0400 > From: Eric Miller > To: "Mailing list for Central Ohio Python User Group (COhPy)" > > Subject: Re: [CentralOH] One of the Best Keynotes Ever > Message-ID: > > Content-Type: text/plain; charset="utf-8" > > +1. > > My 16 year old daughter will be watching this. > > Thanks, E. > > On Mon, Apr 20, 2015 at 9:05 AM, Eric Floehr > wrote: > > > I believe that you need to watch this PyCon 2015 Keynote by Jacob-Kaplan > > Moss. > > > > If you care about the health and future of the tech industry, if you care > > about diversity, if you have ever questioned your talents and abilities, if > > you have daughters who you want to live in a world where they are respected > > and treated equally, if you are new to programming, if you are old to > > programming, or if you hire developers, you need to watch this talk. > > > > Jacob's points are very cogent and I came away with new insights and > > perspective. Here's the link: > > > > https://www.youtube.com/watch?v=hIJdFxYlEKE > > > > > > > > _______________________________________________ > > CentralOH mailing list > > CentralOH at python.org > > https://mail.python.org/mailman/listinfo/centraloh > > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > > ------------------------------ > > Message: 2 > Date: Tue, 21 Apr 2015 10:33:12 -0400 > From: Eric Floehr > To: Central Ohio Python Users Group > Subject: [CentralOH] Data Science with Python -- Friday, May 1 > Message-ID: > > Content-Type: text/plain; charset="utf-8" > > Anyone from COhPy want to go? > > ---------------------------------- > > On Friday, May 1st, IndyPy will explore ?Data Science with Python? as part > of our quarterly Pythology Lecture Series. > > Python has a robust ecosystem of tools and is quickly becoming the go-to > programming language for Data Science applications. In fact, over the past > year Python has succeeded in overtaking R in big data jobs (see stats at > http://bit.ly/1NEaURU?). On May 1st, Python developers will gain insight > into what it looks like to leverage real world Python applications for use > in projects that use Big Data. Speakers include Sean Mooney, Chief Research > Information Officer at the University of Washington Medicine, and Tyler > Foxworthy, Chief Data Scientist at KSM Consulting, among others. > Presentations will cover Spark, Python pandas, graph theory, extracting > data, visualization tools, etc. > > The Eleven Fifty Coding Academy has graciously offered to host us at their > amazing venue in Carmel, Scott Jones?s mansion, an award-winning house that > was built to include cutting-edge technology while still maintaining an > English country manor house look and feel. > > Join us for this focused day of Python, meet fellow Pythoneers, and advance > your knowledge while working with Data Science applications. > > IMPORTANT: COhPy members get a $20 discount - Use code INDYPY20 when > registering at > https://www.eventbrite.com/e/pythology-lecture-series-data-science-with-python-tickets-15920135554 > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > > ------------------------------ > > Message: 3 > Date: Tue, 21 Apr 2015 11:27:57 -0400 > From: Catherine Devlin > To: "Mailing list for Central Ohio Python User Group (COhPy)" > > Subject: Re: [CentralOH] Data Science with Python -- Friday, May 1 > Message-ID: > > Content-Type: text/plain; charset="utf-8" > > Python? Data? Naturally, I'm going. I live in Brookville, slightly west > of Dayton on I-70. If anybody from CMH wants to, we could meet up at an > exit 21 business and carpool from there. > > On Tue, Apr 21, 2015 at 10:33 AM, Eric Floehr > wrote: > > > Anyone from COhPy want to go? > > > > ---------------------------------- > > > > On Friday, May 1st, IndyPy will explore ?Data Science with Python? as part > > of our quarterly Pythology Lecture Series. > > > > Python has a robust ecosystem of tools and is quickly becoming the go-to > > programming language for Data Science applications. In fact, over the past > > year Python has succeeded in overtaking R in big data jobs (see stats at > > http://bit.ly/1NEaURU?). On May 1st, Python developers will gain insight > > into what it looks like to leverage real world Python applications for use > > in projects that use Big Data. Speakers include Sean Mooney, Chief Research > > Information Officer at the University of Washington Medicine, and Tyler > > Foxworthy, Chief Data Scientist at KSM Consulting, among others. > > Presentations will cover Spark, Python pandas, graph theory, extracting > > data, visualization tools, etc. > > > > The Eleven Fifty Coding Academy has graciously offered to host us at their > > amazing venue in Carmel, Scott Jones?s mansion, an award-winning house that > > was built to include cutting-edge technology while still maintaining an > > English country manor house look and feel. > > > > Join us for this focused day of Python, meet fellow Pythoneers, and > > advance your knowledge while working with Data Science applications. > > > > IMPORTANT: COhPy members get a $20 discount - Use code INDYPY20 when > > registering at > > > > https://www.eventbrite.com/e/pythology-lecture-series-data-science-with-python-tickets-15920135554 > > > > > > _______________________________________________ > > CentralOH mailing list > > CentralOH at python.org > > https://mail.python.org/mailman/listinfo/centraloh > > > > > > > -- > - Catherine > http://catherinedevlin.blogspot.com > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > > ------------------------------ > > Message: 4 > Date: Tue, 21 Apr 2015 19:55:28 -0400 > From: Eric Floehr > To: "Mailing list for Central Ohio Python User Group (COhPy)" > > Subject: Re: [CentralOH] Data Science with Python -- Friday, May 1 > Message-ID: > > Content-Type: text/plain; charset="utf-8" > > I'm going and can drive. Pete might also come. I'll try and snag my > daughter's Taurus, as the PT might get a little small with 3 or 4. > > > On Tue, Apr 21, 2015 at 11:27 AM, Catherine Devlin < > catherine.devlin at gmail.com> wrote: > > > Python? Data? Naturally, I'm going. I live in Brookville, slightly west > > of Dayton on I-70. If anybody from CMH wants to, we could meet up at an > > exit 21 business and carpool from there. > > > > On Tue, Apr 21, 2015 at 10:33 AM, Eric Floehr > > wrote: > > > >> Anyone from COhPy want to go? > >> > >> ---------------------------------- > >> > >> On Friday, May 1st, IndyPy will explore ?Data Science with Python? as > >> part of our quarterly Pythology Lecture Series. > >> > >> Python has a robust ecosystem of tools and is quickly becoming the go-to > >> programming language for Data Science applications. In fact, over the past > >> year Python has succeeded in overtaking R in big data jobs (see stats at > >> http://bit.ly/1NEaURU?). On May 1st, Python developers will gain insight > >> into what it looks like to leverage real world Python applications for use > >> in projects that use Big Data. Speakers include Sean Mooney, Chief Research > >> Information Officer at the University of Washington Medicine, and Tyler > >> Foxworthy, Chief Data Scientist at KSM Consulting, among others. > >> Presentations will cover Spark, Python pandas, graph theory, extracting > >> data, visualization tools, etc. > >> > >> The Eleven Fifty Coding Academy has graciously offered to host us at > >> their amazing venue in Carmel, Scott Jones?s mansion, an award-winning > >> house that was built to include cutting-edge technology while still > >> maintaining an English country manor house look and feel. > >> > >> Join us for this focused day of Python, meet fellow Pythoneers, and > >> advance your knowledge while working with Data Science applications. > >> > >> IMPORTANT: COhPy members get a $20 discount - Use code INDYPY20 when > >> registering at > >> > >> https://www.eventbrite.com/e/pythology-lecture-series-data-science-with-python-tickets-15920135554 > >> > >> > >> _______________________________________________ > >> CentralOH mailing list > >> CentralOH at python.org > >> https://mail.python.org/mailman/listinfo/centraloh > >> > >> > > > > > > -- > > - Catherine > > http://catherinedevlin.blogspot.com > > > > _______________________________________________ > > CentralOH mailing list > > CentralOH at python.org > > https://mail.python.org/mailman/listinfo/centraloh > > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > > > ------------------------------ > > End of CentralOH Digest, Vol 96, Issue 12 > ***************************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: From smashing_good_show at hotmail.com Thu Apr 23 12:35:46 2015 From: smashing_good_show at hotmail.com (timothy spencer) Date: Thu, 23 Apr 2015 03:35:46 -0700 Subject: [CentralOH] Carpooling In-Reply-To: References: Message-ID: Oh yeah, and I have a car and I can drive if people need a ride. > From: centraloh-request at python.org > Subject: CentralOH Digest, Vol 96, Issue 13 > To: centraloh at python.org > Date: Wed, 22 Apr 2015 12:00:03 +0200 > > Send CentralOH mailing list submissions to > centraloh at python.org > > To subscribe or unsubscribe via the World Wide Web, visit > https://mail.python.org/mailman/listinfo/centraloh > or, via email, send a message with subject or body 'help' to > centraloh-request at python.org > > You can reach the person managing the list at > centraloh-owner at python.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of CentralOH digest..." > > > Today's Topics: > > 1. Re: Data Science with Python -- Friday, May 1 (Austin Godber) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Tue, 21 Apr 2015 17:23:54 -0700 > From: Austin Godber > To: "Mailing list for Central Ohio Python User Group (COhPy)" > > Subject: Re: [CentralOH] Data Science with Python -- Friday, May 1 > Message-ID: > > Content-Type: text/plain; charset="utf-8" > > If you guys don't mind a 28 hour drive you could come to the DesertPy Data > Science Workshop: > > http://www.meetup.com/Phoenix-Python-Meetup-Group/events/211120292/ > > On Tue, Apr 21, 2015 at 4:55 PM, Eric Floehr > wrote: > > > I'm going and can drive. Pete might also come. I'll try and snag my > > daughter's Taurus, as the PT might get a little small with 3 or 4. > > > > > > On Tue, Apr 21, 2015 at 11:27 AM, Catherine Devlin < > > catherine.devlin at gmail.com> wrote: > > > >> Python? Data? Naturally, I'm going. I live in Brookville, slightly > >> west of Dayton on I-70. If anybody from CMH wants to, we could meet up at > >> an exit 21 business and carpool from there. > >> > >> On Tue, Apr 21, 2015 at 10:33 AM, Eric Floehr > >> wrote: > >> > >>> Anyone from COhPy want to go? > >>> > >>> ---------------------------------- > >>> > >>> On Friday, May 1st, IndyPy will explore ?Data Science with Python? as > >>> part of our quarterly Pythology Lecture Series. > >>> > >>> Python has a robust ecosystem of tools and is quickly becoming the go-to > >>> programming language for Data Science applications. In fact, over the past > >>> year Python has succeeded in overtaking R in big data jobs (see stats at > >>> http://bit.ly/1NEaURU?). On May 1st, Python developers will gain > >>> insight into what it looks like to leverage real world Python applications > >>> for use in projects that use Big Data. Speakers include Sean Mooney, Chief > >>> Research Information Officer at the University of Washington Medicine, and > >>> Tyler Foxworthy, Chief Data Scientist at KSM Consulting, among others. > >>> Presentations will cover Spark, Python pandas, graph theory, extracting > >>> data, visualization tools, etc. > >>> > >>> The Eleven Fifty Coding Academy has graciously offered to host us at > >>> their amazing venue in Carmel, Scott Jones?s mansion, an award-winning > >>> house that was built to include cutting-edge technology while still > >>> maintaining an English country manor house look and feel. > >>> > >>> Join us for this focused day of Python, meet fellow Pythoneers, and > >>> advance your knowledge while working with Data Science applications. > >>> > >>> IMPORTANT: COhPy members get a $20 discount - Use code INDYPY20 when > >>> registering at > >>> > >>> https://www.eventbrite.com/e/pythology-lecture-series-data-science-with-python-tickets-15920135554 > >>> > >>> > >>> _______________________________________________ > >>> CentralOH mailing list > >>> CentralOH at python.org > >>> https://mail.python.org/mailman/listinfo/centraloh > >>> > >>> > >> > >> > >> -- > >> - Catherine > >> http://catherinedevlin.blogspot.com > >> > >> _______________________________________________ > >> CentralOH mailing list > >> CentralOH at python.org > >> https://mail.python.org/mailman/listinfo/centraloh > >> > >> > > > > _______________________________________________ > > CentralOH mailing list > > CentralOH at python.org > > https://mail.python.org/mailman/listinfo/centraloh > > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > > > ------------------------------ > > End of CentralOH Digest, Vol 96, Issue 13 > ***************************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: From kurtis.mullins at gmail.com Fri Apr 24 19:48:39 2015 From: kurtis.mullins at gmail.com (Kurtis Mullins) Date: Fri, 24 Apr 2015 13:48:39 -0400 Subject: [CentralOH] Data Science with Python -- Friday, May 1 In-Reply-To: References: Message-ID: I didn't realized you lived this far away from everyone else too. I live in Centerville -- just South of Dayton! I miss out on just about everything because that's a pretty big haul to attend short get-togethers when you consider kids, work, etc... :) Have fun in Indy everyone. On Tue, Apr 21, 2015 at 11:27 AM, Catherine Devlin < catherine.devlin at gmail.com> wrote: > Python? Data? Naturally, I'm going. I live in Brookville, slightly west > of Dayton on I-70. If anybody from CMH wants to, we could meet up at an > exit 21 business and carpool from there. > > On Tue, Apr 21, 2015 at 10:33 AM, Eric Floehr > wrote: > >> Anyone from COhPy want to go? >> >> ---------------------------------- >> >> On Friday, May 1st, IndyPy will explore ?Data Science with Python? as >> part of our quarterly Pythology Lecture Series. >> >> Python has a robust ecosystem of tools and is quickly becoming the go-to >> programming language for Data Science applications. In fact, over the past >> year Python has succeeded in overtaking R in big data jobs (see stats at >> http://bit.ly/1NEaURU?). On May 1st, Python developers will gain insight >> into what it looks like to leverage real world Python applications for use >> in projects that use Big Data. Speakers include Sean Mooney, Chief Research >> Information Officer at the University of Washington Medicine, and Tyler >> Foxworthy, Chief Data Scientist at KSM Consulting, among others. >> Presentations will cover Spark, Python pandas, graph theory, extracting >> data, visualization tools, etc. >> >> The Eleven Fifty Coding Academy has graciously offered to host us at >> their amazing venue in Carmel, Scott Jones?s mansion, an award-winning >> house that was built to include cutting-edge technology while still >> maintaining an English country manor house look and feel. >> >> Join us for this focused day of Python, meet fellow Pythoneers, and >> advance your knowledge while working with Data Science applications. >> >> IMPORTANT: COhPy members get a $20 discount - Use code INDYPY20 when >> registering at >> >> https://www.eventbrite.com/e/pythology-lecture-series-data-science-with-python-tickets-15920135554 >> >> >> _______________________________________________ >> CentralOH mailing list >> CentralOH at python.org >> https://mail.python.org/mailman/listinfo/centraloh >> >> > > > -- > - Catherine > http://catherinedevlin.blogspot.com > > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From catherine.devlin at gmail.com Fri Apr 24 22:05:23 2015 From: catherine.devlin at gmail.com (Catherine Devlin) Date: Fri, 24 Apr 2015 16:05:23 -0400 Subject: [CentralOH] Data Science with Python -- Friday, May 1 In-Reply-To: References: Message-ID: Anybody else closer to Dayton than Columbus should know about the Dayton Dynamic Languages User Group: dayton-dynamic.github.io. Because I'm president there's virtually always significant Python content. :) On Fri, Apr 24, 2015 at 1:48 PM, Kurtis Mullins wrote: > I didn't realized you lived this far away from everyone else too. I live > in Centerville -- just South of Dayton! > > I miss out on just about everything because that's a pretty big haul to > attend short get-togethers when you consider kids, work, etc... :) > > Totally understood - that's the one and only reason I'm rarely seen at COhPy personally. If we had a quick train or something to get me to Columbus... (ahem) -- - Catherine http://catherinedevlin.blogspot.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From jdsantiagojr at gmail.com Fri Apr 24 22:19:45 2015 From: jdsantiagojr at gmail.com (John Santiago) Date: Fri, 24 Apr 2015 16:19:45 -0400 Subject: [CentralOH] Data Science with Python -- Friday, May 1 In-Reply-To: References: Message-ID: Are there any Python devs in Dublin area. I work in that area; and it is difficult to get to a meeting in Columbus with all the traffic. Was wondering if there was enough devs in that area we can do meetup there as well? On Fri, Apr 24, 2015 at 4:05 PM, Catherine Devlin < catherine.devlin at gmail.com> wrote: > Anybody else closer to Dayton than Columbus should know about the Dayton > Dynamic Languages User Group: dayton-dynamic.github.io. Because I'm > president there's virtually always significant Python content. :) > > On Fri, Apr 24, 2015 at 1:48 PM, Kurtis Mullins > wrote: > >> I didn't realized you lived this far away from everyone else too. I live >> in Centerville -- just South of Dayton! >> >> I miss out on just about everything because that's a pretty big haul to >> attend short get-togethers when you consider kids, work, etc... :) >> >> > Totally understood - that's the one and only reason I'm rarely seen at > COhPy personally. If we had a quick train or something to get me to > Columbus... (ahem) > > -- > - Catherine > http://catherinedevlin.blogspot.com > > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > > -- This electronic message is intended to be for the use only of the named recipient, and may contain information that is confidential or privileged. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the contents of this message is strictly prohibited. If you have received this message in error or are not the named recipient, please notify us immediately by contacting the sender at the electronic mail address noted above, and delete and destroy all copies of this message. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: From pybokeh at gmail.com Fri Apr 24 22:45:14 2015 From: pybokeh at gmail.com (pybokeh) Date: Fri, 24 Apr 2015 16:45:14 -0400 Subject: [CentralOH] Data Science with Python -- Friday, May 1 In-Reply-To: References: Message-ID: I live in Dublin, but I somewhat been going to the weekly meetup on Fridays on a regular basis. I haven't run into too much traffic. Maybe I've been lucky. But yeah it would be nice to have one in Dublin too. I'm available if you want to car pool. - Daniel On Apr 24, 2015 4:19 PM, "John Santiago" wrote: > Are there any Python devs in Dublin area. I work in that area; and it is > difficult to get to a meeting in Columbus with all the traffic. Was > wondering if there was enough devs in that area we can do meetup there as > well? > > On Fri, Apr 24, 2015 at 4:05 PM, Catherine Devlin < > catherine.devlin at gmail.com> wrote: > >> Anybody else closer to Dayton than Columbus should know about the Dayton >> Dynamic Languages User Group: dayton-dynamic.github.io. Because I'm >> president there's virtually always significant Python content. :) >> >> On Fri, Apr 24, 2015 at 1:48 PM, Kurtis Mullins > > wrote: >> >>> I didn't realized you lived this far away from everyone else too. I live >>> in Centerville -- just South of Dayton! >>> >>> I miss out on just about everything because that's a pretty big haul to >>> attend short get-togethers when you consider kids, work, etc... :) >>> >>> >> Totally understood - that's the one and only reason I'm rarely seen at >> COhPy personally. If we had a quick train or something to get me to >> Columbus... (ahem) >> >> -- >> - Catherine >> http://catherinedevlin.blogspot.com >> >> _______________________________________________ >> CentralOH mailing list >> CentralOH at python.org >> https://mail.python.org/mailman/listinfo/centraloh >> >> > > > -- > This electronic message is intended to be for the use only of the named > recipient, and may contain information that is confidential or privileged. > If you are not the intended recipient, you are hereby notified that any > disclosure, copying, distribution or use of the contents of this message is > strictly prohibited. If you have received this message in error or are not > the named recipient, please notify us immediately by contacting the sender > at the electronic mail address noted above, and delete and destroy all > copies of this message. Thank you. > > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jdsantiagojr at gmail.com Sat Apr 25 01:26:08 2015 From: jdsantiagojr at gmail.com (John Santiago) Date: Fri, 24 Apr 2015 19:26:08 -0400 Subject: [CentralOH] Data Science with Python -- Friday, May 1 In-Reply-To: References: Message-ID: Hey Daniel. I can send you my information. It would be cool to have something Python related in Dublin. On Fri, Apr 24, 2015 at 4:45 PM, pybokeh wrote: > I live in Dublin, but I somewhat been going to the weekly meetup on > Fridays on a regular basis. I haven't run into too much traffic. Maybe > I've been lucky. But yeah it would be nice to have one in Dublin too. > > I'm available if you want to car pool. > > - Daniel > On Apr 24, 2015 4:19 PM, "John Santiago" wrote: > >> Are there any Python devs in Dublin area. I work in that area; and it is >> difficult to get to a meeting in Columbus with all the traffic. Was >> wondering if there was enough devs in that area we can do meetup there as >> well? >> >> On Fri, Apr 24, 2015 at 4:05 PM, Catherine Devlin < >> catherine.devlin at gmail.com> wrote: >> >>> Anybody else closer to Dayton than Columbus should know about the Dayton >>> Dynamic Languages User Group: dayton-dynamic.github.io. Because I'm >>> president there's virtually always significant Python content. :) >>> >>> On Fri, Apr 24, 2015 at 1:48 PM, Kurtis Mullins < >>> kurtis.mullins at gmail.com> wrote: >>> >>>> I didn't realized you lived this far away from everyone else too. I >>>> live in Centerville -- just South of Dayton! >>>> >>>> I miss out on just about everything because that's a pretty big haul to >>>> attend short get-togethers when you consider kids, work, etc... :) >>>> >>>> >>> Totally understood - that's the one and only reason I'm rarely seen at >>> COhPy personally. If we had a quick train or something to get me to >>> Columbus... (ahem) >>> >>> -- >>> - Catherine >>> http://catherinedevlin.blogspot.com >>> >>> _______________________________________________ >>> CentralOH mailing list >>> CentralOH at python.org >>> https://mail.python.org/mailman/listinfo/centraloh >>> >>> >> >> >> -- >> This electronic message is intended to be for the use only of the named >> recipient, and may contain information that is confidential or privileged. >> If you are not the intended recipient, you are hereby notified that any >> disclosure, copying, distribution or use of the contents of this message is >> strictly prohibited. If you have received this message in error or are not >> the named recipient, please notify us immediately by contacting the sender >> at the electronic mail address noted above, and delete and destroy all >> copies of this message. Thank you. >> >> _______________________________________________ >> CentralOH mailing list >> CentralOH at python.org >> https://mail.python.org/mailman/listinfo/centraloh >> >> > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > > -- This electronic message is intended to be for the use only of the named recipient, and may contain information that is confidential or privileged. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the contents of this message is strictly prohibited. If you have received this message in error or are not the named recipient, please notify us immediately by contacting the sender at the electronic mail address noted above, and delete and destroy all copies of this message. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: From pybokeh at gmail.com Sat Apr 25 15:39:52 2015 From: pybokeh at gmail.com (pybokeh) Date: Sat, 25 Apr 2015 09:39:52 -0400 Subject: [CentralOH] Will be helping someone install VirtualBox Message-ID: List, Just FYI, I'll be helping someone install VirtualBox so that she can start working with Linux OS on her host Windows 7 machine. If anybody else wants to join, you're more than welcome. Meeting at the Dublin Metropolitan Library at 6:45PM on 4/30/15. Also curious what other virtualization software people recommend that we can use where Windows 7 is the host machine other than VirtualBox. - Daniel -------------- next part -------------- An HTML attachment was scrubbed... URL: From pybokeh at gmail.com Sat Apr 25 15:56:58 2015 From: pybokeh at gmail.com (pybokeh) Date: Sat, 25 Apr 2015 09:56:58 -0400 Subject: [CentralOH] Data Science with Python -- Friday, May 1 Message-ID: Oooh want so badly to attend, but sadly I can't! Have a safe trip for those going. BTW, on a related note, saw that Yhat came out with a GUI editor tailored for doing data science called Rodeo ( http://blog.yhathq.com/posts/introducing-rodeo.html). Looks a lot like RStudio (http://www.rstudio.com/products/RStudio/). Would be neat to test drive Rodeo while at the data science workshop at Indiana. Yhat also makes a plotting package called ggplot which I like a lot, but sadly doesn't seem to get much in the way of support. I wish the word gets out more about ggplot and thus more people would support it at their github site. - Daniel -------------- next part -------------- An HTML attachment was scrubbed... URL: From pcarswell.1 at gmail.com Sat Apr 25 16:14:54 2015 From: pcarswell.1 at gmail.com (Peter Carswell) Date: Sat, 25 Apr 2015 10:14:54 -0400 Subject: [CentralOH] Data Science with Python -- Friday, May 1 In-Reply-To: References: Message-ID: Hello, John. There is a second python group that meets in Columbus every Friday, at the Panzera on North High. It is comprised of people who regularly attend the monthly meeting, and is fewer in attendance. Perhaps you might try to organize a similar group? Many of the presentations are posted on Github. I would suggest a good start would be Eric's talk the last meeting on using data to play music ... searh 'Eric Floehr Sonification'. On Fri, Apr 24, 2015 at 4:19 PM, John Santiago wrote: > Are there any Python devs in Dublin area. I work in that area; and it is > difficult to get to a meeting in Columbus with all the traffic. Was > wondering if there was enough devs in that area we can do meetup there as > well? > > On Fri, Apr 24, 2015 at 4:05 PM, Catherine Devlin < > catherine.devlin at gmail.com> wrote: > >> Anybody else closer to Dayton than Columbus should know about the Dayton >> Dynamic Languages User Group: dayton-dynamic.github.io. Because I'm >> president there's virtually always significant Python content. :) >> >> On Fri, Apr 24, 2015 at 1:48 PM, Kurtis Mullins > > wrote: >> >>> I didn't realized you lived this far away from everyone else too. I live >>> in Centerville -- just South of Dayton! >>> >>> I miss out on just about everything because that's a pretty big haul to >>> attend short get-togethers when you consider kids, work, etc... :) >>> >>> >> Totally understood - that's the one and only reason I'm rarely seen at >> COhPy personally. If we had a quick train or something to get me to >> Columbus... (ahem) >> >> -- >> - Catherine >> http://catherinedevlin.blogspot.com >> >> _______________________________________________ >> CentralOH mailing list >> CentralOH at python.org >> https://mail.python.org/mailman/listinfo/centraloh >> >> > > > -- > This electronic message is intended to be for the use only of the named > recipient, and may contain information that is confidential or privileged. > If you are not the intended recipient, you are hereby notified that any > disclosure, copying, distribution or use of the contents of this message is > strictly prohibited. If you have received this message in error or are not > the named recipient, please notify us immediately by contacting the sender > at the electronic mail address noted above, and delete and destroy all > copies of this message. Thank you. > > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From miller.eric.t at gmail.com Sat Apr 25 19:55:32 2015 From: miller.eric.t at gmail.com (Eric Miller) Date: Sat, 25 Apr 2015 13:55:32 -0400 Subject: [CentralOH] Will be helping someone install VirtualBox In-Reply-To: References: Message-ID: VMware player+ Ubuntu + docker? On Apr 25, 2015 9:40 AM, "pybokeh" wrote: > List, > Just FYI, I'll be helping someone install VirtualBox so that she can start > working with Linux OS on her host Windows 7 machine. > > If anybody else wants to join, you're more than welcome. Meeting at the > Dublin Metropolitan Library at 6:45PM on 4/30/15. > > Also curious what other virtualization software people recommend that we > can use where Windows 7 is the host machine other than VirtualBox. > > - Daniel > > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dev at jenlia.com Sat Apr 25 01:37:10 2015 From: dev at jenlia.com (dev) Date: Fri, 24 Apr 2015 19:37:10 -0400 Subject: [CentralOH] Carpooling Message-ID: <1lybmqrqd04abyxmvb5r1cec.1429918630299@email.android.com> Hola Tim. Is Jenny I met you at Dojo. I am interested in going but I do not want to drive...can I ride with you? Let me know. Gracias.? Jenny Sent from my Verizon Wireless 4G LTE smartphone
-------- Original message --------
From: timothy spencer
Date:04/23/2015 6:35 AM (GMT-05:00)
To: centraloh at python.org
Cc:
Subject: [CentralOH] Carpooling
Oh yeah, and I have a car and I can drive if people need a ride. > From: centraloh-request at python.org > Subject: CentralOH Digest, Vol 96, Issue 13 > To: centraloh at python.org > Date: Wed, 22 Apr 2015 12:00:03 +0200 > > Send CentralOH mailing list submissions to > centraloh at python.org > > To subscribe or unsubscribe via the World Wide Web, visit > https://mail.python.org/mailman/listinfo/centraloh > or, via email, send a message with subject or body 'help' to > centraloh-request at python.org > > You can reach the person managing the list at > centraloh-owner at python.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of CentralOH digest..." > > > Today's Topics: > > 1. Re: Data Science with Python -- Friday, May 1 (Austin Godber) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Tue, 21 Apr 2015 17:23:54 -0700 > From: Austin Godber > To: "Mailing list for Central Ohio Python User Group (COhPy)" > > Subject: Re: [CentralOH] Data Science with Python -- Friday, May 1 > Message-ID: > > Content-Type: text/plain; charset="utf-8" > > If you guys don't mind a 28 hour drive you could come to the DesertPy Data > Science Workshop: > > http://www.meetup.com/Phoenix-Python-Meetup-Group/events/211120292/ > > On Tue, Apr 21, 2015 at 4:55 PM, Eric Floehr > wrote: > > > I'm going and can drive. Pete might also come. I'll try and snag my > > daughter's Taurus, as the PT might get a little small with 3 or 4. > > > > > > On Tue, Apr 21, 2015 at 11:27 AM, Catherine Devlin < > > catherine.devlin at gmail.com> wrote: > > > >> Python? Data? Naturally, I'm going. I live in Brookville, slightly > >> west of Dayton on I-70. If anybody from CMH wants to, we could meet up at > >> an exit 21 business and carpool from there. > >> > >> On Tue, Apr 21, 2015 at 10:33 AM, Eric Floehr > >> wrote: > >> > >>> Anyone from COhPy want to go? > >>> > >>> ---------------------------------- > >>> > >>> On Friday, May 1st, IndyPy will explore ?Data Science with Python? as > >>> part of our quarterly Pythology Lecture Series. > >>> > >>> Python has a robust ecosystem of tools and is quickly becoming the go-to > >>> programming language for Data Science applications. In fact, over the past > >>> year Python has succeeded in overtaking R in big data jobs (see stats at > >>> http://bit.ly/1NEaURU?). On May 1st, Python developers will gain > >>> insight into what it looks like to leverage real world Python applications > >>> for use in projects that use Big Data. Speakers include Sean Mooney, Chief > >>> Research Information Officer at the University of Washington Medicine, and > >>> Tyler Foxworthy, Chief Data Scientist at KSM Consulting, among others. > >>> Presentations will cover Spark, Python pandas, graph theory, extracting > >>> data, visualization tools, etc. > >>> > >>> The Eleven Fifty Coding Academy has graciously offered to host us at > >>> their amazing venue in Carmel, Scott Jones?s mansion, an award-winning > >>> house that was built to include cutting-edge technology while still > >>> maintaining an English country manor house look and feel. > >>> > >>> Join us for this focused day of Python, meet fellow Pythoneers, and > >>> advance your knowledge while working with Data Science applications. > >>> > >>> IMPORTANT: COhPy members get a $20 discount - Use code INDYPY20 when > >>> registering at > >>> > >>> https://www.eventbrite.com/e/pythology-lecture-series-data-science-with-python-tickets-15920135554 > >>> > >>> > >>> _______________________________________________ > >>> CentralOH mailing list > >>> CentralOH at python.org > >>> https://mail.python.org/mailman/listinfo/centraloh > >>> > >>> > >> > >> > >> -- > >> - Catherine > >> http://catherinedevlin.blogspot.com > >> > >> _______________________________________________ > >> CentralOH mailing list > >> CentralOH at python.org > >> https://mail.python.org/mailman/listinfo/centraloh > >> > >> > > > > _______________________________________________ > > CentralOH mailing list > > CentralOH at python.org > > https://mail.python.org/mailman/listinfo/centraloh > > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > CentralOH mailing list > CentralOH at python.org > https://mail.python.org/mailman/listinfo/centraloh > > > ------------------------------ > > End of CentralOH Digest, Vol 96, Issue 13 > ***************************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: From eric at intellovations.com Mon Apr 27 20:43:51 2015 From: eric at intellovations.com (Eric Floehr) Date: Mon, 27 Apr 2015 14:43:51 -0400 Subject: [CentralOH] PyOhio 2015 CFP deadline Message-ID: Hi all! I'm really looking forward to PyOhio 2015, which is August 1-2 this year, and would like to let you know of some important upcoming dates. The PyOhio Call For Proposals closes Friday, *May 15*. This year we have introduced a new 30 minute slot (which means 20 minute talk, 5 minute Q&A) for anyone who has an awesome topic but don't think would fill a full hour slot. Your login from last year will still work this year. We pick talks based on merit, but we favor talks by first-time presenters, and are committed to growing and strengthening our community through encouraging a diversity of speakers and topics. We are also committed to helping first-time speakers in whatever way we can, through mentorship, coaching, and cheer-leading. If you are a veteran speaker and would like to offer your expertise and enthusiasm to new speakers, please let me know directly. I look forward to your talk proposal, and to seeing you at PyOhio this year! Best Regards, Eric P.S. PyOhio needs sponsors! Contact me if you would like to help! -------------- next part -------------- An HTML attachment was scrubbed... URL: