Re: [BangPypers] How about meet-up

2012-01-07 Thread Umar Shah
Hi, I would love to join, Has someone worked with pypy and intersted in sharing the experience? On Sat, Jan 7, 2012 at 10:06 AM, Noufal Ibrahim wrote: > Sreenivas Reddy T writes: > > > Guys, > > How about meet-up? Do you guys have any specific plans or > schedule > > for this month's

Re: [BangPypers] [XPost][Slightly OT] Could you share your experiences about Python Freelance programming, from a programmer's perspective

2011-10-31 Thread Umar Shah
On Mon, Oct 31, 2011 at 6:42 PM, Sidu Ponnappa wrote: > > I have a friend, who's finished his education and looking for work. > I think the first thing a grad should be looking to do is to get > better. I can't comment on the Py freelancing scene, but I will say > that if he wants to make money h

Re: [BangPypers] List guidelines

2011-09-14 Thread Umar Shah
On Wed, Sep 14, 2011 at 6:56 PM, Noufal Ibrahim wrote: > Umar Shah writes: > > [...] > > > People who are interested in just python jobs as most of guys here > > would be cant easily filter out non python ones. > > [...] > > So, random headhunters/recruite

Re: [BangPypers] List guidelines

2011-09-14 Thread Umar Shah
On Wed, Sep 14, 2011 at 6:47 PM, Noufal Ibrahim wrote: > Senthil Kumaran writes: > > > [...] > > > My recollection from history is, it needs to be prefixed with [JOB] > > and jobs are not considered spam by many. I think, prefixing with JOB > > can help also people to filter them to spam folder,

Re: [BangPypers] List guidelines (was: [JOB] - Yahoo!)

2011-09-14 Thread Umar Shah
On Wed, Sep 14, 2011 at 6:20 PM, Senthil Kumaran wrote: > On Wed, Sep 14, 2011 at 06:10:14PM +0530, Noufal Ibrahim wrote: > > What is the official stance of the list owners on this kind of post? It > > would be good to know and state it so that this kind of thing is avoided > > again. > > If there

Re: [BangPypers] parsing xml

2011-07-29 Thread Umar Shah
+1 On Fri, Jul 29, 2011 at 12:50 PM, Sidu Ponnappa wrote: > +1. > > On Fri, Jul 29, 2011 at 12:20 PM, Noufal Ibrahim wrote: > > Venkatraman S writes: > > > >> On Fri, Jul 29, 2011 at 11:31 AM, Noufal Ibrahim > wrote: > >> > >>> > I am a speed-maniac and crave for speed; so if the assumption is

Re: [BangPypers] export methods from a python class as RESTful webservice calls

2011-06-23 Thread Umar Shah
thanks noufal, I can see i am spoiled with choices. Flask looks enticing , SimpleHTTPServer is not a bad idea either in my case (no external dependency). On Thu, Jun 23, 2011 at 4:41 PM, Noufal Ibrahim wrote: > Umar Shah writes: > > > Hello group, > > > > I have

[BangPypers] export methods from a python class as RESTful webservice calls

2011-06-23 Thread Umar Shah
Hello group, I have used Django, Pylons for different projects before but i want something minimal without overheads of MVC frameworks. say I have something like class X(object): ... def A(p1, p2,...): return {'state':x} def B(p1, p2,..): return {'state'

[BangPypers] [django] django-cms page templates

2010-12-01 Thread Umar Shah
Hi, I have to built a django-cms based app. While I have experience with django I never used django-cms before. I want to create various page type templates that could be used in the system. What is the best way to do it. I couldn't find much information from django-cms docs/ google. Can someone s

Re: [BangPypers] task tracker and issue manager

2010-10-19 Thread Umar Shah
Hi, With the customization that trac offers by way of plugins, I am sure you will find all your requirements fulfilled. Umar On Wed, Oct 20, 2010 at 11:00 AM, Sujit Ghosal wrote: > I think you can give a try to "Trac" once. > > - Sujit > > On Wed, Oct 20, 2010 at 10:52 AM, Kenneth Gonsalves

Re: [BangPypers] Latest Cricket News in Command Line

2010-10-04 Thread Umar Shah
On Tue, Oct 5, 2010 at 12:04 AM, Noufal Ibrahim wrote: > On Mon, Oct 04 2010, Nitin Dahra wrote: > > [...] > > > > Apparently, 'in' is also faster than 'has_key' > > [...] > > A few quick numbers. > > In [2]: foo = {} # Without the key > In [12]: timeit.timeit(lambda: 2 in foo) > Out[12]: 0.22202

Re: [BangPypers] Beginner help

2010-10-03 Thread Umar Shah
vim with omnicomplete and taglist plugins, It will provide with code browsing as well as autocomplete features. On Sun, Oct 3, 2010 at 1:06 PM, Jeffrey Jose wrote: > On Sun, Oct 3, 2010 at 9:28 AM, Gopalakrishnan Subramani < > gopalakrishnan.subram...@gmail.com> wrote: > > > If you want to be t

Re: [BangPypers] Coaching institute in Bangalore.

2010-04-16 Thread Umar Shah
have you done programming in any language before? I am asking this question because generally after having learnt any one language a good starting tutorial (like mentioned in the previous mail) is all that you need to get started. On Fri, Apr 16, 2010 at 5:13 PM, Roshan Mathews wrote: > On Fri,

Re: [BangPypers] [COMMERCIAL] CodersCombat project hosting servicefor all

2010-04-14 Thread Umar Shah
many others, http://www.projectlocker.com is another one that starts of with free plan for 5 users and 500 MB plan with unlimited projects http://codesion.com/ also gives out a free account , I use both their paid as well as free service for different projects On Wed,

Re: [BangPypers] @dabeaz visiting b'lore

2010-04-01 Thread Umar Shah
Hi all, I'm relatively new to this group, I'll also be interesting in joining. regards, umar On Thu, Apr 1, 2010 at 12:40 PM, Noufal Ibrahim wrote: > Well, I'm a +1, Vishal is a +1. That's 2. Any more people? > > -- > ~noufal > http://nibrahim.net.in > _

Re: [BangPypers] Passing structure

2010-02-24 Thread Umar Shah
Hi, If you are sending over the network, better use a protocol for such communication, on python side you can serialize the object into a json or xml string and let the server handle the data accordingly. regards, umar On Wed, Feb 24, 2010 at 4:14 PM, Goudar, Girish wrote: > Hi All, > > > > I w

Re: [BangPypers] DreamPie - A new Interactive Python Shell

2010-02-22 Thread Umar Shah
thanks for sharing jeff , these shells prove to be very useful during testing things out, so far i was using bpyton directly available from the ubuntu repository. Will try this one out as wll. -umar On Tue, Feb 23, 2010 at 12:38 AM, Jeffrey Jose wrote: > I remember a while ago we were talking