From tshrinivasan at gmail.com Thu Aug 3 01:39:15 2017 From: tshrinivasan at gmail.com (Shrinivasan T) Date: Thu, 3 Aug 2017 11:09:15 +0530 Subject: [Chennaipy] How to make image to SVG? Message-ID: I saw a site the can generate handwritten styled fonts with our own handwritten letters. We have to print a form, write, scan and upload. they will generate the ttf files. http://www.yourfonts.com/ http://www.yourfonts.com/print.html Thinking of doing the same for tamil with python. How to recognize the scanned page with handwritten tamil letters? is it possible to make svg files with same shape from a scanned page with python? Once we get the svg files, we can make as ttf files. Share your thoughts. -- Regards, T.Shrinivasan My Life with GNU/Linux : http://goinggnu.wordpress.com Free E-Magazine on Free Open Source Software in Tamil : http://kaniyam.com Get Free Tamil Ebooks for Android, iOS, Kindle, Computer : http://FreeTamilEbooks.com From vnbang2003 at gmail.com Sat Aug 5 04:37:53 2017 From: vnbang2003 at gmail.com (vijay kumar) Date: Sat, 5 Aug 2017 14:07:53 +0530 Subject: [Chennaipy] [X-Post] PythonExpress challenges Message-ID: Hi All, As we discussed couple of months ago[0], PythonExpress project requires funding to take care of certain things. a) Keeping the tutor motivated and encouraged to conduct multiple workshops seems to be tough. Even though we take care of travel and accommodation with or without the help of colleges, we find short of tutors some times. IMO, we should provide a small token amount to tutors to show appreciation. b) we should think of an option to provide college students certificates as a workshop without certificates is not welcomed as much by all colleges and students. I think that this can be resolved in 2 ways. 1. Request college to pay us if they need certificates - hard copy. 2. Generate soft copies of certificate (PDF) and share it with students once college uploads the student details. Also, c) Conducting Intermediate level workshop for the students who has taken the the beginners level since we are not able to find tutors. Kindly let us know your thoughts on the same. [0] : http://lists.pssi.org.in/pipermail/pythonexpress/2017- April/000182.html -- Thanks, Vijay -------------- next part -------------- An HTML attachment was scrubbed... URL: From 77minds at gmail.com Mon Aug 7 06:22:43 2017 From: 77minds at gmail.com (Karthikeyan A K) Date: Mon, 7 Aug 2017 15:52:43 +0530 Subject: [Chennaipy] How to make image to SVG? In-Reply-To: References: Message-ID: Hi Srini, Why not install inkscape and try to use some command line commands it provides, try calling it from python. I am not sure weather it provides the exact conversion commands you are looking for. On Thu, Aug 3, 2017 at 11:09 AM, Shrinivasan T wrote: > I saw a site the can generate handwritten styled fonts with our own > handwritten letters. > > We have to print a form, write, scan and upload. > they will generate the ttf files. > > http://www.yourfonts.com/ > http://www.yourfonts.com/print.html > > Thinking of doing the same for tamil with python. > > How to recognize the scanned page with handwritten tamil letters? > > is it possible to make svg files with same shape from a scanned page > with python? > > Once we get the svg files, we can make as ttf files. > > Share your thoughts. > > -- > Regards, > T.Shrinivasan > > > My Life with GNU/Linux : http://goinggnu.wordpress.com > Free E-Magazine on Free Open Source Software in Tamil : http://kaniyam.com > > Get Free Tamil Ebooks for Android, iOS, Kindle, Computer : > http://FreeTamilEbooks.com > _______________________________________________ > Chennaipy mailing list > Chennaipy at python.org > https://mail.python.org/mailman/listinfo/chennaipy > -- Karthikeyan A K -------------- next part -------------- An HTML attachment was scrubbed... URL: From aravindhank1994 at gmail.com Mon Aug 7 10:23:10 2017 From: aravindhank1994 at gmail.com (Aravindhan K) Date: Mon, 7 Aug 2017 19:53:10 +0530 Subject: [Chennaipy] How to make image to SVG? In-Reply-To: References: Message-ID: Hi, My thoughts on the matter 1) Use OpenCV or NumPy to do adaptive thresholding over the scanned image . 2) Create image for each individual character, from scanned image. 3) Feed these individual images to bitmap to vector convertors such as http://potrace.sourceforge.net. With some effort we may even able to write a python wrapper too. Thanks & Regards, Aravindhan K On Mon, Aug 7, 2017 at 3:52 PM, Karthikeyan A K <77minds at gmail.com> wrote: > Hi Srini, > > Why not install inkscape and try to use some command line commands it > provides, try calling it from python. I am not sure weather it provides the > exact conversion commands you are looking for. > > On Thu, Aug 3, 2017 at 11:09 AM, Shrinivasan T > wrote: > >> I saw a site the can generate handwritten styled fonts with our own >> handwritten letters. >> >> We have to print a form, write, scan and upload. >> they will generate the ttf files. >> >> http://www.yourfonts.com/ >> http://www.yourfonts.com/print.html >> >> Thinking of doing the same for tamil with python. >> >> How to recognize the scanned page with handwritten tamil letters? >> >> is it possible to make svg files with same shape from a scanned page >> with python? >> >> Once we get the svg files, we can make as ttf files. >> >> Share your thoughts. >> >> -- >> Regards, >> T.Shrinivasan >> >> >> My Life with GNU/Linux : http://goinggnu.wordpress.com >> Free E-Magazine on Free Open Source Software in Tamil : >> http://kaniyam.com >> >> Get Free Tamil Ebooks for Android, iOS, Kindle, Computer : >> http://FreeTamilEbooks.com >> _______________________________________________ >> Chennaipy mailing list >> Chennaipy at python.org >> https://mail.python.org/mailman/listinfo/chennaipy >> > > > > -- > Karthikeyan A K > > _______________________________________________ > Chennaipy mailing list > Chennaipy at python.org > https://mail.python.org/mailman/listinfo/chennaipy > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tshrinivasan at gmail.com Mon Aug 7 13:15:34 2017 From: tshrinivasan at gmail.com (Shrinivasan T) Date: Mon, 7 Aug 2017 22:45:34 +0530 Subject: [Chennaipy] How to make image to SVG? In-Reply-To: References: Message-ID: > 3) Feed these individual images to bitmap to vector convertors such as http://potrace.sourceforge.net. > With some effort we may even able to write a python wrapper too. > https://mail.python.org/mailman/listinfo/chennaipy > Thanks. on exploring potrace, got this link http://scruss.com/blog/2010/05/09/creating-a-truetype-font-from-your-handwriting-with-your-scanner-your-printer-and-fontforge/ Will try to adapt this for tamil. -- Regards, T.Shrinivasan My Life with GNU/Linux : http://goinggnu.wordpress.com Free E-Magazine on Free Open Source Software in Tamil : http://kaniyam.com Get Free Tamil Ebooks for Android, iOS, Kindle, Computer : http://FreeTamilEbooks.com From vijaykumar at bravegnu.org Thu Aug 10 11:37:55 2017 From: vijaykumar at bravegnu.org (Vijay Kumar) Date: Thu, 10 Aug 2017 21:07:55 +0530 Subject: [Chennaipy] Talks for the Next Meetup Message-ID: <4224cb43856e72ce7edc1ac8aa6a41fa.squirrel@gator3315.hostgator.com> Hi Everyone, The next meetup is on the 26th of this month. If you are interested in doing a talk (20 min duration), please reply with your talk title and talk description. Regards, Vijay From kskrishnasangeeth at gmail.com Sat Aug 12 01:32:23 2017 From: kskrishnasangeeth at gmail.com (Krishna Sangeeth KS) Date: Sat, 12 Aug 2017 11:02:23 +0530 Subject: [Chennaipy] Talks for the Next Meetup In-Reply-To: <4224cb43856e72ce7edc1ac8aa6a41fa.squirrel@gator3315.hostgator.com> References: <4224cb43856e72ce7edc1ac8aa6a41fa.squirrel@gator3315.hostgator.com> Message-ID: Hi Vijay, I wish to give the below talk. Title : "Bringing Vangogh back" Description : We all love photos. We love paintings too . What if we can apply the texture of famous paintings such as "Starry Night" to our every day photos to give them an enchanting look and feel? Thanks, Krishna Sangeeth With Regards Krishna Sangeeth K.S ---------------------------------------------------------------------- If you can force your heart and nerve and sinew To serve your turn long after they are gone, And so hold on when there is nothing in you Except the Will which says to them: "Hold on" On Thu, Aug 10, 2017 at 9:07 PM, Vijay Kumar wrote: > Hi Everyone, > The next meetup is on the 26th of this month. If you are interested in > doing a talk (20 min duration), please reply with your talk title and talk > description. > > Regards, > Vijay > _______________________________________________ > Chennaipy mailing list > Chennaipy at python.org > https://mail.python.org/mailman/listinfo/chennaipy > -------------- next part -------------- An HTML attachment was scrubbed... URL: From bhansalibhawesh at yahoo.com Sat Aug 12 10:22:02 2017 From: bhansalibhawesh at yahoo.com (Bhawesh Bhansali) Date: Sat, 12 Aug 2017 14:22:02 +0000 (UTC) Subject: [Chennaipy] =?utf-8?q?Call_for_proposals_-_MUPy_=28Manipal?= =?utf-8?q?=E2=80=99s_Python_Devcon=29?= References: <1462999991.455937.1502547722843.ref@mail.yahoo.com> Message-ID: <1462999991.455937.1502547722843@mail.yahoo.com> Hello Sir/Ma'amFollowing the success of MUPy (Manipal's Python Developer Conference), 2016 (pypals.org/mupy2016), Python Users' Group (PyPals) and Linux Users' Group, Manipal (LUGM) are proud to announce the second annual edition of the conference. Following a format similar to PyCon India, MUPy 2017 shall be conducted over the weekend of October 21st and 22nd. We plan to have workshops, talks and seminars conducted by professionals in the industry. The speakers will be sharing their experiences and the endless possibilities of the world of Python. MUPy aims to inculcate a sense of passion for the language and development, nurturing innovation among students. | Event | MUPy (Mew-Pie) | | Date | Saturday, October 21, 2017 - Sunday, October 22, 2017 | | Venue | Manipal, Karnataka, India | | Website | https://pypals.org/mupy | The call for proposals for the conference is now open and we invite you to submit your proposals to proposals at pypals.org by Sunday, September 17th. The guidelines for the same can be found on pypals.org/proposal. Hoping for a great response from an amazing Python community! Best,Team PyPalscontact at pypals.orgfacebook.com/pypalsMUPy | PyPals (@pypals) | Twitter | | | | | | | | | | | MUPy | PyPals (@pypals) | Twitter The latest Tweets from MUPy | PyPals (@pypals) | | | | -------------- next part -------------- An HTML attachment was scrubbed... URL: From rammy.sagar at gmail.com Sun Aug 13 04:37:35 2017 From: rammy.sagar at gmail.com (ram sagar) Date: Sun, 13 Aug 2017 14:07:35 +0530 Subject: [Chennaipy] Fwd: [X-POST] Call for proposals for PyConf Hyderabad 2017 In-Reply-To: References: Message-ID: Dear ChennaiPy members, We are happy and thrilled to announce call for proposals (CFP) [1] for first annual Python conference in Hyderabad , PyConf Hyderabad 2017 The conference is a two day event: 07th October : Workshops 08th October : Talks If you are a Python programmer or doing amazing stuff with Python or a open source Python developer, and you want to share your ideas to the Python community, please feel free to submit your proposals for PyConf Hyderabad 2017 Link to submit the talks[1] The last date for the CFP is 31st August, 2017 For more details about the conference , please visit our PyConf Hyderabad website[2]. We request you to please spread the word by liking our social media posts[3],[4] and sharing them. If you have any queries , please reach out to us at [5] or write to our mailing list[6] Links : [1] https://pyconfhyd.talkfunnel.com/2017/ [2] http://pyconf.hydpy.org/ [3] https://www.facebook.com/HydPy/ [4] https://twitter.com/hydPython [5] contact at hydpy.org [6] hydpy at python.org Thanks & Regards Ram Sagar Mourya From igauravsehrawat at gmail.com Sun Aug 13 05:42:34 2017 From: igauravsehrawat at gmail.com (Gaurav Sehrawat) Date: Sun, 13 Aug 2017 09:42:34 +0000 Subject: [Chennaipy] Talks for the Next Meetup In-Reply-To: References: <4224cb43856e72ce7edc1ac8aa6a41fa.squirrel@gator3315.hostgator.com> Message-ID: > > Title : "Bringing Vangogh back" > > Description : We all love photos. We love paintings too . What if we can > apply the texture of famous paintings such as "Starry Night" to our every > day photos to give them an enchanting look and feel? > Looking forward to monthly dose of AI/ML happenings. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From yash.kumar4 at learner.manipal.edu Sun Aug 13 06:47:44 2017 From: yash.kumar4 at learner.manipal.edu (YASH KUMAR LAL-140905488) Date: Sun, 13 Aug 2017 10:47:44 +0000 Subject: [Chennaipy] Talks for the Next Meetup In-Reply-To: References: <4224cb43856e72ce7edc1ac8aa6a41fa.squirrel@gator3315.hostgator.com>, Message-ID: Artistic Style Transfer is always an interesting topic. Best of luck for your topic. Thanks, Yash Kumar Lal ________________________________ From: Chennaipy on behalf of Krishna Sangeeth KS Sent: Saturday, August 12, 2017 11:02 AM To: Chennai Python User Group Mailing List Subject: Re: [Chennaipy] Talks for the Next Meetup Hi Vijay, I wish to give the below talk. Title : "Bringing Vangogh back" Description : We all love photos. We love paintings too . What if we can apply the texture of famous paintings such as "Starry Night" to our every day photos to give them an enchanting look and feel? Thanks, Krishna Sangeeth With Regards Krishna Sangeeth K.S ---------------------------------------------------------------------- If you can force your heart and nerve and sinew To serve your turn long after they are gone, And so hold on when there is nothing in you Except the Will which says to them: "Hold on" On Thu, Aug 10, 2017 at 9:07 PM, Vijay Kumar > wrote: Hi Everyone, The next meetup is on the 26th of this month. If you are interested in doing a talk (20 min duration), please reply with your talk title and talk description. Regards, Vijay _______________________________________________ Chennaipy mailing list Chennaipy at python.org https://mail.python.org/mailman/listinfo/chennaipy -------------- next part -------------- An HTML attachment was scrubbed... URL: From gashok2 at gmail.com Tue Aug 15 02:02:03 2017 From: gashok2 at gmail.com (Ashok Govindarajan) Date: Tue, 15 Aug 2017 11:32:03 +0530 Subject: [Chennaipy] Minutes of July 22, ChennaiPy meetup Message-ID: Dear All, Please find below the minutes of the ChennaiPy meetup on July 22. Sorry for the delay in sending this. It was a hot afternoon on July 22/2017. The mind was wrestling between wanting to listen to some good talks in ChennaiPy and sleeping at home in the A/C. The answer was obvious! But the electricity department had other plans and ensured that I attended the ChennaiPy meetup and here am I writing the MoM for the same. :) The session began with Vijay setting the context about what to expect from a meetup. It is useful that he goes through this regularly. It gives a sense of what one needs to do the during a meetup to gain the maximum from this event. Thanks Vijay, for this. It was followed by *Suresh VV who gave a talk on the Hypothesis package in Python*. He introduced us to the problem of Fox-hen-grain. You can read about the same here: https://sureshvv.wordpress.com/2017/06/10/solving-the- fox-hen-grain-puzzle-using-hypothesis/ He also spoke about the *Hypotheis package's* ability to break the code and test the code's edge and corner cases. *Naren on Coding standards* He primarily emphasized on good coding standards and spoke about some details related to variables, functions, loop/indentation and error handling. Some salient points include : 1) Dont use the "temp" variable --> use meaningful variable names 2) Ensure that a function should have only one responsibility 3)Restrict loop nesting to maximum 3 levels. His talk is available at : http://www.dudewho.codes/assets/pdfs/writeCodeForHumans.pdf *Talk by people from Enability team:* ?Enability Foundation for Rehabilitation? is a not for profit (Section 8) company that focuses on delivering assistive technology solutions to the marginalized and disadvantaged sections of society You can get more details about what they do here: http://enability.in/#/ They were looking out for programmers/analysts both part-time and full time to bring their initiatives to fruition. *Networking tea break* *NLP, Chatbox talk by Prabhakaran Kumaresshan* Prabhakaran is an Machine learning engineer working in TCS. He spoke about chatbots and how to build chatbots using slack. Currently it is messaging apps are being used more than social networks. The talk was interactive and discussion were on the lines of how much data google has about all of us and how it is being used. Their prediction algos are very sophisticated that there progress in areas like deep learning are much ahead of others. His talk is available at: https://github.com/nixphix/meetup-chennaipy-jul2017-slackbot-stanfordnlp *Lighning talks* spacy.io - Krishna Sangeeth introduced the audience to this site that talks about NLP. People working/interested in this may want to take a look at this. Gaurav spoke about *Documentation Vs Stack overflow* Good practise to look at documentation instead of heading to stack over flow at the first step itself. Showed a reference to a good doc site for reference : http://devdocs.io/ Shrayas Extended Gaurav?s talk Arun ram from Infosys : Spoke about Haskell testing http://book.realworldhaskell.org/read/testing-and-quality-assurance.html *Group Photo* The session ended with a group photo, as usual. Rgds, Ashok -------------- next part -------------- An HTML attachment was scrubbed... URL: From subil1407 at gmail.com Fri Aug 18 06:47:17 2017 From: subil1407 at gmail.com (Subil A) Date: Fri, 18 Aug 2017 16:17:17 +0530 Subject: [Chennaipy] [Discussion] About scope of programming languages in Chennai's IT industry In-Reply-To: References: Message-ID: A friend of mine in college from the ECE department told me he was considering joining a Java course and asked me if there was scope for the language. I didn't know how to answer that as I'm a clueless college student myself. Java was once the best thing since sliced bread but is it still the same? So, fellow pythonistas in the industry, my question is: Which languages/technologies, in your opinion, has scope in Chennai's IT industry today? And in what niches (like embedded, medical and so on)? I'm most interested in hearing the reasons for your choice. Eloquent answers, angry rants, simple statements; all are welcome! Don't hold back! I know this is the Python mailing list but you don't have give Python related answers (You can if you want to though. Nobody's forcing you :) ) (Also, if someone can give me an answer for Java, that'd be great. I need something to tell my friend). -------------- next part -------------- An HTML attachment was scrubbed... URL: From sakthirengaraj at gmail.com Fri Aug 18 07:17:31 2017 From: sakthirengaraj at gmail.com (Rengaraj D) Date: Fri, 18 Aug 2017 16:47:31 +0530 Subject: [Chennaipy] [Discussion] About scope of programming languages in Chennai's IT industry In-Reply-To: References: Message-ID: On 18 August 2017 at 16:17, Subil A wrote: > A friend of mine in college from the ECE department told me he was > considering joining a Java course and asked me if there was scope for the > language. I didn't know how to answer that as I'm a clueless college > student myself. Java was once the best thing since sliced bread but is it > still the same? > > So, fellow pythonistas in the industry, my question is: > Which languages/technologies, in your opinion, has scope in Chennai's IT > industry today? And in what niches (like embedded, medical and so on)? > > I'm most interested in hearing the reasons for your choice. Eloquent > answers, angry rants, simple statements; all are welcome! Don't hold back! > > I know this is the Python mailing list but you don't have give Python > related answers (You can if you want to though. Nobody's forcing you :) ) > Ask your friend to read this Q&A he will decide what he want to do. https://www.quora.com/profile/Balajee-Seshadri -------------- next part -------------- An HTML attachment was scrubbed... URL: From shrayasr at gmail.com Fri Aug 18 07:31:54 2017 From: shrayasr at gmail.com (Shrayas rajagopal) Date: Fri, 18 Aug 2017 17:01:54 +0530 Subject: [Chennaipy] [Discussion] About scope of programming languages in Chennai's IT industry In-Reply-To: References: Message-ID: Hi Subil, On Fri, Aug 18, 2017 at 4:17 PM, Subil A wrote: > A friend of mine in college from the ECE department told me he was > considering joining a Java course and asked me if there was scope for the > language. I didn't know how to answer that as I'm a clueless college > student myself. Java was once the best thing since sliced bread but is it > still the same? > ?Java still is relevant in this time. The JVM is an *insanely* robust virtual machine that is very performant. Its ability to do `java -jar ` stands unrivaled?. A prime area where Java stands tall is Android development. I'm sure we all know that the future is moving towards everything on the mobile -- and Android is leading the rat race to get there. Kotlin is making a foray into this area, sure; but Java is still the leader. Another thing to not forget is the ecosystem around this language. The java ecosystem is extremely mature with a large number of libraries. Be it embedded systems, web development or machine learning you can rest assured that Java has you covered. So my answer is: YES. It is very much the same and I don't see it fading out anytime soon. > So, fellow pythonistas in the industry, my question is: > Which languages/technologies, in your opinion, has scope in Chennai's IT > industry today? And in what niches (like embedded, medical and so on)? > - Web development: - Backends: Python, Ruby, Javascript, Java, C# - Frontend: Javascript (with Angular, React et al) - Data Sciences: - Python, Python, Python ?[...] I look forward to everyone else's input too. Great question, Subil! Regards, Shrayas -------------- next part -------------- An HTML attachment was scrubbed... URL: From shakthimaan at gmail.com Fri Aug 18 08:59:13 2017 From: shakthimaan at gmail.com (Shakthi Kannan) Date: Fri, 18 Aug 2017 18:29:13 +0530 Subject: [Chennaipy] [Discussion] About scope of programming languages in Chennai's IT industry In-Reply-To: References: Message-ID: Hi, --- On Fri, Aug 18, 2017 at 4:17 PM, Subil A wrote: | considering joining a Java course and asked me if there was scope for the | language. \-- You do not pick a programming language because it has scope! You pick a programming language because it helps you to solve a problem for the domain that it was designed for. "If all you have is a hammer, everything looks like a nail." Choose the right tool to solve the right problem. SK -- Shakthi Kannan http://www.shakthimaan.com From jaiimmortal at gmail.com Fri Aug 18 09:32:16 2017 From: jaiimmortal at gmail.com (Jaivarsan Bala) Date: Fri, 18 Aug 2017 13:32:16 +0000 Subject: [Chennaipy] Chennaipy Digest, Vol 48, Issue 9 In-Reply-To: References: Message-ID: Well I'm a college student as well, but I'm investing myself in python. Not just because of it's simplicity, but it's friendly and you know about the community. I'd advice anyone to follow the trend to go and invest themselves in either JavaScript or Python. I don't have the article but, Harvard replaced it's introductory course to programming which was in Java to JavaScript, and this change is appreciated among the developers community. Java is still used for maintenance of old code nowadays, but at the rate JS and Python are heading... The future holds to the people who conquer it. On Fri 18 Aug, 2017, 17:03 , wrote: > Send Chennaipy mailing list submissions to > chennaipy at python.org > > To subscribe or unsubscribe via the World Wide Web, visit > https://mail.python.org/mailman/listinfo/chennaipy > or, via email, send a message with subject or body 'help' to > chennaipy-request at python.org > > You can reach the person managing the list at > chennaipy-owner at python.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Chennaipy digest..." > > > Today's Topics: > > 1. [Discussion] About scope of programming languages in > Chennai's IT industry (Subil A) > 2. Re: [Discussion] About scope of programming languages in > Chennai's IT industry (Rengaraj D) > 3. Re: [Discussion] About scope of programming languages in > Chennai's IT industry (Shrayas rajagopal) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Fri, 18 Aug 2017 16:17:17 +0530 > From: Subil A > To: Chennai Python User Group Mailing List > Subject: [Chennaipy] [Discussion] About scope of programming languages > in Chennai's IT industry > Message-ID: > ixE3KXSvg9Q at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > A friend of mine in college from the ECE department told me he was > considering joining a Java course and asked me if there was scope for the > language. I didn't know how to answer that as I'm a clueless college > student myself. Java was once the best thing since sliced bread but is it > still the same? > > So, fellow pythonistas in the industry, my question is: > Which languages/technologies, in your opinion, has scope in Chennai's IT > industry today? And in what niches (like embedded, medical and so on)? > > I'm most interested in hearing the reasons for your choice. Eloquent > answers, angry rants, simple statements; all are welcome! Don't hold back! > > I know this is the Python mailing list but you don't have give Python > related answers (You can if you want to though. Nobody's forcing you :) ) > > (Also, if someone can give me an answer for Java, that'd be great. I need > something to tell my friend). > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/chennaipy/attachments/20170818/67688795/attachment-0001.html > > > > ------------------------------ > > Message: 2 > Date: Fri, 18 Aug 2017 16:47:31 +0530 > From: Rengaraj D > To: Chennai Python User Group Mailing List > Subject: Re: [Chennaipy] [Discussion] About scope of programming > languages in Chennai's IT industry > Message-ID: > < > CANgAyd6aen4vWHhyAaGOBkDHW0-gjwG_Qtz9nOqy9JVqQN4s3w at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > On 18 August 2017 at 16:17, Subil A wrote: > > > A friend of mine in college from the ECE department told me he was > > considering joining a Java course and asked me if there was scope for the > > language. I didn't know how to answer that as I'm a clueless college > > student myself. Java was once the best thing since sliced bread but is it > > still the same? > > > > So, fellow pythonistas in the industry, my question is: > > Which languages/technologies, in your opinion, has scope in Chennai's IT > > industry today? And in what niches (like embedded, medical and so on)? > > > > I'm most interested in hearing the reasons for your choice. Eloquent > > answers, angry rants, simple statements; all are welcome! Don't hold > back! > > > > I know this is the Python mailing list but you don't have give Python > > related answers (You can if you want to though. Nobody's forcing you :) ) > > > > Ask your friend to read this Q&A he will decide what he want to do. > https://www.quora.com/profile/Balajee-Seshadri > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/chennaipy/attachments/20170818/49bf1ac0/attachment-0001.html > > > > ------------------------------ > > Message: 3 > Date: Fri, 18 Aug 2017 17:01:54 +0530 > From: Shrayas rajagopal > To: Chennai Python User Group Mailing List > Subject: Re: [Chennaipy] [Discussion] About scope of programming > languages in Chennai's IT industry > Message-ID: > < > CAEkH89OAddKSmNbf+qPu+2vt3TyCUfw08w0b+4Ar1VEXZZjScA at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > Hi Subil, > > On Fri, Aug 18, 2017 at 4:17 PM, Subil A wrote: > > > A friend of mine in college from the ECE department told me he was > > considering joining a Java course and asked me if there was scope for the > > language. I didn't know how to answer that as I'm a clueless college > > student myself. Java was once the best thing since sliced bread but is it > > still the same? > > > ?Java still is relevant in this time. The JVM is an *insanely* robust > virtual machine that is very performant. Its ability to do `java -jar > ` stands unrivaled?. > > A prime area where Java stands tall is Android development. I'm sure we all > know that the future is moving towards everything on the mobile -- and > Android is leading the rat race to get there. Kotlin is making a foray into > this area, sure; but Java is still the leader. > > Another thing to not forget is the ecosystem around this language. The java > ecosystem is extremely mature with a large number of libraries. Be it > embedded systems, web development or machine learning you can rest assured > that Java has you covered. > > So my answer is: YES. It is very much the same and I don't see it fading > out anytime soon. > > > So, fellow pythonistas in the industry, my question is: > > Which languages/technologies, in your opinion, has scope in Chennai's IT > > industry today? And in what niches (like embedded, medical and so on)? > > > - Web development: > - Backends: Python, Ruby, Javascript, Java, C# > - Frontend: Javascript (with Angular, React et al) > - Data Sciences: > - Python, Python, Python > > ?[...] > > I look forward to everyone else's input too. > > Great question, Subil! > > Regards, > Shrayas > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/chennaipy/attachments/20170818/6893d67f/attachment.html > > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > Chennaipy mailing list > Chennaipy at python.org > https://mail.python.org/mailman/listinfo/chennaipy > > > ------------------------------ > > End of Chennaipy Digest, Vol 48, Issue 9 > **************************************** > -------------- next part -------------- An HTML attachment was scrubbed... URL: From vijaykumar at zilogic.com Fri Aug 18 09:20:11 2017 From: vijaykumar at zilogic.com (Vijay Kumar B.) Date: Fri, 18 Aug 2017 18:50:11 +0530 Subject: [Chennaipy] [Discussion] About scope of programming languages in Chennai's IT industry In-Reply-To: References: Message-ID: <432a8699-999a-05be-08d4-b1c816b490a1@zilogic.com> On Friday 18 August 2017 04:17 PM, Subil A wrote: > > A friend of mine in college from the ECE department told me he was > considering joining a Java course and asked me if there was scope for > the language. I didn't know how to answer that as I'm a clueless > college student myself. Java was once the best thing since sliced > bread but is it still the same? > From my personal experience, learning Java, has helped me become a better programmer. Check this article titled "Teach Yourself Programming in Ten Years" by Peter Norvig http://norvig.com/21-days.html Regards, Vijay From mag.1984 at gmail.com Fri Aug 18 11:56:06 2017 From: mag.1984 at gmail.com (Magesh Dhasayyan) Date: Fri, 18 Aug 2017 21:26:06 +0530 Subject: [Chennaipy] [Discussion] About scope of programming languages in Chennai's IT industry In-Reply-To: References: Message-ID: short answer: yes java is still relevant. go for it, but it's important to learn more concepts around it, not just java. long answer: if the aim is to become a good programmer, i would advise a different approach. there are certain core concepts that transcend programming languages. most of the top companies just look for solid understanding of these core concepts especially when hiring a fresher, irrespective of programming language expertise. programming language knowledge is also tested, but it doesn't matter which language. if the java course that you friend has in mind is just about java and its frameworks and object oriented programming, it's only a small part of what is essential to a programmer. also one other thing to keep in mind, is not to get confined into a certain way of thinking because of early exposure to specialized programming languages. most of what's written on this page is also relevant https://www.metaltoad.com/blog/myth-specialized-programmer hope that helps. -magesh On Fri, Aug 18, 2017 at 4:17 PM, Subil A wrote: > A friend of mine in college from the ECE department told me he was > considering joining a Java course and asked me if there was scope for the > language. I didn't know how to answer that as I'm a clueless college > student myself. Java was once the best thing since sliced bread but is it > still the same? > > So, fellow pythonistas in the industry, my question is: > Which languages/technologies, in your opinion, has scope in Chennai's IT > industry today? And in what niches (like embedded, medical and so on)? > > I'm most interested in hearing the reasons for your choice. Eloquent > answers, angry rants, simple statements; all are welcome! Don't hold back! > > I know this is the Python mailing list but you don't have give Python > related answers (You can if you want to though. Nobody's forcing you :) ) > > (Also, if someone can give me an answer for Java, that'd be great. I need > something to tell my friend). > > _______________________________________________ > Chennaipy mailing list > Chennaipy at python.org > https://mail.python.org/mailman/listinfo/chennaipy > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From igauravsehrawat at gmail.com Fri Aug 18 12:46:00 2017 From: igauravsehrawat at gmail.com (Gaurav Sehrawat) Date: Fri, 18 Aug 2017 16:46:00 +0000 Subject: [Chennaipy] [Discussion] About scope of programming languages in Chennai's IT industry In-Reply-To: References: Message-ID: Not going to reply on the language war. But offline "Java course" will be concern for me, I have seen courses whose aim to just give you certificate, so see what industry is expecting you(attend Java meetups etc). Learning the right way is the key. Do it for any language you pick, first choose your interest then tools. Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: From igauravsehrawat at gmail.com Fri Aug 18 12:49:25 2017 From: igauravsehrawat at gmail.com (Gaurav Sehrawat) Date: Fri, 18 Aug 2017 16:49:25 +0000 Subject: [Chennaipy] Minutes of July 22, ChennaiPy meetup In-Reply-To: References: Message-ID: Mesmerizing opening para, I am gonna steal it for my blog. :) Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: From subil1407 at gmail.com Fri Aug 18 13:00:59 2017 From: subil1407 at gmail.com (Subil A) Date: Fri, 18 Aug 2017 22:30:59 +0530 Subject: [Chennaipy] [Discussion] About scope of programming languages in Chennai's IT industry In-Reply-To: References: Message-ID: Thank you all for the top notch Java answers. I got more answers than I expected from a community that shuns curly braces ;). I'll be sure to share them. But do consider answering this part of the question, about the situation in Chennai's IT industry in general, not just Java: > Which languages/technologies, in your opinion, has scope in Chennai's IT industry today? And in what niches (like embedded, medical and so on)? You don't even need to talk about scope. Talk about what you've seen used and how they're being used. -------------- next part -------------- An HTML attachment was scrubbed... URL: From subil1407 at gmail.com Fri Aug 18 13:03:57 2017 From: subil1407 at gmail.com (Subil A) Date: Fri, 18 Aug 2017 22:33:57 +0530 Subject: [Chennaipy] [Discussion] About scope of programming languages in Chennai's IT industry In-Reply-To: References: Message-ID: Also, just to clarify, I'm not desperately searching for the One True Language or One True Framework or anything like that. I'm just genuinely curious to hear about everyone's personal experiences in this regard. On 18 Aug 2017 10:30 pm, "Subil A" wrote: > Thank you all for the top notch Java answers. I got more answers than I > expected from a community that shuns curly braces ;). I'll be sure to share > them. > > But do consider answering this part of the question, about the situation > in Chennai's IT industry in general, not just Java: > > > Which languages/technologies, in your opinion, has scope in Chennai's IT > industry today? And in what niches (like embedded, medical and so on)? > > You don't even need to talk about scope. Talk about what you've seen used > and how they're being used. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From yackoa at gmail.com Fri Aug 18 14:25:52 2017 From: yackoa at gmail.com (Yacko Abrams) Date: Fri, 18 Aug 2017 23:55:52 +0530 Subject: [Chennaipy] [Discussion] About scope of programming languages in Chennai's IT industry In-Reply-To: References: Message-ID: I have worked in both languages during my career . What i feel is that that both have tremendous scope in IT. Regardless of what you choose be sure to know why your code works the way it's intented to, rather than making it work the way you intent to. (I hope i didn't confuse you with the last sentence) On 18 Aug 2017 10:34 pm, "Subil A" wrote: > Also, just to clarify, I'm not desperately searching for the One True > Language or One True Framework or anything like that. I'm just genuinely > curious to hear about everyone's personal experiences in this regard. > On 18 Aug 2017 10:30 pm, "Subil A" wrote: > >> Thank you all for the top notch Java answers. I got more answers than I >> expected from a community that shuns curly braces ;). I'll be sure to share >> them. >> >> But do consider answering this part of the question, about the situation >> in Chennai's IT industry in general, not just Java: >> >> > Which languages/technologies, in your opinion, has scope in Chennai's >> IT industry today? And in what niches (like embedded, medical and so on)? >> >> You don't even need to talk about scope. Talk about what you've seen used >> and how they're being used. >> > > _______________________________________________ > Chennaipy mailing list > Chennaipy at python.org > https://mail.python.org/mailman/listinfo/chennaipy > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From gashok2 at gmail.com Sat Aug 19 01:32:35 2017 From: gashok2 at gmail.com (Ashok Govindarajan) Date: Sat, 19 Aug 2017 11:02:35 +0530 Subject: [Chennaipy] [Discussion] About scope of programming languages in Chennai's IT industry In-Reply-To: References: Message-ID: Dear All, Over the last 10 to 12 years, i have worked across C, C++, Assembly, and Matlab. This involved working in Chennai and Bangalore and building embedded system solutions primarily for the telecom domain. Based on the above context, developing a basic interest in understanding the differences between functional programming paradigm vs OO Paradigm, when is hand-coding assembly language superior in comparison to cross-compiled C code, usefulness of a simulation package like Matlab and how far can it go when you have to debug real-time issues in the field would be certain areas to explore and have some clarity in them. I started with C as my first language - as that was the langauge used in my first job and it was in embedded systems domain and then I moved on to learning other things as and when needed. During the same time i also developed a feel for algorithms, data structures, static analysis tool and tools like profiling etc that gave you a picture about the run-time nature of your code. In the Chennai context, you may want to look at Atmel, Jasmine Infotech, NEC, Microchip, Caterpillar, Qualcomm, Visteon as potential places for recruitment , that may have a need with the above programming knowledge experience/skill set. Rgds, Ashok On Fri, Aug 18, 2017 at 11:55 PM, Yacko Abrams wrote: > I have worked in both languages during my career . What i feel is that > that both have tremendous scope in IT. > > Regardless of what you choose be sure to know why your code works the way > it's intented to, rather than making it work the way you intent to. (I hope > i didn't confuse you with the last sentence) > > > On 18 Aug 2017 10:34 pm, "Subil A" wrote: > >> Also, just to clarify, I'm not desperately searching for the One True >> Language or One True Framework or anything like that. I'm just genuinely >> curious to hear about everyone's personal experiences in this regard. >> On 18 Aug 2017 10:30 pm, "Subil A" wrote: >> >>> Thank you all for the top notch Java answers. I got more answers than I >>> expected from a community that shuns curly braces ;). I'll be sure to share >>> them. >>> >>> But do consider answering this part of the question, about the situation >>> in Chennai's IT industry in general, not just Java: >>> >>> > Which languages/technologies, in your opinion, has scope in Chennai's >>> IT industry today? And in what niches (like embedded, medical and so on)? >>> >>> You don't even need to talk about scope. Talk about what you've seen >>> used and how they're being used. >>> >> >> _______________________________________________ >> Chennaipy mailing list >> Chennaipy at python.org >> https://mail.python.org/mailman/listinfo/chennaipy >> >> > _______________________________________________ > Chennaipy mailing list > Chennaipy at python.org > https://mail.python.org/mailman/listinfo/chennaipy > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From vigneshstack at gmail.com Mon Aug 21 03:42:19 2017 From: vigneshstack at gmail.com (Vignesh Stack) Date: Mon, 21 Aug 2017 13:12:19 +0530 Subject: [Chennaipy] [PythonExpress] Call for Volunteers Message-ID: Hi All, As every year, This year we will be celebrating September 8th - October 8th, 2017 as PythonMonth to conduct Python and related workshops in various parts of 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] Tutor can share preferred date by filling form [2] Looking forward to more helping hands. Let us work towards this great initiative [0]: http://blog.pythonexpress.in/posts/python-month-2017/ [1]: https://pythonexpress.in [2]: https://docs.google.com/forms/d/e/1FAIpQLSfHYiv5nIfZ4-iu9EvsnXrHJ3DUAAB2kT709V-awdrySuUKZg/viewform?usp=sf_link Thanks, Vignesh -------------- next part -------------- An HTML attachment was scrubbed... URL: From zerothabhishek at gmail.com Tue Aug 22 12:54:56 2017 From: zerothabhishek at gmail.com (Abhishek Yadav) Date: Tue, 22 Aug 2017 22:24:56 +0530 Subject: [Chennaipy] [Discussion] About scope of programming languages in Chennai's IT industry In-Reply-To: References: Message-ID: On Fri, Aug 18, 2017 at 4:17 PM, Subil A wrote: > A friend of mine in college from the ECE department told me he was > considering joining a Java course and asked me if there was scope for the > language. I didn't know how to answer that as I'm a clueless college > student myself. Java was once the best thing since sliced bread but is it > still the same? > > So, fellow pythonistas in the industry, my question is: > Which languages/technologies, in your opinion, has scope in Chennai's IT > industry today? And in what niches (like embedded, medical and so on)? > > I'm most interested in hearing the reasons for your choice. Eloquent > answers, angry rants, simple statements; all are welcome! Don't hold back! > > I know this is the Python mailing list but you don't have give Python > related answers (You can if you want to though. Nobody's forcing you :) ) > > (Also, if someone can give me an answer for Java, that'd be great. I need > something to tell my friend). > Hi Subil, As others have noted, Java is as commercially lucrative now as it was before. But I would still recommend against doing a Java course. Here's why - - Hiring process at most companies doesn't value such courses. They might give credit to the acquired skill (Java programming, Android dev etc), which they test separately. But the certification itself holds little value. - Java is not a good first programming language. Your friend is from ECE - he should start with something simple and fun - like Python (or Ruby or Go or Javascript). I've seen several several good programmers who are good because they love their programming language. I've never seen anyone who *loves* Java (google Paul Graham's essays on this) As an additional benefit, Python/Ruby/Javascript have active and welcoming communities in Chennai. Show up at the meet-ups, see what people are doing, collaborate with them - ask for internships/jobs. Learn from others and share what you learn. People like Vijay and others here spend their personal time and energy to run such groups - just so everyone can benefit. Take the benefit. All the best, Abhishek > > _______________________________________________ > Chennaipy mailing list > Chennaipy at python.org > https://mail.python.org/mailman/listinfo/chennaipy > -------------- next part -------------- An HTML attachment was scrubbed... URL: From vijaykumar at bravegnu.org Thu Aug 24 01:57:59 2017 From: vijaykumar at bravegnu.org (Vijay Kumar) Date: Thu, 24 Aug 2017 11:27:59 +0530 Subject: [Chennaipy] August Meetup (RSVP Required) Message-ID: # August Meetup ## Date & Time * 26th August (Saturday) * 3:00pm to 6:00pm ## Venue IMSc, Ramanujan Auditorium, C.I.T Campus, 4th Cross Street, Tharamani, Chennai Location map: http://www.google.com/maps?q=12.994337,80.247170 ## Schedule * Introduction (15 min) * Bringing Vangogh Back by Krishna Sangeeth (20 min) * Python Immigrants! by Parthiban Srinivasan (20 min) * Networking Tea Break (30 min) * ec - The Easiest Way to do Command-line in Python by Viswanath (20 min) * Lightning Talks (15 min) * Discussions (30 min) Only the talk titles are included here, for the sake of brevity. For details about the talks and the speakers, please visit https://www.meetup.com/Chennaipy/events/242439305/ ## RSVP There is no entry fees. All are welcome. Please RSVP on our Meetup page https://www.meetup.com/Chennaipy/events/242439305/ ## New to Python? If you are new to Python, you can make best use of the meetup, if you go through any of the following resources, before attending the meetup. * Invent Your Own Computer Games with Python, Chapters 1 - 9 http://inventwithpython.com/chapters/ * Google's Python Course (with Lecture Videos) https://developers.google.com/edu/python/ * How to Think Like a Computer Scientist, Chapters 1 - 12 http://greenteapress.com/wp/think-python-2e/ From 77minds at gmail.com Thu Aug 24 03:41:33 2017 From: 77minds at gmail.com (Karthikeyan A K) Date: Thu, 24 Aug 2017 13:11:33 +0530 Subject: [Chennaipy] [Discussion] About scope of programming languages in Chennai's IT industry In-Reply-To: References: Message-ID: People are talking about Java a lot, but being a web developer I see tremendous scope for PHP and Ruby and Python. Infact still PHP rules the web and almost every website is coded with it. One sad fact is many people in colleges do not know about Ruby or Python and their immense power. If that is known and if academic takes it up, naturally the cost of such programmers will decrease and businesses will adapt to it. Java programmers cost far less to hire than say Ruby which earns the highest because more things could be done with it. On Tue, Aug 22, 2017 at 10:24 PM, Abhishek Yadav wrote: > > On Fri, Aug 18, 2017 at 4:17 PM, Subil A wrote: > >> A friend of mine in college from the ECE department told me he was >> considering joining a Java course and asked me if there was scope for the >> language. I didn't know how to answer that as I'm a clueless college >> student myself. Java was once the best thing since sliced bread but is it >> still the same? >> >> So, fellow pythonistas in the industry, my question is: >> Which languages/technologies, in your opinion, has scope in Chennai's IT >> industry today? And in what niches (like embedded, medical and so on)? >> >> I'm most interested in hearing the reasons for your choice. Eloquent >> answers, angry rants, simple statements; all are welcome! Don't hold back! >> >> I know this is the Python mailing list but you don't have give Python >> related answers (You can if you want to though. Nobody's forcing you :) ) >> >> (Also, if someone can give me an answer for Java, that'd be great. I need >> something to tell my friend). >> > Hi Subil, > > As others have noted, Java is as commercially lucrative now as it was > before. But I would still recommend against doing a Java course. Here's why > - > > - Hiring process at most companies doesn't value such courses. They might > give credit to the acquired skill (Java programming, Android dev etc), > which they test separately. But the certification itself holds little value. > > - Java is not a good first programming language. Your friend is from ECE - > he should start with something simple and fun - like Python (or Ruby or Go > or Javascript). I've seen several several good programmers who are good > because they love their programming language. I've never seen anyone who > *loves* Java (google Paul Graham's essays on this) > > As an additional benefit, Python/Ruby/Javascript have active and welcoming > communities in Chennai. Show up at the meet-ups, see what people are doing, > collaborate with them - ask for internships/jobs. Learn from others and > share what you learn. People like Vijay and others here spend their > personal time and energy to run such groups - just so everyone can benefit. > Take the benefit. > > All the best, > Abhishek > > > >> >> _______________________________________________ >> Chennaipy mailing list >> Chennaipy at python.org >> https://mail.python.org/mailman/listinfo/chennaipy >> > > > > _______________________________________________ > Chennaipy mailing list > Chennaipy at python.org > https://mail.python.org/mailman/listinfo/chennaipy > > -- Karthikeyan A K -------------- next part -------------- An HTML attachment was scrubbed... URL: From mail at mayurshah.in Thu Aug 24 04:00:38 2017 From: mail at mayurshah.in (Mayur Shah) Date: Thu, 24 Aug 2017 13:30:38 +0530 Subject: [Chennaipy] [Discussion] About scope of programming languages in Chennai's IT industry In-Reply-To: References: Message-ID: When you come to the industry, all the business care about is how much money you make for them. I think you should stop worrying about what language to use and start understanding different domains and stay up to date with new concepts. Study about AI, machine learning, data analytics, IOT. That's where the world is going. All professionala here will agree with me on this. Computer language is hardly matter now. You can learn as many languages you want. What matters is, how will you help a business grow with it. -Mayur about.me/mayurshah On Aug 24, 2017 13:11, "Karthikeyan A K" <77minds at gmail.com> wrote: People are talking about Java a lot, but being a web developer I see tremendous scope for PHP and Ruby and Python. Infact still PHP rules the web and almost every website is coded with it. One sad fact is many people in colleges do not know about Ruby or Python and their immense power. If that is known and if academic takes it up, naturally the cost of such programmers will decrease and businesses will adapt to it. Java programmers cost far less to hire than say Ruby which earns the highest because more things could be done with it. On Tue, Aug 22, 2017 at 10:24 PM, Abhishek Yadav wrote: > > On Fri, Aug 18, 2017 at 4:17 PM, Subil A wrote: > >> A friend of mine in college from the ECE department told me he was >> considering joining a Java course and asked me if there was scope for the >> language. I didn't know how to answer that as I'm a clueless college >> student myself. Java was once the best thing since sliced bread but is it >> still the same? >> >> So, fellow pythonistas in the industry, my question is: >> Which languages/technologies, in your opinion, has scope in Chennai's IT >> industry today? And in what niches (like embedded, medical and so on)? >> >> I'm most interested in hearing the reasons for your choice. Eloquent >> answers, angry rants, simple statements; all are welcome! Don't hold back! >> >> I know this is the Python mailing list but you don't have give Python >> related answers (You can if you want to though. Nobody's forcing you :) ) >> >> (Also, if someone can give me an answer for Java, that'd be great. I need >> something to tell my friend). >> > Hi Subil, > > As others have noted, Java is as commercially lucrative now as it was > before. But I would still recommend against doing a Java course. Here's why > - > > - Hiring process at most companies doesn't value such courses. They might > give credit to the acquired skill (Java programming, Android dev etc), > which they test separately. But the certification itself holds little value. > > - Java is not a good first programming language. Your friend is from ECE - > he should start with something simple and fun - like Python (or Ruby or Go > or Javascript). I've seen several several good programmers who are good > because they love their programming language. I've never seen anyone who > *loves* Java (google Paul Graham's essays on this) > > As an additional benefit, Python/Ruby/Javascript have active and welcoming > communities in Chennai. Show up at the meet-ups, see what people are doing, > collaborate with them - ask for internships/jobs. Learn from others and > share what you learn. People like Vijay and others here spend their > personal time and energy to run such groups - just so everyone can benefit. > Take the benefit. > > All the best, > Abhishek > > > >> >> _______________________________________________ >> Chennaipy mailing list >> Chennaipy at python.org >> https://mail.python.org/mailman/listinfo/chennaipy >> > > > > _______________________________________________ > Chennaipy mailing list > Chennaipy at python.org > https://mail.python.org/mailman/listinfo/chennaipy > > -- Karthikeyan A K _______________________________________________ Chennaipy mailing list Chennaipy at python.org https://mail.python.org/mailman/listinfo/chennaipy -------------- next part -------------- An HTML attachment was scrubbed... URL: From vijaykumar at bravegnu.org Thu Aug 24 23:02:20 2017 From: vijaykumar at bravegnu.org (Vijay Kumar) Date: Fri, 25 Aug 2017 08:32:20 +0530 Subject: [Chennaipy] Chennaipy August Meetup (RSVP Required) Message-ID: # August Meetup ## Date & Time * 26th August (Saturday) * 3:00pm to 6:00pm ## Venue IMSc, Ramanujan Auditorium, C.I.T Campus, 4th Cross Street, Tharamani, Chennai Location map: http://www.google.com/maps?q=12.994337,80.247170 ## Schedule * Introduction (15 min) * Bringing Vangogh Back by Krishna Sangeeth (20 min) * Python Immigrants! by Parthiban Srinivasan (20 min) * Networking Tea Break (30 min) * ec - The Easiest Way to do Command-line in Python by Viswanath (20 min) * Lightning Talks (15 min) * Discussions (30 min) Only the talk titles are included here, for the sake of brevity. For details about the talks and the speakers, please visit https://www.meetup.com/Chennaipy/events/242439305/ ## RSVP There is no entry fees. All are welcome. Please RSVP on our Meetup page https://www.meetup.com/Chennaipy/events/242439305/ ## New to Python? If you are new to Python, you can make best use of the meetup, if you go through any of the following resources, before attending the meetup. * Invent Your Own Computer Games with Python, Chapters 1 - 9 http://inventwithpython.com/chapters/ * Google's Python Course (with Lecture Videos) https://developers.google.com/edu/python/ * How to Think Like a Computer Scientist, Chapters 1 - 12 http://greenteapress.com/wp/think-python-2e/ From shrayasr at gmail.com Tue Aug 29 05:57:25 2017 From: shrayasr at gmail.com (Shrayas rajagopal) Date: Tue, 29 Aug 2017 15:27:25 +0530 Subject: [Chennaipy] Easy to read Python libraries for beginners Message-ID: Dear all, Today, on twitter, Noufal asked [0] "What are some simple libraries in python that a newcomer to the language can read to make sense of?" I thought this is a rather interesting topic to discuss within the community. Which are some libraries that you read / would recommend newcomers to read to get a sense of the language? If we could collate a nice set of responses, I'm sure Noufal and the community at large can benefit from it. Best Regards, Shrayas --- Footnotes: [0]: https://twitter.com/noufalibrahim/status/902377674449944576 -------------- next part -------------- An HTML attachment was scrubbed... URL: From shrayasr at gmail.com Tue Aug 29 05:58:52 2017 From: shrayasr at gmail.com (Shrayas rajagopal) Date: Tue, 29 Aug 2017 15:28:52 +0530 Subject: [Chennaipy] MOM | Aug 2017 Message-ID: Dear All, Ravi volunteered to do the minutes this month: --------------------------------------------- WHat is a Meetup? A way to meet up - don't expect to understand details - know who is doing what etc. --------------------------------------------- Talk 1 Bringing back VanGogh - Krishna Sangeeth @whitetruelearn "Looks like my system crashed" about_vanGogh: Starry Night cult painting that inspires many How to recreate this using technology? VanGogh(content image + style image) -> stylized content image Not New, But pretty new -> 2015 papers, Prisma App: Not just filters styles are learnt from style image features of content image are maintained about_deep_neural_networks: based on human brain nueron perceptrons ex1: identifying a car using a deep NN ex2: identifying edges, curves, eye shape, nose shape etc = identify dog how to get style and content right: content will be taken from close to end of content image style will be taken from close to start of style (first 4 layers) minimizing_loss_functions: optimize loss of content and loss of style use the MS CoCo dataset but only 5K images Use PyTorch for DNN - Does not work for pure white (needs research) ------------------------------------------------------ Talk2 Python Immigrants - Parthi People who are born in late 90s etc are Digital Natives and older people are Digital Immigrants Similarly, speaker came to Python late, and hence is a Python Immigrant 4th wave is AI What is MachineLearning? Most popular language for ML is python Other websites, pygame, music, scientific, etc Tools - Git, Jupyter Popular Libraries - numpy, scipy, matplotlib, pandas About AI, ML and DL Tools in DL - TF, PyTorch, theano, CNTK + Keras frontend ------------------------------------------------------------- Talk3 Vishwanath Product is more complex than service the 'ec' library : to make command line parsing simpler: without arguments, a shell is opened, help is available on shell has an inbuilt debugger Click library on github has similar features and 4000 stars using/reading this code will give a good idea of Python decorators, a \ very useful feature in Python ---------------------------------------------- Lighting Talk1 Praveen imgiko app that searches news and gives an image for sharing ImageMagick port is Python Magick Lighting Talk2 Shreyas port something from a language you know lpthw - it may be paid now hacker rank - may be too complex invent with python pymongo to connect with Mongo ETL - Python (pandas etc) is really good for these Reddit has a page for learning python Do small bits of automation cheatsheets David Beazly videos on concurrency etc. --------------------------------------------- Anyone willing to send a PR to the website adding this in? Best Regards, Shrayas -------------- next part -------------- An HTML attachment was scrubbed... URL: From vijaykumar at bravegnu.org Tue Aug 29 23:34:32 2017 From: vijaykumar at bravegnu.org (Vijay Kumar) Date: Wed, 30 Aug 2017 09:04:32 +0530 Subject: [Chennaipy] Easy to read Python libraries for beginners In-Reply-To: References: Message-ID: On Tue, August 29, 2017 3:27 pm, Shrayas rajagopal wrote: > Dear all, > > > Today, on twitter, Noufal asked [0] "What are some simple libraries in > python that a newcomer to the language can read to make sense of?" > > I thought this is a rather interesting topic to discuss within the > community. Which are some libraries that you read / would recommend > newcomers to read to get a sense of the language? > > If we could collate a nice set of responses, I'm sure Noufal and the > community at large can benefit from it. feedparser[1] originally by Mark Pilgrim (author of Dive Into Python), should be a good start. It is known for its extensive test-suite. We should probably restart activity on libcipher[2]. [1] https://github.com/kurtmckee/feedparser [2] https://github.com/Chennaipy/libcipher Regards, Vijay From kaveti.dinesh at gmail.com Wed Aug 30 00:37:12 2017 From: kaveti.dinesh at gmail.com (Sai Dinesh) Date: Wed, 30 Aug 2017 10:07:12 +0530 Subject: [Chennaipy] Basic questions in python In-Reply-To: References: Message-ID: Hi all, I'm new to python.. Learning out of own interest. I have couple of questions. Hope i vl get help on it. 1. I want to write any application which needs to work in Windows and Mac. 2. Does my code is protected from revers engineering 3. If i use any other libraries while development, if i deploy my application in another machine does all libraries need to install on that machine too.. Thanks in advance. Please bare if my questions look odd/silly. Thanks, SaiDinesh.K -------------- next part -------------- An HTML attachment was scrubbed... URL: From shrayasr at gmail.com Wed Aug 30 01:12:01 2017 From: shrayasr at gmail.com (Shrayas rajagopal) Date: Wed, 30 Aug 2017 10:42:01 +0530 Subject: [Chennaipy] Easy to read Python libraries for beginners In-Reply-To: References: Message-ID: On Wed, Aug 30, 2017 at 9:04 AM, Vijay Kumar wrote: > feedparser[1] originally by Mark Pilgrim (author of Dive Into Python), > should be a good start. It is known for its extensive test-suite. > ?Noted, nice.? We should probably restart activity on libcipher[2]. > ?Yeah, definitely. ? > [1] https://github.com/kurtmckee/feedparser > [2] https://github.com/Chennaipy/libcipher > ?@Others: Thoughts? Regards, Shrayas -------------- next part -------------- An HTML attachment was scrubbed... URL: From vijaykumar at bravegnu.org Wed Aug 30 00:53:36 2017 From: vijaykumar at bravegnu.org (Vijay Kumar) Date: Wed, 30 Aug 2017 10:23:36 +0530 Subject: [Chennaipy] Basic questions in python In-Reply-To: References: Message-ID: On Wed, August 30, 2017 10:07 am, Sai Dinesh wrote: > Hi all, > > > I'm new to python.. Learning out of own interest. I have couple of > questions. Hope i vl get help on it. > > 1. I want to write any application which needs to work in Windows and > Mac. Depends on what you are doing. For most simple applications this will work. Most of the standard library is portable across Windows and Mac. If not, it will be mentioned in the documentation. > > 2. Does my code is protected from revers engineering Not really. It is usually easy to recover the original source code, from Python byte code. > > 3. If i use any other libraries while development, if i deploy my > application in another machine does all libraries need to install on that > machine too.. Yes. Unless you are using something like pyinstaller, to create an archive of the program and the dependencies. Regards, Vijay From sureshvv at hotmail.com Wed Aug 30 02:02:20 2017 From: sureshvv at hotmail.com (suresh) Date: Wed, 30 Aug 2017 11:32:20 +0530 Subject: [Chennaipy] [Discussion] About scope of programming languages in Chennai's IT industry In-Reply-To: References: Message-ID: See this interesting article: https://stackoverflow.blog/2017/08/29/tale-two-industries-programming-languages-differ-wealthy-developing-countries/ From mag.1984 at gmail.com Wed Aug 30 05:10:11 2017 From: mag.1984 at gmail.com (Magesh Dhasayyan) Date: Wed, 30 Aug 2017 14:40:11 +0530 Subject: [Chennaipy] [job posting] DevOps, Chennai Message-ID: We are looking for a DevOps Engineer who is curious and open to learning new technologies. We use a number of open-source tools and platforms including, but not restricted to, Python, RabbitMQ, Ansible, EC2, RDS, Docker. Specific experience in these platforms is a PLUS. Profile: Experience: 4-5 Years Linux shell scripting knowledge a must Python scripting experience a plus Background in Linux/Unix Administration preferable Experience with SQL dbs a plus Knowledge of version control systems and release management tools a plus Ability to learn and use a variety of open source technologies and cloud services Ability to understand best practices & IT ops in a 24x7, production environment About Duta: We are one of the fastest-growing, funded startups in India with over 2 million users and growing. Visit https://duta.in/help.php for more information about our services. Founders are successful entrepreneurs and alumni of Stanford. Job location: Chennai Please send me an email with updated resume if interested. Thanks, Magesh -------------- next part -------------- An HTML attachment was scrubbed... URL: