From deshpande.jaidev at gmail.com Fri Jul 1 02:35:15 2016 From: deshpande.jaidev at gmail.com (Jaidev Deshpande) Date: Fri, 01 Jul 2016 06:35:15 +0000 Subject: [Inpycon] Web API for junction Message-ID: Hi, Out of curiosity, does in.pycon.org/cfp/ have a REST API which will allow me to take a dump of all proposals and their related data? If so, where can I find how to use it? I think I can do this using BeautifulSoup or scrapy or some such tool, but it would be great if there's an API. Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: From thes.kumar at gmail.com Fri Jul 1 03:42:36 2016 From: thes.kumar at gmail.com (Saurabh Kumar) Date: Fri, 1 Jul 2016 13:12:36 +0530 Subject: [Inpycon] Web API for junction In-Reply-To: References: Message-ID: Hi Jaidev, ?Yes, there is an api that was used to display data on android and ios apps last year. It's not quite well documented and ?most likely you won't be able to get all the information that you need. Best place to look what's available is the source code as of now and would be great if while doing it, someone prepares a doc out of it. @krace thoughts? Cheers, ?--? *?*Saurabh Kumar https://saurabh-kumar.com On Fri, Jul 1, 2016 at 12:05 PM, Jaidev Deshpande < deshpande.jaidev at gmail.com> wrote: > Hi, > > Out of curiosity, does in.pycon.org/cfp/ have a REST API which will allow > me to take a dump of all proposals and their related data? If so, where can > I find how to use it? > > I think I can do this using BeautifulSoup or scrapy or some such tool, but > it would be great if there's an API. > > Thanks! > > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From deshpande.jaidev at gmail.com Fri Jul 1 03:57:50 2016 From: deshpande.jaidev at gmail.com (Jaidev Deshpande) Date: Fri, 01 Jul 2016 07:57:50 +0000 Subject: [Inpycon] Web API for junction In-Reply-To: References: Message-ID: On Fri, 1 Jul 2016 at 13:14 Saurabh Kumar wrote: > Hi Jaidev, > > ?Yes, there is an api that was used to display data on android and ios > apps last year. > > It's not quite well documented and ?most likely you won't be able to get > all the information that you need. Best place to look what's available is > the source code as of now and would be great if while doing it, someone > prepares a doc out of it. > Okay, I'm looking at this right now: https://github.com/pythonindia/junction/tree/master/junction Sorry for being lazy, but this is all pretty alien to me. What's the best way to start looking for the API? > > @krace thoughts? > > Cheers, > > ?--? > *?*Saurabh Kumar > https://saurabh-kumar.com > > Thanks again, > > On Fri, Jul 1, 2016 at 12:05 PM, Jaidev Deshpande < > deshpande.jaidev at gmail.com> wrote: > >> Hi, >> >> Out of curiosity, does in.pycon.org/cfp/ have a REST API which will >> allow me to take a dump of all proposals and their related data? If so, >> where can I find how to use it? >> >> I think I can do this using BeautifulSoup or scrapy or some such tool, >> but it would be great if there's an API. >> >> Thanks! >> >> >> _______________________________________________ >> Inpycon mailing list >> Inpycon at python.org >> https://mail.python.org/mailman/listinfo/inpycon >> >> > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > -------------- next part -------------- An HTML attachment was scrubbed... URL: From maithani.aniket at gmail.com Fri Jul 1 04:00:10 2016 From: maithani.aniket at gmail.com (Aniket Maithani) Date: Fri, 1 Jul 2016 13:30:10 +0530 Subject: [Inpycon] Web API for junction In-Reply-To: References: Message-ID: Well I guess there are four endpoints w.r.t to API's as I can see in urls.py . ----- url(r'^api/v1/devices/$', DeviceListApiView.as_view(), name='device-list'), url(r'^api/v1/devices/(?P<_uuid>[\w-]+)/$', DeviceDetailApiView.as_view(), name='device-detail'), # Feedback url('^api/v1/feedback_questions/$', FeedbackQuestionListApiView.as_view(), name='feedback-questions-list'), url('^api/v1/feedback/$', FeedbackListApiView.as_view(), name='feedback-list'), On Fri, Jul 1, 2016 at 1:27 PM, Jaidev Deshpande wrote: > > > On Fri, 1 Jul 2016 at 13:14 Saurabh Kumar wrote: > >> Hi Jaidev, >> >> ?Yes, there is an api that was used to display data on android and ios >> apps last year. >> >> It's not quite well documented and ?most likely you won't be able to get >> all the information that you need. Best place to look what's available is >> the source code as of now and would be great if while doing it, someone >> prepares a doc out of it. >> > > Okay, I'm looking at this right now: > https://github.com/pythonindia/junction/tree/master/junction > > Sorry for being lazy, but this is all pretty alien to me. What's the best > way to start looking for the API? > > >> >> @krace thoughts? >> >> Cheers, >> >> ?--? >> *?*Saurabh Kumar >> https://saurabh-kumar.com >> >> > Thanks again, > > >> >> On Fri, Jul 1, 2016 at 12:05 PM, Jaidev Deshpande < >> deshpande.jaidev at gmail.com> wrote: >> >>> Hi, >>> >>> Out of curiosity, does in.pycon.org/cfp/ have a REST API which will >>> allow me to take a dump of all proposals and their related data? If so, >>> where can I find how to use it? >>> >>> I think I can do this using BeautifulSoup or scrapy or some such tool, >>> but it would be great if there's an API. >>> >>> Thanks! >>> >>> >>> _______________________________________________ >>> Inpycon mailing list >>> Inpycon at python.org >>> https://mail.python.org/mailman/listinfo/inpycon >>> >>> >> _______________________________________________ >> Inpycon mailing list >> Inpycon at python.org >> https://mail.python.org/mailman/listinfo/inpycon >> > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > -- Aniket Maithani www.aniketmaithani.net -------------- next part -------------- An HTML attachment was scrubbed... URL: From ankur0493 at gmail.com Fri Jul 1 04:04:39 2016 From: ankur0493 at gmail.com (Ankur Gupta) Date: Fri, 1 Jul 2016 13:34:39 +0530 Subject: [Inpycon] Web API for junction In-Reply-To: References: Message-ID: On Fri, Jul 1, 2016 at 1:30 PM, Aniket Maithani wrote: > Well I guess there are four endpoints w.r.t to API's as I can see in > urls.py . > > ----- > > url(r'^api/v1/devices/$', DeviceListApiView.as_view(), name='device-list' > ), > url(r'^api/v1/devices/(?P<_uuid>[\w-]+)/$', DeviceDetailApiView.as_view(), > name='device-detail'), > # Feedback > url('^api/v1/feedback_questions/$', > FeedbackQuestionListApiView.as_view(), > name='feedback-questions-list'), > url('^api/v1/feedback/$', > FeedbackListApiView.as_view(), > name='feedback-list'), > These views do not seem to give any proposal data. w.r.t. Proposals, I see two serializers, but no corresponding views: junction/junction/proposals/serializers.py: class ProposalSerializer(serializers.HyperlinkedModelSerializer): class ProposalFilterSerializer(serializers.Serializer): -------------- next part -------------- An HTML attachment was scrubbed... URL: From me at kracekumar.com Fri Jul 1 04:12:03 2016 From: me at kracekumar.com (Kracekumar Ramaraj) Date: Fri, 1 Jul 2016 13:42:03 +0530 Subject: [Inpycon] Web API for junction In-Reply-To: References: Message-ID: On Fri, Jul 1, 2016 at 12:05 PM, Jaidev Deshpande < deshpande.jaidev at gmail.com> wrote: > Hi, > > Out of curiosity, does in.pycon.org/cfp/ have a REST API which will allow > me to take a dump of all proposals and their related data? If so, where can > I find how to use it? > > I think I can do this using BeautifulSoup or scrapy or some such tool, but > it would be great if there's an API. > > Thanks! > Please open a ticket in junction[1] or ask in gitter chat room [2]. [1]: https://github.com/pythonindia/junction [2]: https://gitter.im/pythonindia/junction > > -- Regards Kracekumar Ramaraj http://kracekumar.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From akshayaurora at gmail.com Fri Jul 1 10:18:43 2016 From: akshayaurora at gmail.com (qua non) Date: Fri, 1 Jul 2016 19:48:43 +0530 Subject: [Inpycon] Opinion on extending cpp submission date for CFP Message-ID: Hey folks, Thanks a lot for such a great response with our CFP. We now have 165 proposals. There have been some requests for extending the deadline for CFP, this mail is to ask for opinion from the community on what they think makes sense. 1. Extend the CFP date. 2. Don't extend the CFP date. We need to make this decision fast so as to be able to announce it by tomorrow morning. Please get in your suggestions by then so we can announce by tomorrow morning. Just reply to this mail to get your opinions to us. Regards. Akkshay - Team PyCon India -------------- next part -------------- An HTML attachment was scrubbed... URL: From deshpande.jaidev at gmail.com Fri Jul 1 10:20:47 2016 From: deshpande.jaidev at gmail.com (Jaidev Deshpande) Date: Fri, 01 Jul 2016 14:20:47 +0000 Subject: [Inpycon] Opinion on extending cpp submission date for CFP In-Reply-To: References: Message-ID: 2. On Fri, Jul 1, 2016, 7:49 PM qua non wrote: > Hey folks, > > Thanks a lot for such a great response with our CFP. > We now have 165 proposals. > > There have been some requests for extending the deadline for CFP, this > mail is to ask for opinion from the community on what they think makes > sense. > > 1. Extend the CFP date. > 2. Don't extend the CFP date. > > We need to make this decision fast so as to be able to announce it by > tomorrow morning. > Please get in your suggestions by then so we can announce by tomorrow > morning. > > Just reply to this mail to get your opinions to us. > > > Regards. > Akkshay - Team PyCon India > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > -------------- next part -------------- An HTML attachment was scrubbed... URL: From maithani.aniket at gmail.com Fri Jul 1 10:24:17 2016 From: maithani.aniket at gmail.com (Aniket Maithani) Date: Fri, 1 Jul 2016 19:54:17 +0530 Subject: [Inpycon] Opinion on extending cpp submission date for CFP In-Reply-To: References: Message-ID: On Fri, Jul 1, 2016, 7:49 PM qua non wrote: > >> Hey folks, >> >> Thanks a lot for such a great response with our CFP. >> We now have 165 proposals. >> >> There have been some requests for extending the deadline for CFP, this >> mail is to ask for opinion from the community on what they think makes >> sense. >> >> 1. Extend the CFP date. >> 2. Don't extend the CFP date. >> > > Don't Extend > >> We need to make this decision fast so as to be able to announce it by >> tomorrow morning. >> Please get in your suggestions by then so we can announce by tomorrow >> morning. >> >> Just reply to this mail to get your opinions to us. >> >> >> Regards. >> Akkshay - Team PyCon India >> > > -- Aniket Maithani www.aniketmaithani.net -------------- next part -------------- An HTML attachment was scrubbed... URL: From ankur0493 at gmail.com Fri Jul 1 10:26:09 2016 From: ankur0493 at gmail.com (Ankur Gupta) Date: Fri, 1 Jul 2016 19:56:09 +0530 Subject: [Inpycon] Opinion on extending cpp submission date for CFP In-Reply-To: References: Message-ID: 2. Don't extend Regards, Ankur Gupta On 1 Jul 2016 7:49 pm, "qua non" wrote: > Hey folks, > > Thanks a lot for such a great response with our CFP. > We now have 165 proposals. > > There have been some requests for extending the deadline for CFP, this > mail is to ask for opinion from the community on what they think makes > sense. > > 1. Extend the CFP date. > 2. Don't extend the CFP date. > > We need to make this decision fast so as to be able to announce it by > tomorrow morning. > Please get in your suggestions by then so we can announce by tomorrow > morning. > > Just reply to this mail to get your opinions to us. > > > Regards. > Akkshay - Team PyCon India > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mayank26saxena at gmail.com Fri Jul 1 10:40:32 2016 From: mayank26saxena at gmail.com (Mayank Saxena) Date: Fri, 01 Jul 2016 14:40:32 +0000 Subject: [Inpycon] Opinion on extending cpp submission date for CFP In-Reply-To: References: Message-ID: 2. Don't extend. On Fri, Jul 1, 2016, 8:04 PM Ankur Gupta wrote: > 2. Don't extend > > Regards, > Ankur Gupta > > On 1 Jul 2016 7:49 pm, "qua non" wrote: > >> Hey folks, >> >> Thanks a lot for such a great response with our CFP. >> We now have 165 proposals. >> >> There have been some requests for extending the deadline for CFP, this >> mail is to ask for opinion from the community on what they think makes >> sense. >> >> 1. Extend the CFP date. >> 2. Don't extend the CFP date. >> >> We need to make this decision fast so as to be able to announce it by >> tomorrow morning. >> Please get in your suggestions by then so we can announce by tomorrow >> morning. >> >> Just reply to this mail to get your opinions to us. >> >> >> Regards. >> Akkshay - Team PyCon India >> >> _______________________________________________ >> Inpycon mailing list >> Inpycon at python.org >> https://mail.python.org/mailman/listinfo/inpycon >> >> _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > -------------- next part -------------- An HTML attachment was scrubbed... URL: From akarambir at gmail.com Fri Jul 1 10:53:43 2016 From: akarambir at gmail.com (Karambir Singh Nain) Date: Fri, 1 Jul 2016 20:23:43 +0530 Subject: [Inpycon] Opinion on extending cpp submission date for CFP In-Reply-To: References: Message-ID: 2. Don't extend. We should be strict with our timelines. Otherwise people will take other things for granted as well. On 01/07/16 8:10 PM, Mayank Saxena wrote: > 2. Don't extend. > > > On Fri, Jul 1, 2016, 8:04 PM Ankur Gupta > wrote: > > 2. Don't extend > > Regards, > Ankur Gupta > > > On 1 Jul 2016 7:49 pm, "qua non" > wrote: > > Hey folks, > > Thanks a lot for such a great response with our CFP. > We now have 165 proposals. > > There have been some requests for extending the deadline for > CFP, this mail is to ask for opinion from the community on what > they think makes sense. > > 1. Extend the CFP date. > 2. Don't extend the CFP date. > > We need to make this decision fast so as to be able to announce > it by tomorrow morning. > Please get in your suggestions by then so we can announce by > tomorrow morning. > > Just reply to this mail to get your opinions to us. > > > Regards. > Akkshay - Team PyCon India > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > Karambir Singh Nain https://nainomics.in +91-9560526929 -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 801 bytes Desc: OpenPGP digital signature URL: From kushaldas at gmail.com Fri Jul 1 10:54:27 2016 From: kushaldas at gmail.com (Kushal Das) Date: Fri, 1 Jul 2016 20:24:27 +0530 Subject: [Inpycon] Opinion on extending cpp submission date for CFP In-Reply-To: References: Message-ID: On Fri, Jul 1, 2016 at 7:48 PM, qua non wrote: > Hey folks, > > Thanks a lot for such a great response with our CFP. > We now have 165 proposals. > > There have been some requests for extending the deadline for CFP, this mail > is to ask for opinion from the community on what they think makes sense. > > 1. Extend the CFP date. > 2. Don't extend the CFP date. > Personal preference: Do not extend. Kushal -- Fedora Cloud Engineer CPython Core Developer http://kushaldas.in From sanyam.khurana01 at gmail.com Fri Jul 1 10:58:41 2016 From: sanyam.khurana01 at gmail.com (Sanyam Khurana) Date: Fri, 1 Jul 2016 20:28:41 +0530 Subject: [Inpycon] Opinion on extending cpp submission date for CFP In-Reply-To: References: Message-ID: Hi, > > There have been some requests for extending the deadline for CFP, this mail > is to ask for opinion from the community on what they think makes sense. > > 1. Extend the CFP date. > 2. Don't extend the CFP date. > > We need to make this decision fast so as to be able to announce it by > tomorrow morning. > Please get in your suggestions by then so we can announce by tomorrow > morning. IMHO, we shouldn't extend the deadline. -- www.SanyamKhurana.com Github: CuriousLearner From 7895pulkit at gmail.com Fri Jul 1 11:00:17 2016 From: 7895pulkit at gmail.com (Pulkit Goyal) Date: Fri, 1 Jul 2016 20:30:17 +0530 Subject: [Inpycon] Opinion on extending cpp submission date for CFP In-Reply-To: References: Message-ID: >> There have been some requests for extending the deadline for CFP, this mail >> is to ask for opinion from the community on what they think makes sense. >> >> 1. Extend the CFP date. >> 2. Don't extend the CFP date. Don't. From sayan.chowdhury2012 at gmail.com Fri Jul 1 11:03:52 2016 From: sayan.chowdhury2012 at gmail.com (Sayan Chowdhury) Date: Fri, 1 Jul 2016 20:33:52 +0530 Subject: [Inpycon] Opinion on extending cpp submission date for CFP In-Reply-To: References: Message-ID: On Fri, Jul 1, 2016 at 7:48 PM, qua non wrote: > Hey folks, > > Thanks a lot for such a great response with our CFP. > We now have 165 proposals. > > There have been some requests for extending the deadline for CFP, this mail > is to ask for opinion from the community on what they think makes sense. > > 1. Extend the CFP date. > 2. Don't extend the CFP date. > IMO, The CFP deadline should not be extended. -- 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 noufal at nibrahim.net.in Fri Jul 1 11:48:09 2016 From: noufal at nibrahim.net.in (Noufal Ibrahim KV) Date: Fri, 01 Jul 2016 21:18:09 +0530 Subject: [Inpycon] Opinion on extending cpp submission date for CFP In-Reply-To: (qua non's message of "Fri, 1 Jul 2016 19:48:43 +0530") References: Message-ID: <87vb0pz7eu.fsf@nibrahim.net.in> Don't extend. We have 165 proposals and only a little time before the conference. There seem to be no plus points in extending the deadline. -- Cordially, Noufal http://nibrahim.net.in From anandpillai at letterboxes.org Sat Jul 2 03:13:40 2016 From: anandpillai at letterboxes.org (Anand B Pillai) Date: Sat, 2 Jul 2016 12:43:40 +0530 Subject: [Inpycon] Opinion on extending cpp submission date for CFP In-Reply-To: <87vb0pz7eu.fsf@nibrahim.net.in> References: <87vb0pz7eu.fsf@nibrahim.net.in> Message-ID: <715167e9-8dfb-f145-26b0-118cd3b601f1@letterboxes.org> On Friday 01 July 2016 09:18 PM, Noufal Ibrahim KV wrote: > > Don't extend. We have 165 proposals and only a little time before the > conference. There seem to be no plus points in extending the deadline. +1. No time to extend. The timeframes are too squeezed among CFP, selection of talks, feedback, upload of presentations etc. > -- Regards, --Anand ---------------------------- Software Architect/Consultant anandpillai at letterboxes.org http://twitter.com/skeptichacker From sree at mahiti.org Sat Jul 2 03:21:10 2016 From: sree at mahiti.org (Sreekanth S Rameshaiah) Date: Sat, 02 Jul 2016 07:21:10 +0000 Subject: [Inpycon] Opinion on extending cpp submission date for CFP In-Reply-To: <715167e9-8dfb-f145-26b0-118cd3b601f1@letterboxes.org> References: <87vb0pz7eu.fsf@nibrahim.net.in> <715167e9-8dfb-f145-26b0-118cd3b601f1@letterboxes.org> Message-ID: On Sat, 2 Jul 2016 at 12:43 Anand B Pillai wrote: > On Friday 01 July 2016 09:18 PM, Noufal Ibrahim KV wrote: > > > > Don't extend. We have 165 proposals and only a little time before the > > conference. There seem to be no plus points in extending the deadline. > > +1. No time to extend. The timeframes are too squeezed among CFP, > selection of talks, feedback, upload of presentations etc. > We have always had heated debate post conf on quality of talks. If so many people are requesting, we should keep it open for 48 more hours from closing date. Suggest extending it till 3rd June 2016. This will not skew the timelines greatly. - sree -- Sreekanth S R Exec Director Mahiti Infotech Pvt Ltd +91-98455-12611 http://mahiti.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From ankur0493 at gmail.com Sat Jul 2 03:32:57 2016 From: ankur0493 at gmail.com (Ankur Gupta) Date: Sat, 2 Jul 2016 13:02:57 +0530 Subject: [Inpycon] Opinion on extending cpp submission date for CFP In-Reply-To: References: <87vb0pz7eu.fsf@nibrahim.net.in> <715167e9-8dfb-f145-26b0-118cd3b601f1@letterboxes.org> Message-ID: On Sat, Jul 2, 2016 at 12:51 PM, Sreekanth S Rameshaiah wrote: > [..] > We have always had heated debate post conf on quality of talks. If so many > people are requesting, we should keep it open for 48 more hours from > closing date. Suggest extending it till 3rd June 2016. This will not skew > the timelines greatly. > So many people? Not even one people in this thread suggested extending. -------------- next part -------------- An HTML attachment was scrubbed... URL: From sree at mahiti.org Sat Jul 2 03:37:17 2016 From: sree at mahiti.org (Sreekanth S Rameshaiah) Date: Sat, 02 Jul 2016 07:37:17 +0000 Subject: [Inpycon] Opinion on extending cpp submission date for CFP In-Reply-To: References: <87vb0pz7eu.fsf@nibrahim.net.in> <715167e9-8dfb-f145-26b0-118cd3b601f1@letterboxes.org> Message-ID: Not us. Was referring to those who still want to submit their talks and re requesting for extension. - sree On Sat, 2 Jul 2016 at 13:03 Ankur Gupta wrote: > On Sat, Jul 2, 2016 at 12:51 PM, Sreekanth S Rameshaiah > wrote: > >> [..] >> > We have always had heated debate post conf on quality of talks. If so many >> people are requesting, we should keep it open for 48 more hours from >> closing date. Suggest extending it till 3rd June 2016. This will not skew >> the timelines greatly. >> > > So many people? Not even one people in this thread suggested extending. > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > -- Sreekanth S R Exec Director Mahiti Infotech Pvt Ltd +91-98455-12611 http://mahiti.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From deshpande.jaidev at gmail.com Sat Jul 2 03:42:06 2016 From: deshpande.jaidev at gmail.com (Jaidev Deshpande) Date: Sat, 02 Jul 2016 07:42:06 +0000 Subject: [Inpycon] Opinion on extending cpp submission date for CFP In-Reply-To: References: <87vb0pz7eu.fsf@nibrahim.net.in> <715167e9-8dfb-f145-26b0-118cd3b601f1@letterboxes.org> Message-ID: On Sat, 2 Jul 2016 at 13:08 Sreekanth S Rameshaiah wrote: > Not us. Was referring to those who still want to submit their talks and re > requesting for extension. > - sree > Apart from the consensus, I think we shouldn't do it for the simple reason that CFP deadlines should be extended only when the CFP is still open. We've already closed it, opening it up again might create some confusion. People who have finished their proposals would be working on making up the content and addressing feedback. Extending the CFP might throw them off their plans. > > On Sat, 2 Jul 2016 at 13:03 Ankur Gupta wrote: > >> On Sat, Jul 2, 2016 at 12:51 PM, Sreekanth S Rameshaiah >> wrote: >> >>> [..] >>> >> We have always had heated debate post conf on quality of talks. If so >>> many people are requesting, we should keep it open for 48 more hours from >>> closing date. Suggest extending it till 3rd June 2016. This will not skew >>> the timelines greatly. >>> >> >> So many people? Not even one people in this thread suggested extending. >> _______________________________________________ >> Inpycon mailing list >> Inpycon at python.org >> https://mail.python.org/mailman/listinfo/inpycon >> > -- > Sreekanth S R > Exec Director > Mahiti Infotech Pvt Ltd > +91-98455-12611 > http://mahiti.org > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > -------------- next part -------------- An HTML attachment was scrubbed... URL: From anandpillai at letterboxes.org Sat Jul 2 04:19:13 2016 From: anandpillai at letterboxes.org (Anand B Pillai) Date: Sat, 2 Jul 2016 13:49:13 +0530 Subject: [Inpycon] Opinion on extending cpp submission date for CFP In-Reply-To: References: <87vb0pz7eu.fsf@nibrahim.net.in> <715167e9-8dfb-f145-26b0-118cd3b601f1@letterboxes.org> Message-ID: On Saturday 02 July 2016 01:12 PM, Jaidev Deshpande wrote: > > On Sat, 2 Jul 2016 at 13:08 Sreekanth S Rameshaiah > wrote: > > Not us. Was referring to those who still want to submit their talks > and re requesting for extension. > - sree > > > Apart from the consensus, I think we shouldn't do it for the simple > reason that CFP deadlines should be extended only when the CFP is still > open. We've already closed it, opening it up again might create some > confusion. People who have finished their proposals would be working on > making up the content and addressing feedback. Extending the CFP might > throw them off their plans. I believe 165 talks is a very good pool to make a selection from. Quite possibly any extension would only invite hurriedly submitted proposals which by the very nature of being submitted at the end, may not be good - I admit I may be a far fetched here a bit, but a good possibility of it. We should make an extension *only* if the selection committee feels the pool needs to be enriched with more quality submissions - not for inviting arbitrary "n" number of fresh submissions. I don't think this is the case. > > > > On Sat, 2 Jul 2016 at 13:03 Ankur Gupta > wrote: > > On Sat, Jul 2, 2016 at 12:51 PM, Sreekanth S Rameshaiah > > wrote: > > [..] > > We have always had heated debate post conf on quality of > talks. If so many people are requesting, we should keep it > open for 48 more hours from closing date. Suggest extending > it till 3rd June 2016. This will not skew the timelines greatly. > > > So many people? Not even one people in this thread suggested > extending. > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > -- > Sreekanth S R > Exec Director > Mahiti Infotech Pvt Ltd > +91-98455-12611 > http://mahiti.org > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > -- Regards, --Anand ---------------------------- Software Architect/Consultant anandpillai at letterboxes.org http://twitter.com/skeptichacker From anuvrat at anuvrat.in Wed Jul 6 04:42:38 2016 From: anuvrat at anuvrat.in (Anuvrat Parashar) Date: Wed, 6 Jul 2016 14:12:38 +0530 Subject: [Inpycon] Python Month Message-ID: Namaste Community Pycon India is just around the corner now. Should we have a python month full of workshops for its promotion just like last year, managed over PythonExpress? We also need help in reaching out to colleges and creating awareness about the event. On an individual level we are telling our juniors and professors, but wouldn't a coordinated pan-india drive have more impact? Regards -- Anuvrat Parashar http://anuvrat.in -------------- next part -------------- An HTML attachment was scrubbed... URL: From madduanil at gmail.com Wed Jul 6 06:57:53 2016 From: madduanil at gmail.com (anil maddu) Date: Wed, 6 Jul 2016 16:27:53 +0530 Subject: [Inpycon] Python Month In-Reply-To: References: Message-ID: Sounds like a good idea, if we have any Python Experts from *Hyderabad*, i can help organize a workshop. On Wed, Jul 6, 2016 at 2:12 PM, Anuvrat Parashar wrote: > Namaste Community > > Pycon India is just around the corner now. Should we have a python month > full of workshops for its promotion just like last year, managed over > PythonExpress? > > We also need help in reaching out to colleges and creating awareness about > the event. On an individual level we are telling our juniors and > professors, but wouldn't a coordinated pan-india drive have more impact? > > Regards > -- > Anuvrat Parashar > http://anuvrat.in > > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From vnbang2003 at gmail.com Wed Jul 6 11:54:52 2016 From: vnbang2003 at gmail.com (vijay kumar) Date: Wed, 6 Jul 2016 21:24:52 +0530 Subject: [Inpycon] Python Month In-Reply-To: References: Message-ID: There are couple of volunteers who are ready to travel to Hyderabad for workshop. I think even local volunteers will be able to help once they see workshop request. On Wed, Jul 6, 2016 at 4:27 PM, anil maddu wrote: > Sounds like a good idea, if we have any Python Experts from *Hyderabad*, > i can help organize a workshop. > > On Wed, Jul 6, 2016 at 2:12 PM, Anuvrat Parashar > wrote: > >> Namaste Community >> >> Pycon India is just around the corner now. Should we have a python month >> full of workshops for its promotion just like last year, managed over >> PythonExpress? >> >> We also need help in reaching out to colleges and creating awareness >> about the event. On an individual level we are telling our juniors and >> professors, but wouldn't a coordinated pan-india drive have more impact? >> >> Regards >> -- >> Anuvrat Parashar >> http://anuvrat.in >> >> >> _______________________________________________ >> Inpycon mailing list >> Inpycon at python.org >> https://mail.python.org/mailman/listinfo/inpycon >> >> > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > -- Thanks, Vijay -------------- next part -------------- An HTML attachment was scrubbed... URL: From satyaakam at gmail.com Wed Jul 6 21:44:13 2016 From: satyaakam at gmail.com (satyaakam goswami) Date: Thu, 7 Jul 2016 07:14:13 +0530 Subject: [Inpycon] First Gold Sponsor for PyCon India 2016 Message-ID: Hello everyone, Delighted to announce our first Gold Sponsor: Redhat !! https://in.pycon.org/2016/#sponsorshttps://in.pycon.org/2016 Thanks Redhat for supporting PyCon India all these Years. Team PyCon India 2016 -------------- next part -------------- An HTML attachment was scrubbed... URL: From foss.mailinglists at gmail.com Wed Jul 6 22:38:36 2016 From: foss.mailinglists at gmail.com (sankarshan) Date: Thu, 7 Jul 2016 08:08:36 +0530 Subject: [Inpycon] First Gold Sponsor for PyCon India 2016 In-Reply-To: References: Message-ID: On Thu, Jul 7, 2016 at 7:14 AM, satyaakam goswami wrote: > Hello everyone, > > Delighted to announce our first Gold Sponsor: Redhat !! > "Red Hat" vide. > https://in.pycon.org/2016/#sponsors > https://in.pycon.org/2016 > > Thanks Redhat for supporting PyCon India all these Years. > > > Team PyCon India 2016 > > > > > > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > -- sankarshan mukhopadhyay From madduanil at gmail.com Thu Jul 7 01:01:25 2016 From: madduanil at gmail.com (anil maddu) Date: Thu, 7 Jul 2016 10:31:25 +0530 Subject: [Inpycon] Python Month In-Reply-To: References: Message-ID: In that case i can take care of the venue and local logistics. Let me know workshop topic, Volunteer details,available dates etc. this would help me coordinate and roll out a workshop. Regards, Anil On Wed, Jul 6, 2016 at 9:24 PM, vijay kumar wrote: > There are couple of volunteers who are ready to travel to Hyderabad for > workshop. > I think even local volunteers will be able to help once they see workshop > request. > > > On Wed, Jul 6, 2016 at 4:27 PM, anil maddu wrote: > >> Sounds like a good idea, if we have any Python Experts from *Hyderabad*, >> i can help organize a workshop. >> >> On Wed, Jul 6, 2016 at 2:12 PM, Anuvrat Parashar >> wrote: >> >>> Namaste Community >>> >>> Pycon India is just around the corner now. Should we have a python month >>> full of workshops for its promotion just like last year, managed over >>> PythonExpress? >>> >>> We also need help in reaching out to colleges and creating awareness >>> about the event. On an individual level we are telling our juniors and >>> professors, but wouldn't a coordinated pan-india drive have more impact? >>> >>> Regards >>> -- >>> Anuvrat Parashar >>> http://anuvrat.in >>> >>> >>> _______________________________________________ >>> Inpycon mailing list >>> Inpycon at python.org >>> https://mail.python.org/mailman/listinfo/inpycon >>> >>> >> >> _______________________________________________ >> Inpycon mailing list >> Inpycon at python.org >> https://mail.python.org/mailman/listinfo/inpycon >> >> > > > -- > Thanks, > Vijay > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From satyaakam at gmail.com Thu Jul 7 01:29:14 2016 From: satyaakam at gmail.com (satyaakam goswami) Date: Thu, 7 Jul 2016 10:59:14 +0530 Subject: [Inpycon] First Gold Sponsor for PyCon India 2016 In-Reply-To: References: Message-ID: > > > > > Delighted to announce our first Gold Sponsor: Redhat !! > > > > "Red Hat" vide. > Thanks Sankarshan for correction will follow them. -Satya -------------- next part -------------- An HTML attachment was scrubbed... URL: From raghavendra.pj at gmail.com Thu Jul 7 02:16:42 2016 From: raghavendra.pj at gmail.com (Raghavendra Pathi J) Date: Thu, 7 Jul 2016 11:46:42 +0530 Subject: [Inpycon] Python Month In-Reply-To: References: Message-ID: Do we have a portal or a calender where I can see all the workshop requests? On Thu, Jul 7, 2016 at 10:31 AM, anil maddu wrote: > In that case i can take care of the venue and local logistics. Let me know > workshop topic, Volunteer details,available dates etc. this would help me > coordinate and roll out a workshop. > > Regards, > Anil > > On Wed, Jul 6, 2016 at 9:24 PM, vijay kumar wrote: > >> There are couple of volunteers who are ready to travel to Hyderabad for >> workshop. >> I think even local volunteers will be able to help once they see workshop >> request. >> >> >> On Wed, Jul 6, 2016 at 4:27 PM, anil maddu wrote: >> >>> Sounds like a good idea, if we have any Python Experts from *Hyderabad*, >>> i can help organize a workshop. >>> >>> On Wed, Jul 6, 2016 at 2:12 PM, Anuvrat Parashar >>> wrote: >>> >>>> Namaste Community >>>> >>>> Pycon India is just around the corner now. Should we have a python >>>> month full of workshops for its promotion just like last year, managed over >>>> PythonExpress? >>>> >>>> We also need help in reaching out to colleges and creating awareness >>>> about the event. On an individual level we are telling our juniors and >>>> professors, but wouldn't a coordinated pan-india drive have more impact? >>>> >>>> Regards >>>> -- >>>> Anuvrat Parashar >>>> http://anuvrat.in >>>> >>>> >>>> _______________________________________________ >>>> Inpycon mailing list >>>> Inpycon at python.org >>>> https://mail.python.org/mailman/listinfo/inpycon >>>> >>>> >>> >>> _______________________________________________ >>> Inpycon mailing list >>> Inpycon at python.org >>> https://mail.python.org/mailman/listinfo/inpycon >>> >>> >> >> >> -- >> Thanks, >> Vijay >> >> _______________________________________________ >> Inpycon mailing list >> Inpycon at python.org >> https://mail.python.org/mailman/listinfo/inpycon >> >> > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > -- Raghavendra Pathi J -------------- next part -------------- An HTML attachment was scrubbed... URL: From ankur0493 at gmail.com Thu Jul 7 02:25:23 2016 From: ankur0493 at gmail.com (Ankur Gupta) Date: Thu, 7 Jul 2016 11:55:23 +0530 Subject: [Inpycon] Python Month In-Reply-To: References: Message-ID: Hi, On Thu, Jul 7, 2016 at 11:46 AM, Raghavendra Pathi J < raghavendra.pj at gmail.com> wrote: > Do we have a portal or a calender where I can see all the workshop > requests? > https://pythonexpress.in/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From chandankumar.093047 at gmail.com Thu Jul 7 03:03:27 2016 From: chandankumar.093047 at gmail.com (chandan kumar) Date: Thu, 7 Jul 2016 12:33:27 +0530 Subject: [Inpycon] devsprint at pycon In-Reply-To: References: Message-ID: Hello , On Thu, Jun 23, 2016 at 12:30 PM, qua non wrote: > I personally am for letting people decide when they want the dev sprints. > > There can be a compromise where we book the workshop day and the > conference days and two days after the conference for dev sprints. > > So that is one day before the conf, 2 days during the cons, 2 days after. > > Let people decide when they want to attend, the halls are available to us > till 9:00 pm so it's unto the users if they want to stay late till late. > > I am posting the video of the committee hall that will be used to host the > dev sprint https://www.youtube.com/watch?v=K3HxAg4Qu0I > > So people can get a idea of the space . > > Do we came to any conclusion to host DevSprint this year? Thanks, Chandan Kumar -------------- next part -------------- An HTML attachment was scrubbed... URL: From sahiljoseph20 at gmail.com Thu Jul 7 05:02:20 2016 From: sahiljoseph20 at gmail.com (Sahil Joseph) Date: Thu, 7 Jul 2016 14:32:20 +0530 Subject: [Inpycon] PyCon India 2016 - Key Note Speaker Message-ID: Hello everyone, We are delighted to anounce our first keynote speaker for PyCon India 2016, Baishyaampayan Ghose. Baishampayan "BG" Ghose is CTO/Co-founder at Helpshift, Inc. BG is a career functional programmer with exposure to a wide variety of programming languages and paradigms. His areas of interests are Semantics of Programming Languages, Distributed Systems, Software Design and the intersection of Software, Culture and Society." Regards Team PyCon India -------------- next part -------------- An HTML attachment was scrubbed... URL: From b.ghose at gmail.com Thu Jul 7 05:13:14 2016 From: b.ghose at gmail.com (Baishampayan Ghose) Date: Thu, 7 Jul 2016 14:43:14 +0530 Subject: [Inpycon] PyCon India 2016 - Key Note Speaker In-Reply-To: References: Message-ID: The name is Baishampayan Ghose. Thank you for having me! ~BG On Thu, Jul 7, 2016 at 2:32 PM, Sahil Joseph wrote: > Hello everyone, > > We are delighted to anounce our first keynote speaker for PyCon India 2016, > Baishyaampayan Ghose. > > Baishampayan "BG" Ghose is CTO/Co-founder at Helpshift, Inc. BG is a > career functional programmer with exposure to a wide variety of > programming languages and paradigms. > > His areas of interests are Semantics of Programming Languages, Distributed > Systems, Software Design and the intersection of Software, Culture and > Society." > > > Regards > Team PyCon India > > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > -- Baishampayan Ghose b.ghose at gmail.com From akshayaurora at gmail.com Thu Jul 7 05:36:50 2016 From: akshayaurora at gmail.com (qua non) Date: Thu, 7 Jul 2016 15:06:50 +0530 Subject: [Inpycon] Suggestion on `associate` sponsorship for PyCon India Message-ID: Due to popular demand, we are considering to add the slot of a associate sponsor that will be allowed to have their logo on website and in social media as a sponsor, for 50,000+ taxes. Please let us know of what you guys think of this. Regards Akkshay Team PyCon India 2016 -------------- next part -------------- An HTML attachment was scrubbed... URL: From akshayaurora at gmail.com Thu Jul 7 05:41:43 2016 From: akshayaurora at gmail.com (qua non) Date: Thu, 7 Jul 2016 15:11:43 +0530 Subject: [Inpycon] PyCon India 2016 - Key Note Speaker In-Reply-To: References: Message-ID: Apologies Baishampayan, we will slate Sahil for a special course on how to spell Indian names correctly ;). On Thu, Jul 7, 2016 at 2:43 PM, Baishampayan Ghose wrote: > The name is Baishampayan Ghose. Thank you for having me! ~BG > > On Thu, Jul 7, 2016 at 2:32 PM, Sahil Joseph > wrote: > > Hello everyone, > > > > We are delighted to anounce our first keynote speaker for PyCon India > 2016, > > Baishyaampayan Ghose. > > > > Baishampayan "BG" Ghose is CTO/Co-founder at Helpshift, Inc. BG is a > > career functional programmer with exposure to a wide variety of > > programming languages and paradigms. > > > > His areas of interests are Semantics of Programming Languages, > Distributed > > Systems, Software Design and the intersection of Software, Culture and > > Society." > > > > > > Regards > > Team PyCon India > > > > > > _______________________________________________ > > Inpycon mailing list > > Inpycon at python.org > > https://mail.python.org/mailman/listinfo/inpycon > > > > > > -- > Baishampayan Ghose > b.ghose at gmail.com > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > -------------- next part -------------- An HTML attachment was scrubbed... URL: From b.ghose at gmail.com Thu Jul 7 08:04:22 2016 From: b.ghose at gmail.com (Baishampayan Ghose) Date: Thu, 7 Jul 2016 17:34:22 +0530 Subject: [Inpycon] PyCon India 2016 - Key Note Speaker In-Reply-To: References: Message-ID: Haha, no worries, Akshay/Sahil. ~BG On Thu, Jul 7, 2016 at 3:11 PM, qua non wrote: > Apologies Baishampayan, we will slate Sahil for a special course on how to > spell Indian names correctly ;). > > On Thu, Jul 7, 2016 at 2:43 PM, Baishampayan Ghose > wrote: >> >> The name is Baishampayan Ghose. Thank you for having me! ~BG >> >> On Thu, Jul 7, 2016 at 2:32 PM, Sahil Joseph >> wrote: >> > Hello everyone, >> > >> > We are delighted to anounce our first keynote speaker for PyCon India >> > 2016, >> > Baishyaampayan Ghose. >> > >> > Baishampayan "BG" Ghose is CTO/Co-founder at Helpshift, Inc. BG is a >> > career functional programmer with exposure to a wide variety of >> > programming languages and paradigms. >> > >> > His areas of interests are Semantics of Programming Languages, >> > Distributed >> > Systems, Software Design and the intersection of Software, Culture and >> > Society." >> > >> > >> > Regards >> > Team PyCon India >> > >> > >> > _______________________________________________ >> > Inpycon mailing list >> > Inpycon at python.org >> > https://mail.python.org/mailman/listinfo/inpycon >> > >> >> >> >> -- >> Baishampayan Ghose >> b.ghose at gmail.com >> _______________________________________________ >> Inpycon mailing list >> Inpycon at python.org >> https://mail.python.org/mailman/listinfo/inpycon > > > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > -- Baishampayan Ghose b.ghose at gmail.com From anandology at gmail.com Thu Jul 7 14:30:47 2016 From: anandology at gmail.com (Anand Chitipothu) Date: Thu, 07 Jul 2016 18:30:47 +0000 Subject: [Inpycon] Suggestion on `associate` sponsorship for PyCon India In-Reply-To: References: Message-ID: On Thu, 7 Jul 2016 at 15:07 qua non wrote: > > Due to popular demand, we are considering to add the slot of a associate > sponsor that will be allowed to have their logo on website and in social > media as a sponsor, for 50,000+ taxes. > > Please let us know of what you guys think of this. > I think it is a good move. It would be better to offer some more benefits to the the associate slab. Let me explain my reasoning. It has become very hard for startups and small businesses to participate in the conference as the entry-level sponsorship, even considering the 50% startup discount, is too high (close to 1.5L including taxes). Compared to last year, both silver and gold sponsorship rates were raised by one lakh and platinum by 1.5 lakh. In relative figures, silver was raised by 66.66% and gold/platinum were raised by 33.33%, which was unfair to the silver level. IMHO, in addition to revenue generation, sponsorship is also a way to engage with the companies interested in Python and connect them with the community. So PyCon India should try to attract as many companies as possible, by keep the barrier low and give them a space to showcase their work and interact with the greater Python community. I strongly recommend to reduce the reduce the price per slab and try to get more sponsors from next year. Now coming the associate slab, I don't think the companies will get enough engagement just by putting their logo on the website and social media. They probably need a physical space to showcase their work and interact with people. It is not possible to give them a table as that is offered as part of silver slab. My suggestion is to have some kind of startup expo for an hour or so and give a table to all the associate sponsors just for that one hour. We can plan that around the evening tea break and make the break a little longer. US PyCon used to have something like that when I've attended it couple of year ago. What do you think? Anand -------------- next part -------------- An HTML attachment was scrubbed... URL: From thinrhino at gmail.com Fri Jul 8 02:18:48 2016 From: thinrhino at gmail.com (Thin Rhino) Date: Fri, 8 Jul 2016 11:48:48 +0530 Subject: [Inpycon] Suggestion on `associate` sponsorship for PyCon India In-Reply-To: References: Message-ID: On 8 July 2016 at 00:00, Anand Chitipothu wrote: > > On Thu, 7 Jul 2016 at 15:07 qua non wrote: > >> >> Due to popular demand, we are considering to add the slot of a associate >> sponsor that will be allowed to have their logo on website and in social >> media as a sponsor, for 50,000+ taxes. >> >> Please let us know of what you guys think of this. >> > > > My suggestion is to have some kind of startup expo for an hour or so and > give a table to all the associate sponsors just for that one hour. We can > plan that around the evening tea break and make the break a little longer. US > PyCon used to have something like that when I've attended it couple of year > ago. > They can give lighting talks post lunch, utilize that time for people to get back to the auditorium post lunch. Cheers Aditya -- "Ship is safe at harbor but it is not made for that." -------------- next part -------------- An HTML attachment was scrubbed... URL: From anandpillai at letterboxes.org Fri Jul 8 02:55:59 2016 From: anandpillai at letterboxes.org (Anand B Pillai) Date: Fri, 8 Jul 2016 12:25:59 +0530 Subject: [Inpycon] PyCon India 2016 - Key Note Speaker In-Reply-To: References: Message-ID: <79e6b001-4ed0-f56a-9d08-1490e0f8fb8e@letterboxes.org> On Thursday 07 July 2016 02:43 PM, Baishampayan Ghose wrote: > The name is Baishampayan Ghose. Thank you for having me! ~BG > Great to see BG as keynote speaker! Kudos to BG and PyCon India team. Regards, --Anand > On Thu, Jul 7, 2016 at 2:32 PM, Sahil Joseph wrote: >> Hello everyone, >> >> We are delighted to anounce our first keynote speaker for PyCon India 2016, >> Baishyaampayan Ghose. >> >> Baishampayan "BG" Ghose is CTO/Co-founder at Helpshift, Inc. BG is a >> career functional programmer with exposure to a wide variety of >> programming languages and paradigms. >> >> His areas of interests are Semantics of Programming Languages, Distributed >> Systems, Software Design and the intersection of Software, Culture and >> Society." >> >> >> Regards >> Team PyCon India >> >> >> _______________________________________________ >> Inpycon mailing list >> Inpycon at python.org >> https://mail.python.org/mailman/listinfo/inpycon >> > > > -- Regards, --Anand ---------------------------- Software Architect/Consultant anandpillai at letterboxes.org http://twitter.com/skeptichacker -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 538 bytes Desc: OpenPGP digital signature URL: From anandology at gmail.com Fri Jul 8 02:54:50 2016 From: anandology at gmail.com (Anand Chitipothu) Date: Fri, 08 Jul 2016 06:54:50 +0000 Subject: [Inpycon] Suggestion on `associate` sponsorship for PyCon India In-Reply-To: References: Message-ID: On Fri, 8 Jul 2016 at 11:49 Thin Rhino wrote: > On 8 July 2016 at 00:00, Anand Chitipothu wrote: > >> On Thu, 7 Jul 2016 at 15:07 qua non wrote: >> >>> >>> Due to popular demand, we are considering to add the slot of a associate >>> sponsor that will be allowed to have their logo on website and in social >>> media as a sponsor, for 50,000+ taxes. >>> >>> Please let us know of what you guys think of this. >>> >> >> >> My suggestion is to have some kind of startup expo for an hour or so and >> give a table to all the associate sponsors just for that one hour. We can >> plan that around the evening tea break and make the break a little longer. US >> PyCon used to have something like that when I've attended it couple of year >> ago. >> > > > They can give lighting talks post lunch, utilize that time for people to > get back to the auditorium post lunch. > They can do that even without sponsoring and lightening talks are not for showcasing their business. Anand -------------- next part -------------- An HTML attachment was scrubbed... URL: From thinrhino at gmail.com Fri Jul 8 03:37:11 2016 From: thinrhino at gmail.com (Thin Rhino) Date: Fri, 8 Jul 2016 13:07:11 +0530 Subject: [Inpycon] Suggestion on `associate` sponsorship for PyCon India In-Reply-To: References: Message-ID: On 8 July 2016 at 12:24, Anand Chitipothu wrote: > > > On Fri, 8 Jul 2016 at 11:49 Thin Rhino wrote: > >> On 8 July 2016 at 00:00, Anand Chitipothu wrote: >> >>> On Thu, 7 Jul 2016 at 15:07 qua non wrote: >>> >>>> >>>> Due to popular demand, we are considering to add the slot of a >>>> associate sponsor that will be allowed to have their logo on website and in >>>> social media as a sponsor, for 50,000+ taxes. >>>> >>>> Please let us know of what you guys think of this. >>>> >>> >>> My suggestion is to have some kind of startup expo for an hour or so and >>> give a table to all the associate sponsors just for that one hour. We can >>> plan that around the evening tea break and make the break a little longer. US >>> PyCon used to have something like that when I've attended it couple of year >>> ago. >>> >> >> They can give lighting talks post lunch, utilize that time for people to >> get back to the auditorium post lunch. >> > > They can do that even without sponsoring and lightening talks are not for > showcasing their business. > Are we not discussing about associate sponsorship and what "more" can be offered to them? You can surely have a "sponsored lighting talk"? > -- "Ship is safe at harbor but it is not made for that." -------------- next part -------------- An HTML attachment was scrubbed... URL: From foss.mailinglists at gmail.com Fri Jul 8 10:01:53 2016 From: foss.mailinglists at gmail.com (sankarshan) Date: Fri, 8 Jul 2016 19:31:53 +0530 Subject: [Inpycon] Suggestion on `associate` sponsorship for PyCon India In-Reply-To: References: Message-ID: On Fri, Jul 8, 2016 at 1:07 PM, Thin Rhino wrote: > > Are we not discussing about associate sponsorship and what "more" can be > offered to them? > You can surely have a "sponsored lighting talk"? This discussion is probably at a point where 'what does an associate sponsorship' mean needs to be defined in the table which exists in the sponsorship prospectus. -- sankarshan mukhopadhyay From siddhant1995ppl at gmail.com Sun Jul 10 03:43:48 2016 From: siddhant1995ppl at gmail.com (Siddhant Sharma) Date: Sun, 10 Jul 2016 13:13:48 +0530 Subject: [Inpycon] Inpycon Digest, Vol 85, Issue 13 In-Reply-To: References: Message-ID: fuck off asssholes Siddy On Fri, Jul 8, 2016 at 9:30 PM, wrote: > Send Inpycon mailing list submissions to > inpycon at python.org > > To subscribe or unsubscribe via the World Wide Web, visit > https://mail.python.org/mailman/listinfo/inpycon > or, via email, send a message with subject or body 'help' to > inpycon-request at python.org > > You can reach the person managing the list at > inpycon-owner at python.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Inpycon digest..." > > > Today's Topics: > > 1. Re: Suggestion on `associate` sponsorship for PyCon India > (Thin Rhino) > 2. Re: Suggestion on `associate` sponsorship for PyCon India > (sankarshan) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Fri, 8 Jul 2016 13:07:11 +0530 > From: Thin Rhino > To: Mailing list for the PyCon India conference > Subject: Re: [Inpycon] Suggestion on `associate` sponsorship for PyCon > India > Message-ID: > LdoJt2f0ek32GKBJo5Q at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > On 8 July 2016 at 12:24, Anand Chitipothu wrote: > > > > > > > On Fri, 8 Jul 2016 at 11:49 Thin Rhino wrote: > > > >> On 8 July 2016 at 00:00, Anand Chitipothu wrote: > >> > >>> On Thu, 7 Jul 2016 at 15:07 qua non wrote: > >>> > >>>> > >>>> Due to popular demand, we are considering to add the slot of a > >>>> associate sponsor that will be allowed to have their logo on website > and in > >>>> social media as a sponsor, for 50,000+ taxes. > >>>> > >>>> Please let us know of what you guys think of this. > >>>> > >>> > >>> My suggestion is to have some kind of startup expo for an hour or so > and > >>> give a table to all the associate sponsors just for that one hour. We > can > >>> plan that around the evening tea break and make the break a little > longer. US > >>> PyCon used to have something like that when I've attended it couple of > year > >>> ago. > >>> > >> > >> They can give lighting talks post lunch, utilize that time for people to > >> get back to the auditorium post lunch. > >> > > > > They can do that even without sponsoring and lightening talks are not for > > showcasing their business. > > > > > Are we not discussing about associate sponsorship and what "more" can be > offered to them? > You can surely have a "sponsored lighting talk"? > > > > > > > -- > "Ship is safe at harbor but it is not made for that." > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/inpycon/attachments/20160708/6d298ae7/attachment-0001.html > > > > ------------------------------ > > Message: 2 > Date: Fri, 8 Jul 2016 19:31:53 +0530 > From: sankarshan > To: Mailing list for the PyCon India conference > Subject: Re: [Inpycon] Suggestion on `associate` sponsorship for PyCon > India > Message-ID: > < > CAKQ+-3x23qJK-bMMQ9t4A3-BZg6xgC+jm5a+CamRVNS-dOZE8A at mail.gmail.com> > Content-Type: text/plain; charset=UTF-8 > > On Fri, Jul 8, 2016 at 1:07 PM, Thin Rhino wrote: > > > > Are we not discussing about associate sponsorship and what "more" can be > > offered to them? > > You can surely have a "sponsored lighting talk"? > > This discussion is probably at a point where 'what does an associate > sponsorship' mean needs to be defined in the table which exists in the > sponsorship prospectus. > > > -- > sankarshan mukhopadhyay > > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > > ------------------------------ > > End of Inpycon Digest, Vol 85, Issue 13 > *************************************** > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ten.kunkyab at gmail.com Sun Jul 10 04:25:20 2016 From: ten.kunkyab at gmail.com (Tenzin Kunkyab) Date: Sun, 10 Jul 2016 13:55:20 +0530 Subject: [Inpycon] Inpycon Digest, Vol 85, Issue 13 In-Reply-To: References: Message-ID: On Sun, Jul 10, 2016 at 1:13 PM, Siddhant Sharma < ?? siddhant1995ppl at gmail.com> wrote: > fuck off asssholes > > Siddy > > ?Hello Siddy, You've got the spelling wrong to begin with. If you do not want to further receive updates on PyCon India. Just go ahead and unsubscribe by clicking on the link below. It shouldn't be a difficult task. https://mail.python.org/mailman/listinfo/inpycon P.S. In case you didn't find it, it's the bottom input-text?, enter your email and click unsubscribe. - ? Tenzin? -------------- next part -------------- An HTML attachment was scrubbed... URL: From noufal at nibrahim.net.in Sun Jul 10 09:18:10 2016 From: noufal at nibrahim.net.in (Noufal Ibrahim KV) Date: Sun, 10 Jul 2016 18:48:10 +0530 Subject: [Inpycon] Unsubscribed (was: Inpycon Digest, Vol 85, Issue 13) In-Reply-To: (Siddhant Sharma's message of "Sun, 10 Jul 2016 13:13:48 +0530") References: Message-ID: <87furhtywd.fsf_-_@nibrahim.net.in> On Sun, Jul 10 2016, Siddhant Sharma wrote: > fuck off asssholes > > Siddy [...] Done. -- Cordially, Noufal http://nibrahim.net.in From akshayaurora at gmail.com Sun Jul 10 10:39:23 2016 From: akshayaurora at gmail.com (qua non) Date: Sun, 10 Jul 2016 20:09:23 +0530 Subject: [Inpycon] Suggestion on `associate` sponsorship for PyCon India In-Reply-To: References: Message-ID: Hi All, We know it's too late this year to discuss more details. For this year lets go what we had for last years. Next years we can surely discuss in details about startup row. Regards Akkshay Team PyCon India On Fri, Jul 8, 2016 at 7:31 PM, sankarshan wrote: > On Fri, Jul 8, 2016 at 1:07 PM, Thin Rhino wrote: > > > > Are we not discussing about associate sponsorship and what "more" can be > > offered to them? > > You can surely have a "sponsored lighting talk"? > > This discussion is probably at a point where 'what does an associate > sponsorship' mean needs to be defined in the table which exists in the > sponsorship prospectus. > > > -- > sankarshan mukhopadhyay > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > -------------- next part -------------- An HTML attachment was scrubbed... URL: From gora at mimirtech.com Mon Jul 11 00:49:00 2016 From: gora at mimirtech.com (Gora Mohanty) Date: Mon, 11 Jul 2016 10:19:00 +0530 Subject: [Inpycon] Extension of review deadline for Pycon India 2016 talks Message-ID: Hi, In the interest of allowing proposers, and reviewers to work together to improve the quality of the talks, we have decided to extend the deadlines for completing reviews, and uploading presentations. All proposers are urged to start engaging with the reviewers as soon as possible. Here are the revised time lines: * 25th Jul.: Talk selection announcement * 8th Aug.: Presentation upload * 15th Aug.: Final review * 1st Sep.: Final announcement Regards, Gora -------------- next part -------------- An HTML attachment was scrubbed... URL: From vnbang2003 at gmail.com Mon Jul 11 23:51:50 2016 From: vnbang2003 at gmail.com (vijay kumar) Date: Tue, 12 Jul 2016 09:21:50 +0530 Subject: [Inpycon] Python Month In-Reply-To: References: Message-ID: All, Is August 10 - Sept 10 good dates for PythonMonth ? On Thu, Jul 7, 2016 at 11:55 AM, Ankur Gupta wrote: > Hi, > > On Thu, Jul 7, 2016 at 11:46 AM, Raghavendra Pathi J < > raghavendra.pj at gmail.com> wrote: > >> Do we have a portal or a calender where I can see all the workshop >> requests? >> > > https://pythonexpress.in/ > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > -- Thanks, Vijay -------------- next part -------------- An HTML attachment was scrubbed... URL: From anuvrat at anuvrat.in Thu Jul 14 07:45:25 2016 From: anuvrat at anuvrat.in (Anuvrat Parashar) Date: Thu, 14 Jul 2016 17:15:25 +0530 Subject: [Inpycon] [x-post] Pycon India 2016 Posters Message-ID: Namaste The days of the conference are inching closer and in every local meetup we bump into atleast one person who has been programming in Python but hasn't ever heard of Pycon India. Lets use our mailing lists / user group meetups / notice boards / social media to ensure that the word about the conference reaches everyone interested in attending. Below are links to the a few posters that can be printed / shared online. http://i.imgur.com/Y0rhzEQ.jpg http://i.imgur.com/rqmT0cv.jpg http://i.imgur.com/vEVELpu.jpg http://i.imgur.com/nVyFSEs.jpg Lets make PyconIndia 2016 a success. Cheers -- Anuvrat Team Pycon India 2016 PS: send it to the lists I have missed. -------------- next part -------------- An HTML attachment was scrubbed... URL: From sayan.chowdhury2012 at gmail.com Thu Jul 14 07:59:30 2016 From: sayan.chowdhury2012 at gmail.com (Sayan Chowdhury) Date: Thu, 14 Jul 2016 17:29:30 +0530 Subject: [Inpycon] [BangPypers] [x-post] Pycon India 2016 Posters In-Reply-To: References: Message-ID: > Below are links to the a few posters that can be printed / shared online. > > http://i.imgur.com/Y0rhzEQ.jpg > http://i.imgur.com/rqmT0cv.jpg > http://i.imgur.com/vEVELpu.jpg > http://i.imgur.com/nVyFSEs.jpg > > Lets make PyconIndia 2016 a success. > Cheers Appreciate the effort but sponsor logo should not be distorted/altered. Here is the guidelines for Red Hat[1], could not find one for ZeOmega [1] http://brand.redhat.com/ -- 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 vnbang2003 at gmail.com Mon Jul 18 09:26:40 2016 From: vnbang2003 at gmail.com (vijay kumar) Date: Mon, 18 Jul 2016 18:56:40 +0530 Subject: [Inpycon] Proposal for panel discussion Message-ID: Hi All, Am not sure, if we have a topic for Panel Discussion. If not, I propose "Open Source Projects Support". I feel this will be an interesting topic to discuss in an event like PyCon India. There are lot many open source projects like Django, SSL that are running out of funds to support core developers. This can be a forum to discuss how to improvise the situation, what can be done to bring more awareness on open source projects, how to reach out to organizations that uses open source to contribute back to the community and stuff. Let me know your thoughts on the same. -------------- next part -------------- An HTML attachment was scrubbed... URL: From sujan.gowda at gmail.com Mon Jul 18 09:46:00 2016 From: sujan.gowda at gmail.com (Sujan P. Gowda) Date: Mon, 18 Jul 2016 19:16:00 +0530 Subject: [Inpycon] Proposal for panel discussion In-Reply-To: References: Message-ID: +1 seconding the motion. However, Imho, this needs greater awareness outside the developer community and conference, from common public, possibly government, research & CSR grants at large. Funding public goods with special focus on scientific python libraries for defence could be a possible subtopic. On Jul 18, 2016 7:11 PM, "vijay kumar" wrote: > Hi All, > > Am not sure, if we have a topic for Panel Discussion. If not, I propose > "Open Source Projects Support". > I feel this will be an interesting topic to discuss in an event like PyCon > India. > > There are lot many open source projects like Django, SSL that are running > out of funds to support core developers. This can be a forum to discuss how > to improvise the situation, what can be done to bring more awareness on > open source projects, how to reach out to organizations that uses open > source to contribute back to the community and stuff. > > Let me know your thoughts on the same. > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sahiljoseph20 at gmail.com Wed Jul 20 05:50:13 2016 From: sahiljoseph20 at gmail.com (Sahil Joseph) Date: Wed, 20 Jul 2016 15:20:13 +0530 Subject: [Inpycon] T-Shirt Designs for PyCon India 2016 Message-ID: Hi folks, We had some discussions for tshirt design in telegram group. Attached below is the link for those designs. https://drive.google.com/drive/folders/0B1WO07-OL50_VDdmMThRZTZCcDg Looking forward to your input and/or custom designs . Regards, Team PyCon -------------- next part -------------- An HTML attachment was scrubbed... URL: From harshcrop at gmail.com Wed Jul 20 05:54:43 2016 From: harshcrop at gmail.com (Harsh Shah) Date: Wed, 20 Jul 2016 15:24:43 +0530 Subject: [Inpycon] T-Shirt Designs for PyCon India 2016 In-Reply-To: References: Message-ID: can we go for full sleeves t-shirt it look more cool ?? On Wed, Jul 20, 2016 at 3:20 PM, Sahil Joseph wrote: > Hi folks, > > We had some discussions for tshirt design in telegram group. > > Attached below is the link for those designs. > https://drive.google.com/drive/folders/0B1WO07-OL50_VDdmMThRZTZCcDg > Looking forward to your input and/or custom designs . > > Regards, > Team PyCon > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > -- [image: --] Harsh Shah http://www.harshcrop.co [image: http://]about.me/harshcrop -------------- next part -------------- An HTML attachment was scrubbed... URL: From kushaldas at gmail.com Wed Jul 20 05:56:42 2016 From: kushaldas at gmail.com (Kushal Das) Date: Wed, 20 Jul 2016 15:26:42 +0530 Subject: [Inpycon] T-Shirt Designs for PyCon India 2016 In-Reply-To: References: Message-ID: On Wed, Jul 20, 2016 at 3:20 PM, Sahil Joseph wrote: > Hi folks, > > We had some discussions for tshirt design in telegram group. > > Attached below is the link for those designs. > https://drive.google.com/drive/folders/0B1WO07-OL50_VDdmMThRZTZCcDg > Looking forward to your input and/or custom designs . > That vertical design is difficult to read. Kushal -- Fedora Cloud Engineer CPython Core Developer http://kushaldas.in From akshayaurora at gmail.com Wed Jul 20 06:21:30 2016 From: akshayaurora at gmail.com (qua non) Date: Wed, 20 Jul 2016 15:51:30 +0530 Subject: [Inpycon] T-Shirt Designs for PyCon India 2016 In-Reply-To: References: Message-ID: On Wed, Jul 20, 2016 at 3:26 PM, Kushal Das wrote: > On Wed, Jul 20, 2016 at 3:20 PM, Sahil Joseph > wrote: > > Hi folks, > > > > We had some discussions for tshirt design in telegram group. > > > > Attached below is the link for those designs. > > https://drive.google.com/drive/folders/0B1WO07-OL50_VDdmMThRZTZCcDg > > Looking forward to your input and/or custom designs . > > > That vertical design is difficult to read. > I love the vertical design, the fact that it is not discernible at first look is what makes the viewer try and engage more with it. > Kushal > -- > Fedora Cloud Engineer > CPython Core Developer > http://kushaldas.in > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > -------------- next part -------------- An HTML attachment was scrubbed... URL: From me at kracekumar.com Wed Jul 20 06:29:04 2016 From: me at kracekumar.com (Kracekumar Ramaraj) Date: Wed, 20 Jul 2016 15:59:04 +0530 Subject: [Inpycon] T-Shirt Designs for PyCon India 2016 In-Reply-To: References: Message-ID: On Wed, Jul 20, 2016 at 3:26 PM, Kushal Das wrote: > On Wed, Jul 20, 2016 at 3:20 PM, Sahil Joseph > wrote: > > Hi folks, > > > > We had some discussions for tshirt design in telegram group. > > > > Attached below is the link for those designs. > > https://drive.google.com/drive/folders/0B1WO07-OL50_VDdmMThRZTZCcDg > > Looking forward to your input and/or custom designs . > > > That vertical design is difficult to read. > +1 [..] -- Regards Kracekumar Ramaraj http://kracekumar.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From soumyodey at live.com Wed Jul 20 06:29:35 2016 From: soumyodey at live.com (Soumyo Dey) Date: Wed, 20 Jul 2016 10:29:35 +0000 Subject: [Inpycon] T-Shirt Designs for PyCon India 2016 In-Reply-To: References: Message-ID: On Jul 20 2016, at 3:51 pm, qua non wrote: On Wed, Jul 20, 2016 at 3:26 PM, Kushal Das > wrote: On Wed, Jul 20, 2016 at 3:20 PM, Sahil Joseph > wrote: > Hi folks, > > We had some discussions for tshirt design in telegram group. > > Attached below is the link for those designs. > https://drive.google.com/drive/folders/0B1WO07-OL50_VDdmMThRZTZCcDg > Looking forward to your input and/or custom designs . > That vertical design is difficult to read. I love the vertical design, the fact that it is not discernible at first look is what makes the viewer try and engage more with it. Kushal -- Fedora Cloud Engineer CPython Core Developer http://kushaldas.in _______________________________________________ Inpycon mailing list Inpycon at python.org https://mail.python.org/mailman/listinfo/inpycon I personally feel vertical design is very confusing. Thank you, Soumyo Dey Twitter : @SoumyoDey Website: http://www.ace139.github.io -------------- next part -------------- An HTML attachment was scrubbed... URL: From gora at mimirtech.com Wed Jul 20 06:47:41 2016 From: gora at mimirtech.com (Gora Mohanty) Date: Wed, 20 Jul 2016 16:17:41 +0530 Subject: [Inpycon] T-Shirt Designs for PyCon India 2016 In-Reply-To: References: Message-ID: On 20 July 2016 at 15:20, Sahil Joseph wrote: > Hi folks, > > We had some discussions for tshirt design in telegram group. > > Attached below is the link for those designs. > https://drive.google.com/drive/folders/0B1WO07-OL50_VDdmMThRZTZCcDg > Looking forward to your input and/or custom designs . > I like the vertical design, and woul root for the dark-grey T-shirt colour in the second image. Looks nice. Regards, Gora -------------- next part -------------- An HTML attachment was scrubbed... URL: From jaysinhp at gmail.com Wed Jul 20 07:14:35 2016 From: jaysinhp at gmail.com (Jaysinh Shukla) Date: Wed, 20 Jul 2016 16:44:35 +0530 Subject: [Inpycon] T-Shirt Designs for PyCon India 2016 In-Reply-To: References: Message-ID: <578F5D1B.3020406@gmail.com> On Wednesday 20 July 2016 03:26 PM, Kushal Das wrote: > On Wed, Jul 20, 2016 at 3:20 PM, Sahil Joseph wrote: >> Hi folks, >> >> We had some discussions for tshirt design in telegram group. >> >> Attached below is the link for those designs. >> https://drive.google.com/drive/folders/0B1WO07-OL50_VDdmMThRZTZCcDg >> Looking forward to your input and/or custom designs . >> > That vertical design is difficult to read. Agreed! Vertical design is difficult to read! From 7895pulkit at gmail.com Wed Jul 20 07:33:07 2016 From: 7895pulkit at gmail.com (Pulkit Goyal) Date: Wed, 20 Jul 2016 17:03:07 +0530 Subject: [Inpycon] T-Shirt Designs for PyCon India 2016 In-Reply-To: References: Message-ID: On Wed, Jul 20, 2016 at 3:51 PM, qua non wrote: > > > On Wed, Jul 20, 2016 at 3:26 PM, Kushal Das wrote: >> >> On Wed, Jul 20, 2016 at 3:20 PM, Sahil Joseph >> wrote: >> > Hi folks, >> > >> > We had some discussions for tshirt design in telegram group. >> > >> > Attached below is the link for those designs. >> > https://drive.google.com/drive/folders/0B1WO07-OL50_VDdmMThRZTZCcDg >> > Looking forward to your input and/or custom designs . >> > >> That vertical design is difficult to read. > > > I love the vertical design, the fact that it is not discernible at first > look is what makes the viewer try and engage more with it. I too liked the vertical design. From mohdsanadzakirizvi at gmail.com Wed Jul 20 09:31:44 2016 From: mohdsanadzakirizvi at gmail.com (mohd sanad zaki rizvi) Date: Wed, 20 Jul 2016 19:01:44 +0530 Subject: [Inpycon] T-Shirt Designs for PyCon India 2016 In-Reply-To: References: Message-ID: Hi, I too find vertical design difficult to read and confusing. Regards, Sanad On Wed, Jul 20, 2016 at 5:03 PM, Pulkit Goyal <7895pulkit at gmail.com> wrote: > On Wed, Jul 20, 2016 at 3:51 PM, qua non wrote: > > > > > > On Wed, Jul 20, 2016 at 3:26 PM, Kushal Das wrote: > >> > >> On Wed, Jul 20, 2016 at 3:20 PM, Sahil Joseph > >> wrote: > >> > Hi folks, > >> > > >> > We had some discussions for tshirt design in telegram group. > >> > > >> > Attached below is the link for those designs. > >> > https://drive.google.com/drive/folders/0B1WO07-OL50_VDdmMThRZTZCcDg > >> > Looking forward to your input and/or custom designs . > >> > > >> That vertical design is difficult to read. > > > > > > I love the vertical design, the fact that it is not discernible at first > > look is what makes the viewer try and engage more with it. > > I too liked the vertical design. > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > -------------- next part -------------- An HTML attachment was scrubbed... URL: From raghavendra.pj at gmail.com Wed Jul 20 09:54:47 2016 From: raghavendra.pj at gmail.com (Raghavendra Pathi J) Date: Wed, 20 Jul 2016 19:24:47 +0530 Subject: [Inpycon] T-Shirt Designs for PyCon India 2016 In-Reply-To: References: Message-ID: I feel the same. On Wed, Jul 20, 2016 at 7:01 PM, mohd sanad zaki rizvi < mohdsanadzakirizvi at gmail.com> wrote: > Hi, > > I too find vertical design difficult to read and confusing. > > Regards, > > Sanad > > On Wed, Jul 20, 2016 at 5:03 PM, Pulkit Goyal <7895pulkit at gmail.com> > wrote: > >> On Wed, Jul 20, 2016 at 3:51 PM, qua non wrote: >> > >> > >> > On Wed, Jul 20, 2016 at 3:26 PM, Kushal Das >> wrote: >> >> >> >> On Wed, Jul 20, 2016 at 3:20 PM, Sahil Joseph > > >> >> wrote: >> >> > Hi folks, >> >> > >> >> > We had some discussions for tshirt design in telegram group. >> >> > >> >> > Attached below is the link for those designs. >> >> > https://drive.google.com/drive/folders/0B1WO07-OL50_VDdmMThRZTZCcDg >> >> > Looking forward to your input and/or custom designs . >> >> > >> >> That vertical design is difficult to read. >> > >> > >> > I love the vertical design, the fact that it is not discernible at first >> > look is what makes the viewer try and engage more with it. >> >> I too liked the vertical design. >> _______________________________________________ >> Inpycon mailing list >> Inpycon at python.org >> https://mail.python.org/mailman/listinfo/inpycon >> > > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > -- Raghavendra Pathi J -------------- next part -------------- An HTML attachment was scrubbed... URL: From shiv.web at gmail.com Wed Jul 20 10:05:48 2016 From: shiv.web at gmail.com (Shiv Kumar) Date: Wed, 20 Jul 2016 19:35:48 +0530 Subject: [Inpycon] T-Shirt Designs for PyCon India 2016 In-Reply-To: References: Message-ID: +1 Thanks & Regards Shiv Kr. Sah +91-9015237357 On Wed, Jul 20, 2016 at 7:24 PM, Raghavendra Pathi J < raghavendra.pj at gmail.com> wrote: > I feel the same. > > On Wed, Jul 20, 2016 at 7:01 PM, mohd sanad zaki rizvi < > mohdsanadzakirizvi at gmail.com> wrote: > >> Hi, >> >> I too find vertical design difficult to read and confusing. >> >> Regards, >> >> Sanad >> >> On Wed, Jul 20, 2016 at 5:03 PM, Pulkit Goyal <7895pulkit at gmail.com> >> wrote: >> >>> On Wed, Jul 20, 2016 at 3:51 PM, qua non wrote: >>> > >>> > >>> > On Wed, Jul 20, 2016 at 3:26 PM, Kushal Das >>> wrote: >>> >> >>> >> On Wed, Jul 20, 2016 at 3:20 PM, Sahil Joseph < >>> sahiljoseph20 at gmail.com> >>> >> wrote: >>> >> > Hi folks, >>> >> > >>> >> > We had some discussions for tshirt design in telegram group. >>> >> > >>> >> > Attached below is the link for those designs. >>> >> > https://drive.google.com/drive/folders/0B1WO07-OL50_VDdmMThRZTZCcDg >>> >> > Looking forward to your input and/or custom designs . >>> >> > >>> >> That vertical design is difficult to read. >>> > >>> > >>> > I love the vertical design, the fact that it is not discernible at >>> first >>> > look is what makes the viewer try and engage more with it. >>> >>> I too liked the vertical design. >>> _______________________________________________ >>> Inpycon mailing list >>> Inpycon at python.org >>> https://mail.python.org/mailman/listinfo/inpycon >>> >> >> >> _______________________________________________ >> Inpycon mailing list >> Inpycon at python.org >> https://mail.python.org/mailman/listinfo/inpycon >> >> > > > -- > Raghavendra Pathi J > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ankur0493 at gmail.com Wed Jul 20 10:55:37 2016 From: ankur0493 at gmail.com (Ankur Gupta) Date: Wed, 20 Jul 2016 20:25:37 +0530 Subject: [Inpycon] T-Shirt Designs for PyCon India 2016 In-Reply-To: References: Message-ID: Hi, On Wed, Jul 20, 2016 at 3:20 PM, Sahil Joseph wrote: > Hi folks, > > We had some discussions for tshirt design in telegram group. > > Attached below is the link for those designs. > https://drive.google.com/drive/folders/0B1WO07-OL50_VDdmMThRZTZCcDg > Looking forward to your input and/or custom designs . > This [1] looks good, though a bit more work could be needed to make the logo blend in better with the tshirt color. [1]: https://drive.google.com/open?id=0B1WO07-OL50_cGRfNlQtUFJwT0E -------------- next part -------------- An HTML attachment was scrubbed... URL: From me at kracekumar.com Wed Jul 20 12:38:14 2016 From: me at kracekumar.com (Kracekumar Ramaraj) Date: Wed, 20 Jul 2016 22:08:14 +0530 Subject: [Inpycon] Second Keynote speaker status Message-ID: Hi All As part of PyCon India, we have reached out to all nominated keynote speakers. Most of the personalities have declined the invitation due to various reasons. We have reached out to Scientific Python and Django core contributors. Most of them are traveling/attending Python-related conferences currently. The Initial reply is positive but no confirmation yet. We will be updating the second keynote speaker in next couple of weeks. -- Regards Kracekumar Ramaraj http://kracekumar.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From sufiyanvs at gmail.com Thu Jul 21 00:27:31 2016 From: sufiyanvs at gmail.com (Mohammed Sufiyan) Date: Thu, 21 Jul 2016 05:27:31 +0100 Subject: [Inpycon] Suggestion on `associate` sponsorship for PyCon India In-Reply-To: References: Message-ID: I am approaching my network for Sponsor, can you share me proposal document. On Sun, Jul 10, 2016 at 3:39 PM, qua non wrote: > Hi All, > We know it's too late this year to discuss more details. > For this year lets go what we had for last years. > Next years we can surely discuss in details about startup row. > > Regards > Akkshay > Team PyCon India > > On Fri, Jul 8, 2016 at 7:31 PM, sankarshan > wrote: > >> On Fri, Jul 8, 2016 at 1:07 PM, Thin Rhino wrote: >> > >> > Are we not discussing about associate sponsorship and what "more" can be >> > offered to them? >> > You can surely have a "sponsored lighting talk"? >> >> This discussion is probably at a point where 'what does an associate >> sponsorship' mean needs to be defined in the table which exists in the >> sponsorship prospectus. >> >> >> -- >> sankarshan mukhopadhyay >> >> _______________________________________________ >> Inpycon mailing list >> Inpycon at python.org >> https://mail.python.org/mailman/listinfo/inpycon >> > > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > -- With Regards Mohammed Sufiyan +918095831221 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ankur0493 at gmail.com Thu Jul 21 00:51:05 2016 From: ankur0493 at gmail.com (Ankur Gupta) Date: Thu, 21 Jul 2016 10:21:05 +0530 Subject: [Inpycon] Suggestion on `associate` sponsorship for PyCon India In-Reply-To: References: Message-ID: Hi Mohammad, On Thu, Jul 21, 2016 at 9:57 AM, Mohammed Sufiyan wrote: > I am approaching my network for Sponsor, can you share me proposal > document. > You can download the sponsorship prospectus at https://in.pycon.org/2016/sponsorship-prospectus.pdf -------------- next part -------------- An HTML attachment was scrubbed... URL: From sufiyanvs at gmail.com Thu Jul 21 02:07:30 2016 From: sufiyanvs at gmail.com (Mohammed Sufiyan) Date: Thu, 21 Jul 2016 07:07:30 +0100 Subject: [Inpycon] Suggestion on `associate` sponsorship for PyCon India In-Reply-To: References: Message-ID: Thanks On Thu, Jul 21, 2016 at 5:51 AM, Ankur Gupta wrote: > Hi Mohammad, > > On Thu, Jul 21, 2016 at 9:57 AM, Mohammed Sufiyan > wrote: > >> I am approaching my network for Sponsor, can you share me proposal >> document. >> > > You can download the sponsorship prospectus at > https://in.pycon.org/2016/sponsorship-prospectus.pdf > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > -- With Regards Mohammed Sufiyan +918095831221 -------------- next part -------------- An HTML attachment was scrubbed... URL: From saprative at gmail.com Fri Jul 22 22:49:38 2016 From: saprative at gmail.com (Saprative Jana) Date: Sat, 23 Jul 2016 08:19:38 +0530 Subject: [Inpycon] T-Shirt Designs for PyCon India 2016 In-Reply-To: References: Message-ID: Vertical design has issues with readability. If we need to go with vertical design I would suggest to at least keep the letters horizontal. On 20 July 2016 at 20:25, Ankur Gupta wrote: > Hi, > > On Wed, Jul 20, 2016 at 3:20 PM, Sahil Joseph > wrote: > >> Hi folks, >> >> We had some discussions for tshirt design in telegram group. >> >> Attached below is the link for those designs. >> https://drive.google.com/drive/folders/0B1WO07-OL50_VDdmMThRZTZCcDg >> Looking forward to your input and/or custom designs . >> > > This [1] looks good, though a bit more work could be needed to make the > logo blend in better with the tshirt color. > > [1]: https://drive.google.com/open?id=0B1WO07-OL50_cGRfNlQtUFJwT0E > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > -- Waiting for your reply, Saprative Jana Head of CEMK Circuit Design Hub -------------- next part -------------- An HTML attachment was scrubbed... URL: From sahiljoseph20 at gmail.com Sat Jul 23 02:31:00 2016 From: sahiljoseph20 at gmail.com (Sahil Joseph) Date: Sat, 23 Jul 2016 12:01:00 +0530 Subject: [Inpycon] Inpycon Digest, Vol 85, Issue 21 In-Reply-To: References: Message-ID: Hi , The vertical one is good it makes the PyCon India T-shirt to stand out of the crowd. On Wed, Jul 20, 2016 at 9:30 PM, wrote: > Send Inpycon mailing list submissions to > inpycon at python.org > > To subscribe or unsubscribe via the World Wide Web, visit > https://mail.python.org/mailman/listinfo/inpycon > or, via email, send a message with subject or body 'help' to > inpycon-request at python.org > > You can reach the person managing the list at > inpycon-owner at python.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Inpycon digest..." > > > Today's Topics: > > 1. Re: T-Shirt Designs for PyCon India 2016 (Raghavendra Pathi J) > 2. Re: T-Shirt Designs for PyCon India 2016 (Shiv Kumar) > 3. Re: T-Shirt Designs for PyCon India 2016 (Ankur Gupta) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 20 Jul 2016 19:24:47 +0530 > From: Raghavendra Pathi J > To: Mailing list for the PyCon India conference > Subject: Re: [Inpycon] T-Shirt Designs for PyCon India 2016 > Message-ID: > N5ym81TcmP+ESOLUMAfNigng9uVFWoESh6+Ur+28CU2g at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > I feel the same. > > On Wed, Jul 20, 2016 at 7:01 PM, mohd sanad zaki rizvi < > mohdsanadzakirizvi at gmail.com> wrote: > > > Hi, > > > > I too find vertical design difficult to read and confusing. > > > > Regards, > > > > Sanad > > > > On Wed, Jul 20, 2016 at 5:03 PM, Pulkit Goyal <7895pulkit at gmail.com> > > wrote: > > > >> On Wed, Jul 20, 2016 at 3:51 PM, qua non > wrote: > >> > > >> > > >> > On Wed, Jul 20, 2016 at 3:26 PM, Kushal Das > >> wrote: > >> >> > >> >> On Wed, Jul 20, 2016 at 3:20 PM, Sahil Joseph < > sahiljoseph20 at gmail.com > >> > > >> >> wrote: > >> >> > Hi folks, > >> >> > > >> >> > We had some discussions for tshirt design in telegram group. > >> >> > > >> >> > Attached below is the link for those designs. > >> >> > > https://drive.google.com/drive/folders/0B1WO07-OL50_VDdmMThRZTZCcDg > >> >> > Looking forward to your input and/or custom designs . > >> >> > > >> >> That vertical design is difficult to read. > >> > > >> > > >> > I love the vertical design, the fact that it is not discernible at > first > >> > look is what makes the viewer try and engage more with it. > >> > >> I too liked the vertical design. > >> _______________________________________________ > >> Inpycon mailing list > >> Inpycon at python.org > >> https://mail.python.org/mailman/listinfo/inpycon > >> > > > > > > _______________________________________________ > > Inpycon mailing list > > Inpycon at python.org > > https://mail.python.org/mailman/listinfo/inpycon > > > > > > > -- > Raghavendra Pathi J > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/inpycon/attachments/20160720/49d32081/attachment-0001.html > > > > ------------------------------ > > Message: 2 > Date: Wed, 20 Jul 2016 19:35:48 +0530 > From: Shiv Kumar > To: Mailing list for the PyCon India conference > Subject: Re: [Inpycon] T-Shirt Designs for PyCon India 2016 > Message-ID: > ZEQUfg7pAq4Q at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > +1 > > Thanks & Regards > Shiv Kr. Sah > +91-9015237357 > > On Wed, Jul 20, 2016 at 7:24 PM, Raghavendra Pathi J < > raghavendra.pj at gmail.com> wrote: > > > I feel the same. > > > > On Wed, Jul 20, 2016 at 7:01 PM, mohd sanad zaki rizvi < > > mohdsanadzakirizvi at gmail.com> wrote: > > > >> Hi, > >> > >> I too find vertical design difficult to read and confusing. > >> > >> Regards, > >> > >> Sanad > >> > >> On Wed, Jul 20, 2016 at 5:03 PM, Pulkit Goyal <7895pulkit at gmail.com> > >> wrote: > >> > >>> On Wed, Jul 20, 2016 at 3:51 PM, qua non > wrote: > >>> > > >>> > > >>> > On Wed, Jul 20, 2016 at 3:26 PM, Kushal Das > >>> wrote: > >>> >> > >>> >> On Wed, Jul 20, 2016 at 3:20 PM, Sahil Joseph < > >>> sahiljoseph20 at gmail.com> > >>> >> wrote: > >>> >> > Hi folks, > >>> >> > > >>> >> > We had some discussions for tshirt design in telegram group. > >>> >> > > >>> >> > Attached below is the link for those designs. > >>> >> > > https://drive.google.com/drive/folders/0B1WO07-OL50_VDdmMThRZTZCcDg > >>> >> > Looking forward to your input and/or custom designs . > >>> >> > > >>> >> That vertical design is difficult to read. > >>> > > >>> > > >>> > I love the vertical design, the fact that it is not discernible at > >>> first > >>> > look is what makes the viewer try and engage more with it. > >>> > >>> I too liked the vertical design. > >>> _______________________________________________ > >>> Inpycon mailing list > >>> Inpycon at python.org > >>> https://mail.python.org/mailman/listinfo/inpycon > >>> > >> > >> > >> _______________________________________________ > >> Inpycon mailing list > >> Inpycon at python.org > >> https://mail.python.org/mailman/listinfo/inpycon > >> > >> > > > > > > -- > > Raghavendra Pathi J > > > > _______________________________________________ > > Inpycon mailing list > > Inpycon at python.org > > https://mail.python.org/mailman/listinfo/inpycon > > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/inpycon/attachments/20160720/3ed5ce19/attachment-0001.html > > > > ------------------------------ > > Message: 3 > Date: Wed, 20 Jul 2016 20:25:37 +0530 > From: Ankur Gupta > To: Mailing list for the PyCon India conference > Subject: Re: [Inpycon] T-Shirt Designs for PyCon India 2016 > Message-ID: > 8vYqSGWR3i9t840Wwyt--dyabvMrtBuOB5V+cJ6+-g at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > Hi, > > On Wed, Jul 20, 2016 at 3:20 PM, Sahil Joseph > wrote: > > > Hi folks, > > > > We had some discussions for tshirt design in telegram group. > > > > Attached below is the link for those designs. > > https://drive.google.com/drive/folders/0B1WO07-OL50_VDdmMThRZTZCcDg > > Looking forward to your input and/or custom designs . > > > > This [1] looks good, though a bit more work could be needed to make the > logo blend in better with the tshirt color. > > [1]: https://drive.google.com/open?id=0B1WO07-OL50_cGRfNlQtUFJwT0E > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/inpycon/attachments/20160720/c2ea7f38/attachment-0001.html > > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > > ------------------------------ > > End of Inpycon Digest, Vol 85, Issue 21 > *************************************** > -------------- next part -------------- An HTML attachment was scrubbed... URL: From satyaakam at gmail.com Sat Jul 23 02:45:19 2016 From: satyaakam at gmail.com (satyaakam goswami) Date: Sat, 23 Jul 2016 12:15:19 +0530 Subject: [Inpycon] Inpycon Digest, Vol 85, Issue 21 In-Reply-To: References: Message-ID: On Sat, Jul 23, 2016 at 12:01 PM, Sahil Joseph wrote: > Hi , > The vertical one is good it makes the PyCon India T-shirt to stand out of > the crowd. > ?Hi Sahil, Understand your enthusiasm to participate in the discussion also there are no specific mailing list guidelines for this list too.I humbly request you to follow the following guidelines[1] to just make your participation more enjoyable. ? ?cheers and keep mailing!? -Satya Satyaakam.net | fossevents.in | [1]? https://pydelhi.org/mailing-list-guidelines/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From gora at mimirtech.com Sun Jul 24 12:50:22 2016 From: gora at mimirtech.com (Gora Mohanty) Date: Sun, 24 Jul 2016 22:20:22 +0530 Subject: [Inpycon] First-cut talk selection for Pycon India Message-ID: Hello everyone, We have gone through the submitted talk, and workshop proposals. Our gratitude to all our proposers, and reviewers, for the effort that they put into the CFP. Again, as a community-driven conference, the success of Pycon India is driven by people like you. Thanks to the work already put into the proposals, the CFP committee was able to consider every single talk, and make a final judgement based on various criteria. We found that we did not quite have a sufficient number of talks, and workshops, to entirely fill up three dedicated tracks for two days. Rather than dilute the quality of the accepted proposals, we have chosen to leave some open slots where people can do their own presentations. For this, we will follow the practice of the previous year ( https://in.pycon.org/cfp/pycon-india-2015-open-spaces/proposals/ ), and have an open CFP in a few days time. Proposers who made the first-cut selection have been informed of this fact through the Reviews tab for their talk, and should have received an email. Please do feel free to contact talk-selection at in.pycon.org should you have any further queries, or concerns. Regards, Gora -------------- next part -------------- An HTML attachment was scrubbed... URL: From akshayaurora at gmail.com Sun Jul 24 14:42:28 2016 From: akshayaurora at gmail.com (qua non) Date: Mon, 25 Jul 2016 00:12:28 +0530 Subject: [Inpycon] T-Shirt Designs for PyCon India 2016 In-Reply-To: References: Message-ID: It seems most people like the traditional vertical and there is not any one proposing any new design. So I guess we should go with horizontal design. Just to let you folks know about the Vertical design not being readable, that's the whole point. It's not discernible at first glance, inviting more curious people to engage and ask about it. However the populace has spoken and we shall go with the horizontal design. Thanks for all the input folks. On Sat, Jul 23, 2016 at 8:19 AM, Saprative Jana wrote: > Vertical design has issues with readability. If we need to go with > vertical design I would suggest to at least keep the letters horizontal. > > On 20 July 2016 at 20:25, Ankur Gupta wrote: > >> Hi, >> >> On Wed, Jul 20, 2016 at 3:20 PM, Sahil Joseph >> wrote: >> >>> Hi folks, >>> >>> We had some discussions for tshirt design in telegram group. >>> >>> Attached below is the link for those designs. >>> https://drive.google.com/drive/folders/0B1WO07-OL50_VDdmMThRZTZCcDg >>> Looking forward to your input and/or custom designs . >>> >> >> This [1] looks good, though a bit more work could be needed to make the >> logo blend in better with the tshirt color. >> >> [1]: https://drive.google.com/open?id=0B1WO07-OL50_cGRfNlQtUFJwT0E >> >> _______________________________________________ >> Inpycon mailing list >> Inpycon at python.org >> https://mail.python.org/mailman/listinfo/inpycon >> >> > > > -- > Waiting for your reply, > Saprative Jana > Head of CEMK Circuit Design Hub > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From piyushgandhi811 at gmail.com Mon Jul 25 00:36:54 2016 From: piyushgandhi811 at gmail.com (Piyush Gandhi) Date: Mon, 25 Jul 2016 10:06:54 +0530 Subject: [Inpycon] T-Shirt Designs for PyCon India 2016 In-Reply-To: References: Message-ID: Hey all! I was wondering if we can have a bot making or game dev session on 6th August's Pydelhi meetup On 25 Jul 2016 00:13, "qua non" wrote: > It seems most people like the traditional vertical and there is not any > one proposing any new design. > So I guess we should go with horizontal design. > > Just to let you folks know about the Vertical design not being readable, > that's the whole point. > It's not discernible at first glance, inviting more curious people to > engage and ask about it. > > However the populace has spoken and we shall go with the horizontal design. > > Thanks for all the input folks. > > On Sat, Jul 23, 2016 at 8:19 AM, Saprative Jana > wrote: > >> Vertical design has issues with readability. If we need to go with >> vertical design I would suggest to at least keep the letters horizontal. >> >> On 20 July 2016 at 20:25, Ankur Gupta wrote: >> >>> Hi, >>> >>> On Wed, Jul 20, 2016 at 3:20 PM, Sahil Joseph >>> wrote: >>> >>>> Hi folks, >>>> >>>> We had some discussions for tshirt design in telegram group. >>>> >>>> Attached below is the link for those designs. >>>> https://drive.google.com/drive/folders/0B1WO07-OL50_VDdmMThRZTZCcDg >>>> Looking forward to your input and/or custom designs . >>>> >>> >>> This [1] looks good, though a bit more work could be needed to make the >>> logo blend in better with the tshirt color. >>> >>> [1]: https://drive.google.com/open?id=0B1WO07-OL50_cGRfNlQtUFJwT0E >>> >>> _______________________________________________ >>> Inpycon mailing list >>> Inpycon at python.org >>> https://mail.python.org/mailman/listinfo/inpycon >>> >>> >> >> >> -- >> Waiting for your reply, >> Saprative Jana >> Head of CEMK Circuit Design Hub >> >> _______________________________________________ >> Inpycon mailing list >> Inpycon at python.org >> https://mail.python.org/mailman/listinfo/inpycon >> >> > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From satyaakam at gmail.com Mon Jul 25 00:59:32 2016 From: satyaakam at gmail.com (satyaakam goswami) Date: Mon, 25 Jul 2016 10:29:32 +0530 Subject: [Inpycon] T-Shirt Designs for PyCon India 2016 In-Reply-To: References: Message-ID: On Mon, Jul 25, 2016 at 10:06 AM, Piyush Gandhi wrote: > Hey all! I was wondering if we can have a bot making or game dev session > on 6th August's Pydelhi meetup > ?Hey Piyush, This mailing list for Pycon India discussions that too this thread is for discussing T shirt design for Pycon India. i see you already are a member of https://mail.python.org/mailman/listinfo/ncr-python.in please take this topic on to that list . ?thanks -Satya? -------------- next part -------------- An HTML attachment was scrubbed... URL: From madduanil at gmail.com Mon Jul 25 02:48:15 2016 From: madduanil at gmail.com (anil maddu) Date: Mon, 25 Jul 2016 12:18:15 +0530 Subject: [Inpycon] T-Shirt Designs for PyCon India 2016 In-Reply-To: References: Message-ID: While the thought behind having a vertical design is good, this particular design is kind of clumpsy and not so attractive. So, its either better to go with the simple horizontal design or try out new vertical designs. Thanks, Anil On Mon, Jul 25, 2016 at 10:29 AM, satyaakam goswami wrote: > On Mon, Jul 25, 2016 at 10:06 AM, Piyush Gandhi > wrote: > >> Hey all! I was wondering if we can have a bot making or game dev session >> on 6th August's Pydelhi meetup >> > ?Hey Piyush, > > This mailing list for Pycon India discussions that too this thread is for > discussing T shirt design for Pycon India. > > i see you already are a member of > https://mail.python.org/mailman/listinfo/ncr-python.in please take this > topic on to that list . > > > ?thanks > -Satya? > > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From vijaykumar at bravegnu.org Mon Jul 25 03:43:34 2016 From: vijaykumar at bravegnu.org (Vijay Kumar) Date: Mon, 25 Jul 2016 13:13:34 +0530 Subject: [Inpycon] First-cut talk selection for Pycon India In-Reply-To: References: Message-ID: <7c7b9c46995ea69d6c56c363ad118b77.squirrel@gator3315.hostgator.com> On Sun, July 24, 2016 10:20 pm, Gora Mohanty wrote: > Proposers who made the first-cut selection have been informed of this > fact through the Reviews tab for their talk, and should have received an > email. Please do feel free to contact talk-selection at in.pycon.org should > you have any further queries, or concerns. A mail I sent to talk-selection at in.pycon.org bounced with the following error. Can you please look into this? ---8<--- This message was created automatically by mail delivery software. A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed: v... at g... (generated from talk-selection at in.pycon.org) SMTP error from remote mail server after end of data: host gmail-smtp-in.l.google.com [2404:6800:4003:c00::1a]: 550-5.7.1 [2001:df0:411:4004:609d:88ff:78c9:2c43] Our system has detected that 550-5.7.1 this message does not meet IPv6 sending guidelines regarding PTR 550-5.7.1 records and authentication. Please review 550-5.7.1 https://support.google.com/mail/?p=ipv6_authentication_error for more 550 5.7.1 information. g2si32249846pfa.278 - gsmtp ---8<--- Regards, Vijay From gora at mimirtech.com Mon Jul 25 04:38:38 2016 From: gora at mimirtech.com (Gora Mohanty) Date: Mon, 25 Jul 2016 14:08:38 +0530 Subject: [Inpycon] First-cut talk selection for Pycon India In-Reply-To: <7c7b9c46995ea69d6c56c363ad118b77.squirrel@gator3315.hostgator.com> References: <7c7b9c46995ea69d6c56c363ad118b77.squirrel@gator3315.hostgator.com> Message-ID: On 25 July 2016 at 13:13, Vijay Kumar wrote: > On Sun, July 24, 2016 10:20 pm, Gora Mohanty wrote: > > Proposers who made the first-cut selection have been informed of this > > fact through the Reviews tab for their talk, and should have received an > > email. Please do feel free to contact talk-selection at in.pycon.org should > > you have any further queries, or concerns. > > A mail I sent to talk-selection at in.pycon.org bounced with the following > error. Can you please look into this? > Where were you sending this message from: this seems to be a misconfiguration at the end of your mail server: it seems that the server is connecting to Gmail using IPv6, but cannot authenticate properly. It might be that there is no PTR record for that IP: please see the support.google.com link in the error message. You can send your message to me at this address, and I will forward it to talk-selection at in.pycon.org . Regards, Gora > > ---8<--- > This message was created automatically by mail delivery software. > > A message that you sent could not be delivered to one or more of its > recipients. This is a permanent error. The following address(es) failed: > > v... at g... > (generated from talk-selection at in.pycon.org) > SMTP error from remote mail server after end of data: > host gmail-smtp-in.l.google.com [2404:6800:4003:c00::1a]: > 550-5.7.1 [2001:df0:411:4004:609d:88ff:78c9:2c43] Our system has > detected that > 550-5.7.1 this message does not meet IPv6 sending guidelines regarding > PTR > 550-5.7.1 records and authentication. Please review > 550-5.7.1 > https://support.google.com/mail/?p=ipv6_authentication_error for more > 550 5.7.1 information. g2si32249846pfa.278 - gsmtp > ---8<--- > > > Regards, > Vijay > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > -------------- next part -------------- An HTML attachment was scrubbed... URL: From vijaykumar at bravegnu.org Mon Jul 25 05:24:26 2016 From: vijaykumar at bravegnu.org (Vijay Kumar) Date: Mon, 25 Jul 2016 14:54:26 +0530 Subject: [Inpycon] First-cut talk selection for Pycon India In-Reply-To: References: <7c7b9c46995ea69d6c56c363ad118b77.squirrel@gator3315.hostgator.com> Message-ID: <68aea9dea4b08c8208022837530cfa26.squirrel@gator3315.hostgator.com> On Mon, July 25, 2016 2:08 pm, Gora Mohanty wrote: > On 25 July 2016 at 13:13, Vijay Kumar wrote: > > >> On Sun, July 24, 2016 10:20 pm, Gora Mohanty wrote: >> >>> Proposers who made the first-cut selection have been informed of this >>> fact through the Reviews tab for their talk, and should have >>> received an email. Please do feel free to contact >>> talk-selection at in.pycon.org should you have any further queries, or >>> concerns. >> >> A mail I sent to talk-selection at in.pycon.org bounced with the following >> error. Can you please look into this? >> > > Where were you sending this message from: this seems to be a > misconfiguration at the end of your mail server: it seems that the server > is connecting to Gmail using IPv6, but cannot authenticate properly. It > might be that there is no PTR record for that IP: please see the > support.google.com link in the error message. The IPv6 address [2001:df0:411:4004:609d:88ff:78c9:2c43] mentioned in error message corresponds to E2E networks, which I guess is hosting the Pycon India website. Reverse lookup fails for the address, which might be the reason for the authentication failure. Regards, Vijay From vnbang2003 at gmail.com Mon Jul 25 14:23:31 2016 From: vnbang2003 at gmail.com (vijay kumar) Date: Mon, 25 Jul 2016 23:53:31 +0530 Subject: [Inpycon] Announcing PythonMonth for Year 2016 Message-ID: Hi All, PyCon India and PSSI would like to celebrate *August 10th - September 10th 2016* as PythonMonth to conduct Python and related workshops in various parts of India. PythonMonth is an event organized before PyCon India to help create awareness on Python and encourage people to attend PyCon India. We are looking for volunteers to help us from connecting to colleges till conducting workshops. If you are interested to be a part of PythonMonth, please do register yourselves at https://pythonexpress.in/ This is a great opportunity to give back to the community. More details on link [0] Upcoming workshop [1] Looking forward for more helping hands. Let us work towards this great initiative [0] : https://in.pycon.org/blog/2016/python-month-2016.html [1]: https://pythonexpress.in/workshops_upcoming/ -- Thanks, Vijay -------------- next part -------------- An HTML attachment was scrubbed... URL: From akshayaurora at gmail.com Tue Jul 26 05:29:59 2016 From: akshayaurora at gmail.com (qua non) Date: Tue, 26 Jul 2016 14:59:59 +0530 Subject: [Inpycon] Call to Local User Groups interested in hosting PyCon India for next year Message-ID: *Hello everyone, **Every year at AGM of PSSI we decide where to host PyCon India for next **year. This year(2016) the conference is being hosted in Delhi. * *Running PyCon India is very big effort, interested local group should do** some homework and convince the community that they can run the conference** effectively.* *Here is what you can do now.* ** Call for a meeting in your city, preferably in the python user-group **mailing list and discuss with everyone. *** PyCon India requires a venue of 1200+ capacity. Find out what venues **are available in your city and how much it costs. (Last year we were **paying close to 2L/day for NIMHANS). *** PyCon India requires a lot of sponsorships to meet the expenditure. **Major part of the sponsorships usually comes from the hosting city. Show **the community that you can raise sponsorships by getting at least a couple **of sponsorships from your city for this year's PyCon India. *** PyCon India gets better every year. We would like that to continue even **after it moves to a different city. You should get involved in running the **event this year and understand the details, so that you don't have to **reinvent them again. * *Interested? Just reply to this mail, showcase us your community by holding a local state level event. This will help you understand all the intricacies involved in managing a conference. This will also showcase to use that you have a community that is capable of helping you out with the event.* *Regards* *Team PyCon India 2016* -------------- next part -------------- An HTML attachment was scrubbed... URL: From akshayaurora at gmail.com Tue Jul 26 07:47:48 2016 From: akshayaurora at gmail.com (qua non) Date: Tue, 26 Jul 2016 17:17:48 +0530 Subject: [Inpycon] looking for Input on separate track for kids/young coders Message-ID: Hi All, The young coders session is a new initiative to teach Python to school kids from age 10 to 18. We are happy to have kids below 10 who are interested. We are planning to conduct the session in parallel with workshop days. We can even encourage them to ask play with RPI 2/3 , expeyes soemething similar where can experiment and continue later. The idea is to have some sessions like these https://www.youtube.com/watch?v=wdjKjAq3Rps https://www.youtube.com/watch?v=FIwVyb9MY5U We are looking for :: - Your inputs on the session - Course material - How to go about selecting mentoring team? Thanks for such a phenomenal response till now. Looking forward to your help in this too. Kind Regards Team PyCon India 2016 -------------- next part -------------- An HTML attachment was scrubbed... URL: From foss.mailinglists at gmail.com Tue Jul 26 22:46:48 2016 From: foss.mailinglists at gmail.com (sankarshan) Date: Wed, 27 Jul 2016 08:16:48 +0530 Subject: [Inpycon] Proposal for panel discussion In-Reply-To: References: Message-ID: On Mon, Jul 18, 2016 at 6:56 PM, vijay kumar wrote: > There are lot many open source projects like Django, SSL that are running > out of funds to support core developers. This can be a forum to discuss how > to improvise the situation, what can be done to bring more awareness on open > source projects, how to reach out to organizations that uses open source to > contribute back to the community and stuff. What would be the way to measure that such a panel is a good/successful one? /s -- sankarshan mukhopadhyay From vnbang2003 at gmail.com Wed Jul 27 09:51:12 2016 From: vnbang2003 at gmail.com (vijay kumar) Date: Wed, 27 Jul 2016 19:21:12 +0530 Subject: [Inpycon] Proposal for panel discussion In-Reply-To: References: Message-ID: On Wed, Jul 27, 2016 at 8:16 AM, sankarshan wrote: > On Mon, Jul 18, 2016 at 6:56 PM, vijay kumar wrote: > > There are lot many open source projects like Django, SSL that are running > > out of funds to support core developers. This can be a forum to discuss > how > > to improvise the situation, what can be done to bring more awareness on > open > > source projects, how to reach out to organizations that uses open source > to > > contribute back to the community and stuff. > > What would be the way to measure that such a panel is a good/successful > one? > The motto behind this topic is to increase the open source contributions and donations. Hoping that this forum will motivate many organizations and individuals using open source to come forward and help. Am not sure how we would be able to measure the outcome as such. Thanks, Vijay -------------- next part -------------- An HTML attachment was scrubbed... URL: