From bob.haffner at gmail.com Sun Mar 12 23:38:40 2017 From: bob.haffner at gmail.com (Bob Haffner) Date: Sun, 12 Mar 2017 22:38:40 -0500 Subject: [omaha] March Meeting Update In-Reply-To: References: Message-ID: Quick reminder regarding this Wednesday's meeting. I'll be giving a brief demonstration on microservices in Flask Wednesday, March 15 Do-Space meeting room 1. 6:30-8pm (the room was booked until 6:30, so we won't be able to access it until close to that time) http://www.omahapython.org/blog/archives/event/march- meeting-micro-services-with-flask?instance_id=37 On Mon, Feb 27, 2017 at 4:54 PM, Steve Young via Omaha wrote: > Bob Hafner is speaking in Micro-services and Flask. > > We should have some time for the Kaggle group to give an update - last I > saw we were just out of the top 1000. > > Wednesday, March 15 > Do-Space meeting room 1. > 6:30-8pm (the room was booked until 6:30, so we won't be able to access it > until close to that time) > > http://www.omahapython.org/blog/archives/event/march- > meeting-micro-services-with-flask?instance_id=37 > > Steve > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > https://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org > From bob.haffner at gmail.com Wed Mar 15 22:46:19 2017 From: bob.haffner at gmail.com (Bob Haffner) Date: Wed, 15 Mar 2017 21:46:19 -0500 Subject: [omaha] March Meeting Update In-Reply-To: References: Message-ID: Hi All, Thanks to the folks that came tonight. I appreciate the great questions! Link to my materials https://github.com/bobhaffner/flask_service_example On Sun, Mar 12, 2017 at 10:38 PM, Bob Haffner wrote: > Quick reminder regarding this Wednesday's meeting. I'll be giving a brief > demonstration on microservices in Flask > > Wednesday, March 15 > Do-Space meeting room 1. > 6:30-8pm (the room was booked until 6:30, so we won't be able to access it > until close to that time) > > http://www.omahapython.org/blog/archives/event/march-meeting > -micro-services-with-flask?instance_id=37 > > On Mon, Feb 27, 2017 at 4:54 PM, Steve Young via Omaha > wrote: > >> Bob Hafner is speaking in Micro-services and Flask. >> >> We should have some time for the Kaggle group to give an update - last I >> saw we were just out of the top 1000. >> >> Wednesday, March 15 >> Do-Space meeting room 1. >> 6:30-8pm (the room was booked until 6:30, so we won't be able to access it >> until close to that time) >> >> http://www.omahapython.org/blog/archives/event/march-meeting >> -micro-services-with-flask?instance_id=37 >> >> Steve >> _______________________________________________ >> Omaha Python Users Group mailing list >> Omaha at python.org >> https://mail.python.org/mailman/listinfo/omaha >> http://www.OmahaPython.org >> > > From wereapwhatwesow at gmail.com Thu Mar 16 08:13:03 2017 From: wereapwhatwesow at gmail.com (Steve Young) Date: Thu, 16 Mar 2017 07:13:03 -0500 Subject: [omaha] March Meeting Update In-Reply-To: References: Message-ID: Thanks for the link and presentation, Bob. And thanks to everyone who attended and contributed to the discussion - it was very interesting. A quick update on future meetings and events: - Travis will present at he April meeting - details coming soon. - Louis Dorland will present at the May meeting - Python and Astronomy - Kaggle anyone? Bob is looking into another competition to join - send in your ideas. - Bricklayer IDE for Python - I am trying to get more details on how we can contribute to this project as a group. Steve On Wed, Mar 15, 2017 at 9:46 PM, Bob Haffner via Omaha wrote: > Hi All, > > Thanks to the folks that came tonight. I appreciate the great questions! > > Link to my materials > https://github.com/bobhaffner/flask_service_example > > On Sun, Mar 12, 2017 at 10:38 PM, Bob Haffner > wrote: > > > Quick reminder regarding this Wednesday's meeting. I'll be giving a > brief > > demonstration on microservices in Flask > > > > Wednesday, March 15 > > Do-Space meeting room 1. > > 6:30-8pm (the room was booked until 6:30, so we won't be able to access > it > > until close to that time) > > > > http://www.omahapython.org/blog/archives/event/march-meeting > > -micro-services-with-flask?instance_id=37 > > > > On Mon, Feb 27, 2017 at 4:54 PM, Steve Young via Omaha > > > wrote: > > > >> Bob Hafner is speaking in Micro-services and Flask. > >> > >> We should have some time for the Kaggle group to give an update - last I > >> saw we were just out of the top 1000. > >> > >> Wednesday, March 15 > >> Do-Space meeting room 1. > >> 6:30-8pm (the room was booked until 6:30, so we won't be able to access > it > >> until close to that time) > >> > >> http://www.omahapython.org/blog/archives/event/march-meeting > >> -micro-services-with-flask?instance_id=37 > >> > >> Steve > >> _______________________________________________ > >> Omaha Python Users Group mailing list > >> Omaha at python.org > >> https://mail.python.org/mailman/listinfo/omaha > >> http://www.OmahaPython.org > >> > > > > > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > https://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org > From wes.turner at gmail.com Thu Mar 16 19:12:47 2017 From: wes.turner at gmail.com (Wes Turner) Date: Thu, 16 Mar 2017 18:12:47 -0500 Subject: [omaha] March Meeting Update In-Reply-To: References: Message-ID: On Thursday, March 16, 2017, Steve Young via Omaha wrote: > Thanks for the link and presentation, Bob. GitHub project looks great. I like the /health route (I learned a similar technique this week for verifying docker containers' states from an old kubernetes devops presentation) https://github.com/bobhaffner/flask_service_example/blob/master/run.py Python threading: - https://docs.python.org/2/library/threading.html - https://docs.python.org/3/library/threading.html - http://python-notes.curiousefficiency.org/en/latest/python3/multicore_python.html#efficiently-exploiting-multiple-cores-with-python - http://blog.domanski.me/how-celery-fixed-pythons-gil-problem/ - sanic ... https://github.com/TechEmpower/FrameworkBenchmarks/issues/2560 (libuv (Node,)) ipyparallel: - https://ipyparallel.readthedocs.io/en/latest/intro.html#examples - https://ipyparallel.readthedocs.io/en/latest/task.html Flask, Celery, Durability: - http://flask.pocoo.org/docs/0.12/patterns/celery/#celery-based-background-tasks - https://github.com/docker-library/celery - http://docs.celeryproject.org/en/latest/getting-started/brokers/#broker-toc (RabbitMQ, Redis, Amazon SQS) - http://docs.celeryproject.org/en/latest/userguide/workers.html - http://docs.celeryproject.org/en/latest/userguide/monitoring.html - http://docs.celeryproject.org/en/latest/userguide/testing.html#fixtures > > And thanks to everyone who attended and contributed to the discussion - it > was very interesting. > > A quick update on future meetings and events: > > - Travis will present at he April meeting - details coming soon. > - Louis Dorland will present at the May meeting - Python and Astronomy http://docs.astropy.org/en/stable/time/index.html https://github.com/geerlingguy/pi-timelapse > - Kaggle anyone? Bob is looking into another competition to join - send > in your ideas. > Should we send these to: - this mailing list (e.g. "Kaggle Competition Ideas") - https://www.kaggle.com/competitions - github - @omahapython/datascience https://github.com/orgs/omahapython/teams/datascience - "kaggle-houseprices" https://github.com/omahapython/datascience/issues/2 - https://github.com/omahapython/datascience/issues/1 > - Bricklayer IDE for Python - I am trying to get more details on how we > can contribute to this project as a group. I put these notes (and suggestions) together: https://github.com/westurner/wiki/wiki/bricklayer https://github.com/westurner/wiki/wiki/bricklayer#rec > > - Create a docker container w/ > > > - bricklayer > > > - ldraw > > > - wine + lego digital designer > > > - everything else > > > - Create a SML Jupyter Kernel > > > > - Create a Bricklayer Jupyter Extension > > > > - Develop a docker, kubernetes, auth configuration for > jupyter/nbgrader, jupyter/kubespawner, kubernetes/minikube > > I was a bit late and hadn't a computer. - What was the name of / source link to the Wx IDE? @hhickman > Steve > > On Wed, Mar 15, 2017 at 9:46 PM, Bob Haffner via Omaha > wrote: > > > Hi All, > > > > Thanks to the folks that came tonight. I appreciate the great questions! > > > > Link to my materials > > https://github.com/bobhaffner/flask_service_example > > > > On Sun, Mar 12, 2017 at 10:38 PM, Bob Haffner > > wrote: > > > > > Quick reminder regarding this Wednesday's meeting. I'll be giving a > > brief > > > demonstration on microservices in Flask > > > > > > Wednesday, March 15 > > > Do-Space meeting room 1. > > > 6:30-8pm (the room was booked until 6:30, so we won't be able to access > > it > > > until close to that time) > > > > > > http://www.omahapython.org/blog/archives/event/march-meeting > > > -micro-services-with-flask?instance_id=37 > > > > > > On Mon, Feb 27, 2017 at 4:54 PM, Steve Young via Omaha < > omaha at python.org > > > > > > wrote: > > > > > >> Bob Hafner is speaking in Micro-services and Flask. > > >> > > >> We should have some time for the Kaggle group to give an update - > last I > > >> saw we were just out of the top 1000. > > >> > > >> Wednesday, March 15 > > >> Do-Space meeting room 1. > > >> 6:30-8pm (the room was booked until 6:30, so we won't be able to > access > > it > > >> until close to that time) > > >> > > >> http://www.omahapython.org/blog/archives/event/march-meeting > > >> -micro-services-with-flask?instance_id=37 > > >> > > >> Steve > > >> _______________________________________________ > > From choman at gmail.com Fri Mar 17 12:45:21 2017 From: choman at gmail.com (Chad Homan) Date: Fri, 17 Mar 2017 11:45:21 -0500 Subject: [omaha] happy St. Patrick's Day Message-ID: Wishing everyone a festive day, -- Chad Some people, when confronted with a problem, think "I know, I'll use Windows." Now they have two problems. Some people claim if you play a Windows Install Disc backwards you'll hear satanic Messages. That's nothing, if you play it forward it installs Windows From wereapwhatwesow at gmail.com Wed Mar 22 17:19:19 2017 From: wereapwhatwesow at gmail.com (Steve Young) Date: Wed, 22 Mar 2017 16:19:19 -0500 Subject: [omaha] Future Meeting Info Message-ID: The April meeting will be at the DoSpace, in meeting room 1 again. Louie will be presenting about his work with Python and astronomy. Travis has agreed to share in May - details coming. And thanks to Bob and everyone who contributed at last week's meeting - it was very interesting. Steve From bob.haffner at gmail.com Wed Mar 22 17:24:49 2017 From: bob.haffner at gmail.com (Bob Haffner) Date: Wed, 22 Mar 2017 16:24:49 -0500 Subject: [omaha] March Meeting Update In-Reply-To: References: Message-ID: Wes, Yes, Kaggle Competition Ideas for the subject sounds good Bob On Thu, Mar 16, 2017 at 6:12 PM, Wes Turner via Omaha wrote: > On Thursday, March 16, 2017, Steve Young via Omaha > wrote: > > > Thanks for the link and presentation, Bob. > > > GitHub project looks great. I like the /health route (I learned a similar > technique this week for verifying docker containers' states from an old > kubernetes devops presentation) > > https://github.com/bobhaffner/flask_service_example/blob/master/run.py > > > Python threading: > > - https://docs.python.org/2/library/threading.html > - https://docs.python.org/3/library/threading.html > - > http://python-notes.curiousefficiency.org/en/latest/python3/multicore_ > python.html#efficiently-exploiting-multiple-cores-with-python > - http://blog.domanski.me/how-celery-fixed-pythons-gil-problem/ > - sanic ... https://github.com/TechEmpower/FrameworkBenchmarks/issues/2560 > (libuv (Node,)) > > ipyparallel: > > - https://ipyparallel.readthedocs.io/en/latest/intro.html#examples > - https://ipyparallel.readthedocs.io/en/latest/task.html > > Flask, Celery, Durability: > > - > http://flask.pocoo.org/docs/0.12/patterns/celery/#celery- > based-background-tasks > - https://github.com/docker-library/celery > - > http://docs.celeryproject.org/en/latest/getting-started/ > brokers/#broker-toc > (RabbitMQ, Redis, Amazon SQS) > - http://docs.celeryproject.org/en/latest/userguide/workers.html > - http://docs.celeryproject.org/en/latest/userguide/monitoring.html > - http://docs.celeryproject.org/en/latest/userguide/testing.html#fixtures > > > > > > And thanks to everyone who attended and contributed to the discussion - > it > > was very interesting. > > > > A quick update on future meetings and events: > > > > - Travis will present at he April meeting - details coming soon. > > - Louis Dorland will present at the May meeting - Python and Astronomy > > > http://docs.astropy.org/en/stable/time/index.html > > https://github.com/geerlingguy/pi-timelapse > > > > - Kaggle anyone? Bob is looking into another competition to join - > send > > in your ideas. > > > > Should we send these to: > - this mailing list (e.g. "Kaggle Competition Ideas") > - https://www.kaggle.com/competitions > > - github > - @omahapython/datascience > https://github.com/orgs/omahapython/teams/datascience > - "kaggle-houseprices" https://github.com/omahapython/datascience/ > issues/2 > - https://github.com/omahapython/datascience/issues/1 > > > > - Bricklayer IDE for Python - I am trying to get more details on how > we > > can contribute to this project as a group. > > > I put these notes (and suggestions) together: > https://github.com/westurner/wiki/wiki/bricklayer > > > > https://github.com/westurner/wiki/wiki/bricklayer#rec > > > > > - Create a docker container w/ > > > > > > - bricklayer > > > > > > - ldraw > > > > > > - wine + lego digital designer > > > > > > - everything else > > > > > > - Create a SML Jupyter Kernel > > > > > > > > > - Create a Bricklayer Jupyter Extension > > bricklayer-jupyter-extension> > > > > > > - Develop a docker, kubernetes, auth configuration for > > jupyter/nbgrader, jupyter/kubespawner, kubernetes/minikube > > > > > I was a bit late and hadn't a computer. > > - What was the name of / source link to the Wx IDE? @hhickman > > > > > Steve > > > > On Wed, Mar 15, 2017 at 9:46 PM, Bob Haffner via Omaha > > > wrote: > > > > > Hi All, > > > > > > Thanks to the folks that came tonight. I appreciate the great > questions! > > > > > > Link to my materials > > > https://github.com/bobhaffner/flask_service_example > > > > > > On Sun, Mar 12, 2017 at 10:38 PM, Bob Haffner > > > wrote: > > > > > > > Quick reminder regarding this Wednesday's meeting. I'll be giving a > > > brief > > > > demonstration on microservices in Flask > > > > > > > > Wednesday, March 15 > > > > Do-Space meeting room 1. > > > > 6:30-8pm (the room was booked until 6:30, so we won't be able to > access > > > it > > > > until close to that time) > > > > > > > > http://www.omahapython.org/blog/archives/event/march-meeting > > > > -micro-services-with-flask?instance_id=37 > > > > > > > > On Mon, Feb 27, 2017 at 4:54 PM, Steve Young via Omaha < > > omaha at python.org > > > > > > > > wrote: > > > > > > > >> Bob Hafner is speaking in Micro-services and Flask. > > > >> > > > >> We should have some time for the Kaggle group to give an update - > > last I > > > >> saw we were just out of the top 1000. > > > >> > > > >> Wednesday, March 15 > > > >> Do-Space meeting room 1. > > > >> 6:30-8pm (the room was booked until 6:30, so we won't be able to > > access > > > it > > > >> until close to that time) > > > >> > > > >> http://www.omahapython.org/blog/archives/event/march-meeting > > > >> -micro-services-with-flask?instance_id=37 > > > >> > > > >> Steve > > > >> _______________________________________________ > > > > > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > https://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org > From wereapwhatwesow at gmail.com Wed Mar 22 19:18:48 2017 From: wereapwhatwesow at gmail.com (Steve Young) Date: Wed, 22 Mar 2017 18:18:48 -0500 Subject: [omaha] Future Meeting Info In-Reply-To: References: Message-ID: Oops - I swapped the dates: Travis April, Louis is May. Once I have more details I will post them and update the website. Steve On Wed, Mar 22, 2017 at 4:19 PM, Steve Young wrote: > The April meeting will be at the DoSpace, in meeting room 1 again. Louie > will be presenting about his work with Python and astronomy. > > Travis has agreed to share in May - details coming. > > And thanks to Bob and everyone who contributed at last week's meeting - it > was very interesting. > > Steve >