From kumar3180 at gmail.com Thu Jun 2 13:55:14 2016 From: kumar3180 at gmail.com (Raakesh kumar) Date: Thu, 2 Jun 2016 23:25:14 +0530 Subject: [PyDelhi] Help to deploy django with nginx Message-ID: Hi, I am trying to deploy a Django application on Digital Ocean server with Nginx. Here is what i have done so far: 1 - Created a file under /etc/nginx/sites-available server { listen 80 default_server; #server_name example.com; location = /favicon.ico { access_log off; log_not_found off; } location /static/ { root /home/sample; } location / { include uwsgi_params; uwsgi_pass unix:/tmp/sample.sock; } } 2 - Created symlink to /etc/nginx/sites-enabled 3 - Created /etc/uwsgi/sites/sample.ini [uwsgi] project = sample base = /home chdir = %(base)/%(project) home = %(base)/Env/%(project) module = %(project).wsgi:application master = true processes = 2 socket = /tmp/sample.sock uid = www-data gid = www-data chmod-socket = 777 vacuum = true 4 - And finally to start it on start created a file /etc/init/uwsgi.conf description "uWSGI" start on runlevel [2345] stop on runlevel [!2345] respawn exec /usr/local/bin/uwsgi --master --emperor /etc/uwsgi --uid www-data --gid www-data --logto /var/log/uwsgi.log But when i run the server it shows bad gateway error(502) And in the log file i see the message 2016/06/02 13:52:43 [error] 16048#0: *1 connect() to unix:/tmp/sample.sock failed (111: Connection refused) while connecting to upstream, client: 196.207.77.55, server: , request: "GET / HTTP/1.1", upstream: "uwsgi://unix:/tmp/sample.sock:", host: "139.59.12.129" Any solution to solve it? -- Regards RAKESH KUMAR http://www.raakeshkumar.in -------------- next part -------------- An HTML attachment was scrubbed... URL: From vinay.not.nice at gmail.com Thu Jun 2 14:41:42 2016 From: vinay.not.nice at gmail.com (Vinay Dahiya) Date: Fri, 3 Jun 2016 00:11:42 +0530 Subject: [PyDelhi] Help to deploy django with nginx In-Reply-To: References: Message-ID: this seems to be a permission from the directories mentioned in the config it seems that your using root user. try to create a user with group as www-data and place your code repo there. -------------- next part -------------- An HTML attachment was scrubbed... URL: From tarunlalwani at gmail.com Thu Jun 2 23:47:34 2016 From: tarunlalwani at gmail.com (Tarun Lalwani) Date: Fri, 3 Jun 2016 09:17:34 +0530 Subject: [PyDelhi] Help to deploy django with nginx In-Reply-To: References: Message-ID: Hi Rakesh, Check your WSGI log and make sure the WSGI app did start. Sometimes there are python path or other issues where WSGI app doesn't get up. Next because you are using www-data, make sure you create that user and chown your source directory using the same. Regards, Tarun Lalwani On Thu, Jun 2, 2016 at 11:25 PM, Raakesh kumar wrote: > Hi, > I am trying to deploy a Django application on Digital Ocean server with > Nginx. Here is what i have done so far: > > 1 - Created a file under /etc/nginx/sites-available > server { > listen 80 default_server; > #server_name example.com; > > location = /favicon.ico { access_log off; log_not_found off; } > location /static/ { > root /home/sample; > } > > location / { > include uwsgi_params; > uwsgi_pass unix:/tmp/sample.sock; > } > } > > 2 - Created symlink to /etc/nginx/sites-enabled > 3 - Created /etc/uwsgi/sites/sample.ini > [uwsgi] > project = sample > base = /home > > chdir = %(base)/%(project) > home = %(base)/Env/%(project) > module = %(project).wsgi:application > > master = true > processes = 2 > > socket = /tmp/sample.sock > uid = www-data > gid = www-data > chmod-socket = 777 > vacuum = true > 4 - And finally to start it on start created a file /etc/init/uwsgi.conf > description "uWSGI" > start on runlevel [2345] > stop on runlevel [!2345] > respawn > > exec /usr/local/bin/uwsgi --master --emperor /etc/uwsgi --uid www-data > --gid www-data --logto /var/log/uwsgi.log > > But when i run the server it shows bad gateway error(502) > And in the log file i see the message > > 2016/06/02 13:52:43 [error] 16048#0: *1 connect() to unix:/tmp/sample.sock > failed (111: Connection refused) while connecting to upstream, client: > 196.207.77.55, server: , request: "GET / HTTP/1.1", upstream: > "uwsgi://unix:/tmp/sample.sock:", host: "139.59.12.129" > > Any solution to solve it? > > -- > Regards > RAKESH KUMAR > http://www.raakeshkumar.in > > > _______________________________________________ > https://mail.python.org/mailman/listinfo/ncr-python.in > http://bit.ly/pydelhi-mailinglist-guidelines > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kumar3180 at gmail.com Fri Jun 3 00:54:45 2016 From: kumar3180 at gmail.com (Raakesh kumar) Date: Fri, 3 Jun 2016 10:24:45 +0530 Subject: [PyDelhi] Help to deploy django with nginx In-Reply-To: References: Message-ID: Hi Vinay [...] On Fri, Jun 3, 2016 at 12:11 AM, Vinay Dahiya wrote: > this seems to be a permission from the directories mentioned in the config > it seems that your using root user. try to create a user with group as > www-data and place your code repo there. > [/...] I am trying your suggestion but when i tried to see the permission for my project folder i found that it was already added under www-data user. For the reference please see below: drwxr-xr-x 4 www-data www-data 4096 Jun 2 12:13 sample -- Regards RAKESH KUMAR http://www.raakeshkumar.in -------------- next part -------------- An HTML attachment was scrubbed... URL: From kumar3180 at gmail.com Fri Jun 3 00:59:11 2016 From: kumar3180 at gmail.com (Raakesh kumar) Date: Fri, 3 Jun 2016 10:29:11 +0530 Subject: [PyDelhi] Help to deploy django with nginx In-Reply-To: References: Message-ID: Hi Tarun, [...] On Fri, Jun 3, 2016 at 9:17 AM, Tarun Lalwani wrote: > Hi Rakesh, > > Check your WSGI log and make sure the WSGI app did start. Sometimes there > are python path or other issues where WSGI app doesn't get up. Next because > you are using www-data, make sure you create that user and chown your > source directory using the same. > [/...] Below is output of tail -F /var/www/uwsgi.log detected max file descriptor number: 1024 lock engine: pthread robust mutexes thunder lock: disabled (you can enable it with --thunder-lock) Python version: 2.7.6 (default, Jun 22 2015, 18:01:27) [GCC 4.8.2] *** starting uWSGI Emperor *** *** Python threads support is disabled. You can enable it with --enable-threads *** Python main interpreter initialized at 0xdd9010 your mercy for graceful operations on workers is 60 seconds *** Operational MODE: no-workers *** spawned uWSGI master process (pid: 16064) It seems all correct to me on this part however as you pointed on permission issue, i had already added source directory under uid www-data and gid www-data drwxr-xr-x 4 www-data www-data 4096 Jun 2 12:13 sample -- Regards RAKESH KUMAR http://www.raakeshkumar.in -------------- next part -------------- An HTML attachment was scrubbed... URL: From kumar3180 at gmail.com Fri Jun 3 02:09:32 2016 From: kumar3180 at gmail.com (Raakesh kumar) Date: Fri, 3 Jun 2016 11:39:32 +0530 Subject: [PyDelhi] Help to deploy django with nginx In-Reply-To: References: Message-ID: Ok i have created a user and created a new virtual environment in the user's account and edited the configuration files accordingly and it worked. Thank you Vinay and Tarun for pointing to the problem :) -- Regards RAKESH KUMAR http://www.raakeshkumar.in -------------- next part -------------- An HTML attachment was scrubbed... URL: From peeyushaggarwal94 at gmail.com Fri Jun 3 05:54:45 2016 From: peeyushaggarwal94 at gmail.com (Peeyush Aggarwal) Date: Fri, 3 Jun 2016 15:24:45 +0530 Subject: [PyDelhi] PyDelhi Meetup Message-ID: Hello Please send a mail to the Delhi NCR Python mailing list confirming your willingness to volunteer for the next community meetup for 11th June 2016. The email id is ncr-python at python.org . Regards Peeyush PyDelhi Team Ph-9953798946 -------------- next part -------------- An HTML attachment was scrubbed... URL: From brsingh at microsoft.com Fri Jun 3 06:08:12 2016 From: brsingh at microsoft.com (Brij Raj Singh) Date: Fri, 3 Jun 2016 10:08:12 +0000 Subject: [PyDelhi] PyDelhi Meetup In-Reply-To: References: Message-ID: <889e272f31054c32b405c431c80caad9@HK2PR3004MB0083.064d.mgd.msft.net> Hi, This is to confirm we are volunteering for the next community meetup on 11th June, 2016 at our Gurgaon Office. The Office address is given below Microsoft Corp India Pvt Ltd. Level 10, Tower C, Epitome Bldg No. 5 DLF cyber city Phase 3, Gurgaon We have blocked a room for timings 2-6 PM, I can be reached out to on my number given in signature. Regards Brijraj Singh Sr. Tech. Evangelist | Developer Experience | Microsoft Corporation Handphone : +91 9999 074909 Twitter : @brijrajsingh Blog: http://www.brijrajsingh.com From: Peeyush Aggarwal [mailto:peeyushaggarwal94 at gmail.com] Sent: Friday, June 3, 2016 3:25 PM To: Brij Raj Singh ; ncr-python.in at python.org Subject: PyDelhi Meetup Hello Please send a mail to the Delhi NCR Python mailing list confirming your willingness to volunteer for the next community meetup for 11th June 2016. The email id is ncr-python at python.org . Regards Peeyush PyDelhi Team Ph-9953798946 -------------- next part -------------- An HTML attachment was scrubbed... URL: From brsingh at microsoft.com Fri Jun 3 09:22:57 2016 From: brsingh at microsoft.com (Brij Raj Singh) Date: Fri, 3 Jun 2016 13:22:57 +0000 Subject: [PyDelhi] PyDelhi Meetup In-Reply-To: References: Message-ID: Hi, This is to confirm we are volunteering for the next community meetup on 11th June, 2016 at our Gurgaon Office. The Office address is given below Microsoft Corp India Pvt Ltd. Level 10, Tower C, Epitome Bldg No. 5 DLF cyber city Phase 3, Gurgaon We have blocked a room for timings 2-6 PM, I can be reached out to on my number given in signature. Regards Brijraj Singh Sr. Tech. Evangelist | Developer Experience | Microsoft Corporation Handphone : +91 9999 074909 Twitter : @brijrajsingh Blog: http://www.brijrajsingh.com From: Peeyush Aggarwal [mailto:peeyushaggarwal94 at gmail.com] Sent: Friday, June 3, 2016 3:25 PM To: Brij Raj Singh >; ncr-python.in at python.org Subject: PyDelhi Meetup Hello Please send a mail to the Delhi NCR Python mailing list confirming your willingness to volunteer for the next community meetup for 11th June 2016. The email id is ncr-python at python.org . Regards Peeyush PyDelhi Team Ph-9953798946 -------------- next part -------------- An HTML attachment was scrubbed... URL: From chandankumar.093047 at gmail.com Sun Jun 5 14:44:38 2016 From: chandankumar.093047 at gmail.com (chandan kumar) Date: Mon, 6 Jun 2016 00:14:38 +0530 Subject: [PyDelhi] [X-POST] Registration for PyCon India 2016 will open by 06th Jun, 2016 Message-ID: Hello, Registration for PyCon India 2016 will open by 06th Jun, 2016 from 09:00 A.M. (IST). Anyone can book the tickets from here : https://in.explara.com/e/pycon-india-2016 Here are the pricing tiers for this year's conference: 1. Early Python : Rs. 1000 (200 tickets. No cancellation. Transferable) 2. Regular Python : Rs. 1500 3. Student Python : Rs. 1000 4. On-the-spot Python : Rs. 2500 (For two days) 5. Workshop Python : Rs. 1000 Per workshop Tickets 1 to 4 gives you full access to the conference for two days, including breakfast, lunch, tea & snacks and a T-shirt. The workshop ticket has to be bought separately for each workshop that you want to attend. We'll announce them as soon as we finalize them. If you would like to talk Python at the conference, [take a look at our Proposal submission page](https://in.pycon.org/cfp/pycon-india-2016/proposals/). Put in a rough draft right away. You can think about prettifying it later on. Submissions deadline is on the 29th of June. Thanks, Chandan Kumar -------------- next part -------------- An HTML attachment was scrubbed... URL: From arsh840 at gmail.com Mon Jun 6 00:20:05 2016 From: arsh840 at gmail.com (Arshpreet Singh) Date: Mon, 6 Jun 2016 09:50:05 +0530 Subject: [PyDelhi] Django and authorize.net Message-ID: Hi, I want to integrate Django with authorize.net for payment process. Google search provides mix views about various libraries and same situation is on Stackoverflow. Can anyone suggest me library to use for Django and authorize.net integration? -- Thanks Arshpreet Singh I am Sikh boy, Learning by doing and Learning by teaching is my religion. ------------------------------------------------------------------------------ Slashdot TV. Video for Nerds. Stuff that matters. http://tv.slashdot.org/ From peeyushaggarwal94 at gmail.com Mon Jun 6 03:01:57 2016 From: peeyushaggarwal94 at gmail.com (Peeyush Aggarwal) Date: Mon, 6 Jun 2016 12:31:57 +0530 Subject: [PyDelhi] [Appeal] Tickets Pycon India Message-ID: I booked my tickets for Pycon India. You book yours soon Best Peeyush -------------- next part -------------- An HTML attachment was scrubbed... URL: From chandankumar.093047 at gmail.com Mon Jun 6 12:32:21 2016 From: chandankumar.093047 at gmail.com (chandan kumar) Date: Mon, 6 Jun 2016 22:02:21 +0530 Subject: [PyDelhi] [X-POST] Registration for PyCon India 2016 will open by 06th Jun, 2016 In-Reply-To: References: Message-ID: Hello, We have kicked off the sale of tickets for Pycon India scheduled from 23-25 Sept in Delhi. Early Python and Student category are available right now in limited numbers. Hurry before the early Python and Student tickets run out. Tickets for workshops would open soon. Stay tuned to mailing list.[2] You can book your tickets on explara[1]. Do write back to tickets at in.pycon.org in case you have any suggestions or queries. Thanks, Chandan Kumar [1] http://bit.ly/inpycon2016Register [2.] https://mail.python.org/mailman/listinfo/inpycon -------------- next part -------------- An HTML attachment was scrubbed... URL: From peeyushaggarwal94 at gmail.com Fri Jun 10 03:50:14 2016 From: peeyushaggarwal94 at gmail.com (Peeyush Aggarwal) Date: Fri, 10 Jun 2016 13:20:14 +0530 Subject: [PyDelhi] [Update] Community Meetup || Microsoft || 11-Jun-2016 Message-ID: Hello We have some security concerns at this week's meetup due to which we would be adhering to the RSVP list very strictly to grant entry. Hence any fellow members who might not be attending the meetup are requested to update their RSVP status as "No" on the meetup page [1] . I request you to update the same asap. Best Peeyush [1] http://www.meetup.com/pydelhi/events/226342870/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From yogenvrm at yahoo.com Mon Jun 13 05:27:49 2016 From: yogenvrm at yahoo.com (Yogendra Verma) Date: Mon, 13 Jun 2016 09:27:49 +0000 (UTC) Subject: [PyDelhi] Looking for Python/Django Developers for a funded startup References: <1792196655.2045522.1465810070000.JavaMail.yahoo.ref@mail.yahoo.com> Message-ID: <1792196655.2045522.1465810070000.JavaMail.yahoo@mail.yahoo.com> Hi All, We are looking for Python & Django back-end or full stack developers having experience of around 3 years, at Gobolt, a funded startup.? You are going to be a part of the core tech team developing the core product at GoBOLT. Gobolt (www.gobolt.in) operates in Line Haul & Short Haul Trucking through a (owned+marketplace) model, creating value through dis-intermediation, increased asset utilization and extensive use of technology. We are building a next generation logistics platform with disruptive operating models, simple yet scalable processes & digitization at its core. You can expect rapid growth, a true startup culture built around flexibility, productivity and learning. There will not be any traces of bureaucratic environment or boundation.? ?Positions: Back end Developers; (we are also looking for front-end developer with experience in Angular JS, so if you happen to be one or know someone, please do let me know) Location : Dwarka, Delhi.Experience : around 3 yearsQualification: Engineers/MCA/But if can prove your skill & mettle, degree is not a barSkills: Python/Django You can call me at +91 9971697912, if you are interested, know someone who could be interested or just have a chat with a fellow techie; or you can mail your CV to me. RegardsYogender VermaCTO, Gobolt+919971697912 -------------- next part -------------- An HTML attachment was scrubbed... URL: From vinay.not.nice at gmail.com Mon Jun 13 06:51:24 2016 From: vinay.not.nice at gmail.com (Vinay Dahiya) Date: Mon, 13 Jun 2016 16:21:24 +0530 Subject: [PyDelhi] Looking for Python/Django Developers for a funded startup In-Reply-To: <1792196655.2045522.1465810070000.JavaMail.yahoo@mail.yahoo.com> References: <1792196655.2045522.1465810070000.JavaMail.yahoo.ref@mail.yahoo.com> <1792196655.2045522.1465810070000.JavaMail.yahoo@mail.yahoo.com> Message-ID: @Yogender Go through mailing guidelines @ http://bit.ly/pydelhi-mailinglist-guidelines? and use [Commercial] tags in posts related to jobs. -------------- next part -------------- An HTML attachment was scrubbed... URL: From peeyushaggarwal94 at gmail.com Tue Jun 14 14:04:47 2016 From: peeyushaggarwal94 at gmail.com (Peeyush Aggarwal) Date: Tue, 14 Jun 2016 23:34:47 +0530 Subject: [PyDelhi] [UPDATE] Call for Proposals In-Reply-To: References: Message-ID: Hello Pythonistas This is a reminder about the Call for Proposals for Pycon India, 2016. The same is open for submission for proposals and only about 15 days are left for the same. The submissions would close on June/30th/2016 The community has been constantly putting emphasis on maintaining high quality in talks and workshops for Pycon India. Quality can be maintained only if the proposals are of high quality and the submissions contain relevant content and information to make a proper judgement on selection. It becomes the responsibility of our community to poke and encourage every pythonista around them to submit proposals from their respective field of interest and expertise. Also, I appeal all you people to start reviewing the proposals and comment relevant questions/queries on the CFP portal [1] so as to have a healthy discussion on proposals. Feel free to reach us out on this thread in case you have any queries or feedback. Best Regards Peeyush Team InPyCon [1] https://in.pycon.org/cfp/2016/proposals/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From chandankumar.093047 at gmail.com Mon Jun 20 08:59:05 2016 From: chandankumar.093047 at gmail.com (chandan kumar) Date: Mon, 20 Jun 2016 18:29:05 +0530 Subject: [PyDelhi] [X-POST] Save the Important dates for PyCon India 2016 CFP Message-ID: Hello, If you are a Pythonist and doing cool stuff using Python, want to share your Knowledge with Others. Feel free to propose a talk /workshop to PyCon India 2016 at https://in.pycon.org/cfp/2016/proposals/ Below is the important dates related to call for proposals for PyCon India 2016: 30th June : Proposal Submission Deadline 10th July : Talk Selection Announcement 27th July: Presentation Upload Deadline 10th August : Final Review 25th August : Schedule Announcement For more information related to CFP, check this out : https://in.pycon.org/blog/2016/2016-CFP-Dates.html Thanks, Chandan Kumar -------------- next part -------------- An HTML attachment was scrubbed... URL: From chandankumar.093047 at gmail.com Sun Jun 26 03:32:29 2016 From: chandankumar.093047 at gmail.com (chandan kumar) Date: Sun, 26 Jun 2016 13:02:29 +0530 Subject: [PyDelhi] [X-POST] Nominations for Kenneth Gonsalves Award 2016 Message-ID: Hello, We have opened the nominations for Kenneth Gonsalves award for this year. The award is annually given out to a person who has done notable work towards Python community development and/or otherwise adoption/advocacy/development of Python programming language in local communities in India. https://in.pycon.org/blog/2016/kg-award-2016-nominations.html Kindly send in your nominations which will be reviewed and a winner selected. The award would be presented during PyCon India 2016. Thanks, Chandan Kumar -------------- next part -------------- An HTML attachment was scrubbed... URL: From chandankumar.093047 at gmail.com Sun Jun 26 03:58:29 2016 From: chandankumar.093047 at gmail.com (chandan kumar) Date: Sun, 26 Jun 2016 13:28:29 +0530 Subject: [PyDelhi] [X-POST][Reminder] 5 Days left for submitting proposal for PyCon India 2016 Message-ID: Hello, PyCon India, the premier conference in India, happening at JNU Convocation Centre, New Delhi from 23rd Sept to 25th Sept 2016. Call for Proposals is still Open. If you are a pythonist, doing cool stuff using Python Programming language, want to share your knowledge and thoughts with the community. Feel free to go ahead and submit your talk/workshop at https://in.pycon.org/cfp/2016/proposals/. 30th June 2016 is the last date for CFP. Thanks, Chandan Kumar -------------- next part -------------- An HTML attachment was scrubbed... URL: From chandankumar.093047 at gmail.com Wed Jun 29 15:12:38 2016 From: chandankumar.093047 at gmail.com (chandan kumar) Date: Thu, 30 Jun 2016 00:42:38 +0530 Subject: [PyDelhi] [X-POST][Reminder] Today i.e. 30th Jun, 2016 is the last date for CFP for PyCon India 2016 Message-ID: Hello, Today i.e. 30th Jun 2016 is the last date for Call for papers for PyCon India 2016. If you are a pythonist, want to share your cool experiments and knowledge with the Python community. Please go ahead and submit your talk here : https://in.pycon.org/cfp/2016/proposals/ If you are planning to attend PyCon India (which is happening at JNU Convocation Centre, New Delhi from 23rd-25th Sept 2016), You can buy your conference tickets from here: https://in.explara.com/e/pycon-india-2016 Thanks, Chandan Kumar -------------- next part -------------- An HTML attachment was scrubbed... URL: From chandankumar.093047 at gmail.com Thu Jun 30 13:50:21 2016 From: chandankumar.093047 at gmail.com (chandan kumar) Date: Thu, 30 Jun 2016 23:20:21 +0530 Subject: [PyDelhi] [Reminder] Just an hour left in CFP closing for PyCon India 2016 Message-ID: Hello, We have just one hour left in CFP closing for PyCon India 2016. If you had still not submitted your proposal, please go ahead and submit here: https://in.pycon.org/cfp/2016/proposals/ Thanks, Chandan Kumar -------------- next part -------------- An HTML attachment was scrubbed... URL: From ankur0493 at gmail.com Thu Jun 30 14:12:21 2016 From: ankur0493 at gmail.com (Ankur Gupta) Date: Thu, 30 Jun 2016 23:42:21 +0530 Subject: [PyDelhi] [Reminder] Just an hour left in CFP closing for PyCon India 2016 Message-ID: Hello, We have just the last few minutes left before CFP closes for PyCon India 2016. If you have still not submitted your proposal, please go ahead and submit here: https://in.pycon.org/cfp/2016/proposals/ Thanks, Team Pycon India -------------- next part -------------- An HTML attachment was scrubbed... URL: From tarunlalwani at gmail.com Thu Jun 30 14:21:16 2016 From: tarunlalwani at gmail.com (Tarun Lalwani) Date: Thu, 30 Jun 2016 23:51:16 +0530 Subject: [PyDelhi] [Reminder] Just an hour left in CFP closing for PyCon India 2016 In-Reply-To: References: Message-ID: I know I am late in the game, but I can submit one by the weekend? Regards, Tarun Lalwani On Thu, Jun 30, 2016 at 11:42 PM, Ankur Gupta wrote: > Hello, > > We have just the last few minutes left before CFP closes for PyCon India > 2016. > > If you have still not submitted your proposal, please go ahead and submit > here: https://in.pycon.org/cfp/2016/proposals/ > > Thanks, > Team Pycon India > > _______________________________________________ > https://mail.python.org/mailman/listinfo/ncr-python.in > http://bit.ly/pydelhi-mailinglist-guidelines > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ankur0493 at gmail.com Thu Jun 30 14:23:42 2016 From: ankur0493 at gmail.com (Ankur Gupta) Date: Thu, 30 Jun 2016 23:53:42 +0530 Subject: [PyDelhi] [Reminder] Just an hour left in CFP closing for PyCon India 2016 In-Reply-To: References: Message-ID: On Thu, Jun 30, 2016 at 11:51 PM, Tarun Lalwani wrote: > I know I am late in the game, but I can submit one by the weekend? > No. Though you can still submit your talk and edit it later. -------------- next part -------------- An HTML attachment was scrubbed... URL: