From ruchi at intelliswift.com Fri Mar 1 12:04:14 2013 From: ruchi at intelliswift.com (Ruchi Shah) Date: Fri, 1 Mar 2013 11:04:14 +0000 Subject: [BangPypers] [JOB] Need for Python Developer (Expert) for our office in Mumbai / Pune Message-ID: <0184C20F28C88B46B9CEC1D4D9E7DE3220CEE4E9@BL2PRD0711MB422.namprd07.prod.outlook.com> Intelliswift is a premier IT solutions and services company, working with leading high-tech companies, high-growth internet companies, and financial services firms. We provide professional and managed services, technology solutions, implementation, testing, maintenance services that help enterprises leverage their People, Processes, and Platforms. Apart from augmenting our client's niche staffing requirements, our offshore capabilities include application development, product development, web portal development, web crawling, business intelligence and data warehousing. We have need for Python Developer (Expert) for our office in Mumbai / Pune Experience Level - 5 + yrs Interview Process - Inperson interview Description Must be from Product Development Company only Python development experience on payment domain is preferred. Have minimum least 5+ years (Ideally 6 to 12 years) of experience in design and development, where most of it is with python programming Familiarity with python web frameworks like Django, Tornado, Web2Py, Google AppEngine etc Have good understanding of linux @ system level Thanks Ruchi Shah From jaganadhg at gmail.com Fri Mar 1 12:54:07 2013 From: jaganadhg at gmail.com (JAGANADH G) Date: Fri, 1 Mar 2013 17:24:07 +0530 Subject: [BangPypers] Django url patterns help Message-ID: Hi , I was trying to write a url pattern for URL like this /my_page/?btn=view_page&sel=Profile The pattern which I wrote is url(r'^my_page/(?P.*)', 'my_app.views.my_page', name="my_page"), It does not works for me . Can anybody tell me what is wrong with this and way to correct the same -- ********************************** JAGANADH G http://jaganadhg.in *ILUGCBE* http://ilugcbe.org.in From gora at mimirtech.com Fri Mar 1 12:59:26 2013 From: gora at mimirtech.com (Gora Mohanty) Date: Fri, 1 Mar 2013 17:29:26 +0530 Subject: [BangPypers] Django url patterns help In-Reply-To: References: Message-ID: On 1 March 2013 17:24, JAGANADH G wrote: > Hi , > > I was trying to write a url pattern for URL like this > /my_page/?btn=view_page&sel=Profile [...] The "?btn=view_page&sel=Profile" is not part of the URL, but is a query string. The URL is simply /my_page Within the Django view, you can get the query string parameters with, e.g., request.GET.get( 'btn' ) Regards, Gora From bhimsen.pes at gmail.com Fri Mar 1 13:01:09 2013 From: bhimsen.pes at gmail.com (Bhimsen Kulkarni) Date: Fri, 1 Mar 2013 17:31:09 +0530 Subject: [BangPypers] Django url patterns help In-Reply-To: References: Message-ID: your regex is r'^my_page/(?P.* but your search string (" /my_page/?btn=view_page&sel=Profile") begins with "/". According to your regex, search string must begin with "my_page". On Fri, Mar 1, 2013 at 5:24 PM, JAGANADH G wrote: > Hi , > > I was trying to write a url pattern for URL like this > /my_page/?btn=view_page&sel=Profile > > The pattern which I wrote is url(r'^my_page/(?P.*)', > 'my_app.views.my_page', name="my_page"), > > It does not works for me . > > Can anybody tell me what is wrong with this and way to correct the same > > -- > ********************************** > JAGANADH G > http://jaganadhg.in > *ILUGCBE* > http://ilugcbe.org.in > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From 91prashantgaur at gmail.com Fri Mar 1 12:57:23 2013 From: 91prashantgaur at gmail.com (Prashant Gaur) Date: Fri, 1 Mar 2013 11:57:23 +0000 Subject: [BangPypers] Django url patterns help In-Reply-To: References: Message-ID: will you explain error u r getting ?? On Fri, Mar 1, 2013 at 11:54 AM, JAGANADH G wrote: > Hi , > > I was trying to write a url pattern for URL like this > /my_page/?btn=view_page&sel=Profile > > The pattern which I wrote is url(r'^my_page/(?P.*)', > 'my_app.views.my_page', name="my_page"), > > It does not works for me . > > Can anybody tell me what is wrong with this and way to correct the same > > -- > ********************************** > JAGANADH G > http://jaganadhg.in > *ILUGCBE* > http://ilugcbe.org.in > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > -- Regards : Prashant Gaur +91 9030015491 From gora at mimirtech.com Fri Mar 1 13:09:33 2013 From: gora at mimirtech.com (Gora Mohanty) Date: Fri, 1 Mar 2013 17:39:33 +0530 Subject: [BangPypers] Django url patterns help In-Reply-To: References: Message-ID: On 1 March 2013 17:31, Bhimsen Kulkarni wrote: > your regex is r'^my_page/(?P.* but your search string (" > /my_page/?btn=view_page&sel=Profile") begins with "/". According to your > regex, search string must begin with "my_page". That is not the problem: url(r'^my_page/$'...) will match http://example.com/my_page . The issue is that in Django, urlpattern matches the path, and not the querystring. Regards, Gora From jaganadhg at gmail.com Fri Mar 1 13:16:30 2013 From: jaganadhg at gmail.com (JAGANADH G) Date: Fri, 1 Mar 2013 17:46:30 +0530 Subject: [BangPypers] Django url patterns help In-Reply-To: References: Message-ID: On Fri, Mar 1, 2013 at 5:27 PM, Prashant Gaur <91prashantgaur at gmail.com>wrote: > will you explain error u r getting ?? > > I am not getting any error. The page in not getting redirected . Even I changed the pattern to url(r'^my_page/', 'my_app.views.my_page', name="my_page"), In fire bug and Django log I can see that this request is giving 200 status . There are some jQury-ui scripts in the HTML file . May be that causes the issue I think -- ********************************** JAGANADH G http://jaganadhg.in *ILUGCBE* http://ilugcbe.org.in From ragsagar at gmail.com Sat Mar 2 05:33:40 2013 From: ragsagar at gmail.com (ragsagar) Date: Sat, 2 Mar 2013 10:03:40 +0530 Subject: [BangPypers] Django url patterns help In-Reply-To: References: Message-ID: On Fri, Mar 1, 2013 at 5:46 PM, JAGANADH G wrote: > On Fri, Mar 1, 2013 at 5:27 PM, Prashant Gaur <91prashantgaur at gmail.com > >wrote: > > > will you explain error u r getting ?? > > > > > I am not getting any error. The page in not getting redirected . > Even I changed the pattern to > url(r'^my_page/', 'my_app.views.my_page', name="my_page"), > > In fire bug and Django log I can see that this request is giving 200 status > . > There are some jQury-ui scripts in the HTML file . May be that causes the > issue I think > What Mr Gora Mohanty said is the way to do that. We cannot help you without sharing the my_app.my_views.my_page or without explaining what logic you are doing over there. -- blog : ragsagar.wordpress.com mail id : python -c "print '@'.join(['ragsagar','.'.join([x for x in ['gmail','com']])])" From shabda at agiliq.com Mon Mar 4 09:03:15 2013 From: shabda at agiliq.com (Shabda Raaj) Date: Mon, 4 Mar 2013 13:33:15 +0530 Subject: [BangPypers] [Announce] Django Parsley - client side validations for Django Message-ID: Hello, I would like to announce a new Django app: https://github.com/agiliq/Django-parsley This app make is trivially easy to get client side form validations (In addition to server side which django provides anyway). If you use this, I would love to get some feedback on how easy it was to use, and did it work for your forms. -- Thanks, Shabda Agiliq.com - Building Amazing Apps agiliq.com/blog/ | github.com/agiliq US: +13152854388 | IN: +919949997612 | Skype: shabda.raaj Our Android Apps | Our iOS Apps From jaganadhg at gmail.com Mon Mar 4 09:46:56 2013 From: jaganadhg at gmail.com (JAGANADH G) Date: Mon, 4 Mar 2013 14:16:56 +0530 Subject: [BangPypers] Django url patterns help In-Reply-To: References: Message-ID: > > What Mr Gora Mohanty said is the way to do that. We cannot help you without > sharing the my_app.my_views.my_page or without explaining what logic you > are doing over there. > > Hi All, Thanks for the support. The suggestions were really useful for me. It helped me to clear error in urls.py. The page loading problem was due to js issues. I resolved that issue too. Thanks for comments ans suggestions. Best regards -- ********************************** JAGANADH G http://jaganadhg.in *ILUGCBE* http://ilugcbe.org.in From msg4rahul at gmail.com Mon Mar 4 09:56:24 2013 From: msg4rahul at gmail.com (Rahul Ramesh) Date: Mon, 4 Mar 2013 14:26:24 +0530 Subject: [BangPypers] [Announce] Django Parsley - client side validations for Django In-Reply-To: References: Message-ID: Already using your app in a current project. We love parsley and were surprised to see a django app for it. Thank you. :) -- Rahul On Mon, Mar 4, 2013 at 1:33 PM, Shabda Raaj wrote: > Hello, > > I would like to announce a new Django app: > > https://github.com/agiliq/Django-parsley > > This app make is trivially easy to get client side form validations (In > addition to server side which django provides anyway). > > If you use this, I would love to get some feedback on how easy it was to > use, and did it work for your forms. > > -- > Thanks, > Shabda > > Agiliq.com - Building Amazing Apps > agiliq.com/blog/ | github.com/agiliq > US: +13152854388 | IN: +919949997612 | Skype: shabda.raaj > Our Android Apps > | Our > iOS Apps > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From anandology at gmail.com Tue Mar 5 13:04:26 2013 From: anandology at gmail.com (Anand Chitipothu) Date: Tue, 5 Mar 2013 17:34:26 +0530 Subject: [BangPypers] [Commercial] Python Training Course Message-ID: Hi, I'm conducting a three day hands-on training course on Python programming on April 5, 6 & 7 (Friday, Saturday & Sunday). The course notes is freely available online at http://anandology.com/python-practice-book/. For more information about the course and registration, please visit the course page at: http://pythontraining-april2013.doattend.com/ Please contact me offline if you have any questions. Thanks, Anand http://anandology.com/ From kracethekingmaker at gmail.com Tue Mar 5 16:39:05 2013 From: kracethekingmaker at gmail.com (kracekumar ramaraju) Date: Tue, 5 Mar 2013 21:09:05 +0530 Subject: [BangPypers] Feb meetup In-Reply-To: References: Message-ID: All the videos are uploaded in youtube and HasGeek.tv. - http://www.youtube.com/watch?v=aotkZjoym1A&list=PL6GW05BfqWIfjFsoxJTnE4g7ddFkO5ZtG - http://www.youtube.com/watch?v=1BkhLI6YxY4&list=PL6GW05BfqWIfjFsoxJTnE4g7ddFkO5ZtG - http://www.youtube.com/watch?v=AoO2ATlTSFw&list=PL6GW05BfqWIfjFsoxJTnE4g7ddFkO5ZtG - http://hasgeek.tv/bangpypers/meetup Blog post is here http://bangalore.python.org.in/blog/2013/03/05/feburary-meetup-video/ . On Sun, Feb 17, 2013 at 1:34 AM, kracekumar ramaraju < kracethekingmaker at gmail.com> wrote: > Turn out for the meetup was fantastic. 25 people attended out which 17 > were first time participants. > > > There were 2 talks one by Jonathan and other by Lavakumar. 2 lighting > talks. > > On Thu, Feb 14, 2013 at 10:45 PM, Deepak Garg wrote: > >> I have updated Jonathan's Talk on the agenda >> http://www.meetup.com/BangPypers/events/102484032/ >> >> Please let know if anyone would like to present as well. >> >> >> >> Deepak >> >> >> On Tue, Feb 12, 2013 at 9:04 AM, kracekumar ramaraju < >> kracethekingmaker at gmail.com> wrote: >> >> > On Tue, Feb 12, 2013 at 10:24 PM, Saager Mhatre < >> saager.mhatre at gmail.com >> > >wrote: >> > >> > > On Fri, Feb 8, 2013 at 4:54 PM, kracekumar ramaraju < >> > > kracethekingmaker at gmail.com> wrote: >> > > >> > > > All, >> > > > >> > > > Feb Meetup will be on 16th, as usual 3.00 PM, shall we have meetup >> in >> > CIS >> > > >> > > >> > > Just checking, is this confirmed? >> > > >> > > Yes, people have gone ahead and made this as venue >> > http://www.meetup.com/BangPypers/events/102484032/. Hence confirmed. >> > >> > > - d >> > > _______________________________________________ >> > > BangPypers mailing list >> > > BangPypers at python.org >> > > http://mail.python.org/mailman/listinfo/bangpypers >> > > >> > >> > >> > >> > -- >> > * >> > Thanks & Regards >> > >> > "Talk is cheap, show me the code" -- Linus Torvalds >> > kracekumar >> > www.kracekumar.com >> > * >> > _______________________________________________ >> > BangPypers mailing list >> > BangPypers at python.org >> > http://mail.python.org/mailman/listinfo/bangpypers >> > >> >> >> >> -- >> >> Deepak Garg, >> >> Software Engineer, >> Amazon Development Center India, >> Phone-no.:+917829866870 >> >> Github: https://github.com/gargdeepak >> LinkedIn: http://in.linkedin.com/in/deepakgargiit >> Slideshare: http://www.slideshare.net/khinnu4u/presentations >> Skype-id : >> deepakgarg.iit >> _______________________________________________ >> BangPypers mailing list >> BangPypers at python.org >> http://mail.python.org/mailman/listinfo/bangpypers >> > > > > -- > * > Thanks & Regards > > "Talk is cheap, show me the code" -- Linus Torvalds > kracekumar > www.kracekumar.com > * > -- * Thanks & Regards "Talk is cheap, show me the code" -- Linus Torvalds kracekumar www.kracekumar.com * From kracethekingmaker at gmail.com Tue Mar 5 16:43:41 2013 From: kracethekingmaker at gmail.com (kracekumar ramaraju) Date: Tue, 5 Mar 2013 21:13:41 +0530 Subject: [BangPypers] March Meetup Message-ID: All, March meetup will be on 23rd March. We have not fixed the venue. So far Siva has proposed to do hands on Django - Introduction Tutorial. Feel free to write back to me incase you would like to present any talk. http://www.meetup.com/BangPypers/events/104914952/ Do RSVP -- * Thanks & Regards "Talk is cheap, show me the code" -- Linus Torvalds kracekumar www.kracekumar.com * From jitu.icfai at gmail.com Wed Mar 6 05:56:51 2013 From: jitu.icfai at gmail.com (jitendra gupta) Date: Wed, 6 Mar 2013 10:26:51 +0530 Subject: [BangPypers] Django + Python experienced Leads or Senior engineers Opening in Message-ID: Hi All, We have an urgent requirement for Django + Python experienced Leads or Senior engineers for a new team in Ticketing. The Team role is to develop tools which support Ticketing developers and product development analysts in their daily job. If you have a friend (or friend's friend) who meets this requirement, please send their CVs directly to me. Company Name: Amadeus Location : Banglore Thanks & Regards Jitendra Kumar From gpankaj at moog.com Thu Mar 7 11:59:13 2013 From: gpankaj at moog.com (Gupta Pankaj) Date: Thu, 7 Mar 2013 16:29:13 +0530 Subject: [BangPypers] Python issue Message-ID: Hi All, I am using several software (Python 2.5, NI_LabVIEW, NI_TestStand, NI-VeriStand) to run my application on Windows XP Platform. All the above mentioned software are running in parallel and interacting with each other. Sometimes I used to get an error message from Python and It stops the further execution of the software. error message says that: "StandardError: exception: access violation reading 0x00000000" Please let me what I can do to get rid of this error. Please help me it's really urgent for me. Thanks for all your support in advance. Thanks Pankaj From davidsnt at gmail.com Fri Mar 8 11:37:58 2013 From: davidsnt at gmail.com (davidsnt) Date: Fri, 8 Mar 2013 16:07:58 +0530 Subject: [BangPypers] Reading log file using seek and tell Message-ID: Hello, How to read log files in python, On the first run I need to read all the lines from the log, process it and get the position of the last read line and from the next run I have to read from the last read line and process all the lines after it and similarly. Can you please help me with some examples? Regards, Davidsanthosh L From gora at mimirtech.com Fri Mar 8 12:02:36 2013 From: gora at mimirtech.com (Gora Mohanty) Date: Fri, 8 Mar 2013 16:32:36 +0530 Subject: [BangPypers] Reading log file using seek and tell In-Reply-To: References: Message-ID: On 8 March 2013 16:07, davidsnt wrote: > Hello, > > How to read log files in python, On the first run I need to read all the > lines from the log, process it and get the position of the last read line > and from the next run I have to read from the last read line and process > all the lines after it and similarly. Can you please help me with some > examples? If you already know about seek and tell, Python file objects offer similar functionality. Please look up documentation on this. Regards, Gora From jitu.icfai at gmail.com Fri Mar 8 13:39:25 2013 From: jitu.icfai at gmail.com (jitendra gupta) Date: Fri, 8 Mar 2013 18:09:25 +0530 Subject: [BangPypers] Unit test cases for Object intraction using mox/unittest Message-ID: Hi I need to write the unit test cases for similary kind of sitution. I need to write the unit test case for Foo.testCall. for both case true or false. I am unalbe to do that. kindly please help me on this. as function is not returning any thing. from google i got mox is good for this case. but i did not found any solution for this case ****************** Enter.py ******************** from run import RunComp def enter(): runC = RunComp("ComName", "~/pathToHome") """ This is based on some database condition we are passing name true or false """ foo = Foo(true) foo.testCall(runC) if __name__ == "__main__": enter() ************************************************** ***************** foo.py************************ Class Foo(): def __init__(self, found): self.found = found def testCall(self, SomeClassObject): if self.found: RunCompObject.call_run("codeRun -s " + self.found) else: RunCompObject.call_run("codeRun") ************************************************* ************** run.py ************************** from subprocess import call class RunComp(object): def __init__(self, com, home): self.comp = comp self.home = home def call_and_raise(*args, **kwargs): if call(*args, **kwargs): raise RuntimeError("LDF command failed!") def call_run(self, command): if self.comp: command = " ".join((command,myldfrc)) call(command, cwd=self.home) ************************************************* Thanks & Regards Jitu From srinivas at solancer.com Sun Mar 10 22:45:03 2013 From: srinivas at solancer.com (Srinivas Gowda) Date: Mon, 11 Mar 2013 03:15:03 +0530 Subject: [BangPypers] Flask support for SublimeText Message-ID: <513CFEDF.1060103@solancer.com> hi guys, I'd like to share this blog post I compiled on configuring SublimeText for Flask support, let me know what you guys think. http://solancer.blogspot.in/2013/03/flask-support-for-sublimetext.html From pavan.intercon at gmail.com Mon Mar 11 10:21:36 2013 From: pavan.intercon at gmail.com (pavan intercon) Date: Mon, 11 Mar 2013 14:51:36 +0530 Subject: [BangPypers] URGENT JOB OPENING FOR PYTHON DEVELOPERS. Message-ID: We're a well funded startup located in Delhi. We will be launching our product in a couple of months. If you're interested in and have some experience with technologies like the following, drop us a line. - Web development using an MVC frameork (we use Django) - Javascript frameworks like Backbone/knockout/angular - UI design using css3, less/sass, jquery - Mobile apps development - Automated testing with selenium or other tools We don't care what programming languages you know, only how well you know your favorite language and tools. You should be able to build a quality project from scratch using your favorite web framework. Good fits for our team are those who can pick up a new language easily and tend to use vim/emacs/sublime to code. We also don't care about professional qualifications. We do care about one thing. You should be someone who actually enjoys coding rather do so just to get a paycheck. Kindly confirm your interest with an updated profile and the following details, alternatively we shall be grateful if you can help us with ref of your friends or colleagues who may fit this profile Total experience: Year of experience in open source: Open source technologies proficient in: CTC Expected CTC Joining Time Are you comfortable working for Startups Blob Infotech Ours is a start-up company, We're looking for professionals who have passion for software development and have worked on developing products from scratch. We currently have 2-3 positions open. Technologies that we want: python, django, flask, solr, elasticsearch, ruby, rails, jquery, backbone.js, angular.js, mysql, mongodb, riak, memcached, redis, nginx, aws. Thanking you Sincerely Sajid 985406913 sajid at interconinternational.com From pavan.intercon at gmail.com Mon Mar 11 10:25:32 2013 From: pavan.intercon at gmail.com (pavan intercon) Date: Mon, 11 Mar 2013 14:55:32 +0530 Subject: [BangPypers] interact Message-ID: From sumit786raj at gmail.com Mon Mar 11 13:04:49 2013 From: sumit786raj at gmail.com (SUMIT KUMAR RAJ) Date: Mon, 11 Mar 2013 17:34:49 +0530 Subject: [BangPypers] URGENT JOB OPENING FOR PYTHON DEVELOPERS. In-Reply-To: References: Message-ID: Can freshers apply ? On Mon, Mar 11, 2013 at 2:51 PM, pavan intercon wrote: > We're a well funded startup located in Delhi. We will be launching our > product in a couple of months. > > If you're interested in and have some experience with technologies like the > following, drop us a line. > > - Web development using an MVC frameork (we use Django) > - Javascript frameworks like Backbone/knockout/angular > - UI design using css3, less/sass, jquery > - Mobile apps development > - Automated testing with selenium or other tools > > We don't care what programming languages you know, only how well you know > your favorite language and tools. You should be able to build a quality > project from scratch using your favorite web framework. Good fits for our > team are those who can pick up a new language easily and tend to use > vim/emacs/sublime to code. We also don't care about professional > qualifications. > > We do care about one thing. You should be someone who actually enjoys > coding rather do so just to get a paycheck. > > Kindly confirm your interest with an updated profile and the following > details, alternatively we shall be grateful if you can help us with ref of > your friends or colleagues who may fit this profile > > Total experience: > Year of experience in open source: > Open source technologies proficient in: > CTC > Expected CTC > Joining Time > Are you comfortable working for Startups > > Blob Infotech > Ours is a start-up company, We're looking for professionals who have > passion for software development and have worked on developing products > from scratch. > > We currently have 2-3 positions open. > > Technologies that we want: python, django, flask, solr, elasticsearch, > ruby, rails, jquery, backbone.js, angular.js, mysql, mongodb, riak, > memcached, redis, nginx, aws. > > Thanking you > Sincerely > Sajid > 985406913 > > sajid at interconinternational.com > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > -- Regards... ---------------------- Sumit Kumar Raj Software & Web Developer Contact no:-9590283524 Bangalore,India From ram at slvtechnosol.com Tue Mar 12 07:28:11 2013 From: ram at slvtechnosol.com (ram at slvtechnosol.com) Date: Tue, 12 Mar 2013 11:58:11 +0530 Subject: [BangPypers] [Commercial] Python Freshers Available Message-ID: HI, ? ? I am Ram from SLV Technology Solutions, Bangalore.? ? ?Not sure this is right place to post this Ad. Hope I get good responses here. ? ?We train people on Python and related frame works like Django/Zope/Web2Py/Pyramid and place them in relavent companies. ? ? Now we have around 20 well trained python freshers. Please let me if any of companies are interested in recruiting well trained Python freshers. ? ? For more details mail me on : ram at slvtechnosol.com or call me on : 080-42192930 TY, Ram. ?? From mgaffarg at gmail.com Tue Mar 12 11:09:38 2013 From: mgaffarg at gmail.com (Mohammed GAFFAR,G.) Date: Tue, 12 Mar 2013 15:39:38 +0530 Subject: [BangPypers] django training in Bangalore??? Message-ID: Hi , Please suggest me any one: Any training center in Bangalore is giving best Django training? Please send me the details. -- Thanks and Regards, G. MOHAMMED GAFFAR 88611 06223 Bangalore From kishanmehta3 at gmail.com Tue Mar 12 11:22:09 2013 From: kishanmehta3 at gmail.com (Kishan Mehta) Date: Tue, 12 Mar 2013 15:52:09 +0530 Subject: [BangPypers] django training in Bangalore??? In-Reply-To: References: Message-ID: HI, I am Ram from SLV Technology Solutions, Bangalore. Not sure this is right place to post this Ad. Hope I get good responses here. We train people on Python and related frame works like Django/Zope/Web2Py/Pyramid and place them in relavent companies. Now we have around 20 well trained python freshers. Please let me if any of companies are interested in recruiting well trained Python freshers. For more details mail me on : ram at slvtechnosol.com or call me on : 080-42192930 TY, Ram. Kishan Mehta ______________________________ _________________ BangPypers mailing list BangPypers at python.org http://mail.python.org/mailman/listinfo/bangpypers On Mar 12, 2013 3:40 PM, "Mohammed GAFFAR,G." wrote: > Hi , > > Please suggest me any one: > > Any training center in Bangalore is giving best Django training? > > Please send me the details. > > -- > Thanks and Regards, > G. MOHAMMED GAFFAR > 88611 06223 > Bangalore > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From pavan.intercon at gmail.com Fri Mar 15 07:38:15 2013 From: pavan.intercon at gmail.com (pavan intercon) Date: Fri, 15 Mar 2013 12:08:15 +0530 Subject: [BangPypers] BangPypers Digest, Vol 67, Issue 8 In-Reply-To: References: Message-ID: people with experience are preffered . still resume can be shared , we can go ahead with a telephonic discussion. On Tue, Mar 12, 2013 at 4:30 PM, wrote: > Send BangPypers mailing list submissions to > bangpypers at python.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://mail.python.org/mailman/listinfo/bangpypers > or, via email, send a message with subject or body 'help' to > bangpypers-request at python.org > > You can reach the person managing the list at > bangpypers-owner at python.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of BangPypers digest..." > > > Today's Topics: > > 1. Re: URGENT JOB OPENING FOR PYTHON DEVELOPERS. (SUMIT KUMAR RAJ) > 2. [Commercial] Python Freshers Available (ram at slvtechnosol.com) > 3. django training in Bangalore??? (Mohammed GAFFAR,G.) > 4. Re: django training in Bangalore??? (Kishan Mehta) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Mon, 11 Mar 2013 17:34:49 +0530 > From: SUMIT KUMAR RAJ > To: Bangalore Python Users Group - India > Subject: Re: [BangPypers] URGENT JOB OPENING FOR PYTHON DEVELOPERS. > Message-ID: > < > CAHLM5Tt0dhmCvun733DVzNWCysU7nmEjfKuF2aMCYSQLQA0mFA at mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > Can freshers apply ? > > > On Mon, Mar 11, 2013 at 2:51 PM, pavan intercon >wrote: > > > We're a well funded startup located in Delhi. We will be launching our > > product in a couple of months. > > > > If you're interested in and have some experience with technologies like > the > > following, drop us a line. > > > > - Web development using an MVC frameork (we use Django) > > - Javascript frameworks like Backbone/knockout/angular > > - UI design using css3, less/sass, jquery > > - Mobile apps development > > - Automated testing with selenium or other tools > > > > We don't care what programming languages you know, only how well you know > > your favorite language and tools. You should be able to build a quality > > project from scratch using your favorite web framework. Good fits for our > > team are those who can pick up a new language easily and tend to use > > vim/emacs/sublime to code. We also don't care about professional > > qualifications. > > > > We do care about one thing. You should be someone who actually enjoys > > coding rather do so just to get a paycheck. > > > > Kindly confirm your interest with an updated profile and the following > > details, alternatively we shall be grateful if you can help us with ref > of > > your friends or colleagues who may fit this profile > > > > Total experience: > > Year of experience in open source: > > Open source technologies proficient in: > > CTC > > Expected CTC > > Joining Time > > Are you comfortable working for Startups > > > > Blob Infotech > > Ours is a start-up company, We're looking for professionals who have > > passion for software development and have worked on developing products > > from scratch. > > > > We currently have 2-3 positions open. > > > > Technologies that we want: python, django, flask, solr, elasticsearch, > > ruby, rails, jquery, backbone.js, angular.js, mysql, mongodb, riak, > > memcached, redis, nginx, aws. > > > > Thanking you > > Sincerely > > Sajid > > 985406913 > > > > sajid at interconinternational.com > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > > -- > Regards... > ---------------------- > Sumit Kumar Raj > Software & Web Developer > Contact no:-9590283524 > Bangalore,India > > > ------------------------------ > > Message: 2 > Date: Tue, 12 Mar 2013 11:58:11 +0530 > From: ram at slvtechnosol.com > To: bangpypers at python.org > Subject: [BangPypers] [Commercial] Python Freshers Available > Message-ID: > > Content-Type: text/plain; charset="iso-8859-1" > > > > > > > HI, > ? ? I am Ram from SLV Technology Solutions, > Bangalore.? > ? ?Not sure this is right place to post > this Ad. Hope I get good responses here. > ? ?We train > people on Python and related frame works like Django/Zope/Web2Py/Pyramid > and place them in relavent companies. > ? ? Now we have > around 20 well trained python freshers. Please let me if any of companies > are interested in recruiting well trained Python freshers. > ? > ? For more details mail me on : ram at slvtechnosol.com or call me on : > 080-42192930 > TY, > Ram. > ?? > > > ------------------------------ > > Message: 3 > Date: Tue, 12 Mar 2013 15:39:38 +0530 > From: "Mohammed GAFFAR,G." > To: bangpypers at python.org > Subject: [BangPypers] django training in Bangalore??? > Message-ID: > Z8386A3tw90c25PeWcjXrZtrGiaMBo6U5L4U3wadseTA_Pw at mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > Hi , > > Please suggest me any one: > > Any training center in Bangalore is giving best Django training? > > Please send me the details. > > -- > Thanks and Regards, > G. MOHAMMED GAFFAR > 88611 06223 > Bangalore > > > ------------------------------ > > Message: 4 > Date: Tue, 12 Mar 2013 15:52:09 +0530 > From: Kishan Mehta > To: Bangalore Python Users Group - India > Subject: Re: [BangPypers] django training in Bangalore??? > Message-ID: > < > CAC5ThKHCrJnCrVXJkL4spw2kF7ueWoP9BYxzvsGgYd06YavkRg at mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > HI, I am Ram from SLV Technology Solutions, Bangalore. Not sure this is > right place to post this Ad. Hope I get good responses here. We train > people on Python and related frame works like Django/Zope/Web2Py/Pyramid > and place them in relavent companies. Now we have around 20 well trained > python freshers. Please let me if any of companies are interested in > recruiting well trained Python freshers. > > For more details mail me on : ram at slvtechnosol.com or call me on : > 080-42192930 TY, Ram. > > Kishan Mehta > > ______________________________ _________________ BangPypers mailing list > BangPypers at python.org http://mail.python.org/mailman/listinfo/bangpypers > On Mar 12, 2013 3:40 PM, "Mohammed GAFFAR,G." wrote: > > > Hi , > > > > Please suggest me any one: > > > > Any training center in Bangalore is giving best Django training? > > > > Please send me the details. > > > > -- > > Thanks and Regards, > > G. MOHAMMED GAFFAR > > 88611 06223 > > Bangalore > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > > > ------------------------------ > > End of BangPypers Digest, Vol 67, Issue 8 > ***************************************** > From gora at mimirtech.com Fri Mar 15 08:28:12 2013 From: gora at mimirtech.com (Gora Mohanty) Date: Fri, 15 Mar 2013 12:58:12 +0530 Subject: [BangPypers] BangPypers Digest, Vol 67, Issue 8 In-Reply-To: References: Message-ID: On 15 March 2013 12:08, pavan intercon wrote: > people with experience are preffered . > still resume can be shared , we can go ahead with a telephonic discussion. [...] >> When replying, please edit your Subject line so it is more specific >> than "Re: Contents of BangPypers digest..." [...] As Mailman so helpfully points out, please edit the Subject line, and remove non-relevant content, when replying to a digest post. Thanks. Regards, Gora From puneeth at headstart.in Fri Mar 15 10:22:09 2013 From: puneeth at headstart.in (Puneeth) Date: Fri, 15 Mar 2013 14:52:09 +0530 Subject: [BangPypers] [JOB] Python hacker for early stage stealth startup (VC-backed) Message-ID: Hi, We are looking at hiring a Python ninja. Job desc is at : http://jobs.hasgeek.com/view/e0fn8 Puneeth From ram at slvtechnosol.com Fri Mar 15 12:28:25 2013 From: ram at slvtechnosol.com (ram at slvtechnosol.com) Date: Fri, 15 Mar 2013 16:58:25 +0530 Subject: [BangPypers] BangPypers Digest, Vol 67, Issue 8 In-Reply-To: References: Message-ID: <1b8ad3f313b19182a496d597226d718b.squirrel@www.mail4india.com> Pavan, sorry for late reply. I was out of office.? Please let me know your convienent time for discussion. TY > people with experience are preffered . > still resume can be shared , we can go ahead with a telephonic discussion. > > On Tue, Mar 12, 2013 at 4:30 PM, wrote: > >> Send BangPypers mailing list submissions to >> bangpypers at python.org >> >> To subscribe or unsubscribe via the World Wide Web, visit >> http://mail.python.org/mailman/listinfo/bangpypers >> or, via email, send a message with subject or body 'help' to >> bangpypers-request at python.org >> >> You can reach the person managing the list at >> bangpypers-owner at python.org >> >> When replying, please edit your Subject line so it is more specific >> than "Re: Contents of BangPypers digest..." >> >> >> Today's Topics: >> >> 1. Re: URGENT JOB OPENING FOR PYTHON DEVELOPERS. (SUMIT KUMAR RAJ) >> 2. [Commercial] Python Freshers Available (ram at slvtechnosol.com) >> 3. django training in Bangalore??? (Mohammed GAFFAR,G.) >> 4. Re: django training in Bangalore??? (Kishan Mehta) >> >> >> ---------------------------------------------------------------------- >> >> Message: 1 >> Date: Mon, 11 Mar 2013 17:34:49 +0530 >> From: SUMIT KUMAR RAJ >> To: Bangalore Python Users Group - India >> Subject: Re: [BangPypers] URGENT JOB OPENING FOR PYTHON DEVELOPERS. >> Message-ID: >> < >> CAHLM5Tt0dhmCvun733DVzNWCysU7nmEjfKuF2aMCYSQLQA0mFA at mail.gmail.com> >> Content-Type: text/plain; charset=ISO-8859-1 >> >> Can freshers apply ? >> >> >> On Mon, Mar 11, 2013 at 2:51 PM, pavan intercon >> > >wrote: >> >> > We're a well funded startup located in Delhi. We will be launching our >> > product in a couple of months. >> > >> > If you're interested in and have some experience with technologies >> like >> the >> > following, drop us a line. >> > >> > - Web development using an MVC frameork (we use Django) >> > - Javascript frameworks like Backbone/knockout/angular >> > - UI design using css3, less/sass, jquery >> > - Mobile apps development >> > - Automated testing with selenium or other tools >> > >> > We don't care what programming languages you know, only how well you >> know >> > your favorite language and tools. You should be able to build a >> quality >> > project from scratch using your favorite web framework. Good fits for >> our >> > team are those who can pick up a new language easily and tend to use >> > vim/emacs/sublime to code. We also don't care about professional >> > qualifications. >> > >> > We do care about one thing. You should be someone who actually enjoys >> > coding rather do so just to get a paycheck. >> > >> > Kindly confirm your interest with an updated profile and the following >> > details, alternatively we shall be grateful if you can help us with >> ref >> of >> > your friends or colleagues who may fit this profile >> > >> > Total experience: >> > Year of experience in open source: >> > Open source technologies proficient in: >> > CTC >> > Expected CTC >> > Joining Time >> > Are you comfortable working for Startups >> > >> > Blob Infotech >> > Ours is a start-up company, We're looking for professionals who have >> > passion for software development and have worked on developing >> products >> > from scratch. >> > >> > We currently have 2-3 positions open. >> > >> > Technologies that we want: python, django, flask, solr, elasticsearch, >> > ruby, rails, jquery, backbone.js, angular.js, mysql, mongodb, riak, >> > memcached, redis, nginx, aws. >> > >> > Thanking you >> > Sincerely >> > Sajid >> > 985406913 >> > >> > sajid at interconinternational.com >> > _______________________________________________ >> > BangPypers mailing list >> > BangPypers at python.org >> > http://mail.python.org/mailman/listinfo/bangpypers >> > >> >> >> >> -- >> Regards... >> ---------------------- >> Sumit Kumar Raj >> Software & Web Developer >> Contact no:-9590283524 >> Bangalore,India >> >> >> ------------------------------ >> >> Message: 2 >> Date: Tue, 12 Mar 2013 11:58:11 +0530 >> From: ram at slvtechnosol.com >> To: bangpypers at python.org >> Subject: [BangPypers] [Commercial] Python Freshers Available >> Message-ID: >> >> Content-Type: text/plain; charset="iso-8859-1" >> >> >> >> >> >> >> HI, >> ? ? I am Ram from SLV Technology Solutions, >> Bangalore.? >> ? ?Not sure this is right place to post >> this Ad. Hope I get good responses here. >> ? ?We train >> people on Python and related frame works like Django/Zope/Web2Py/Pyramid >> and place them in relavent companies. >> ? ? Now we have >> around 20 well trained python freshers. Please let me if any of >> companies >> are interested in recruiting well trained Python freshers. >> ? >> ? For more details mail me on : ram at slvtechnosol.com or call me on : >> 080-42192930 >> TY, >> Ram. >> ?? >> >> >> ------------------------------ >> >> Message: 3 >> Date: Tue, 12 Mar 2013 15:39:38 +0530 >> From: "Mohammed GAFFAR,G." >> To: bangpypers at python.org >> Subject: [BangPypers] django training in Bangalore??? >> Message-ID: >> > Z8386A3tw90c25PeWcjXrZtrGiaMBo6U5L4U3wadseTA_Pw at mail.gmail.com> >> Content-Type: text/plain; charset=ISO-8859-1 >> >> Hi , >> >> Please suggest me any one: >> >> Any training center in Bangalore is giving best Django training? >> >> Please send me the details. >> >> -- >> Thanks and Regards, >> G. MOHAMMED GAFFAR >> 88611 06223 >> Bangalore >> >> >> ------------------------------ >> >> Message: 4 >> Date: Tue, 12 Mar 2013 15:52:09 +0530 >> From: Kishan Mehta >> To: Bangalore Python Users Group - India >> Subject: Re: [BangPypers] django training in Bangalore??? >> Message-ID: >> < >> CAC5ThKHCrJnCrVXJkL4spw2kF7ueWoP9BYxzvsGgYd06YavkRg at mail.gmail.com> >> Content-Type: text/plain; charset=ISO-8859-1 >> >> HI, I am Ram from SLV Technology Solutions, Bangalore. Not sure this is >> right place to post this Ad. Hope I get good responses here. We train >> people on Python and related frame works like Django/Zope/Web2Py/Pyramid >> and place them in relavent companies. Now we have around 20 well trained >> python freshers. Please let me if any of companies are interested in >> recruiting well trained Python freshers. >> >> For more details mail me on : ram at slvtechnosol.com or call me on : >> 080-42192930 TY, Ram. >> >> Kishan Mehta >> >> ______________________________ _________________ BangPypers mailing list >> BangPypers at python.org http://mail.python.org/mailman/listinfo/bangpypers >> On Mar 12, 2013 3:40 PM, "Mohammed GAFFAR,G." >> wrote: >> >> > Hi , >> > >> > Please suggest me any one: >> > >> > Any training center in Bangalore is giving best Django training? >> > >> > Please send me the details. >> > >> > -- >> > Thanks and Regards, >> > G. MOHAMMED GAFFAR >> > 88611 06223 >> > Bangalore >> > _______________________________________________ >> > BangPypers mailing list >> > BangPypers at python.org >> > http://mail.python.org/mailman/listinfo/bangpypers >> > >> >> >> ------------------------------ >> >> Subject: Digest Footer >> >> _______________________________________________ >> BangPypers mailing list >> BangPypers at python.org >> http://mail.python.org/mailman/listinfo/bangpypers >> >> >> ------------------------------ >> >> End of BangPypers Digest, Vol 67, Issue 8 >> ***************************************** >> > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > ? From kracethekingmaker at gmail.com Mon Mar 18 17:51:53 2013 From: kracethekingmaker at gmail.com (kracekumar ramaraju) Date: Mon, 18 Mar 2013 22:21:53 +0530 Subject: [BangPypers] March Meetup In-Reply-To: References: Message-ID: Venue for the meetup is fixed. * * *FSMK Office,* *No. 121/17, 1st Floor, 6th main, 14th Cross,* *Wilson garden, Bengaluru - 560030* * * *Time: 2.00PM - 5.00PM* * * On Tue, Mar 5, 2013 at 9:13 PM, kracekumar ramaraju < kracethekingmaker at gmail.com> wrote: > All, > > March meetup will be on 23rd March. We have not fixed the venue. So far > Siva has proposed to do hands on Django - Introduction Tutorial. Feel free > to write back to me incase you would like to present any talk. > http://www.meetup.com/BangPypers/events/104914952/ Do RSVP > > -- > * > Thanks & Regards > > "Talk is cheap, show me the code" -- Linus Torvalds > kracekumar > www.kracekumar.com > * > -- * Thanks & Regards "Talk is cheap, show me the code" -- Linus Torvalds kracekumar www.kracekumar.com * From me at bibhas.in Mon Mar 18 17:57:50 2013 From: me at bibhas.in (Me@Bibhas) Date: Mon, 18 Mar 2013 22:27:50 +0530 Subject: [BangPypers] March Meetup In-Reply-To: References: Message-ID: <6B12B998-3B9B-4B31-9326-CF4F5DD742AE@bibhas.in> If you've been there, Can you post a google maps link for the __exact__ location? Or ask someone who can. A proper direction would also do. -- Bibhas http://bibhas.in On 18-Mar-2013, at 10:21 PM, kracekumar ramaraju wrote: > Venue for the meetup is fixed. > * > * > *FSMK Office,* > *No. 121/17, 1st Floor, 6th main, 14th Cross,* > *Wilson garden, Bengaluru - 560030* > * > * > *Time: 2.00PM - 5.00PM* > * > * > > On Tue, Mar 5, 2013 at 9:13 PM, kracekumar ramaraju < > kracethekingmaker at gmail.com> wrote: > >> All, >> >> March meetup will be on 23rd March. We have not fixed the venue. So far >> Siva has proposed to do hands on Django - Introduction Tutorial. Feel free >> to write back to me incase you would like to present any talk. >> http://www.meetup.com/BangPypers/events/104914952/ Do RSVP >> >> -- >> * >> Thanks & Regards >> >> "Talk is cheap, show me the code" -- Linus Torvalds >> kracekumar >> www.kracekumar.com >> * >> > > > > -- > * > Thanks & Regards > > "Talk is cheap, show me the code" -- Linus Torvalds > kracekumar > www.kracekumar.com > * > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers From nitin.nitp at gmail.com Wed Mar 20 11:55:49 2013 From: nitin.nitp at gmail.com (Nitin Kumar) Date: Wed, 20 Mar 2013 16:25:49 +0530 Subject: [BangPypers] [JOB] In my company Message-ID: Hi All, My Company(McAfee) is looking for few Python Engineer at different level. If anyone interested can apply on the company site or forward to me I can refer the same. Nitin K From nitin.nitp at gmail.com Thu Mar 21 06:45:08 2013 From: nitin.nitp at gmail.com (Nitin Kumar) Date: Thu, 21 Mar 2013 11:15:08 +0530 Subject: [BangPypers] Looking for python trainer Message-ID: Hi All, Santhosh (santhosha_ks at yahoo.co.in) in JP Nagar is looking for Professional python training from very basics. If any one is interested or know some one good for the same then please do suggest him. Nitin K From kracethekingmaker at gmail.com Thu Mar 21 06:49:13 2013 From: kracethekingmaker at gmail.com (kracekumar ramaraju) Date: Thu, 21 Mar 2013 11:19:13 +0530 Subject: [BangPypers] Looking for python trainer In-Reply-To: References: Message-ID: Anand conducts Python training on regular basis, here is the upcoming one http://pythontraining-april2013.doattend.com/. Probably from here you can take the conversation offline. On Thu, Mar 21, 2013 at 11:15 AM, Nitin Kumar wrote: > Hi All, > > Santhosh (santhosha_ks at yahoo.co.in) in JP Nagar is looking for > Professional > python training from very basics. > If any one is interested or know some one good for the same then please do > suggest him. > > Nitin K > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > -- * Thanks & Regards "Talk is cheap, show me the code" -- Linus Torvalds kracekumar www.kracekumar.com * From abpillai at gmail.com Fri Mar 22 06:19:49 2013 From: abpillai at gmail.com (Anand B Pillai) Date: Fri, 22 Mar 2013 10:49:49 +0530 Subject: [BangPypers] BangPypers Digest, Vol 67, Issue 8 In-Reply-To: <1b8ad3f313b19182a496d597226d718b.squirrel@www.mail4india.com> References: <1b8ad3f313b19182a496d597226d718b.squirrel@www.mail4india.com> Message-ID: Please take further discussions on a JOB posting off this list. You are welcome to make the first post, but please keep further follow-ups strictly between the parties involved and don't bother others in the list. Thanks, --Anand On Fri, Mar 15, 2013 at 4:58 PM, wrote: > > > > Pavan, sorry for late reply. I was out of office. > Please > let me know your convienent time for discussion. > TY > > > people with experience are preffered . > > > still resume can be shared , we can go ahead with a telephonic > discussion. > > > > -- Regards, --Anand From nitin.nitp at gmail.com Sat Mar 23 10:19:05 2013 From: nitin.nitp at gmail.com (Nitin Kumar) Date: Sat, 23 Mar 2013 14:49:05 +0530 Subject: [BangPypers] Female developer fired after tweeting about men's comments at PyCon 2013 and San Jose. Message-ID: Thought to share news eveen though it has very less to do with python. This happened at PyCon 2013. San Jose: A female developer was fired after tweeting about a group of men she said were making sexual comments at a computer programming co... http://ibnlive.in.com/news/female-developer-fired-after-tweeting-about-mens-sexual-comments/380690-11.html Nitin K From gora at mimirtech.com Sat Mar 23 10:31:17 2013 From: gora at mimirtech.com (Gora Mohanty) Date: Sat, 23 Mar 2013 15:01:17 +0530 Subject: [BangPypers] Female developer fired after tweeting about men's comments at PyCon 2013 and San Jose. In-Reply-To: References: Message-ID: On 23 March 2013 14:49, Nitin Kumar wrote: > Thought to share news eveen though it has very less to do with python. This > happened at PyCon 2013. > > San Jose: A female developer was fired after tweeting about a group of men > she said were making sexual comments at a computer programming co... > > http://ibnlive.in.com/news/female-developer-fired-after-tweeting-about-mens-sexual-comments/380690-11.html Please at least label such posts off-topic, or better yet refrain from posting them here. Just because it happened at Pycon does not make it relevant for the list. Regards, Gora From jeffjosejeff at gmail.com Sat Mar 23 10:38:51 2013 From: jeffjosejeff at gmail.com (Jeffrey Jose) Date: Sat, 23 Mar 2013 15:08:51 +0530 Subject: [BangPypers] Female developer fired after tweeting about men's comments at PyCon 2013 and San Jose. In-Reply-To: References: Message-ID: I disagree. I haven't read the article but it looks like it talks about very specific behavior in the python community which we are all part of. -jeff On Mar 23, 2013 3:01 PM, "Gora Mohanty" wrote: > On 23 March 2013 14:49, Nitin Kumar wrote: > > Thought to share news eveen though it has very less to do with python. > This > > happened at PyCon 2013. > > > > San Jose: A female developer was fired after tweeting about a group of > men > > she said were making sexual comments at a computer programming co... > > > > > http://ibnlive.in.com/news/female-developer-fired-after-tweeting-about-mens-sexual-comments/380690-11.html > > > Please at least label such posts off-topic, or better yet > refrain from posting them here. Just because it happened > at Pycon does not make it relevant for the list. > > Regards, > Gora > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From gora at mimirtech.com Sat Mar 23 10:44:19 2013 From: gora at mimirtech.com (Gora Mohanty) Date: Sat, 23 Mar 2013 15:14:19 +0530 Subject: [BangPypers] Female developer fired after tweeting about men's comments at PyCon 2013 and San Jose. In-Reply-To: References: Message-ID: On 23 March 2013 15:08, Jeffrey Jose wrote: > I disagree. > > I haven't read the article but it looks like it talks about very specific > behavior in the python community which we are all part of. Maybe you would care to explain how this fits with the list's stated purpose of "This group is for discussions related to the Python programming language. We welcome all kinds of discussions related to Python."? IMHO, this is a technically-oriented list, not a socially-oriented one. Plenty of other forums are available for discussing the kinds of things Nitin and you seem to want to. Regards, Gora From nitin.nitp at gmail.com Sat Mar 23 10:59:56 2013 From: nitin.nitp at gmail.com (Nitin Kumar) Date: Sat, 23 Mar 2013 15:29:56 +0530 Subject: [BangPypers] Female developer fired after tweeting about men's comments at PyCon 2013 and San Jose. In-Reply-To: References: Message-ID: My apology Mr Gora, I didnt knew my mail will be taken this way. As it was related to PyCon but more of gender bias and how companies reacts. Didnt knew of other forum to share this news ;) Will surely take from next time. One more thing, if I dont like anything I just refrain rather that topic than making issue. Nitin K On Mar 23, 2013 3:14 PM, "Gora Mohanty" wrote: > On 23 March 2013 15:08, Jeffrey Jose wrote: > > I disagree. > > > > I haven't read the article but it looks like it talks about very specific > > behavior in the python community which we are all part of. > > Maybe you would care to explain how this fits with the list's stated > purpose of "This group is for discussions related to the Python > programming language. We welcome all kinds of discussions related to > Python."? > > IMHO, this is a technically-oriented list, not a socially-oriented one. > Plenty of other forums are available for discussing the kinds of things > Nitin and you seem to want to. > > Regards, > Gora > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From dhruvbaldawa at gmail.com Sat Mar 23 11:20:06 2013 From: dhruvbaldawa at gmail.com (Dhruv Baldawa) Date: Sat, 23 Mar 2013 15:50:06 +0530 Subject: [BangPypers] Female developer fired after tweeting about men's comments at PyCon 2013 and San Jose. In-Reply-To: References: Message-ID: The headlines are biased and misleading, the event is has been resolved, changes have been made to Code of Conduct. FYI, even one of the male developers was fired. I would suggest you read the following answer. http://www.quora.com/PyCon-Tweet-Controversy-March-2013/Was-it-appropriate-for-SendGrid-to-fire-Adria-Richards-over-the-PyCon-Tweet-Controversy/answer/Gayle-Laakmann-McDowell?srid=hd5W&share=1 On Mar 23, 2013 3:30 PM, "Nitin Kumar" wrote: > > My apology Mr Gora, > > I didnt knew my mail will be taken this way. As it was related to PyCon but > more of gender bias and how companies reacts. > > Didnt knew of other forum to share this news ;) > Will surely take from next time. > > One more thing, if I dont like anything I just refrain rather that topic > than making issue. > > Nitin K > On Mar 23, 2013 3:14 PM, "Gora Mohanty" wrote: > > > On 23 March 2013 15:08, Jeffrey Jose wrote: > > > I disagree. > > > > > > I haven't read the article but it looks like it talks about very specific > > > behavior in the python community which we are all part of. No, I dont think so. > > Maybe you would care to explain how this fits with the list's stated > > purpose of "This group is for discussions related to the Python > > programming language. We welcome all kinds of discussions related to > > Python."? > > > > IMHO, this is a technically-oriented list, not a socially-oriented one. > > Plenty of other forums are available for discussing the kinds of things > > Nitin and you seem to want to. > > > > Regards, > > Gora > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > http://mail.python.org/mailman/listinfo/bangpypers > > > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers From jeffjosejeff at gmail.com Sat Mar 23 11:40:31 2013 From: jeffjosejeff at gmail.com (Jeffrey Jose) Date: Sat, 23 Mar 2013 16:10:31 +0530 Subject: [BangPypers] Female developer fired after tweeting about men's comments at PyCon 2013 and San Jose. In-Reply-To: References: Message-ID: On Sat, Mar 23, 2013 at 3:14 PM, Gora Mohanty wrote: > IMHO, this is a technically-oriented list, not a socially-oriented one. > It shouldnt be. And I have good reasons to believe it isnt. These are real issues affecting Python. If you think nonoptimized tail-recursion calls and dozens of http libraries in standard libraries are the only things that hurt Python, you're not seeing the big picture. Python is not a programming language anymore. Everytime we're harsh to a n00b in this mailing list, BangPypers is branded as un-welcoming to new adopters. The same way, if we fail to discuss or at the very least acknowledge what just happened we tag ourselves in a certain other way. Remember we organize Pycons too. The more we dismiss these, the less we appear unprepared for such things. Take a stand, invite more female friends and tell them we care about them. PSF supports it, and takes pride in how many female developers we have in our community. And we should too. -jeff From jeffjosejeff at gmail.com Sat Mar 23 11:55:28 2013 From: jeffjosejeff at gmail.com (Jeffrey Jose) Date: Sat, 23 Mar 2013 16:25:28 +0530 Subject: [BangPypers] Female developer fired after tweeting about men's comments at PyCon 2013 and San Jose. In-Reply-To: References: Message-ID: On Sat, Mar 23, 2013 at 3:50 PM, Dhruv Baldawa wrote: > The headlines are biased and misleading, the event is has been resolved, > changes have been made to Code of Conduct. FYI, even one of the male > developers was fired. I would suggest you read the following answer. > > > http://www.quora.com/PyCon-Tweet-Controversy-March-2013/Was-it-appropriate-for-SendGrid-to-fire-Adria-Richards-over-the-PyCon-Tweet-Controversy/answer/Gayle-Laakmann-McDowell?srid=hd5W&share=1 That was a good read. Thanks for sending that across. > > > On Mar 23, 2013 3:30 PM, "Nitin Kumar" wrote: > > > > My apology Mr Gora, > > > > I didnt knew my mail will be taken this way. As it was related to PyCon > but > > more of gender bias and how companies reacts. > > > > Didnt knew of other forum to share this news ;) > > Will surely take from next time. > > > > One more thing, if I dont like anything I just refrain rather that topic > > than making issue. > > > > Nitin K > > On Mar 23, 2013 3:14 PM, "Gora Mohanty" wrote: > > > > > On 23 March 2013 15:08, Jeffrey Jose wrote: > > > > I disagree. > > > > > > > > I haven't read the article but it looks like it talks about very > specific > > > > behavior in the python community which we are all part of. > > No, I dont think so. > > > > Maybe you would care to explain how this fits with the list's stated > > > purpose of "This group is for discussions related to the Python > > > programming language. We welcome all kinds of discussions related to > > > Python."? > > > > > > IMHO, this is a technically-oriented list, not a socially-oriented one. > > > Plenty of other forums are available for discussing the kinds of things > > > Nitin and you seem to want to. > > > > > > Regards, > > > Gora > > > _______________________________________________ > > > BangPypers mailing list > > > BangPypers at python.org > > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > http://mail.python.org/mailman/listinfo/bangpypers > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From me at bibhas.in Sat Mar 23 12:11:10 2013 From: me at bibhas.in (Bibhas Ch Debnath) Date: Sat, 23 Mar 2013 16:41:10 +0530 Subject: [BangPypers] Female developer fired after tweeting about men's comments at PyCon 2013 and San Jose. In-Reply-To: References: Message-ID: The title is as misleading as it can be. ---- Bibhas http://bibhas.in On 23 March 2013 16:25, Jeffrey Jose wrote: > On Sat, Mar 23, 2013 at 3:50 PM, Dhruv Baldawa >wrote: > > > The headlines are biased and misleading, the event is has been resolved, > > changes have been made to Code of Conduct. FYI, even one of the male > > developers was fired. I would suggest you read the following answer. > > > > > > > http://www.quora.com/PyCon-Tweet-Controversy-March-2013/Was-it-appropriate-for-SendGrid-to-fire-Adria-Richards-over-the-PyCon-Tweet-Controversy/answer/Gayle-Laakmann-McDowell?srid=hd5W&share=1 > > > That was a good read. Thanks for sending that across. > > > > > > > > On Mar 23, 2013 3:30 PM, "Nitin Kumar" wrote: > > > > > > My apology Mr Gora, > > > > > > I didnt knew my mail will be taken this way. As it was related to PyCon > > but > > > more of gender bias and how companies reacts. > > > > > > Didnt knew of other forum to share this news ;) > > > Will surely take from next time. > > > > > > One more thing, if I dont like anything I just refrain rather that > topic > > > than making issue. > > > > > > Nitin K > > > On Mar 23, 2013 3:14 PM, "Gora Mohanty" wrote: > > > > > > > On 23 March 2013 15:08, Jeffrey Jose wrote: > > > > > I disagree. > > > > > > > > > > I haven't read the article but it looks like it talks about very > > specific > > > > > behavior in the python community which we are all part of. > > > > No, I dont think so. > > > > > > Maybe you would care to explain how this fits with the list's stated > > > > purpose of "This group is for discussions related to the Python > > > > programming language. We welcome all kinds of discussions related to > > > > Python."? > > > > > > > > IMHO, this is a technically-oriented list, not a socially-oriented > one. > > > > Plenty of other forums are available for discussing the kinds of > things > > > > Nitin and you seem to want to. > > > > > > > > Regards, > > > > Gora > > > > _______________________________________________ > > > > BangPypers mailing list > > > > BangPypers at python.org > > > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > > > _______________________________________________ > > > BangPypers mailing list > > > BangPypers at python.org > > > http://mail.python.org/mailman/listinfo/bangpypers > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > http://mail.python.org/mailman/listinfo/bangpypers > > > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From satishsagar83 at gmail.com Sat Mar 23 14:54:12 2013 From: satishsagar83 at gmail.com (L Radhakrishna Rao) Date: Sat, 23 Mar 2013 19:24:12 +0530 Subject: [BangPypers] Female developer fired after tweeting about men's comments at PyCon 2013 and San Jose. In-Reply-To: References: Message-ID: What the hell is this news doing here? I guess this is a forum to discuss programming, particularly python programming and not about the laws and constitution. Regards, RK From svaksha at gmail.com Sat Mar 23 15:11:38 2013 From: svaksha at gmail.com (=?UTF-8?B?IOCkuOCljeCkteCkleCljeCktw==?=) Date: Sat, 23 Mar 2013 19:41:38 +0530 Subject: [BangPypers] Female developer fired after tweeting about men's comments at PyCon 2013 and San Jose. In-Reply-To: References: Message-ID: On Sat, Mar 23, 2013 at 7:24 PM, L Radhakrishna Rao wrote: > What the hell is this news doing here? So, swearing on the list to express your annoyance is acceptable? > I guess this is a forum to discuss programming, particularly python > programming and not about the laws and constitution. It is relevant and you can read my earlier reply to know more. -- Regards, Vid ? http://svaksha.com ? From svaksha at gmail.com Sat Mar 23 15:11:03 2013 From: svaksha at gmail.com (=?UTF-8?B?IOCkuOCljeCkteCkleCljeCktw==?=) Date: Sat, 23 Mar 2013 19:41:03 +0530 Subject: [BangPypers] Female developer fired after tweeting about men's comments at PyCon 2013 and San Jose. In-Reply-To: References: Message-ID: On Sat, Mar 23, 2013 at 4:10 PM, Jeffrey Jose wrote: > On Sat, Mar 23, 2013 at 3:14 PM, Gora Mohanty wrote: > >> IMHO, this is a technically-oriented list, not a socially-oriented one. >> > > It shouldnt be. And I have good reasons to believe it isnt. > > These are real issues affecting Python. If you think nonoptimized > tail-recursion calls and dozens of http libraries in standard libraries are > the only things that hurt Python, you're not seeing the big picture. Python > is not a programming language anymore. > > Everytime we're harsh to a n00b in this mailing list, BangPypers is branded > as un-welcoming to new adopters. The same way, if we fail to discuss or at > the very least acknowledge what just happened we tag ourselves in a certain > other way. > > Remember we organize Pycons too. The more we dismiss these, the less we > appear unprepared for such things. Take a stand, invite more female friends > and tell them we care about them. PSF supports it, and takes pride in how > many female developers we have in our community. And we should too. Thanks for speaking up Jeff. Isnt Pycon-India sponsored and supported by the PSF - The board resolution now mandates the CoC be implemented by all Python conferences and events funded by them. From, http://pyfound.blogspot.in/2012/12/psf-moves-to-require-code-of-conduct.html The first resolution passed by the board serves as the Foundation?s recommendation that all Python conferences and related events create and apply a Code of Conduct. The board unanimously agreed on this point, suggesting that publicly documented expectations and plans of action are necessary when planning and running an event in our community. The second resolution passed by the board serves as the Foundation?s requirement that all Python conferences and related events create and apply a Code of Conduct. Without a code in place, the Foundation will not fund the event. Regards, Vid ? http://svaksha.com ? From noufal at nibrahim.net.in Sat Mar 23 17:07:17 2013 From: noufal at nibrahim.net.in (Noufal Ibrahim) Date: Sat, 23 Mar 2013 21:37:17 +0530 Subject: [BangPypers] Female developer fired after tweeting about men's comments at PyCon 2013 and San Jose. In-Reply-To: (Jeffrey Jose's message of "Sat, 23 Mar 2013 16:10:31 +0530") References: Message-ID: <87obea6qx6.fsf@sanitarium.localdomain> Jeffrey Jose writes: [...] > Remember we organize Pycons too. The more we dismiss these, the less > we appear unprepared for such things. Take a stand, invite more female > friends and tell them we care about them. PSF supports it, and takes > pride in how many female developers we have in our community. And we > should too. Inpycon is a more suitable list for discussing PyCon India related matters than Bangpypers. I did start a thread over there a few days ago about this very issue and how we should see and respond to it. [...] -- Cordially, Noufal http://nibrahim.net.in From kracethekingmaker at gmail.com Sat Mar 23 20:45:11 2013 From: kracethekingmaker at gmail.com (kracekumar ramaraju) Date: Sun, 24 Mar 2013 01:15:11 +0530 Subject: [BangPypers] March month meetup Message-ID: All, March month Bangpypers meetup was held in FSMK(http://www.fsmk.org/) office. 25 people attended the meetup. Siva gave session how to get started with Django web development, showed a demo how to create a todo list using Django admin interface. There was one lightning talk by Arun(http://arunrocks.com/) about his experience of using python standard library to scrape internal live journal site. Here is the link for his video http://www.youtube.com/watch?v=EMrLKlmm4LY&feature=youtu.be . During recording audio input was mistakenly connected to audio output of the lecture recorder, as a result audio for Siva's session was lost. Unfortunately camera backup of the video was delayed in recording and only speaker face was focussed as result video is now unusable. Sorry :-(. -- * Thanks & Regards "Talk is cheap, show me the code" -- Linus Torvalds kracekumar www.kracekumar.com * From kracethekingmaker at gmail.com Sat Mar 23 20:54:57 2013 From: kracethekingmaker at gmail.com (kracekumar ramaraju) Date: Sun, 24 Mar 2013 01:24:57 +0530 Subject: [BangPypers] April month meetup Message-ID: All, Siva informed me he is willing to handle 3 hours hands-on session about getting started with Django next month. We need a venue which has power socket and decent internet connection. I would like to have others suggestions about the format, looking forward for venue to host for next meetup. We will be also needing few volunteers to help during meetup. -- * Thanks & Regards "Talk is cheap, show me the code" -- Linus Torvalds kracekumar www.kracekumar.com * From kracethekingmaker at gmail.com Sun Mar 24 09:05:35 2013 From: kracethekingmaker at gmail.com (kracekumar ramaraju) Date: Sun, 24 Mar 2013 13:35:35 +0530 Subject: [BangPypers] Poll about Bangpypers group interest and expertise level Message-ID: Hi I have created poll to have better understanding of bangpypers meetup group expertise level, as co-organizer of the group it helps me to tell to speaker about audience level and expertise. It helps them to tune to audience level with relevant examples, talk content. Please cast the vote in the following polls. - http://www.meetup.com/BangPypers/polls/780402/ - http://www.meetup.com/BangPypers/polls/780712/ In case you have any other specific concern/suggestions you can discuss in the thread or write back to me. -- * Thanks & Regards "Talk is cheap, show me the code" -- Linus Torvalds kracekumar www.kracekumar.com * From anandology at gmail.com Mon Mar 25 15:22:46 2013 From: anandology at gmail.com (Anand Chitipothu) Date: Mon, 25 Mar 2013 19:52:46 +0530 Subject: [BangPypers] Python Monk - Learn Python in your browser Message-ID: Hello everyone! I have written an interactive learning book for Python at http://pythonmonk.com/learning/books/17. I would love it if you could go through the lessons and give feedback. This is an alpha version with limited content. We are releasing this to an audience we already know before we release to a larger audience. PythonMonk was built by the folks at C42 Engineering (http://c42.in) and uses the same platform as rubymonk.com. PS: This is the first place we are announcing PythonMonk and it is not ready for a large number of users yet. So please keep it within the group and not share the link anywhere else. Thanks! Anand http://anandology.com/ From venkat83 at gmail.com Mon Mar 25 15:50:48 2013 From: venkat83 at gmail.com (Venkatraman S) Date: Mon, 25 Mar 2013 20:20:48 +0530 Subject: [BangPypers] Python Monk - Learn Python in your browser In-Reply-To: References: Message-ID: On Mon, Mar 25, 2013 at 7:52 PM, Anand Chitipothu wrote: > I have written an interactive learning book for Python at > http://pythonmonk.com/learning/books/17. > > I would love it if you could go through the lessons and give feedback. This > is an alpha version with limited content. We are releasing this to an > audience we already know before we release to a larger audience. > > PythonMonk was built by the folks at C42 Engineering (http://c42.in) and > uses the same platform as rubymonk.com. > > 1. Too much screen real-estate seems to be wasted and i find the UI, though sparse, sometimes slightly confusing. Am sure its either that I am tired, or am just not used to using such sites. 2. Content - "the value", IMHO, would be if you can do a SICP-esque course via this platform, so that monetization is a possibility. 3. Am sure someone at HN will ultimately comment that PythonMonk was written in Ruby ;) Good luck :) @venkasub From kracethekingmaker at gmail.com Mon Mar 25 17:26:19 2013 From: kracethekingmaker at gmail.com (kracekumar ramaraju) Date: Mon, 25 Mar 2013 21:56:19 +0530 Subject: [BangPypers] Python Monk - Learn Python in your browser In-Reply-To: References: Message-ID: On Mon, Mar 25, 2013 at 8:20 PM, Venkatraman S wrote: > On Mon, Mar 25, 2013 at 7:52 PM, Anand Chitipothu >wrote: > > > I have written an interactive learning book for Python at > > http://pythonmonk.com/learning/books/17. > > > > I would love it if you could go through the lessons and give feedback. > This > > is an alpha version with limited content. We are releasing this to an > > audience we already know before we release to a larger audience. > > > > PythonMonk was built by the folks at C42 Engineering (http://c42.in) and > > uses the same platform as rubymonk.com. > > > > > > 1. Too much screen real-estate seems to be wasted and i find the UI, though > sparse, > sometimes slightly confusing. Am sure its either that I am tired, or am > just not used to > using such sites. > > 2. Content - "the value", IMHO, would be if you can do a SICP-esque course > via this > platform, so that monetization is a possibility. > > 3. Am sure someone at HN will ultimately comment that PythonMonk was > written > in Ruby ;) > > +1 Good luck :) > > @venkasub > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > -- * Thanks & Regards "Talk is cheap, show me the code" -- Linus Torvalds kracekumar www.kracekumar.com * From abdulmuneer at gmail.com Tue Mar 26 03:13:43 2013 From: abdulmuneer at gmail.com (Abdul Muneer) Date: Tue, 26 Mar 2013 07:43:43 +0530 Subject: [BangPypers] The FSF awards Fernando Perez, the creator of IPython Message-ID: Hi, >From fsf.org: " The Award for the Advancement of Free Software is given annually to an individual who has made a great contribution to the progress and development of free software, through activities that accord with the spirit of free software. This year, it was given to Dr. Fernando Perez, the creator of IPython. IPython provides a rich architecture for interactive computing with a debugger, editor, and python command-line interpreter all in one. " https://www.fsf.org/news/2012-free-software-award-winners-announced-2 Regards, Abdul Muneer -- Follow me on Twitter: @abdulmuneer From anandology at gmail.com Tue Mar 26 06:46:17 2013 From: anandology at gmail.com (Anand Chitipothu) Date: Tue, 26 Mar 2013 11:16:17 +0530 Subject: [BangPypers] Python Monk - Learn Python in your browser In-Reply-To: References: Message-ID: On Mon, Mar 25, 2013 at 8:20 PM, Venkatraman S wrote: > On Mon, Mar 25, 2013 at 7:52 PM, Anand Chitipothu wrote: > >> I have written an interactive learning book for Python at >> http://pythonmonk.com/learning/books/17. >> >> I would love it if you could go through the lessons and give feedback. This >> is an alpha version with limited content. We are releasing this to an >> audience we already know before we release to a larger audience. >> >> PythonMonk was built by the folks at C42 Engineering (http://c42.in) and >> uses the same platform as rubymonk.com. >> >> > > 1. Too much screen real-estate seems to be wasted and i find the UI, though > sparse, > sometimes slightly confusing. Am sure its either that I am tired, or am > just not used to > using such sites. Thanks for the feedback. I'll pass it on to PythonMonk team. > 2. Content - "the value", IMHO, would be if you can do a SICP-esque course > via this > platform, so that monetization is a possibility. I've always dreamt of writing a book like SICP using Python. In fact that is my benchmark when I do python trainings and write tutorials. I've always felt that the audience of my trainings are not looking for SICP. They'll run away if I start with newton's method in the first class. Having said that, SICP influenced me greatly and you'll see those patterns in my writings. Here is an example: http://anandology.com/python-practice-book/functional-programming.html > > 3. Am sure someone at HN will ultimately comment that PythonMonk was > written > in Ruby ;) IMHO, programming languages are just tools. I'm not religious about using Python for everything. Anand From benignbala at gmail.com Tue Mar 26 06:59:22 2013 From: benignbala at gmail.com (Balachandran Sivakumar) Date: Tue, 26 Mar 2013 11:29:22 +0530 Subject: [BangPypers] Python Monk - Learn Python in your browser In-Reply-To: References: Message-ID: Hi, On Mon, Mar 25, 2013 at 7:52 PM, Anand Chitipothu wrote: > Hello everyone! > > I have written an interactive learning book for Python at > http://pythonmonk.com/learning/books/17. > A nice initiative :) Thanks for that. > I would love it if you could go through the lessons and give feedback. This > is an alpha version with limited content. We are releasing this to an > audience we already know before we release to a larger audience. > > PythonMonk was built by the folks at C42 Engineering (http://c42.in) and > uses the same platform as rubymonk.com. > I agree with others that we could use more of the screen space. May be because I have already tried Ruby Monks a while back, I don't find it that bad. I haven't gone through the entire book. But it would be nice to have idiomatic programming intorduced as well. I find people(beginners mostly, but others as well) looping through lists the "C-way" .i.e for i in range(len(list)): print list[i] style of programming. It would be nice to teach idomatic python, right from the beginning. Thanks > PS: This is the first place we are announcing PythonMonk and it is not > ready for a large number of users yet. So please keep it within the group > and not share the link anywhere else. > waiting for more advanced topics :) Thanks -- Thank you Balachandran Sivakumar Arise Awake and stop not till the goal is reached. - Swami Vivekananda Mail: benignbala at gmail.com Blog: http://benignbala.wordpress.com/ From devin at nextdrop.org Tue Mar 26 15:08:13 2013 From: devin at nextdrop.org (Devin Miller) Date: Tue, 26 Mar 2013 19:38:13 +0530 Subject: [BangPypers] [JOB] Python/Android hacker for water startup In-Reply-To: References: Message-ID: Background: NextDrop is expanding and looking for passionate individuals to join our growing tech team. You will specifically be working closely with our beloved Data Loving Hacker to create a seamless user experience for the customers who receive our SMS water alerts, while also creating custom web based technology for the water utility- to enable them to make data driven decisions. Your job will also entail being the guardian and keeper of all our data- which means looking after our custom built SMS/IVR system. Finally, you?ll be making custom internal analytics to track all of the important pieces of information ? so we can all figure out how to improve and grow our company. You Should Apply For This Job If: You are itching to make your ideas come to life, and create amazing products that have the ability to impact millions of lives. You can take a real world problem, and create a technical solution for it- the prospect of doing things nobody has ever done before excites you. You love data, and truly believe that making data driven decisions will help any organization succeed. You also love the details and have been criticized as being too much of a perfectionist- you won?t let something pass if there?s even an extra space between a comma and the next word. You love to travel, and you don?t like to sit in the same place all the time. Similarly, you enjoy challenges, and love the prospect of doing different things every day. You also love the details: you record everything that goes right, AND everything that goes wrong so you can fix it next time. You believe in the hacker mentality: Fail fast, fail often, but learn every time. But most of all, you are simply passionate about making a real difference in the world, and will do whatever it takes to make that happen. You?re a match if: You are a web development whiz, but more particularly, you love to use Python (Django web framework), HTML, CSS, Javascript. You and the Android SDK are best friends (but you are also friends with the nginx web server). REST APIs: No Problem. Sysadmin and server management- piece of cake Salary: On Par With Market.. Interested? Contact: team at nextdrop.org http://nextdrop.org/ From senthil at uthcode.com Tue Mar 26 17:13:23 2013 From: senthil at uthcode.com (Senthil Kumaran) Date: Tue, 26 Mar 2013 09:13:23 -0700 Subject: [BangPypers] Python Monk - Learn Python in your browser In-Reply-To: References: Message-ID: Hello Anand, Congratulations on this. This is going to be immensely useful for many new comers and I am seeing lot new comers to Python, using environments like these to learn. Yeah, C42 Engineering team have done a good job with the platform too. I used this to learn to ruby. Thank you, Senthil On Mon, Mar 25, 2013 at 7:22 AM, Anand Chitipothu wrote: > Hello everyone! > > I have written an interactive learning book for Python at > http://pythonmonk.com/learning/books/17. > > I would love it if you could go through the lessons and give feedback. This > is an alpha version with limited content. We are releasing this to an > audience we already know before we release to a larger audience. > > PythonMonk was built by the folks at C42 Engineering (http://c42.in) and > uses the same platform as rubymonk.com. > > PS: This is the first place we are announcing PythonMonk and it is not > ready for a large number of users yet. So please keep it within the group > and not share the link anywhere else. > > Thanks! > Anand > http://anandology.com/ > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers From foxrun2005 at gmail.com Tue Mar 26 19:11:01 2013 From: foxrun2005 at gmail.com (Kamalakar gs) Date: Tue, 26 Mar 2013 23:41:01 +0530 Subject: [BangPypers] Need help for python coding Message-ID: Dear all, I am newbie to coding.I want extract the data from text file which contains text and tables.In a file i want to extract all "VON MISES" stress data from a table.i wrote a code as below. but i dont know how to extract the vonmises column data and dump it into text file. So i am attaching the file which i am using for my project. * * *import re* *f_read = open('file name','r')* *str='VON MISES'* *for line in f_read: * * m=re.search(str,line)* * if m:* * print m* * * * * *Thanks regards Kamalakar* From gora at mimirtech.com Wed Mar 27 05:36:49 2013 From: gora at mimirtech.com (Gora Mohanty) Date: Wed, 27 Mar 2013 10:06:49 +0530 Subject: [BangPypers] Need help for python coding In-Reply-To: References: Message-ID: On 26 March 2013 23:41, Kamalakar gs wrote: > Dear all, > I am newbie to coding.I want extract the data from text file which contains > text and tables.In a file i want to extract all "VON MISES" stress data > from a table.i wrote a code as below. but i dont know how to extract the > vonmises column data and dump it into text file. [...] It is difficult to help when you have not provided enough details. This should be quite easy, but please include a short sample of the data that you are trying to extract, explaining what you need to extract. Regards, Gora From jtoomim at jtoomim.org Wed Mar 27 08:08:10 2013 From: jtoomim at jtoomim.org (Jonathan Toomim) Date: Wed, 27 Mar 2013 12:38:10 +0530 Subject: [BangPypers] Need help for python coding In-Reply-To: References: Message-ID: <51529ADA.2050206@jtoomim.org> 1. str is the name of a builtin type object. If you create a variable with that name, then you will be unable to access that builtin type while your variable remained in scope. This would mean that you would be unable to call str(42), for example. 2. Perhaps the csv module can be of use to you? http://docs.python.org/2/library/csv.html 3. There's an easier way to test if there's a substring present in a string: for line in f_read: if 'VON MISES' in line: print m If you want case insensitivity, just replace line with line.upper(). 4. By the way, you could probably also do this in one line from bash using grep: grep "VON MISES" "file name" > "output file" Jonathan On 3/26/2013 11:41 PM, Kamalakar gs wrote: > Dear all, > I am newbie to coding.I want extract the data from text file which contains > text and tables.In a file i want to extract all "VON MISES" stress data > from a table.i wrote a code as below. but i dont know how to extract the > vonmises column data and dump it into text file. > So i am attaching the file which i am using for my project. > > * > * > *import re* > *f_read = open('file name','r')* > *str='VON MISES'* > *for line in f_read: * > * m=re.search(str,line)* > * if m:* > * print m* > * > * > * > * > *Thanks regards Kamalakar* > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From abpillai at gmail.com Thu Mar 28 07:15:59 2013 From: abpillai at gmail.com (Anand B Pillai) Date: Thu, 28 Mar 2013 11:45:59 +0530 Subject: [BangPypers] Need help for python coding In-Reply-To: References: Message-ID: Hi, On Tue, Mar 26, 2013 at 11:41 PM, Kamalakar gs wrote: > Dear all, > I am newbie to coding.I want extract the data from text file which contains > text and tables.In a file i want to extract all "VON MISES" stress data > from a table.i wrote a code as below. but i dont know how to extract the > vonmises column data and dump it into text file. > So i am attaching the file which i am using for my project. > The list doesn't take attachments. Also, the best way to ask for help in tech forums is to be clear about your problem and write short, samples of code and be descriptive when explaining where you are facing issues. Please don't expect the people to solve the problem for you so attaching the original file is not advisable. If your post for help is clear and to the point, answers would also be like that. Otherwise you might get expansive answers, which may not be very helpful. > * > * > *import re* > *f_read = open('file name','r')* > *str='VON MISES'* > *for line in f_read: * > * m=re.search(str,line)* > * if m:* > * print m* > * > * > * > * > Format code without using asteriks or using something like pastebin and post link here. > *Thanks regards Kamalakar* > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > -- Regards, --Anand From abpillai at gmail.com Thu Mar 28 07:23:00 2013 From: abpillai at gmail.com (Anand B Pillai) Date: Thu, 28 Mar 2013 11:53:00 +0530 Subject: [BangPypers] April month meetup In-Reply-To: References: Message-ID: Hi Krace, On Sun, Mar 24, 2013 at 1:24 AM, kracekumar ramaraju < kracethekingmaker at gmail.com> wrote: > All, > > Siva informed me he is willing to handle 3 hours hands-on session about > getting started with Django next month. We need a venue which has power > socket and decent internet connection. I would like to have others > suggestions about the format, looking forward for venue to host for next > meetup. We will be also needing few volunteers to help during meetup. > I couldn't find when the next meetup is scheduled. If it is after April 15, I would like to give a talk on "Using idioms - Writing Pythonic code in Python". This is based on my observations for a long time and also partly inspired by Raymond's talk this year in U.S PyCon on Idiomatic Coding. Kindly publish the dates. > -- > * > Thanks & Regards > > "Talk is cheap, show me the code" -- Linus Torvalds > kracekumar > www.kracekumar.com > * > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > -- Regards, --Anand From abpillai at gmail.com Thu Mar 28 07:48:12 2013 From: abpillai at gmail.com (Anand B Pillai) Date: Thu, 28 Mar 2013 12:18:12 +0530 Subject: [BangPypers] Python Monk - Learn Python in your browser In-Reply-To: References: Message-ID: On Tue, Mar 26, 2013 at 11:29 AM, Balachandran Sivakumar < benignbala at gmail.com> wrote: > > > I haven't gone through the entire book. But it would be nice to > have idiomatic programming intorduced as well. I find people(beginners > mostly, but others as well) looping through lists the "C-way" .i.e > > for i in range(len(list)): > print list[i] > > style of programming. It would be nice to teach idomatic python, right > from the beginning. Thanks > Nice thought. Raymond gave a talk on Idiomatic Python Programming at this year's PyCon U.S. You might be interested in it. https://speakerdeck.com/pyconslides/transforming-code-into-beautiful-idiomatic-python-by-raymond-hettinger I myself have been thinking of this aspect of late and has been working on a few iPython notebooks where I take one aspect of Python and show examples of unpythonic and pythonic code using them - like lists, dictionaries, attribute access etc. This is a work in progress. I plan to give a talk on it in one of the meetups and if it goes well, in PyCon India later this year. -- Regards, --Anand From kracethekingmaker at gmail.com Thu Mar 28 08:11:33 2013 From: kracethekingmaker at gmail.com (kracekumar ramaraju) Date: Thu, 28 Mar 2013 12:41:33 +0530 Subject: [BangPypers] April month meetup In-Reply-To: References: Message-ID: Anand, April month meetup will be on 20th. I will count you as one of the speaker. Will update the meetup page. On Thu, Mar 28, 2013 at 11:53 AM, Anand B Pillai wrote: > Hi Krace, > > On Sun, Mar 24, 2013 at 1:24 AM, kracekumar ramaraju < > kracethekingmaker at gmail.com> wrote: > > > All, > > > > Siva informed me he is willing to handle 3 hours hands-on session about > > getting started with Django next month. We need a venue which has power > > socket and decent internet connection. I would like to have others > > suggestions about the format, looking forward for venue to host for next > > meetup. We will be also needing few volunteers to help during meetup. > > > > I couldn't find when the next meetup is scheduled. > > If it is after April 15, I would like to give a talk on "Using idioms - > Writing Pythonic > code in Python". This is based on my observations for a long time and also > partly inspired by Raymond's talk this year in U.S PyCon on Idiomatic > Coding. > > Kindly publish the dates. > > > > -- > > * > > Thanks & Regards > > > > "Talk is cheap, show me the code" -- Linus Torvalds > > kracekumar > > www.kracekumar.com > > * > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > > -- > Regards, > > --Anand > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > -- * Thanks & Regards "Talk is cheap, show me the code" -- Linus Torvalds kracekumar www.kracekumar.com * From abdulmuneer at gmail.com Thu Mar 28 12:31:18 2013 From: abdulmuneer at gmail.com (Abdul Muneer) Date: Thu, 28 Mar 2013 17:01:18 +0530 Subject: [BangPypers] April month meetup In-Reply-To: References: Message-ID: What will be the timing? It'll be great if it is after 4pm. I was not able to attend after the rescheduling of March meetup Regards, Abdul Muneer -- Follow me on Twitter: @abdulmuneer On Thu, Mar 28, 2013 at 12:41 PM, kracekumar ramaraju < kracethekingmaker at gmail.com> wrote: > Anand, > > April month meetup will be on 20th. I will count you as one of the > speaker. Will update the meetup page. > > On Thu, Mar 28, 2013 at 11:53 AM, Anand B Pillai > wrote: > > > Hi Krace, > > > > On Sun, Mar 24, 2013 at 1:24 AM, kracekumar ramaraju < > > kracethekingmaker at gmail.com> wrote: > > > > > All, > > > > > > Siva informed me he is willing to handle 3 hours hands-on session > about > > > getting started with Django next month. We need a venue which has power > > > socket and decent internet connection. I would like to have others > > > suggestions about the format, looking forward for venue to host for > next > > > meetup. We will be also needing few volunteers to help during meetup. > > > > > > > I couldn't find when the next meetup is scheduled. > > > > If it is after April 15, I would like to give a talk on "Using idioms - > > Writing Pythonic > > code in Python". This is based on my observations for a long time and > also > > partly inspired by Raymond's talk this year in U.S PyCon on Idiomatic > > Coding. > > > > Kindly publish the dates. > > > > > > > -- > > > * > > > Thanks & Regards > > > > > > "Talk is cheap, show me the code" -- Linus Torvalds > > > kracekumar > > > www.kracekumar.com > > > * > > > _______________________________________________ > > > BangPypers mailing list > > > BangPypers at python.org > > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > > > > > > > -- > > Regards, > > > > --Anand > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > > -- > * > Thanks & Regards > > "Talk is cheap, show me the code" -- Linus Torvalds > kracekumar > www.kracekumar.com > * > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From benignbala at gmail.com Thu Mar 28 12:51:33 2013 From: benignbala at gmail.com (Balachandran Sivakumar) Date: Thu, 28 Mar 2013 17:21:33 +0530 Subject: [BangPypers] April month meetup In-Reply-To: References: Message-ID: Hi, On Thu, Mar 28, 2013 at 5:01 PM, Abdul Muneer wrote: > What will be the timing? It'll be great if it is after 4pm. I was not able > to attend after the rescheduling of March meetup > The meetings are normally from 3:00 pm to 06:00 pm. Thanks -- Thank you Balachandran Sivakumar Arise Awake and stop not till the goal is reached. - Swami Vivekananda Mail: benignbala at gmail.com Blog: http://benignbala.wordpress.com/ From kracethekingmaker at gmail.com Thu Mar 28 12:53:59 2013 From: kracethekingmaker at gmail.com (kracekumar ramaraju) Date: Thu, 28 Mar 2013 17:23:59 +0530 Subject: [BangPypers] April month meetup In-Reply-To: References: Message-ID: On Thu, Mar 28, 2013 at 5:01 PM, Abdul Muneer wrote: > What will be the timing? It'll be great if it is after 4pm. I was not able > to attend after the rescheduling of March meetup > > Since we have two sessions, 2 to 6 PM, first we will go with Anand's talk and then workshop. Regards, > Abdul Muneer > > -- > Follow me on Twitter: @abdulmuneer > > > On Thu, Mar 28, 2013 at 12:41 PM, kracekumar ramaraju < > kracethekingmaker at gmail.com> wrote: > > > Anand, > > > > April month meetup will be on 20th. I will count you as one of the > > speaker. Will update the meetup page. > > > > On Thu, Mar 28, 2013 at 11:53 AM, Anand B Pillai > > wrote: > > > > > Hi Krace, > > > > > > On Sun, Mar 24, 2013 at 1:24 AM, kracekumar ramaraju < > > > kracethekingmaker at gmail.com> wrote: > > > > > > > All, > > > > > > > > Siva informed me he is willing to handle 3 hours hands-on session > > about > > > > getting started with Django next month. We need a venue which has > power > > > > socket and decent internet connection. I would like to have others > > > > suggestions about the format, looking forward for venue to host for > > next > > > > meetup. We will be also needing few volunteers to help during meetup. > > > > > > > > > > I couldn't find when the next meetup is scheduled. > > > > > > If it is after April 15, I would like to give a talk on "Using idioms - > > > Writing Pythonic > > > code in Python". This is based on my observations for a long time and > > also > > > partly inspired by Raymond's talk this year in U.S PyCon on Idiomatic > > > Coding. > > > > > > Kindly publish the dates. > > > > > > > > > > -- > > > > * > > > > Thanks & Regards > > > > > > > > "Talk is cheap, show me the code" -- Linus Torvalds > > > > kracekumar > > > > www.kracekumar.com > > > > * > > > > _______________________________________________ > > > > BangPypers mailing list > > > > BangPypers at python.org > > > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > > > > > > > > > > > > -- > > > Regards, > > > > > > --Anand > > > _______________________________________________ > > > BangPypers mailing list > > > BangPypers at python.org > > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > > > > > > > -- > > * > > Thanks & Regards > > > > "Talk is cheap, show me the code" -- Linus Torvalds > > kracekumar > > www.kracekumar.com > > * > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > http://mail.python.org/mailman/listinfo/bangpypers > > > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > -- * Thanks & Regards "Talk is cheap, show me the code" -- Linus Torvalds kracekumar www.kracekumar.com * From satishsagar83 at gmail.com Fri Mar 29 07:40:45 2013 From: satishsagar83 at gmail.com (L Radhakrishna Rao) Date: Fri, 29 Mar 2013 12:10:45 +0530 Subject: [BangPypers] April month meetup In-Reply-To: References: Message-ID: Guys, what's the venue in bangalore? On Thu, Mar 28, 2013 at 5:23 PM, kracekumar ramaraju < kracethekingmaker at gmail.com> wrote: > On Thu, Mar 28, 2013 at 5:01 PM, Abdul Muneer > wrote: > > > What will be the timing? It'll be great if it is after 4pm. I was not > able > > to attend after the rescheduling of March meetup > > > > > Since we have two sessions, 2 to 6 PM, first we will go with Anand's talk > and then workshop. > > Regards, > > Abdul Muneer > > > > -- > > Follow me on Twitter: @abdulmuneer > > > > > > On Thu, Mar 28, 2013 at 12:41 PM, kracekumar ramaraju < > > kracethekingmaker at gmail.com> wrote: > > > > > Anand, > > > > > > April month meetup will be on 20th. I will count you as one of the > > > speaker. Will update the meetup page. > > > > > > On Thu, Mar 28, 2013 at 11:53 AM, Anand B Pillai > > > wrote: > > > > > > > Hi Krace, > > > > > > > > On Sun, Mar 24, 2013 at 1:24 AM, kracekumar ramaraju < > > > > kracethekingmaker at gmail.com> wrote: > > > > > > > > > All, > > > > > > > > > > Siva informed me he is willing to handle 3 hours hands-on session > > > about > > > > > getting started with Django next month. We need a venue which has > > power > > > > > socket and decent internet connection. I would like to have others > > > > > suggestions about the format, looking forward for venue to host for > > > next > > > > > meetup. We will be also needing few volunteers to help during > meetup. > > > > > > > > > > > > > I couldn't find when the next meetup is scheduled. > > > > > > > > If it is after April 15, I would like to give a talk on "Using > idioms - > > > > Writing Pythonic > > > > code in Python". This is based on my observations for a long time and > > > also > > > > partly inspired by Raymond's talk this year in U.S PyCon on Idiomatic > > > > Coding. > > > > > > > > Kindly publish the dates. > > > > > > > > > > > > > -- > > > > > * > > > > > Thanks & Regards > > > > > > > > > > "Talk is cheap, show me the code" -- Linus Torvalds > > > > > kracekumar > > > > > www.kracekumar.com > > > > > * > > > > > _______________________________________________ > > > > > BangPypers mailing list > > > > > BangPypers at python.org > > > > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > > > > > > > > > > > > > > > > > -- > > > > Regards, > > > > > > > > --Anand > > > > _______________________________________________ > > > > BangPypers mailing list > > > > BangPypers at python.org > > > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > > > > > > > > > > > > -- > > > * > > > Thanks & Regards > > > > > > "Talk is cheap, show me the code" -- Linus Torvalds > > > kracekumar > > > www.kracekumar.com > > > * > > > _______________________________________________ > > > BangPypers mailing list > > > BangPypers at python.org > > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > > -- > * > Thanks & Regards > > "Talk is cheap, show me the code" -- Linus Torvalds > kracekumar > www.kracekumar.com > * > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From kracethekingmaker at gmail.com Fri Mar 29 14:14:32 2013 From: kracethekingmaker at gmail.com (kracekumar ramaraju) Date: Fri, 29 Mar 2013 18:44:32 +0530 Subject: [BangPypers] April month meetup In-Reply-To: References: Message-ID: Still we are looking for venue. Once it is fixed will update the group, meetup page and blog post. On Fri, Mar 29, 2013 at 12:10 PM, L Radhakrishna Rao < satishsagar83 at gmail.com> wrote: > Guys, what's the venue in bangalore? > > > On Thu, Mar 28, 2013 at 5:23 PM, kracekumar ramaraju < > kracethekingmaker at gmail.com> wrote: > > > On Thu, Mar 28, 2013 at 5:01 PM, Abdul Muneer > > wrote: > > > > > What will be the timing? It'll be great if it is after 4pm. I was not > > able > > > to attend after the rescheduling of March meetup > > > > > > > > Since we have two sessions, 2 to 6 PM, first we will go with Anand's talk > > and then workshop. > > > > Regards, > > > Abdul Muneer > > > > > > -- > > > Follow me on Twitter: @abdulmuneer < > http://twitter.com/#%21/abdulmuneer> > > > > > > > > > On Thu, Mar 28, 2013 at 12:41 PM, kracekumar ramaraju < > > > kracethekingmaker at gmail.com> wrote: > > > > > > > Anand, > > > > > > > > April month meetup will be on 20th. I will count you as one of the > > > > speaker. Will update the meetup page. > > > > > > > > On Thu, Mar 28, 2013 at 11:53 AM, Anand B Pillai > > > > > wrote: > > > > > > > > > Hi Krace, > > > > > > > > > > On Sun, Mar 24, 2013 at 1:24 AM, kracekumar ramaraju < > > > > > kracethekingmaker at gmail.com> wrote: > > > > > > > > > > > All, > > > > > > > > > > > > Siva informed me he is willing to handle 3 hours hands-on > session > > > > about > > > > > > getting started with Django next month. We need a venue which has > > > power > > > > > > socket and decent internet connection. I would like to have > others > > > > > > suggestions about the format, looking forward for venue to host > for > > > > next > > > > > > meetup. We will be also needing few volunteers to help during > > meetup. > > > > > > > > > > > > > > > > I couldn't find when the next meetup is scheduled. > > > > > > > > > > If it is after April 15, I would like to give a talk on "Using > > idioms - > > > > > Writing Pythonic > > > > > code in Python". This is based on my observations for a long time > and > > > > also > > > > > partly inspired by Raymond's talk this year in U.S PyCon on > Idiomatic > > > > > Coding. > > > > > > > > > > Kindly publish the dates. > > > > > > > > > > > > > > > > -- > > > > > > * > > > > > > Thanks & Regards > > > > > > > > > > > > "Talk is cheap, show me the code" -- Linus Torvalds > > > > > > kracekumar > > > > > > www.kracekumar.com > > > > > > * > > > > > > _______________________________________________ > > > > > > BangPypers mailing list > > > > > > BangPypers at python.org > > > > > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > Regards, > > > > > > > > > > --Anand > > > > > _______________________________________________ > > > > > BangPypers mailing list > > > > > BangPypers at python.org > > > > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > > > > > > > > > > > > > > > > > -- > > > > * > > > > Thanks & Regards > > > > > > > > "Talk is cheap, show me the code" -- Linus Torvalds > > > > kracekumar > > > > www.kracekumar.com > > > > * > > > > _______________________________________________ > > > > BangPypers mailing list > > > > BangPypers at python.org > > > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > > > _______________________________________________ > > > BangPypers mailing list > > > BangPypers at python.org > > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > > > > > > > -- > > * > > Thanks & Regards > > > > "Talk is cheap, show me the code" -- Linus Torvalds > > kracekumar > > www.kracekumar.com > > * > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > http://mail.python.org/mailman/listinfo/bangpypers > > > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > -- * Thanks & Regards "Talk is cheap, show me the code" -- Linus Torvalds kracekumar www.kracekumar.com * From abpillai at gmail.com Sat Mar 30 05:13:57 2013 From: abpillai at gmail.com (Anand B Pillai) Date: Sat, 30 Mar 2013 09:43:57 +0530 Subject: [BangPypers] April month meetup In-Reply-To: References: Message-ID: Hi Krace, My talk would be from 1 to 1.5 hours, you can note it in your schedule. --Anand On Thu, Mar 28, 2013 at 5:23 PM, kracekumar ramaraju < kracethekingmaker at gmail.com> wrote: > On Thu, Mar 28, 2013 at 5:01 PM, Abdul Muneer > wrote: > > > What will be the timing? It'll be great if it is after 4pm. I was not > able > > to attend after the rescheduling of March meetup > > > > > Since we have two sessions, 2 to 6 PM, first we will go with Anand's talk > and then workshop. > > Regards, > > Abdul Muneer > > > > -- > > Follow me on Twitter: @abdulmuneer > > > > > > On Thu, Mar 28, 2013 at 12:41 PM, kracekumar ramaraju < > > kracethekingmaker at gmail.com> wrote: > > > > > Anand, > > > > > > April month meetup will be on 20th. I will count you as one of the > > > speaker. Will update the meetup page. > > > > > > On Thu, Mar 28, 2013 at 11:53 AM, Anand B Pillai > > > wrote: > > > > > > > Hi Krace, > > > > > > > > On Sun, Mar 24, 2013 at 1:24 AM, kracekumar ramaraju < > > > > kracethekingmaker at gmail.com> wrote: > > > > > > > > > All, > > > > > > > > > > Siva informed me he is willing to handle 3 hours hands-on session > > > about > > > > > getting started with Django next month. We need a venue which has > > power > > > > > socket and decent internet connection. I would like to have others > > > > > suggestions about the format, looking forward for venue to host for > > > next > > > > > meetup. We will be also needing few volunteers to help during > meetup. > > > > > > > > > > > > > I couldn't find when the next meetup is scheduled. > > > > > > > > If it is after April 15, I would like to give a talk on "Using > idioms - > > > > Writing Pythonic > > > > code in Python". This is based on my observations for a long time and > > > also > > > > partly inspired by Raymond's talk this year in U.S PyCon on Idiomatic > > > > Coding. > > > > > > > > Kindly publish the dates. > > > > > > > > > > > > > -- > > > > > * > > > > > Thanks & Regards > > > > > > > > > > "Talk is cheap, show me the code" -- Linus Torvalds > > > > > kracekumar > > > > > www.kracekumar.com > > > > > * > > > > > _______________________________________________ > > > > > BangPypers mailing list > > > > > BangPypers at python.org > > > > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > > > > > > > > > > > > > > > > > -- > > > > Regards, > > > > > > > > --Anand > > > > _______________________________________________ > > > > BangPypers mailing list > > > > BangPypers at python.org > > > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > > > > > > > > > > > > -- > > > * > > > Thanks & Regards > > > > > > "Talk is cheap, show me the code" -- Linus Torvalds > > > kracekumar > > > www.kracekumar.com > > > * > > > _______________________________________________ > > > BangPypers mailing list > > > BangPypers at python.org > > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > > -- > * > Thanks & Regards > > "Talk is cheap, show me the code" -- Linus Torvalds > kracekumar > www.kracekumar.com > * > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > -- Regards, --Anand From swathisingh353 at yahoo.in Sun Mar 31 01:20:50 2013 From: swathisingh353 at yahoo.in (Swathi Singh) Date: Sun, 31 Mar 2013 08:20:50 +0800 (SGT) Subject: [BangPypers] ::swathisingh353:: Message-ID: <1364689250.85152.YahooMailNeo@web190201.mail.sg3.yahoo.com> http://www.resumewritingsite.com/xaru/gygao.ifog?ndc Swathi Singh