[BangPypers] [JOB] Visualization Engineer at Minds-AI

2016-07-22 Thread Abdul Muneer
nd with fluid requirements > A genuine interest in the field of NN and a willingness to learn more about that > Ability to pick up new skills and technologies quickly Please note that Javascript skills are also very essential as we will be building lot of browser based tools for Neural N

[BangPypers] Life lessons shared by Jesse Noller

2015-10-29 Thread Abdul Muneer
Hi, Jesse Noller talks about the turn of events in his life since last couple of years : http://jessenoller.com/blog/2015/9/27/a-lot-happens. Valuable lessons for everyone. Regards, Abdul Muneer -- Twitter: @abdulmuneer <http://twitter.com/#%21/abdulmun

Re: [BangPypers] Waaasaqawaaaasaqeaqaaaawasraqasaaqaawwqfçxxca

2015-06-28 Thread Abdul Muneer
That is what I also thought. My kid sometimes walks on the keyboard when I'm not paying attention. Ignore if it is not a repeating offense. Regards, Abdul Muneer -- Follow me on Twitter: @abdulmuneer <http://twitter.com/#%21/abdulmuneer> On Sun, Jun 28, 2015 at 2:06 PM, Anand B Pi

Re: [BangPypers] List of n but same objects

2014-12-11 Thread Abdul Muneer
and Case 3 follow the pattern [an_object]*3 which results in [an_object, an_object, an_object] where as Case 2 follows the pattern [create_object(), create_object(), create_object()] Note that in Case 3, iter(x) is evaluated before multiplying. Regards, Abdul Muneer -- Follow me on Twitter: @abd

Re: [BangPypers] Moving from python 2.6 to 2.7

2014-10-07 Thread Abdul Muneer
newer versions. IIRC, I solved it by changing the regex that looks for the versions. Regards, Abdul Muneer Regards, Abdul Muneer -- Follow me on Twitter: @abdulmuneer <http://twitter.com/#%21/abdulmuneer> On Tue, Oct 7, 2014 at 3:53 PM, Kulkarni, Shreyas wrote: > Hi guys, > > We

Re: [BangPypers] Need help Extracting data properly in python

2014-02-20 Thread Abdul Muneer
There is an old python package which does it neatly http://www.astro.rug.nl/~breddels/python/tableio.html Regards, Abdul Muneer -- Follow me on Twitter: @abdulmuneer <http://twitter.com/#%21/abdulmuneer> On Wed, Feb 19, 2014 at 5:59 PM, Kulkarni, Shreyas wrote: > if this is a

Re: [BangPypers] Issue with list comprehension

2013-11-07 Thread Abdul Muneer
ssign sum=(x+y) or something, you have lost that function. If you are doubtful, do `from __builtin__ import * ` to reclaim your builtin variables and functions. Regards, Abdul Muneer -- Follow me on Twitter: @abdulmuneer <http://twitter.com/#%21/abdulmuneer> On Thu, Oct 31, 2013 at 12

Re: [BangPypers] Do you pin your requirements.txt ?

2013-09-12 Thread Abdul Muneer
it can cause conflicts especially if you upgrade the main component. Had run into issues because of this while working on a pylons project. Regards, Abdul Muneer -- Follow me on Twitter: @abdulmuneer <http://twitter.com/#%21/abdulmuneer> On Thu, Sep 12, 2013 at 6:16 PM, Aditya Laghate wrot

Re: [BangPypers] https://github.com/pythonhacker/ladies.py

2013-09-08 Thread Abdul Muneer
for person holding a position to resort to humor (because it may not be humor for ALL audience). But I do not consider that as damaging as blowing it out of proportion. Let's not linger on the negativity for too long as it is toxic. Please cheer up, dear folks. Hug each other.. Regards, Abdul Mu

Re: [BangPypers] https://github.com/pythonhacker/ladies.py

2013-09-07 Thread Abdul Muneer
+1 Regards, Abdul Muneer -- Follow me on Twitter: @abdulmuneer <http://twitter.com/#%21/abdulmuneer> On Sun, Sep 8, 2013 at 11:52 AM, T S KAMATH wrote: > Hi.. > > Its was in bad taste and treated as such, proper apology demanded and > given.. hence we hope all the concern

Re: [BangPypers] Bangpypers, general python stickers

2013-05-11 Thread Abdul Muneer
+1 Regards, Abdul Muneer -- Follow me on Twitter: @abdulmuneer <http://twitter.com/#%21/abdulmuneer> On Sat, May 11, 2013 at 1:10 PM, kracekumar ramaraju < kracethekingma...@gmail.com> wrote: > Hello > > Is anyone interested to create laptop, Mobile phone stickers for

Re: [BangPypers] problem with python classes

2013-05-09 Thread Abdul Muneer
relevant line to this one. self.values.append(ClassOne.calculate_value(inputvalues)) Regards, Abdul Muneer -- Follow me on Twitter: @abdulmuneer <http://twitter.com/#%21/abdulmuneer> On Thu, May 9, 2013 at 9:11 PM, hiharry danny wrote: > i have python 2.7.4..now suppose i hav

Re: [BangPypers] Need help for python coding

2013-04-18 Thread Abdul Muneer
of input. raw_input accepts the values as string and therefore people cannot do nasty things by typing executable code. Regards, Abdul Muneer -- Follow me on Twitter: @abdulmuneer <http://twitter.com/#%21/abdulmuneer> On Thu, Apr 18, 2013 at 6:15 PM, Kamalakar gs wrote: > HI all, &g

Re: [BangPypers] Reorder Dictionary Size in python

2013-04-17 Thread Abdul Muneer
Expecting this behaviour from built-in dict is not a good idea. However try if garbage collection helps. >>> import gc >>> gc.collect() I have not tried it out myself, though. Regards, Abdul Muneer -- Follow me on Twitter: @abdulmuneer <http://twitter.com/#%21/abdulmuneer>

Re: [BangPypers] I need some help/guidance

2013-04-16 Thread Abdul Muneer
use google maps api for this. '''' pass *locations.sort(key = lambda x: distance_between(x, base_location))* #sorts the list in-place Regards, Abdul Muneer -- Follow me on Twitter: @abdulmuneer <http://twitter.com/#%21/abdulmuneer> On Tue, Apr 16, 2013 at 1

Re: [BangPypers] What is the output of this python program?

2013-04-05 Thread Abdul Muneer
Printing 'hello world' like a sir! :) p.s.:caution when using builtins as variable names. (e.g.: len) Regards, Abdul Muneer -- Follow me on Twitter: @abdulmuneer <http://twitter.com/#%21/abdulmuneer> On Fri, Apr 5, 2013 at 4:06 PM, Mandar Vaze / मंदार वझे < mandarv.

Re: [BangPypers] Evaluating Web Frameworks based on certain criteria

2013-04-02 Thread Abdul Muneer
by using Django ORM? Or did anyone find the SQLA too heavy and needless? I certainly hit the wall with old pylons, or more precisely with the plugins for pylons. All those deprecated dependencies make the upgrade or maintenance extremely difficult and unreliable. Regards, Abdul Muneer --

[BangPypers] Evaluating Web Frameworks based on certain criteria

2013-04-01 Thread Abdul Muneer
requirements. Some other libraries were long dead. So the choice is to rebuild entire stuff on a framework where we will not end up in the same situation. Regards, Abdul Muneer -- Follow me on Twitter: @abdulmuneer <http://twitter.com/#%21/abdulmun

Re: [BangPypers] April month meetup

2013-03-28 Thread Abdul Muneer
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 <http://twitter.com/#%21/abdulmuneer> On Thu, Mar 28, 2013 at 12:41 PM, kracekumar ramaraju <

[BangPypers] The FSF awards Fernando Perez, the creator of IPython

2013-03-25 Thread Abdul Muneer
do 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:

Re: [BangPypers] wierd class behavior

2013-01-12 Thread Abdul Muneer
function, the inner function, etc) will access this variable, the use of the *_DEREF opcodes will cause the cell to be accessed rather than the namespace of the accessing code object." additional reference: Python Closure: Link1<http://ynniv.com/blog/2007/08/closures-in-python.html>

Re: [BangPypers] Looking for Guest Speaker on Python and NLTK

2011-10-11 Thread Abdul Muneer
Hi, Some course from stanford on ml and ai. ml-class.org ai-class.org Join last date is already gone, but my friends are able to join even now.. Regards, Abdul Muneer -- Whom I'm Lookin' for is The One who sees!! On Tue, Oct 11, 2011 at 4:42 PM, s|s wrote: > I would have loved t