From ajinkyabobade93 at gmail.com Wed Nov 1 18:11:32 2017 From: ajinkyabobade93 at gmail.com (Ajinkya Bobade) Date: Wed, 1 Nov 2017 17:11:32 -0500 Subject: [BangPypers] Capture and save running process on Python 3.6 Message-ID: Hello, Hope someone can help me on this. In the following code, I want to capture print('Recording GPS Position...') on sd card, for now, this is printing on terminal directly I want to capture this runtime process (p_1) from terminal and store on sd card as it is being executed how do I do this. Also in general what is a way to capture and store processes in runtime from terminal and store on sd card(note I do want to store processes as it is being executed and not after its execution is done) import sys import os import time import subprocess, shlex import signal import serial import psutil from subprocess import Popen, PIPE def recording(): flag = 0 ser = serial.Serial('/dev/ttyACM0', 921600, timeout=1) ser.flushOutput() # ROSBAG Recordings (Shell commands that execute the messages on the terminal) messages = 'rosbag record -o GPS_Position.bag dji_sdk/gps_position', 'rosbag record -o IMU_Data.bag dji_sdk/imu', 'rosbag record -o Attitude.bag dji_sdk/attitude', 'rosbag record -o Velodyne_Packets.bag velodyne_packets', 'rosbag record -o Velodyne_Points.bag velodyne_points', # rosbag record -o Velocity.bag dji_sdk/velocity' while flag == 0: try: args1 = shlex.split(messages[0]) # messages[0] = rosbag record -o GPS_Position.bag dji_sdk/gps_position #print (args1) p_1 = subprocess.Popen(args1, stdout=PIPE) print('Recording GPS Position...') p_1.stdout.flush() From noufal at nibrahim.net.in Thu Nov 2 05:55:21 2017 From: noufal at nibrahim.net.in (Noufal Ibrahim KV) Date: Thu, 02 Nov 2017 15:25:21 +0530 Subject: [BangPypers] Capture and save running process on Python 3.6 In-Reply-To: (Ajinkya Bobade's message of "Wed, 1 Nov 2017 17:11:32 -0500") References: Message-ID: <87vaityph2.fsf@nibrahim.net.in> On Thu, Nov 02 2017, Ajinkya Bobade wrote: > Hello, > > Hope someone can help me on this. In the following code, I want to capture > print('Recording GPS Position...') on sd card, for now, this is printing > on terminal directly I want to capture this runtime process (p_1) from > terminal and store on sd card as it is being executed how do I do > this. You can either run your program with a stdout redirect e.g. python foo.py > logfile.txt or inside your program, replace sys.stdout with an open file object pointing to your log file. I'd go with the former. Secondly, if you want to capture logs and things, you should consider using the logging module. [...] -- Cordially, Noufal http://nibrahim.net.in From ajinkyabobade93 at gmail.com Thu Nov 2 11:18:02 2017 From: ajinkyabobade93 at gmail.com (Ajinkya Bobade) Date: Thu, 2 Nov 2017 10:18:02 -0500 Subject: [BangPypers] Capture and save running process on Python 3.6 In-Reply-To: <87vaityph2.fsf@nibrahim.net.in> References: <87vaityph2.fsf@nibrahim.net.in> Message-ID: I wrote a code which works for text files: This code redirects the output to sd card it goes as follows: import sys oldstdout = sys.stdout # So you can restore later sys.stdout = open("/Volumes/aj/hello world.txt", 'w') # Or whatever your logfile is for i in range(10): print ("Hello", i) sys.stdout.close() sys.stdout = oldstdout However, I want to write this code for "*.bag" extension files that is sys.stdout = open("/Volumes/aj/hello world.bag", 'w') . This file is defined as Binary(application/octect-stream). The above code doesn't work in this scenario. How do I make it work? On Thu, Nov 2, 2017 at 4:55 AM, Noufal Ibrahim KV wrote: > On Thu, Nov 02 2017, Ajinkya Bobade wrote: > >> Hello, >> >> Hope someone can help me on this. In the following code, I want to capture >> print('Recording GPS Position...') on sd card, for now, this is printing >> on terminal directly I want to capture this runtime process (p_1) from >> terminal and store on sd card as it is being executed how do I do >> this. > > You can either run your program with a stdout redirect e.g. > > python foo.py > logfile.txt > > or inside your program, replace sys.stdout with an open file object > pointing to your log file. I'd go with the former. > > Secondly, if you want to capture logs and things, you should consider > using the logging module. > > [...] > > -- > Cordially, > Noufal > http://nibrahim.net.in > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers From ayush.kesarwani at gmail.com Fri Nov 3 02:57:17 2017 From: ayush.kesarwani at gmail.com (Ayush Kesarwani) Date: Fri, 3 Nov 2017 12:27:17 +0530 Subject: [BangPypers] Regarding organizing PyCon India 2018 at Bangalore Message-ID: Count me in for organizing PyCon India 2018 at Bangalore. From noufal at nibrahim.net.in Fri Nov 3 11:58:50 2017 From: noufal at nibrahim.net.in (Noufal Ibrahim KV) Date: Fri, 03 Nov 2017 21:28:50 +0530 Subject: [BangPypers] Capture and save running process on Python 3.6 In-Reply-To: (Ajinkya Bobade's message of "Thu, 2 Nov 2017 10:18:02 -0500") References: <87vaityph2.fsf@nibrahim.net.in> Message-ID: <87a803z745.fsf@nibrahim.net.in> On Thu, Nov 02 2017, Ajinkya Bobade wrote: [...] > However, I want to write this code for "*.bag" extension files that is > sys.stdout = open("/Volumes/aj/hello world.bag", 'w') . This file is > defined as Binary(application/octect-stream). The above code doesn't > work in this scenario. How do I make it work? [...] The contents of a file are not dependent on its extension. What is it that you're trying to do here? I assumed that you simply want to capture all your log messages. -- Cordially, Noufal http://nibrahim.net.in From purusharth.saxena at science.christuniversity.in Sat Nov 4 06:18:43 2017 From: purusharth.saxena at science.christuniversity.in (Purusharth Saxena) Date: Sat, 04 Nov 2017 10:18:43 +0000 Subject: [BangPypers] Regarding organizing PyCon India 2018 at Bangalore In-Reply-To: References: Message-ID: Count me in. On Fri, Nov 3, 2017, 12:28 Ayush Kesarwani wrote: > Count me in for organizing PyCon India 2018 at Bangalore. > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > From denverjude at gmail.com Sat Nov 4 07:16:52 2017 From: denverjude at gmail.com (denver dsouza) Date: Sat, 4 Nov 2017 16:46:52 +0530 Subject: [BangPypers] Regarding organizing PyCon India 2018 at Bangalore In-Reply-To: References: Message-ID: I'm in. A Google form to keep track would be efficient. On Sat, Nov 4, 2017 at 3:48 PM, Purusharth Saxena via BangPypers < bangpypers at python.org> wrote: > Count me in. > > On Fri, Nov 3, 2017, 12:28 Ayush Kesarwani > wrote: > > > Count me in for organizing PyCon India 2018 at Bangalore. > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > https://mail.python.org/mailman/listinfo/bangpypers > > > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > From kushwaharamsewak141 at gmail.com Sat Nov 4 08:30:48 2017 From: kushwaharamsewak141 at gmail.com (Ramsewak Kushwaha) Date: Sat, 4 Nov 2017 18:00:48 +0530 Subject: [BangPypers] Regarding organizing PyCon India 2018 at Bangalore In-Reply-To: References: Message-ID: Dhaneshkushvaha On Nov 4, 2017 4:47 PM, "denver dsouza" wrote: I'm in. A Google form to keep track would be efficient. On Sat, Nov 4, 2017 at 3:48 PM, Purusharth Saxena via BangPypers < bangpypers at python.org> wrote: > Count me in. > > On Fri, Nov 3, 2017, 12:28 Ayush Kesarwani > wrote: > > > Count me in for organizing PyCon India 2018 at Bangalore. > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > https://mail.python.org/mailman/listinfo/bangpypers > > > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > _______________________________________________ BangPypers mailing list BangPypers at python.org https://mail.python.org/mailman/listinfo/bangpypers From tshamlikt at gmail.com Sun Nov 5 01:14:44 2017 From: tshamlikt at gmail.com (shamlik t) Date: Sun, 5 Nov 2017 11:44:44 +0530 Subject: [BangPypers] Regarding organizing PyCon India 2018 at Bangalore In-Reply-To: References: Message-ID: Hi I am interested to volunteer this event. I strongly recommended to use google form as Denver mentioned On 4 November 2017 at 18:00, Ramsewak Kushwaha < kushwaharamsewak141 at gmail.com> wrote: > Dhaneshkushvaha > On Nov 4, 2017 4:47 PM, "denver dsouza" wrote: > > I'm in. A Google form to keep track would be efficient. > > On Sat, Nov 4, 2017 at 3:48 PM, Purusharth Saxena via BangPypers < > bangpypers at python.org> wrote: > > > Count me in. > > > > On Fri, Nov 3, 2017, 12:28 Ayush Kesarwani > > wrote: > > > > > Count me in for organizing PyCon India 2018 at Bangalore. > > > _______________________________________________ > > > BangPypers mailing list > > > BangPypers at python.org > > > https://mail.python.org/mailman/listinfo/bangpypers > > > > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > https://mail.python.org/mailman/listinfo/bangpypers > > > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > From akshay95aradhya at gmail.com Sun Nov 5 10:02:20 2017 From: akshay95aradhya at gmail.com (Akshay Aradhya) Date: Sun, 5 Nov 2017 20:32:20 +0530 Subject: [BangPypers] Regarding organizing PyCon India 2018 at Bangalore In-Reply-To: References: Message-ID: I am interested :) On 5 November 2017 at 11:44, shamlik t wrote: > Hi > I am interested to volunteer this event. I strongly recommended to use > google form as Denver mentioned > > On 4 November 2017 at 18:00, Ramsewak Kushwaha < > kushwaharamsewak141 at gmail.com> wrote: > > > Dhaneshkushvaha > > On Nov 4, 2017 4:47 PM, "denver dsouza" wrote: > > > > I'm in. A Google form to keep track would be efficient. > > > > On Sat, Nov 4, 2017 at 3:48 PM, Purusharth Saxena via BangPypers < > > bangpypers at python.org> wrote: > > > > > Count me in. > > > > > > On Fri, Nov 3, 2017, 12:28 Ayush Kesarwani > > > wrote: > > > > > > > Count me in for organizing PyCon India 2018 at Bangalore. > > > > _______________________________________________ > > > > BangPypers mailing list > > > > BangPypers at python.org > > > > https://mail.python.org/mailman/listinfo/bangpypers > > > > > > > _______________________________________________ > > > BangPypers mailing list > > > BangPypers at python.org > > > https://mail.python.org/mailman/listinfo/bangpypers > > > > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > https://mail.python.org/mailman/listinfo/bangpypers > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > https://mail.python.org/mailman/listinfo/bangpypers > > > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > -- $Akshay Aradhya$ From surusuroor at gmail.com Sun Nov 5 11:15:16 2017 From: surusuroor at gmail.com (Suroor Hussain) Date: Sun, 5 Nov 2017 21:45:16 +0530 Subject: [BangPypers] Regarding organizing PyCon India 2018 at Bangalore In-Reply-To: References: Message-ID: Hi I am interested in volunteering for this event. On Sun, Nov 5, 2017 at 8:32 PM, Akshay Aradhya wrote: > I am interested :) > > On 5 November 2017 at 11:44, shamlik t wrote: > > > Hi > > I am interested to volunteer this event. I strongly recommended to use > > google form as Denver mentioned > > > > On 4 November 2017 at 18:00, Ramsewak Kushwaha < > > kushwaharamsewak141 at gmail.com> wrote: > > > > > Dhaneshkushvaha > > > On Nov 4, 2017 4:47 PM, "denver dsouza" wrote: > > > > > > I'm in. A Google form to keep track would be efficient. > > > > > > On Sat, Nov 4, 2017 at 3:48 PM, Purusharth Saxena via BangPypers < > > > bangpypers at python.org> wrote: > > > > > > > Count me in. > > > > > > > > On Fri, Nov 3, 2017, 12:28 Ayush Kesarwani < > ayush.kesarwani at gmail.com> > > > > wrote: > > > > > > > > > Count me in for organizing PyCon India 2018 at Bangalore. > > > > > _______________________________________________ > > > > > BangPypers mailing list > > > > > BangPypers at python.org > > > > > https://mail.python.org/mailman/listinfo/bangpypers > > > > > > > > > _______________________________________________ > > > > BangPypers mailing list > > > > BangPypers at python.org > > > > https://mail.python.org/mailman/listinfo/bangpypers > > > > > > > _______________________________________________ > > > BangPypers mailing list > > > BangPypers at python.org > > > https://mail.python.org/mailman/listinfo/bangpypers > > > _______________________________________________ > > > BangPypers mailing list > > > BangPypers at python.org > > > https://mail.python.org/mailman/listinfo/bangpypers > > > > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > https://mail.python.org/mailman/listinfo/bangpypers > > > > > > -- > $Akshay Aradhya$ > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > -- Suroor Hussain suroor at mindbitz.com +919037384414 From lifeofnavin at gmail.com Sun Nov 5 14:17:06 2017 From: lifeofnavin at gmail.com (Navin Pai) Date: Mon, 6 Nov 2017 00:47:06 +0530 Subject: [BangPypers] Regarding organizing PyCon India 2018 at Bangalore Message-ID: > Date: Sun, 5 Nov 2017 11:44:44 +0530 > From: shamlik t > To: Bangalore Python Users Group - India > Subject: Re: [BangPypers] Regarding organizing PyCon India 2018 at > Bangalore > Message-ID: > gmail.com> > Content-Type: text/plain; charset="UTF-8" > > Hi > I am interested to volunteer this event. I strongly recommended to use > google form as Denver mentioned > +1 from me as well! Would be great to have PyCon back in Namma Bengaluru From info at accountingbuddy.org Wed Nov 8 06:21:26 2017 From: info at accountingbuddy.org (AccountingBuddy) Date: Wed, 8 Nov 2017 16:51:26 +0530 Subject: [BangPypers] [Commercial] [Job] Openings at AccountingBuddy Message-ID: Good Day, Python Django and QT Openings at Ancit Consulting. We are looking to hire below profiles. 1) Python Django developers with Min 1.5 Yrs Experience. 2) QT Developers Candidates Applying should have a notice period of 30 Days or less. Kindly send your C.V's to info at acccountingbuddy.org About ANCIT Consulting (http://www.ancitconsulting.com): We are a small and fast-moving company, self-funded, with its office in Bangalore. We do boast about being the only Eclipse consulting firm in India and wherever you find Eclipse as a technology we are part of it. We work on anything and everything where there is Eclipse from training to consulting to firefighting to mocking to designing, etc. Associated with a lot of Fortune 500s we are definitely the most preferred Eclipse Partner today in India. www.AccountingBuddy.org is a Project run by Ancit Consulting. Best Regards, Keegan Patrao From abhi.darkness at gmail.com Mon Nov 13 12:22:58 2017 From: abhi.darkness at gmail.com (Abhiram R) Date: Mon, 13 Nov 2017 22:52:58 +0530 Subject: [BangPypers] [Meetup] RSVP for Nov's meetup is open Message-ID: Hi, RSVP for the meetup for the month of November is now open. There is no particular theme for this month and we're keeping things generic. The schedule is as follows (the two named talks below are confirmed). 1. "Decorators demystified" - By Anand Chitipothu *2. * 3. "Real-world challenges in deploying machine learning applications" - By Anand Chitipothu The complete details are available on the meetup page [0]. *Note* - As mentioned above, the slot for the second talk is open and interested people can reach out to me. The duration is slated for 40-60 minutes. Alternatively, if you have a flash talk in which you want to present something related to Python, we welcome it and this can extend from 15-20 minutes. We will select 2-3 flash talks or one complete talk, based on the duration and responses we receive. *You can RSVP on the meetup page [0].* Date : Nov 18, 2017 Location on Google Map: *https://goo.gl/maps/p6qy3XzaKax * The event is free of cost. [0]: https://www.meetup.com/BangPypers/events/244144287/ ? Thanks, Abhiram R (abhi.darkness at gmail.com / +919663560474) ? From akshay95aradhya at gmail.com Mon Nov 13 12:50:46 2017 From: akshay95aradhya at gmail.com (Akshay Aradhya) Date: Mon, 13 Nov 2017 23:20:46 +0530 Subject: [BangPypers] PyCon India 2017 Sample Logos Message-ID: 1. [IMAGE ] Simple Logo, No Overlay || Color scheme same as that of PyCon 2015 2. [IMAGE ] 1010 Overlay, Binary for 10 || Colors Represent Karnataka Flag 3. [IMAGE ] Connection represents unity, Kashmir to Kanyakumari we are all connected || Gender Neutrality Color Scheme 4. [IMAGE ] X representing roman numeral for 10 || Random Color Scheme Overall Preview : https://drive.google.com/open?id=1SboVJKZaQJtpGJNPhNzWfLaJnbbIV-ht *All logos are in vector format.* Thoughts and feedback are welcome. -- $Akshay Aradhya$ From purusharth.saxena at science.christuniversity.in Mon Nov 13 13:03:00 2017 From: purusharth.saxena at science.christuniversity.in (Purusharth Saxena) Date: Mon, 13 Nov 2017 18:03:00 +0000 Subject: [BangPypers] PyCon India 2017 Sample Logos In-Reply-To: References: Message-ID: Loved the second one [1] It's really nice! :) [1] https://drive.google.com/open?id=1cj68OqFNx_04vYQDcv3nROgaNLtfwGfv On Mon, Nov 13, 2017 at 11:21 PM Akshay Aradhya wrote: > 1. [IMAGE > ] > Simple > Logo, No Overlay || Color scheme same as that of PyCon 2015 > > 2. [IMAGE > ] 1010 > Overlay, Binary for 10 || Colors Represent Karnataka Flag > > 3. [IMAGE > ] > Connection > represents unity, Kashmir to Kanyakumari we are all connected || Gender > Neutrality Color Scheme > > 4. [IMAGE > ] X > representing roman numeral for 10 || Random Color Scheme > > > Overall Preview : > https://drive.google.com/open?id=1SboVJKZaQJtpGJNPhNzWfLaJnbbIV-ht > > *All logos are in vector format.* > > Thoughts and feedback are welcome. > > -- > $Akshay Aradhya$ > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > From ajinkyabobade93 at gmail.com Mon Nov 13 13:20:42 2017 From: ajinkyabobade93 at gmail.com (Ajinkya Bobade) Date: Mon, 13 Nov 2017 12:20:42 -0600 Subject: [BangPypers] PyCon India 2017 Sample Logos In-Reply-To: References: Message-ID: green one is nice On Mon, Nov 13, 2017 at 12:03 PM, Purusharth Saxena via BangPypers < bangpypers at python.org> wrote: > Loved the second one [1] > It's really nice! :) > [1] https://drive.google.com/open?id=1cj68OqFNx_04vYQDcv3nROgaNLtfwGfv > > On Mon, Nov 13, 2017 at 11:21 PM Akshay Aradhya > > wrote: > > > 1. [IMAGE > > ] > > Simple > > Logo, No Overlay || Color scheme same as that of PyCon 2015 > > > > 2. [IMAGE > > ] > 1010 > > Overlay, Binary for 10 || Colors Represent Karnataka Flag > > > > 3. [IMAGE > > ] > > Connection > > represents unity, Kashmir to Kanyakumari we are all connected || Gender > > Neutrality Color Scheme > > > > 4. [IMAGE > > ] X > > representing roman numeral for 10 || Random Color Scheme > > > > > > Overall Preview : > > https://drive.google.com/open?id=1SboVJKZaQJtpGJNPhNzWfLaJnbbIV-ht > > > > *All logos are in vector format.* > > > > Thoughts and feedback are welcome. > > > > -- > > $Akshay Aradhya$ > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > https://mail.python.org/mailman/listinfo/bangpypers > > > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > From anandpillai at letterboxes.org Mon Nov 13 13:53:31 2017 From: anandpillai at letterboxes.org (Anand B Pillai) Date: Tue, 14 Nov 2017 00:23:31 +0530 Subject: [BangPypers] [Meetup] RSVP for Nov's meetup is open In-Reply-To: References: Message-ID: <43e9b33a-b217-24f8-7c62-53d75d206c5b@letterboxes.org> On Monday 13 November 2017 10:52 PM, Abhiram R wrote: > Hi, > > RSVP for the meetup for the month of November is now open. > There is no particular theme for this month and we're keeping things > generic. > > > The schedule is as follows (the two named talks below are confirmed). > > 1. "Decorators demystified" - By Anand Chitipothu > *2. * I can do a smaller version of my "Concurrency" talk which I gave in PyCon India this year (it was a 3 hour workshop) which was kind of popular. I had got feedback from people who wanted a similar talk in BangPypers. This talk can be compressed max to 1.5 hours. Let me know. > 3. "Real-world challenges in deploying machine learning applications" - By > Anand Chitipothu > > The complete details are available on the meetup page [0]. > > *Note* - As mentioned above, the slot for the second talk is open and > interested people can reach out to me. The duration is slated for 40-60 > minutes. > > Alternatively, if you have a flash talk in which you want to present > something related to Python, we welcome it and this can extend from 15-20 > minutes. > > We will select 2-3 flash talks or one complete talk, based on the duration > and responses we receive. > > > *You can RSVP on the meetup page [0].* > Date : Nov 18, 2017 > Location on Google Map: > *https://goo.gl/maps/p6qy3XzaKax * > The event is free of cost. > > [0]: https://www.meetup.com/BangPypers/events/244144287/ > ? > > Thanks, > Abhiram R > (abhi.darkness at gmail.com / +919663560474) > ? > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > -- Regards, --Anand ---------------------------- Software Architect/Consultant anandpillai at letterboxes.org http://twitter.com/skeptichacker From anandpillai at letterboxes.org Mon Nov 13 13:54:35 2017 From: anandpillai at letterboxes.org (Anand B Pillai) Date: Tue, 14 Nov 2017 00:24:35 +0530 Subject: [BangPypers] [Meetup] RSVP for Nov's meetup is open In-Reply-To: <43e9b33a-b217-24f8-7c62-53d75d206c5b@letterboxes.org> References: <43e9b33a-b217-24f8-7c62-53d75d206c5b@letterboxes.org> Message-ID: On Tuesday 14 November 2017 12:23 AM, Anand B Pillai wrote: > On Monday 13 November 2017 10:52 PM, Abhiram R wrote: >> Hi, >> >> RSVP for the meetup for the month of November is now open. >> There is no particular theme for this month and we're keeping things >> generic. >> >> >> The schedule is as follows (the two named talks below are confirmed). >> >> 1. "Decorators demystified" - By Anand Chitipothu >> *2. * > > I can do a smaller version of my "Concurrency" talk which I gave in > PyCon India this year (it was a 3 hour workshop) which was kind of > popular. I had got feedback from people who wanted a similar talk in > BangPypers. > > This talk can be compressed max to 1.5 hours. Let me know. Here is the material. If I get sufficient response, I will do this https://github.com/pythonhacker/pyconindia2017concurrency Thanks -- Regards, --Anand ---------------------------- Software Architect/Consultant anandpillai at letterboxes.org http://twitter.com/skeptichacker From anandpillai at letterboxes.org Mon Nov 13 13:56:55 2017 From: anandpillai at letterboxes.org (Anand B Pillai) Date: Tue, 14 Nov 2017 00:26:55 +0530 Subject: [BangPypers] [Meetup] RSVP for Nov's meetup is open In-Reply-To: References: <43e9b33a-b217-24f8-7c62-53d75d206c5b@letterboxes.org> Message-ID: On Tuesday 14 November 2017 12:24 AM, Anand B Pillai wrote: > On Tuesday 14 November 2017 12:23 AM, Anand B Pillai wrote: >> On Monday 13 November 2017 10:52 PM, Abhiram R wrote: >>> Hi, >>> >>> RSVP for the meetup for the month of November is now open. >>> There is no particular theme for this month and we're keeping things >>> generic. >>> >>> >>> The schedule is as follows (the two named talks below are confirmed). >>> >>> 1. "Decorators demystified" - By Anand Chitipothu >>> *2. * >> >> I can do a smaller version of my "Concurrency" talk which I gave in >> PyCon India this year (it was a 3 hour workshop) which was kind of >> popular. I had got feedback from people who wanted a similar talk in >> BangPypers. >> >> This talk can be compressed max to 1.5 hours. Let me know. > > Here is the material. If I get sufficient response, I will do this > > https://github.com/pythonhacker/pyconindia2017concurrency A second suggestion is an architecture of building large scale concurrent (parallel) crawlers using Python/Redis and Django and using Linode. This is something I am working at the moment and using daily (weekly) to crawl > 5 million URLs from the web. > > Thanks > > > -- Regards, --Anand ---------------------------- Software Architect/Consultant anandpillai at letterboxes.org http://twitter.com/skeptichacker From sree at mahiti.org Tue Nov 14 03:13:09 2017 From: sree at mahiti.org (Sreekanth S Rameshaiah) Date: Tue, 14 Nov 2017 08:13:09 +0000 Subject: [BangPypers] PyCon India 2017 Sample Logos In-Reply-To: References: Message-ID: On Mon, 13 Nov 2017 at 23:21 Akshay Aradhya wrote: > 1. [IMAGE > ] > Simple > Logo, No Overlay || Color scheme same as that of PyCon 2015 > > 2. [IMAGE > ] 1010 > Overlay, Binary for 10 || Colors Represent Karnataka Flag > > 3. [IMAGE > ] > Connection > represents unity, Kashmir to Kanyakumari we are all connected || Gender > Neutrality Color Scheme > > 4. [IMAGE > ] X > representing roman numeral for 10 || Random Color Scheme > > Are these inline with PSF logo usage guidelines? Will these require prior permission from PSF? - sree > > Overall Preview : > https://drive.google.com/open?id=1SboVJKZaQJtpGJNPhNzWfLaJnbbIV-ht > > *All logos are in vector format.* > > Thoughts and feedback are welcome. > > -- > $Akshay Aradhya$ > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > -- Sreekanth S R Executive Director Mahiti #6, 1st Floor, Ganesh Chambers Dodda Banaswadi Main Road, Bangalore - 560043 Location: Near the Ramamurthy Nagar Traffic Signal on the Outer Ring Road Mobile: +91-98455-12611 http://www.mahiti.org *(An ISO 9001:2008 & ISO 27001:2013 Enterprise)* From pradam.programming at gmail.com Tue Nov 14 04:32:31 2017 From: pradam.programming at gmail.com (pradam programmer) Date: Tue, 14 Nov 2017 15:02:31 +0530 Subject: [BangPypers] PyCon India 2017 Sample Logos In-Reply-To: References: Message-ID: Second one is nice..!! On 13-Nov-2017 11:22 PM, "Akshay Aradhya" wrote: > 1. [IMAGE > ] > Simple > Logo, No Overlay || Color scheme same as that of PyCon 2015 > > 2. [IMAGE > ] 1010 > Overlay, Binary for 10 || Colors Represent Karnataka Flag > > 3. [IMAGE > ] > Connection > represents unity, Kashmir to Kanyakumari we are all connected || Gender > Neutrality Color Scheme > > 4. [IMAGE > ] X > representing roman numeral for 10 || Random Color Scheme > > > Overall Preview : > https://drive.google.com/open?id=1SboVJKZaQJtpGJNPhNzWfLaJnbbIV-ht > > *All logos are in vector format.* > > Thoughts and feedback are welcome. > > -- > $Akshay Aradhya$ > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > From sayan.chowdhury2012 at gmail.com Tue Nov 14 06:45:19 2017 From: sayan.chowdhury2012 at gmail.com (Sayan Chowdhury) Date: Tue, 14 Nov 2017 17:15:19 +0530 Subject: [BangPypers] PyCon India 2017 Sample Logos In-Reply-To: References: Message-ID: <20171114114519.k32z43r3skjwtg7g@tatooine> > > *All logos are in vector format.* > > Thoughts and feedback are welcome. Akshay, Can you move the discussion to inpycon mailing list[1]? [1] https://mail.python.org/mailman/listinfo/inpycon -- Sayan Chowdhury Senior Software Engineer, Fedora Engineering - Emerging Platform GPG Fingerprint : 0F16 E841 E517 225C 7D13 AB3C B023 9931 9CD0 5C8B Proud to work at The Open Organization! From kameshh.maruvada at gmail.com Tue Nov 14 07:06:42 2017 From: kameshh.maruvada at gmail.com (Maruvada kameswara rao) Date: Tue, 14 Nov 2017 17:36:42 +0530 Subject: [BangPypers] PyCon India 2017 Sample Logos In-Reply-To: <20171114114519.k32z43r3skjwtg7g@tatooine> References: <20171114114519.k32z43r3skjwtg7g@tatooine> Message-ID: Hi Team, Is there any way of outputting the results of userdefined functions to a text file Sent with Mailtrack Thanks & Regards kameswara Rao 09618000885 On Tue, Nov 14, 2017 at 5:15 PM, Sayan Chowdhury < sayan.chowdhury2012 at gmail.com> wrote: > > > > *All logos are in vector format.* > > > > Thoughts and feedback are welcome. > > Akshay, Can you move the discussion to inpycon mailing list[1]? > > [1] https://mail.python.org/mailman/listinfo/inpycon > > -- > Sayan Chowdhury > Senior Software Engineer, Fedora Engineering - Emerging Platform > GPG Fingerprint : 0F16 E841 E517 225C 7D13 AB3C B023 9931 9CD0 5C8B > > > Proud to work at The Open Organization! > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > From mail at kushaldas.in Tue Nov 14 07:55:41 2017 From: mail at kushaldas.in (Kushal Das) Date: Tue, 14 Nov 2017 18:25:41 +0530 Subject: [BangPypers] PyCon India 2017 Sample Logos In-Reply-To: <20171114114519.k32z43r3skjwtg7g@tatooine> References: <20171114114519.k32z43r3skjwtg7g@tatooine> Message-ID: <20171114125541.crkp7fod3mtw55wt@littleram> On 14/11/17, Sayan Chowdhury wrote: > > > > *All logos are in vector format.* > > > > Thoughts and feedback are welcome. > > Akshay, Can you move the discussion to inpycon mailing list[1]? > > [1] https://mail.python.org/mailman/listinfo/inpycon As Sayan suggested, inpycon list the best place for this discussion. Also except the first one, rest of them are clear violations of PSF logo guidelines. Kushal From abc at shanky.xyz Tue Nov 14 08:22:05 2017 From: abc at shanky.xyz (Shashank Kumar) Date: Tue, 14 Nov 2017 18:52:05 +0530 Subject: [BangPypers] PyCon India 2017 Sample Logos In-Reply-To: References: Message-ID: <7ee3d979-9c9b-b425-e262-b303e7e1c02d@shanky.xyz> On Monday 13 November 2017 11:20 PM, Akshay Aradhya wrote: > 1. [IMAGE > ] Simple > Logo, No Overlay || Color scheme same as that of PyCon 2015 > ... Great work, I like the 4th one since it also signifies the 10 year mark PyCon India will be completing next year. Regards Shashank Kumar | @realslimshanky From vnbang2003 at gmail.com Tue Nov 14 09:21:42 2017 From: vnbang2003 at gmail.com (vijay kumar) Date: Tue, 14 Nov 2017 19:51:42 +0530 Subject: [BangPypers] PyCon India 2017 Sample Logos In-Reply-To: References: Message-ID: I had interacted couple of time with trademark team . Below is what they had suggested If the logo is "derived from" the Python logo in a dilutive way they will have concern which mean only first one is valid. Indirect reference to the trademarked logo, but no real similarity in any shape elements would be fine. Example: http://cn.pycon.org/2014/ https://us.pycon.org/2018/ On Mon, Nov 13, 2017 at 11:20 PM, Akshay Aradhya wrote: > 1. [IMAGE > ] > Simple > Logo, No Overlay || Color scheme same as that of PyCon 2015 > > 2. [IMAGE > ] 1010 > Overlay, Binary for 10 || Colors Represent Karnataka Flag > > 3. [IMAGE > ] > Connection > represents unity, Kashmir to Kanyakumari we are all connected || Gender > Neutrality Color Scheme > > 4. [IMAGE > ] X > representing roman numeral for 10 || Random Color Scheme > > > Overall Preview : > https://drive.google.com/open?id=1SboVJKZaQJtpGJNPhNzWfLaJnbbIV-ht > > *All logos are in vector format.* > > Thoughts and feedback are welcome. > > -- > $Akshay Aradhya$ > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > -- Thanks, Vijay From subho.prp at gmail.com Tue Nov 14 10:15:10 2017 From: subho.prp at gmail.com (Subhendu Ghosh) Date: Tue, 14 Nov 2017 20:45:10 +0530 Subject: [BangPypers] PyCon India 2017 Sample Logos In-Reply-To: References: Message-ID: On Mon, Nov 13, 2017 at 11:20 PM, Akshay Aradhya wrote: > 1. [IMAGE > ] Simple > Logo, No Overlay || Color scheme same as that of PyCon 2015 > > 2. [IMAGE > ] 1010 > Overlay, Binary for 10 || Colors Represent Karnataka Flag > > 3. [IMAGE > ] > Connection > represents unity, Kashmir to Kanyakumari we are all connected || Gender > Neutrality Color Scheme > > 4. [IMAGE > ] X > representing roman numeral for 10 || Random Color Scheme > > > Overall Preview : > https://drive.google.com/open?id=1SboVJKZaQJtpGJNPhNzWfLaJnbbIV-ht > > *All logos are in vector format.* > > Thoughts and feedback are welcome. > > -- > $Akshay Aradhya$ > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers 1 and 2 looks good, also please its "PyCon India 2018" :P From akshay95aradhya at gmail.com Wed Nov 15 01:43:07 2017 From: akshay95aradhya at gmail.com (Akshay Aradhya) Date: Wed, 15 Nov 2017 06:43:07 +0000 Subject: [BangPypers] PyCon India 2017 Sample Logos In-Reply-To: References: Message-ID: I am unable to send it on the other mailing list. I am getting "Post by non-member to a members-only list" error On Tue, Nov 14, 2017, 8:46 PM Subhendu Ghosh wrote: > On Mon, Nov 13, 2017 at 11:20 PM, Akshay Aradhya > wrote: > > 1. [IMAGE > > ] > Simple > > Logo, No Overlay || Color scheme same as that of PyCon 2015 > > > > 2. [IMAGE > > ] > 1010 > > Overlay, Binary for 10 || Colors Represent Karnataka Flag > > > > 3. [IMAGE > > ] > > Connection > > represents unity, Kashmir to Kanyakumari we are all connected || Gender > > Neutrality Color Scheme > > > > 4. [IMAGE > > ] X > > representing roman numeral for 10 || Random Color Scheme > > > > > > Overall Preview : > > https://drive.google.com/open?id=1SboVJKZaQJtpGJNPhNzWfLaJnbbIV-ht > > > > *All logos are in vector format.* > > > > Thoughts and feedback are welcome. > > > > -- > > $Akshay Aradhya$ > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > https://mail.python.org/mailman/listinfo/bangpypers > > 1 and 2 looks good, also please its "PyCon India 2018" :P > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > From mail at kushaldas.in Wed Nov 15 02:43:23 2017 From: mail at kushaldas.in (Kushal Das) Date: Wed, 15 Nov 2017 13:13:23 +0530 Subject: [BangPypers] PyCon India 2017 Sample Logos In-Reply-To: References: Message-ID: <20171115074323.owwvrtcgoxgrekx7@littleram> On 15/11/17, Akshay Aradhya wrote: > I am unable to send it on the other mailing list. I am getting "Post by > non-member to a members-only list" error > Yes, first join the mailing list and send the email. Kushal From akshay95aradhya at gmail.com Wed Nov 15 07:27:23 2017 From: akshay95aradhya at gmail.com (Akshay Aradhya) Date: Wed, 15 Nov 2017 17:57:23 +0530 Subject: [BangPypers] PyCon India 2017 Sample Logos In-Reply-To: <20171115074323.owwvrtcgoxgrekx7@littleram> References: <20171115074323.owwvrtcgoxgrekx7@littleram> Message-ID: I already did. I think my subscription has to be confirmed by an admin On 15 November 2017 at 13:13, Kushal Das wrote: > On 15/11/17, Akshay Aradhya wrote: > > I am unable to send it on the other mailing list. I am getting "Post by > > non-member to a members-only list" error > > > Yes, first join the mailing list and send the email. > > Kushal > > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > -- $Akshay Aradhya$ From nitin.nitp at gmail.com Tue Nov 21 06:32:26 2017 From: nitin.nitp at gmail.com (Nitin Kumar) Date: Tue, 21 Nov 2017 17:02:26 +0530 Subject: [BangPypers] [JOB] C/C++/5+ yrs exp Message-ID: Hi All, My team is looking for a candidate with 5+ year of experience who should be very good in C/C++ with knowledge of Python. refer below link for JD: https://careers.juniper.net/careers/careers/jobdescription.html?jid=937120 Can share the resume with me if interested. Thanks Nitin Kr From vnbang2003 at gmail.com Tue Nov 21 12:29:07 2017 From: vnbang2003 at gmail.com (vijay kumar) Date: Tue, 21 Nov 2017 22:59:07 +0530 Subject: [BangPypers] [X-post] Python for kids track in PyCon India 2018 Message-ID: Hi All, Thanks for extending your support for python for kids initiative. In the last F2F meeting with PyCon India volunteers, we discussed on Python for kids track and below are the pointers. 1. Provide free passes for kids. 2. Accommodate 100 - 150 kids. 3. Should not be restricted to Python programming alone but welcome all open source technologies. 4. Make this a parallel track to conference which provides students an opportunity to interact with professionals. 5. To get hardwares necessary to teach kids, we might have to look for sponsors. 6. Cover the travel cost for kids and a mentor/parent per kids if logistics permits. The next steps is to create teams as below: 1. Co-ordinators 2. Mentors *Role of Coordinators:* 1. Connect with schools to create awareness on python for kids track in PyCon India 2018. 2. Communicate with school co-ordinator to identify what works better for school kids and share the inputs with mentors. 3. Send a formal invitation to schools if required. 4. Work with school coordinators to plan the logistics. 5. Closely work with PyCon India organisers and mentors to take care of the ground work required at the venue. *Role of Mentors:* 1. Mentoring kids and working closely with them. 2. Work with peer mentors to come up with detailed plan for Python for kids track. 3. Work with coordinators to understand the requirement and feedback from schools. 4. Work with PyCon organisers for ground work at the venue. As we all know that this is the first time we are planning for Python for Kids track, we call for mentors who has experience in teaching programming to kids. And also looking for support in planning and executing the event. Request interested people to fill in the below forms to help us connect with you. *Coordinator* : http://bit.ly/python-kids-coordinator *Mentor*: http://bit.ly/python-kids-mentors -- Thanks, Vijay From bnsn.babu at gmail.com Fri Nov 24 02:35:45 2017 From: bnsn.babu at gmail.com (binson babu) Date: Fri, 24 Nov 2017 13:05:45 +0530 Subject: [BangPypers] SciPy India 2017 (4 days left !!) Message-ID: [image: scipy 2017] [image: FOSSEE] *Dear Sir / Madam,* The FOSSEE project based at IIT Bombay invites the faculty, students and members of your institution/organization to SciPy India 2017 . [image: scipy 2017] SciPy India 2017 ------------------------------ NOVEMBER 29 & 30 SciPy India is an annual conference that is currently in its ninth year and provides an opportunity to learn and use Python in education and research. The conference will have basic and advanced workshops on Python and also some interesting talks. For further information about SciPy India 2017, visit http://scipy.in/2017. We look forward to your participation in SciPy India 2017. *Registration* for the conference is now open. Register Now Schedule Lite ?600 (Till 27th Nov 2017) Regular ?1400 (26th Oct - 27th Nov 2017) *Group Registration Discount:* For 5 or more registrations done together, a 20% discount shall be provided. The same will be applied automatically at the time of registration. [image: scipy poster 2017] We request you to share the event details through this poster with faculty members, students and others who might be interested. You may display the poster on notice boards. View Poster Connect with Us: Facebook Twitter Google+ Contact Us: scipy(at)fossee(dot)in info(at)fossee(dot)in Schedule | Invited Speakers | Sponsors | Venue | Unsubscribe [image: IIT Bombay] [image: Valid XHTML 1.0 Transitional] From kameshh.maruvada at gmail.com Fri Nov 24 03:11:23 2017 From: kameshh.maruvada at gmail.com (Maruvada kameswara rao) Date: Fri, 24 Nov 2017 13:41:23 +0530 Subject: [BangPypers] [X-post] Python for kids track in PyCon India 2018 In-Reply-To: References: Message-ID: Hi All, I am looking for some professional training for python expertise, can anyone please suggest me how can I deal with it. I am looking for online training. Sent with Mailtrack Thanks & Regards kameswara Rao 09618000885 On Tue, Nov 21, 2017 at 10:59 PM, vijay kumar wrote: > Hi All, > > Thanks for extending your support for python for kids initiative. > > In the last F2F meeting with PyCon India volunteers, we discussed on Python > for kids track and below are the pointers. > > 1. > > Provide free passes for kids. > 2. > > Accommodate 100 - 150 kids. > 3. > > Should not be restricted to Python programming alone but welcome all > open source technologies. > 4. > > Make this a parallel track to conference which provides students an > opportunity to interact with professionals. > 5. > > To get hardwares necessary to teach kids, we might have to look for > sponsors. > 6. > > Cover the travel cost for kids and a mentor/parent per kids if logistics > permits. > > > > The next steps is to create teams as below: > > 1. > > Co-ordinators > 2. > > Mentors > > > *Role of Coordinators:* > > 1. > > Connect with schools to create awareness on python for kids track in > PyCon India 2018. > 2. > > Communicate with school co-ordinator to identify what works better for > school kids and share the inputs with mentors. > 3. > > Send a formal invitation to schools if required. > 4. > > Work with school coordinators to plan the logistics. > 5. > > Closely work with PyCon India organisers and mentors to take care of the > ground work required at the venue. > > > *Role of Mentors:* > > 1. > > Mentoring kids and working closely with them. > 2. > > Work with peer mentors to come up with detailed plan for Python for kids > track. > 3. > > Work with coordinators to understand the requirement and feedback from > schools. > 4. > > Work with PyCon organisers for ground work at the venue. > > > As we all know that this is the first time we are planning for Python for > Kids track, we call for mentors who has experience in teaching programming > to kids. And also looking for support in planning and executing the event. > > Request interested people to fill in the below forms to help us connect > with you. > > > *Coordinator* : http://bit.ly/python-kids-coordinator > > *Mentor*: http://bit.ly/python-kids-mentors > > > -- > Thanks, > Vijay > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > From bewithsathish at gmail.com Fri Nov 24 10:28:08 2017 From: bewithsathish at gmail.com (Sathishkumar Duraisamy) Date: Fri, 24 Nov 2017 20:58:08 +0530 Subject: [BangPypers] Regarding organizing PyCon India 2018 at Bangalore In-Reply-To: References: Message-ID: Count me in!!! On Mon, Nov 6, 2017 at 12:47 AM, Navin Pai wrote: > > Date: Sun, 5 Nov 2017 11:44:44 +0530 > > From: shamlik t > > To: Bangalore Python Users Group - India > > Subject: Re: [BangPypers] Regarding organizing PyCon India 2018 at > > Bangalore > > Message-ID: > > > gmail.com> > > Content-Type: text/plain; charset="UTF-8" > > > > Hi > > I am interested to volunteer this event. I strongly recommended to use > > google form as Denver mentioned > > > > +1 from me as well! Would be great to have PyCon back in Namma Bengaluru > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > -- Regards, Sathishkumar D From msnibil at gmail.com Fri Nov 24 10:29:35 2017 From: msnibil at gmail.com (Nibil M S) Date: Fri, 24 Nov 2017 15:29:35 +0000 Subject: [BangPypers] Regarding organizing PyCon India 2018 at Bangalore In-Reply-To: References: Message-ID: Count me too. On Fri, 24 Nov 2017 at 8:58 PM, Sathishkumar Duraisamy < bewithsathish at gmail.com> wrote: > Count me in!!! > > On Mon, Nov 6, 2017 at 12:47 AM, Navin Pai wrote: > > > > Date: Sun, 5 Nov 2017 11:44:44 +0530 > > > From: shamlik t > > > To: Bangalore Python Users Group - India > > > Subject: Re: [BangPypers] Regarding organizing PyCon India 2018 at > > > Bangalore > > > Message-ID: > > > > > gmail.com> > > > Content-Type: text/plain; charset="UTF-8" > > > > > > Hi > > > I am interested to volunteer this event. I strongly recommended to use > > > google form as Denver mentioned > > > > > > > +1 from me as well! Would be great to have PyCon back in Namma Bengaluru > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > https://mail.python.org/mailman/listinfo/bangpypers > > > > > > -- > Regards, > Sathishkumar D > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > -- Nibil M.S "Needam" Trithala P.O Palakkad, Kerala, India +91 9495 41 2790 | LinkedIn | www.nibil.in From kushwaharamsewak141 at gmail.com Fri Nov 24 11:03:09 2017 From: kushwaharamsewak141 at gmail.com (Ramsewak Kushwaha) Date: Fri, 24 Nov 2017 21:33:09 +0530 Subject: [BangPypers] Regarding organizing PyCon India 2018 at Bangalore In-Reply-To: References: Message-ID: I am interested On 05-Nov-2017 11:45 AM, "shamlik t" wrote: > Hi > I am interested to volunteer this event. I strongly recommended to use > google form as Denver mentioned > > On 4 November 2017 at 18:00, Ramsewak Kushwaha < > kushwaharamsewak141 at gmail.com> wrote: > > > Dhaneshkushvaha > > On Nov 4, 2017 4:47 PM, "denver dsouza" wrote: > > > > I'm in. A Google form to keep track would be efficient. > > > > On Sat, Nov 4, 2017 at 3:48 PM, Purusharth Saxena via BangPypers < > > bangpypers at python.org> wrote: > > > > > Count me in. > > > > > > On Fri, Nov 3, 2017, 12:28 Ayush Kesarwani > > > wrote: > > > > > > > Count me in for organizing PyCon India 2018 at Bangalore. > > > > _______________________________________________ > > > > BangPypers mailing list > > > > BangPypers at python.org > > > > https://mail.python.org/mailman/listinfo/bangpypers > > > > > > > _______________________________________________ > > > BangPypers mailing list > > > BangPypers at python.org > > > https://mail.python.org/mailman/listinfo/bangpypers > > > > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > https://mail.python.org/mailman/listinfo/bangpypers > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > https://mail.python.org/mailman/listinfo/bangpypers > > > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > https://mail.python.org/mailman/listinfo/bangpypers > From altaf at snaptrude.com Tue Nov 28 09:11:46 2017 From: altaf at snaptrude.com (Altaf Ganihar) Date: Tue, 28 Nov 2017 19:41:46 +0530 Subject: [BangPypers] [JOBS] Job Openings at Snaptrude - Full Stack Django Developer & Computer Vision Engineer Message-ID: Dear All, I'm the founder of Snaptrude which is an early stage VC backed startup building an intelligent CAD software for real estate which transforms a hand drawn sketch of a floorplan to a 3D BIM (Building Information Model) model within a few seconds! Snaptrude has already got international recognition of being one amongst the top 3 companies in the world in AI/ML segment to be invited to TechCrunch Disrupt - SF 2017 and historically only the 3rd Indian Company ever to be invited for TechCrunch Disrupt. Snaptrude is looking for experienced & enthusiastic candidates to join for the positions of Full Stack Django Developer & Computer Vision Engineer. Please find the details below and do not hesitate to reach out to me on altaf at snaptrude.com if interested. Website: http://snaptrude.com Job Profile for Full Stack Developer: https://angel.co/snaptrude/jobs/280138-software-engineer Job Profile for Computer Vision Engineer: https://angel.co/snaptrude/jobs/280132-computer-vision-engineer Best Regards, Altaf Ganihar -- Altaf Ganihar *CEO* *Snaptrude* m: +91-7795462368 a: Brigade Gateway Campus, 26/1, Dr. Rajkumar Road, Malleswaram - Rajajinagar, Bangalore 560055, India w: www.snaptrude.com e: altaf at snaptrude.com From kracethekingmaker at gmail.com Wed Nov 29 04:07:02 2017 From: kracethekingmaker at gmail.com (kracekumar ramaraju) Date: Wed, 29 Nov 2017 14:37:02 +0530 Subject: [BangPypers] Tentative Sunday meetup with Wesley Chun Message-ID: Hi Wesley Chun [0] is in Bangalore this weekend and interested in talking at BangPypers. The current organizing team is unavailable on Sunday (3rd, Dec). Wesley Chun is the author of numerous Python books [1], well-known software engineer and more. It's an excellent chance to meet and have a conversation with him. We have a venue for the event, but there are no volunteers to coordinate, and conduct meetup. We need volunteers to do following tasks. 1. Talk to Wesley Chun about his plan on Sunday, the subject he would like to talk, and other logistic details. 2. Reply to meetup comments in after publishing the event. 3. Be in the venue before meetup commences and guide participants. 4. Coordinate with the host. If you're interested, please ping me offline with your phone number. Once there are volunteers, the next steps will come out. Thank you Noufal for connecting, and we may need your help once again for an introduction to Wesley Chun. [0]: https://twitter.com/wescpy/status/935462882266845185 [1]: http://corepython.com/ -- Thanks & Regards kracekumar http://kracekumar.com From noufal at nibrahim.net.in Wed Nov 29 05:21:31 2017 From: noufal at nibrahim.net.in (Noufal Ibrahim) Date: Wed, 29 Nov 2017 15:51:31 +0530 Subject: [BangPypers] Tentative Sunday meetup with Wesley Chun In-Reply-To: References: Message-ID: <78f058a98d48f1a19de4990a492c715e@nibrahim.net.in> On 2017-11-29 14:37, kracekumar ramaraju wrote: [..] > If you're interested, please ping me offline with your phone number. > Once > there are volunteers, the next steps will come out. > > Thank you Noufal for connecting, and we may need your help once again > for > an introduction to Wesley Chun. You're welcome. I've seen Wesley present at a few conferences. He's an engaging speaker and it'd be a good session if the details can be managed. I'm going to miss it though. :-/ From kracethekingmaker at gmail.com Thu Nov 30 07:54:27 2017 From: kracethekingmaker at gmail.com (kracekumar ramaraju) Date: Thu, 30 Nov 2017 18:24:27 +0530 Subject: [BangPypers] Tentative Sunday meetup with Wesley Chun In-Reply-To: <78f058a98d48f1a19de4990a492c715e@nibrahim.net.in> References: <78f058a98d48f1a19de4990a492c715e@nibrahim.net.in> Message-ID: Hi The details of the event are available on meetup page [0] and RSVP is open. [0]: https://www.meetup.com/BangPypers/events/245526556/