From brianhray at gmail.com Tue Jul 10 09:08:32 2018 From: brianhray at gmail.com (Brian Ray) Date: Tue, 10 Jul 2018 09:08:32 -0400 Subject: [Chicago] Python Class Special ChiPy Discount Message-ID: I posted earlier about the class I am offering this weekend. The cost for the class is $199/day. For ChiPy members, I will offer a refund you $100 if you complete the course. RSVP here https://www.airbnb.com/experiences/122292?location=Chicago&source=p2¤tTab=experience_tab&searchId=7dcaf5ef-95f1-4df1-b352-ae2b043386ff&federatedSearchId=43958f41-41c6-4f3b-b378-3c0d4c2a4aef§ionId=92469a2f-9af5-4de8-b178-8c866bac4004 The class will be held in a relaxed setting in my home (a 7 bedroom Air B&B) in East Roger's Park Neighborhood. -- Brian Ray @brianray (773) 669-7717 -------------- next part -------------- An HTML attachment was scrubbed... URL: From adam at adamforsyth.net Wed Jul 11 16:52:16 2018 From: adam at adamforsyth.net (Adam Forsyth) Date: Wed, 11 Jul 2018 16:52:16 -0400 Subject: [Chicago] Python Class Special ChiPy Discount In-Reply-To: References: Message-ID: Hey everyone, I wanted to point out a couple of things about this event. I'm not a ChiPy Organizer any more but I did confirm this information with them before sending this out. One, while some previous trainings have been to fund ChiPy, this one isn't, nor is Brian a ChiPy sponsor. Most paid events advertised on the list directly support ChiPy in some way, but this one doesn't. Two, this event isn't endorsed or run by ChiPy, and isn't covered by the ChiPy Code of Conduct, despite Brian historically being associated with ChiPy, and it being advertised on this list. Best, Adam On Tue, Jul 10, 2018 at 9:08 AM Brian Ray wrote: > I posted earlier about the class I am offering this weekend. > > The cost for the class is $199/day. For ChiPy members, I will offer a > refund you $100 if you complete the course. > > RSVP here > https://www.airbnb.com/experiences/122292?location=Chicago&source=p2¤tTab=experience_tab&searchId=7dcaf5ef-95f1-4df1-b352-ae2b043386ff&federatedSearchId=43958f41-41c6-4f3b-b378-3c0d4c2a4aef§ionId=92469a2f-9af5-4de8-b178-8c866bac4004 > > The class will be held in a relaxed setting in my home (a 7 bedroom Air > B&B) in East Roger's Park Neighborhood. > > > -- > Brian Ray > @brianray > (773) 669-7717 > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > -------------- next part -------------- An HTML attachment was scrubbed... URL: From brianhray at gmail.com Wed Jul 11 16:55:48 2018 From: brianhray at gmail.com (Brian Ray) Date: Wed, 11 Jul 2018 16:55:48 -0400 Subject: [Chicago] Python Class Special ChiPy Discount In-Reply-To: References: Message-ID: I initiated this process when I was the Chair. I mentioned before, "If you mention #ChiPy when you reserve a cash donation will be made to the group." On Wed, Jul 11, 2018 at 4:53 PM Adam Forsyth wrote: > Hey everyone, I wanted to point out a couple of things about this event. > I'm not a ChiPy Organizer any more but I did confirm this information with > them before sending this out. > > One, while some previous trainings have been to fund ChiPy, this one > isn't, nor is Brian a ChiPy sponsor. Most paid events advertised on the > list directly support ChiPy in some way, but this one doesn't. > > Two, this event isn't endorsed or run by ChiPy, and isn't covered by the > ChiPy Code of Conduct, despite Brian historically being associated with > ChiPy, and it being advertised on this list. > > Best, > Adam > > On Tue, Jul 10, 2018 at 9:08 AM Brian Ray wrote: > >> I posted earlier about the class I am offering this weekend. >> >> The cost for the class is $199/day. For ChiPy members, I will offer a >> refund you $100 if you complete the course. >> >> RSVP here >> https://www.airbnb.com/experiences/122292?location=Chicago&source=p2¤tTab=experience_tab&searchId=7dcaf5ef-95f1-4df1-b352-ae2b043386ff&federatedSearchId=43958f41-41c6-4f3b-b378-3c0d4c2a4aef§ionId=92469a2f-9af5-4de8-b178-8c866bac4004 >> >> The class will be held in a relaxed setting in my home (a 7 bedroom Air >> B&B) in East Roger's Park Neighborhood. >> >> >> -- >> Brian Ray >> @brianray >> (773) 669-7717 >> _______________________________________________ >> Chicago mailing list >> Chicago at python.org >> https://mail.python.org/mailman/listinfo/chicago >> > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > -- Brian Ray @brianray (773) 669-7717 -------------- next part -------------- An HTML attachment was scrubbed... URL: From joe.jasinski at gmail.com Wed Jul 11 22:26:35 2018 From: joe.jasinski at gmail.com (Joe Jasinski) Date: Wed, 11 Jul 2018 21:26:35 -0500 Subject: [Chicago] ChiPy July 2018 Main Meeting Message-ID: Chipy, The next meeting is almost here and it's sure to be a great one! Hope to see you all there. Thank you to Telnyx for sponsoring our food and venue this month! *When:*Thurs July 12, 2018, 6:30 p.m. 6:00pm Doors open 6:30pm: Meeting Starts *How:*You can RSVP at chipy.org or via our Meetup group. *Where:* Telnyx 311 W Superior St, STE 504 ? Chicago, IL *What:* *Intro to SaltStack* By: Erik Johnson Experience Level: Novice SaltStack is open-source software for modern IT automation. The project was created in 2012 and today is used by tens of thousands of DevOps and enterprise IT organizations to automate the management of data center infrastructure and application environments. With its core remote-execution functionality, it is flexible enough to run shell commands, perform configuration management tasks, orchestration, and more. Erik Johnson, a SaltStack core developer and Chicago-area native, will demo the basics of how to get started using Salt, as well as how to use its powerful event bus for automation tasks. Data Classes in Python 3.7: Why and How do They Compare to Existing Solutions? *By: Brian Stempin , Yiu Ming Huynh* Experience Level: Intermediate Python prides itself on being a language where ?There should be one ? and preferably only one ? obvious way to do it? (PEP 20). One place where this isn?t really true is when it comes to the question of how to store data. There are several options: dictionaries, tuples, named tuples, vanilla Python classes, and Python classes decorated with the attrs library. PEP 557 adds a new way: Data classes. In this talk we will compare and contrast each approach, give listeners a way to figure out which one is best for their particular project, and share some performance metrics for those who are concerned with speed and memory footprints. -- *Thank you always to all our sponsors, including our Diamond sponsors: Metis and TelnyxAlso thank you to our Platinum sponsors: Braintree, Imaginary Landscape, Lumere, and Signature Consultants. Also, thank you to our Silver sponsor: Markit.Please be aware of our code of conduct http://www.chipy.org/pages/conduct/ * Joe J. Jasinski www.joejasinski.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From bainada.iit at gmail.com Thu Jul 12 18:48:49 2018 From: bainada.iit at gmail.com (Adam Bain) Date: Thu, 12 Jul 2018 17:48:49 -0500 Subject: [Chicago] Update to our code of conduct Message-ID: *Fellow Pythonistas,I wanted to inform you all about a change the organizers of ChiPy are taking on to our Code of Conduct. If you have been a part of our community for a while, you may know that we have been using a very slightly modified version of the PSF's code of conduct since 2014, shortly after Brian Ray convened the organizing group. This version has served our organization well over the last few years. That said, it has recently been brought to the attention of the organizing group by some organizers and members of the larger Chicago Python community that there are some deficiencies that this code has in adequately providing a safe space for all members. It was with sadness and disappointment that I have begun to hear that there are those in our community that would not recommend ChiPy to newcomers and have been steering people away from our meetups. I have personally yet to find a group to be as welcoming as ChiPy and have been happy and proud to call it home for the last 8 years, but I am disheartened to learn that this has not been the experience for all prospective new members. I feel that because Python is used in so many different applications, ChiPy has been treated to one of the most diverse sets of ideas and opportunities to lead conversations in developing software. One key value in our meetup is the free exchange of these ideas from many disciplines and if we can make everyone feel included in our organization we will only add to that value. The other important value to uphold is the friendliness and respect we treat one another with. This positivity has been enshrined in the spirit of the group since its inception, as well as promoted in our previous code of conduct. I have absolute faith that we will never cease upholding this in our interactions with one another, and in particular focusing on welcoming new members as the group continues its incredible growth.I wanted to give special thanks to Ray Berg and Anjali Deolapure for raising our awareness to the issues with our previous code and perception of ChiPy among others and spearheading the authorship of this code. They have worked tirelessly to borrow pieces from Codes of Conduct from various other communities and have drafted a document which they feel will serve our community best. They have been inclusive in the crafting of this document and previewed the code to solicit feedback and edits from PyLadies leadership, in particular, Lorena Mesa and Sand Ip, as well as former ChiPy organizer, Tanya Schlusser who were critical in making sure the document reflects the values of the entire Chicago Python community.The idea to rewrite the code was presented to the organizers in late May, and was debated on, including the need and motivation to release a new version of the code. In mid June, Ray and Anjali had drafted the code and presented to the PyLadies leadership and other selected indivduals for comment. At the end of the June, the organizers held a special meeting to adopt the code. A point that had been made in our debate was how it was important to reflect on the perspectives we all bring to the table. In that vein, I hope that we all feel empowered in bringing our comments and critiques forward. We understand that this is something new we are trying out and want to make sure it works for everyone as we continue to revise this living document.The full text of the new version of the code is posted at: http://www.chipy.org/pages/conduct/ and the repo it is hosted at is here: https://github.com/chicagopython/code-of-conduct Best organization ever,AdamChair, ChiPy* -------------- next part -------------- An HTML attachment was scrubbed... URL: From mail at mayurshah.in Fri Jul 13 10:40:37 2018 From: mail at mayurshah.in (mail at mayurshah.in) Date: Fri, 13 Jul 2018 14:40:37 +0000 Subject: [Chicago] [meetup] [online] Subscribe to Software Testing Board's monthly meetups Message-ID: <000000000000933bc70570e276bd@google.com> Hi All, The team at Software Testing Board organizes a monthly meetup where one of the testing professionals will talk about the new Testing Framework, Testing Strategy, any new Testing Tool or anything related to Software Testing. These meetups are not tutorials or workshops. Just another tester is presenting you the new tools, framework or an idea they are working on. You can pick it up and explore it further. You can ask your questions to the presenters and they will try to answer with the best of their knowledge. You can even provide your feedback or suggestions for speakers or to us. These live meetups are happening through YouTube and Google Hangout every 4th Saturday of the month at 5:00 PM IST. To join the upcoming meetup, go to YouTube and search "Software Testing Board". Click subscribe and press the bell icon to never miss a notification from us. To know more about the meetup, check out About section of the channel. If you have any questions, feel free to write back or connect with me on LinkedIn (https://www.linkedin.com/in/theqaguy/) Thank you, Mayur Shah From nathan at thisismetis.com Wed Jul 18 11:10:40 2018 From: nathan at thisismetis.com (Nathan Vermeiren) Date: Wed, 18 Jul 2018 10:10:40 -0500 Subject: [Chicago] Sign up for Demystifying Data Science: A FREE Live Online Conference on July 24th and 25th! Message-ID: For the second year in a row, Metis, a leader in data science education, is hosting Demystifying Data Science: A FREE, 2-day, Live Online Conference ! 28 top-level speakers in the field will discuss the training, the tools, and the career path needed to achieve the "best job in the United States." Demystifying Data Science will feature the following: *Day 1-July 24: For Aspiring Data Scientists.* 14 speakers will demystify data science, and discuss the training, tools, and career path to the best job in the United States. *Day 2 - July 25: For Data-Curious Business Leaders, Managers, and Practitioners. *14 speakers will explain how data science applies to you, what needs to be done to integrate data science into an organization, and how to achieve this integration. *Speaker Lineup* The full list of industry-leading speakers is available here , with keynotes on each day: ? Day 1 Keynote: Lillian Pierson - CEO, Data-Mania LLC and author of Data Science for Dummies ? Day 2 Keynote: Beth Comstock - Change Maker & Author, Former Vice Chair of GE *What to Expect* Demystifying Data Science is designed to be equal parts informative and interactive, with top data science talent holding consecutive 18-minute live presentations, each followed by Q&A. All sessions will include real-time chat, with opportunities to ask questions, answer polls, and share socially. Registrants also receive post-conference access to presentations. To register for the free conference, please go to the following link to apply: *Register:* thisismetis.com/demystify -- Nathan Vermeiren National Data Science Evangelist and Events Manager, Metis [image: Twitter] *Our Philosophy* *We strive, we sweat, we swear.* *We go the extra mile.We stage, we fail.* *We try again. Get it right* *We learn. Connect. Come together.Welcome to Metis.* -------------- next part -------------- An HTML attachment was scrubbed... URL: From nathan at thisismetis.com Thu Jul 19 15:15:35 2018 From: nathan at thisismetis.com (Nathan Vermeiren) Date: Thu, 19 Jul 2018 14:15:35 -0500 Subject: [Chicago] NEXT WEEK: Demystifying Data Science: A FREE Live Two-Day Online Conference July 24th and 25th 9am - 4pm CT Message-ID: For the second year in a row, Metis, a leader in data science education, is hosting Demystifying Data Science: A FREE, 2-day, Live Online Conference ! 28 top-level speakers in the field will discuss the training, the tools, and the career path needed to achieve the "best job in the United States." Demystifying Data Science will feature the following: *Day 1-July 24: For Aspiring Data Scientists.* 14 speakers will demystify data science, and discuss the training, tools, and career path to the best job in the United States. *Day 2 - July 25: For Data-Curious Business Leaders, Managers, and Practitioners. *14 speakers will explain how data science applies to you, what needs to be done to integrate data science into an organization, and how to achieve this integration. *Speaker Lineup* The full list of industry-leading speakers is available here , with keynotes on each day: ? Day 1 Keynote: Lillian Pierson - CEO, Data-Mania LLC and author of Data Science for Dummies ? Day 2 Keynote: Beth Comstock - Change Maker & Author, Former Vice Chair of GE *What to Expect* Demystifying Data Science is designed to be equal parts informative and interactive, with top data science talent holding consecutive 18-minute live presentations, each followed by Q&A. All sessions will include real-time chat, with opportunities to ask questions, answer polls, and share socially. Registrants also receive post-conference access to presentations. To register for the free conference, please go to the following link to apply: *Register:* thisismetis.com/demystify -- Nathan Vermeiren National Data Science Evangelist and Events Manager, Metis [image: Twitter] *Our Philosophy* *We strive, we sweat, we swear.* *We go the extra mile.We stage, we fail.* *We try again. Get it right* *We learn. Connect. Come together.Welcome to Metis.* -------------- next part -------------- An HTML attachment was scrubbed... URL: From raymondwberg at gmail.com Sun Jul 29 23:01:41 2018 From: raymondwberg at gmail.com (Ray Berg) Date: Sun, 29 Jul 2018 22:01:41 -0500 Subject: [Chicago] Mentorship Program - 1 Week Remains!! Message-ID: Hey folks, I just wanted to reach out to remind you all that *you have one week to get in your applications* (both Mentor and Mentee) *for the Fall 2018 term of the ChiPy Mentorship Program*! If you've never done it, it's easy! Just go to https://chipymentor.org/portal. Once you link to your github account you can start the application. *Applications will close at 11:59PM next Sunday, August 5th. * You may not know, but this will be our eighth offering of the program! Wow! We've had so many great folks come through the program, and we really want to keep it going strong by having a great set of applicants. If you can either apply as a Mentor or Mentee, we'd love to have you in our roster. It's a totally free program, but only because we have some amazing volunteering mentors that really pour their hearts into this program. Come join us! Please reach out in #mentorship-program on slack if you have any questions. Good luck in your applications! Respectfully, Ray Berg https://chipymentor.org/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From mindaslab at protonmail.com Mon Jul 30 08:38:25 2018 From: mindaslab at protonmail.com (Karthikeyan A K) Date: Mon, 30 Jul 2018 08:38:25 -0400 Subject: [Chicago] [Promotion] Book for Data Science Aspirants Message-ID: <9ScrtKwvZcxfqrNHVmLLxA3NfviHzyaa0oLe56hU6q8psQsaa_umYxCa4noLQn4KKDTJ4UrHNG0_dLmKp4ZCUEY9z0WlC_ezC8qMBVJ6KKc=@protonmail.com> Hello Python people, Two years ago, my profession changed, I had to do data science work. When I started it, I (though I knew Python) found it to be extremely difficult. I had these doubts: What to learn? Where to learn? am I doing things right? Were the questions that arose in my mind. I had no proper guide and it was pain. So I wrote this book https://www.amazon.com/dp/B07FYVTNX7 , a guide for those who would like to become Data Scientist. I have crystallized two years of my struggle and answers to it in this book. I hope this book would help you. - Karthikeyan A K -------------- next part -------------- An HTML attachment was scrubbed... URL: From mdumlupinar at gmail.com Tue Jul 31 07:19:18 2018 From: mdumlupinar at gmail.com (M.Dumlupinar) Date: Tue, 31 Jul 2018 14:19:18 +0300 Subject: [Chicago] [Promotion] Book for Data Science Aspirants In-Reply-To: <9ScrtKwvZcxfqrNHVmLLxA3NfviHzyaa0oLe56hU6q8psQsaa_umYxCa4noLQn4KKDTJ4UrHNG0_dLmKp4ZCUEY9z0WlC_ezC8qMBVJ6KKc=@protonmail.com> References: <9ScrtKwvZcxfqrNHVmLLxA3NfviHzyaa0oLe56hU6q8psQsaa_umYxCa4noLQn4KKDTJ4UrHNG0_dLmKp4ZCUEY9z0WlC_ezC8qMBVJ6KKc=@protonmail.com> Message-ID: Hi Karthikeyan, Thank you for your information and congrats for your efforts. I clicked the link you shared above and visited the amazon page of the book. However, I was unable to look at the first pages of the book. By the way, I am an experienced Java developer and want to learn a different language such as Python and Ruby, though, I didn't decided which one will be my next platform. But, I like to study data science. I am planning to study the topic three or four months later. On Mon, Jul 30, 2018 at 3:38 PM, Karthikeyan A K via Chicago < chicago at python.org> wrote: > Hello Python people, > > Two years ago, my profession changed, I had to do data science work. When > I started it, I (though I knew Python) found it to be extremely difficult. > I had these doubts: What to learn? Where to learn? am I doing things right? > Were the questions that arose in my mind. I had no proper guide and it was > pain. > > So I wrote this book https://www.amazon.com/dp/B07FYVTNX7 , a guide for > those who would like to become Data Scientist. I have crystallized two > years of my struggle and answers to it in this book. I hope this book would > help you. > > - Karthikeyan A K > > > > _______________________________________________ > Chicago mailing list > Chicago at python.org > https://mail.python.org/mailman/listinfo/chicago > > -- ?yi ?al??malar... Mustafa DUMLUPINAR https://github.com/seyhanp -------------- next part -------------- An HTML attachment was scrubbed... URL: