[Twisted-Python] [OT] Re: twisted/python3/ubuntu 12.10

2012-06-15 Thread Stephen Waterbury
Apologies for continuing a bit OT, but I suspect others on twisted-python would be interested too ... So when you "get Python 2" would that be /usr/bin/python2? And if you wanted a /usr/bin/python, it would be up to you to create a link to whichever of 2 or 3 you wanted it to be? Steve On 06/15/

Re: [Twisted-Python] Proposed new homepage

2011-10-09 Thread Stephen Waterbury
On 10/09/2011 02:44 PM, Itamar Turner-Trauring wrote: > Our current page is not good at pulling in potential new users: > >* There's no quick examples of how nice Twisted is. >* It takes 3 clicks (3!) to find basic documentation, with lots of > scope for getting lost along

[Twisted-Python] AMP cred stuff

2011-03-15 Thread Stephen Waterbury
Hey Glyph, Jp, and twisted sprinters, Sorry I couldn't stay longer -- I stretched my "travel day" as far as possible, but have to get back to my real job now (on which I'm under the gun atm). Hope I can sprint longer next time -- I had a lot of fun, and the energy in the room is amazing! I'll at

Re: [Twisted-Python] twisted site should link to tx site ...

2011-02-11 Thread Stephen Waterbury
On 02/11/2011 01:30 AM, Lucas Taylor wrote: > On Feb 10, 2011, at 1:24 PM, Stephen Waterbury wrote: > >> This url should really be linked either from Twisted's main page >> or at the very least on the "Twisted Community" page: >> >> https://launchpad

Re: [Twisted-Python] twisted site should link to tx site ...

2011-02-10 Thread Stephen Waterbury
On 02/11/2011 12:11 AM, Glyph Lefkowitz wrote: > > On Feb 10, 2011, at 3:24 PM, Stephen Waterbury wrote: > >> This url should really be linked either from Twisted's main page >> or at the very least on the "Twisted Community" page: >> >> https://la

[Twisted-Python] twisted site should link to tx site ...

2011-02-10 Thread Stephen Waterbury
This url should really be linked either from Twisted's main page or at the very least on the "Twisted Community" page: https://launchpad.net/tx Lots of tx stuff that's not in PyPI, etc ... sheesh! Also, if you do a search on "tx" in the twisted site "search" it says "search query too short", and

Re: [Twisted-Python] "small" jobs

2011-01-15 Thread Stephen Waterbury
On 01/15/2011 03:22 PM, Glyph Lefkowitz wrote: > ... the core team has been able to stop thinking about sprint > organization and success stories, and finish several new > features in time for 10.2 as well as getting that release out > before the end of 2010. Wow, did you guys get a hold of the ke

Re: [Twisted-Python] pb.Cacheable doc question

2010-10-09 Thread Stephen Waterbury
On 10/08/2010 03:46 PM, Glyph Lefkowitz wrote: > > On Oct 8, 2010, at 9:25 AM, exar...@twistedmatrix.com > wrote: > >> On 5 Oct, 08:09 pm, stephen.c.waterb...@nasa.gov >> wrote: >>> First, the "PB Copyable: Passing Complex Typ

Re: [Twisted-Python] pb.Cacheable doc question

2010-10-08 Thread Stephen Waterbury
On 10/08/2010 09:25 AM, exar...@twistedmatrix.com wrote: > On 5 Oct, 08:09 pm, stephen.c.waterb...@nasa.gov wrote: >> First, the "PB Copyable: Passing Complex Types" doc is >> *great* and the examples are excellent -- my compliments to >> all who contributed! >> >> My question is about the pb.Cache

[Twisted-Python] pb.Cacheable doc question

2010-10-05 Thread Stephen Waterbury
First, the "PB Copyable: Passing Complex Types" doc is *great* and the examples are excellent -- my compliments to all who contributed! My question is about the pb.Cacheable section (http://twistedmatrix.com/documents/current/core/howto/pb-copyable.html#auto9) -- specifically the first sentence:

Re: [Twisted-Python] twisted cred: why does avatarId need to be a str?

2010-09-08 Thread Stephen Waterbury
A nomenclature distinction that might help this conversation: *authentication* verifies *identity* (via, e.g., userid/passwd, public key negotiation, etc.) and may issue a token (e.g., a cookie, Kerberos TGT, etc.). *authorization* determines what an authenticated identity (and its associated rol

Re: [Twisted-Python] Twisted with wxPython in a thread

2010-08-24 Thread Stephen Waterbury
On 08/24/2010 09:24 AM, Stephen Waterbury wrote: > On 08/24/2010 09:22 AM, Gabriel Rossetti wrote: >> Ok, so you put Twisted in a thread? I read in several posts that this >> posed problems, have you had any drawbacks? > > I haven't observed any. Reflecting on this a li

Re: [Twisted-Python] Twisted with wxPython in a thread

2010-08-24 Thread Stephen Waterbury
On 08/24/2010 09:22 AM, Gabriel Rossetti wrote: > On 08/24/2010 03:06 PM, Stephen Waterbury wrote: >> On 08/24/2010 05:40 AM, Gabriel Rossetti wrote: >> >>> Hello, >>> >>> I can't find any examples of using Twisted with wxPython, were wx is in >

Re: [Twisted-Python] Twisted with wxPython in a thread

2010-08-24 Thread Stephen Waterbury
On 08/24/2010 05:40 AM, Gabriel Rossetti wrote: > Hello, > > I can't find any examples of using Twisted with wxPython, were wx is in > a seperate thread. I used to have one somewhere but can' t find it > either. I'm looking because for some reason my code doesn't work (the > GUI freezes), even thou

[Twisted-Python] twisted-wave?

2009-08-21 Thread Stephen Waterbury
Just curious what the twisted minions think of google wave and whether anyone is considering or working on a twisted implementation of the federation protocol, . Steve ___ Twisted-Python mailing list Twis

Re: [Twisted-Python] Re: So how does everyone use an ORM in twisted?

2009-03-17 Thread Stephen Waterbury
David Bolen wrote: ... or that any interaction that might require going back to the database only be through wrapped methods and not direct attribute access. This can turn out to be a bunch of extra work when you start talking about walking lists of related (one to many) records, traversing the

Re: [Twisted-Python] reactor.stop() and thread and wxPython problem

2009-01-16 Thread Stephen Waterbury
Reza Lotun wrote: * Have the reactor run in a seperate thread from wx (making sure to use reactor.run(installSignalHandlers=False)) * Spawn threads from wx->Twisted in the proper way: use reactor.callFromThread(reactor.callInThread(someCall)) I'd second that -- I've used the pattern described h