Re: [Twisted-Python] Possible Twisted sprint

2009-07-09 Thread Jamu Kakar
Hi Jono, On Tue, Jul 7, 2009 at 9:31 PM, Jonathan Lange wrote: > I've recently returned from EuroPython where I got a chance to work > with Thomas Hervé on Twisted. In the giddy rush of success I thought, > "Wouldn't it be great if we could get a whole week to do this?". Indeed, sprinting is supe

Re: [Twisted-Python] Possible Twisted sprint

2009-07-14 Thread Jamu Kakar
Hi, On Tue, Jul 14, 2009 at 2:54 AM, Jonathan Lange wrote: > 1. If you are attending, add your name; if you are attending subject > to other conditions (funding, leave etc) then add your name & say > 'tentative'; if you are _not_ attending, add your name to the not > attending list. I logged into

Re: [Twisted-Python] Possible Twisted sprint

2009-07-16 Thread Jamu Kakar
Hi, On Thu, Jul 16, 2009 at 1:29 PM, wrote: > I'll be there too.  So far, we've got jml, exarkun, therve, glyph, > itamar: that's 5 people.  Anyone I forgot to count? I'd like to attend. I'm still a maybe at this point, though. Thanks, J. ___ Twiste

Re: [Twisted-Python] Deferred documentation rewrite

2009-07-30 Thread Jamu Kakar
Hi Edward, On Thu, Jul 30, 2009 at 11:24 AM, Edward Z. Yang wrote: > I have been prodded by the members of #twisted into rewriting the > Deferred documentation.  You can check out the plan at this > ticket: > > http://twistedmatrix.com/trac/ticket/3943 > > Comments would be appreciated. Your outl

Re: [Twisted-Python] I found an interisting comment about Twisted vs. Erlang

2009-09-29 Thread Jamu Kakar
Hi Alec, On Tue, Sep 29, 2009 at 12:36 PM, Alec Matusis wrote: > As you can see from the %CPU column, I have my reasons for concern ;) This > is current copy and paste from a node with 2x quad core xeon L5420  @ > 2.50GHz - 1 twistd process per core. > >  PID USER      PR  NI  VIRT  RES  SHR S %C

Re: [Twisted-Python] Twisted ORM

2010-08-06 Thread Jamu Kakar
Hi Brian, On Fri, Aug 6, 2010 at 12:09 PM, bmul...@butterfat.net wrote: > I've just finished creating a basic Object Relational Mapper (ORM) in > Twisted (http://trac.butterfat.net/public/twistar) called Twistar.  The goal > of the project is most certainly not to duplicate the full functionality

Re: [Twisted-Python] TestCase methods names

2011-03-16 Thread Jamu Kakar
Hi Facundo, On Tue, Mar 15, 2011 at 3:57 PM, Facundo Batista wrote: > So, I propose to stick to the same method names than Python; this way > we'll be more consistent and easy to learn than keep providing all > variants. > > In concrete, I say that we should: > > - Deprecate those names that are

Re: [Twisted-Python] sample twistorm code?

2011-03-16 Thread Jamu Kakar
Hi Jean-Daniel, In the future, please ask Storm-related questions on the Storm mailing list [1] or in #storm on Freenode. On Wed, Mar 16, 2011 at 8:55 PM, Jean-Daniel wrote: > I writing a script parsing a large log file and shoveling it into Postgresql. For what it's worth, using live objects f

Re: [Twisted-Python] test if thread is reactor's thread

2011-05-11 Thread Jamu Kakar
Hi Alessandro, On Wed, May 11, 2011 at 8:18 PM, Alessandro Dentella wrote: > is there a way to test if the thread a function is called is the reactor's > thread? Yes, you can do it with code like this: from threading import currentThread if currentThread().getName() == 'MainThread': # Code

Re: [Twisted-Python] what is the status of storm integration with twisted?

2011-07-12 Thread Jamu Kakar
Hi Ilja, On Tue, Jul 12, 2011 at 9:38 AM, Ilja Livenson wrote: > basically, $subj. I really like the DeferredStore concept introduced > in storm/twisted-integration, but it seems that that branch is lagging > behind on merging (for 2 years now). Any inside info, perhaps? The branch is not being

Re: [Twisted-Python] github, again

2013-06-03 Thread Jamu Kakar
Hi, On Mon, Jun 3, 2013 at 4:48 PM, Christopher Armstrong wrote: > On Mon, Jun 3, 2013 at 3:59 PM, Glyph wrote: >> One suggestion that almost everybody made immediately was: we should use >> Github for code reviews. > > I'm +1 on the whole proposition as described. Me too. >> Finally, my own m

Re: [Twisted-Python] logging

2013-06-13 Thread Jamu Kakar
Hi, On Thu, Jun 13, 2013 at 6:41 PM, Facundo Batista wrote: > Mmm... which is the problem with doing: > > log.msg("Foo happened. Relevant information includes: " > "bar=%s baz=%s boz=%s", bar, baz, boz) > > Is way more readable, and in the practice the code will just need to > do som