[Twisted-Python] We need more mentors!

2012-04-12 Thread Itamar Turner-Trauring
We have a pile of enthusiastic Google Summer of Code applicants, and not enough mentors at the moment. Anyone interested in mentoring a student or two over the summer? If so, email me ASAP. Thanks! ___ Twisted-Python mailing list Twisted-Python@twiste

Re: [Twisted-Python] We need more mentors!

2012-04-12 Thread Jonathan Lange
On Thu, Apr 12, 2012 at 2:53 PM, Itamar Turner-Trauring wrote: > We have a pile of enthusiastic Google Summer of Code applicants, and not > enough mentors at the moment. Anyone interested in mentoring a student > or two over the summer? If so, email me ASAP. I'm interested, but I'd like to know w

Re: [Twisted-Python] We need more mentors!

2012-04-12 Thread Itamar Turner-Trauring
On 04/12/2012 09:57 AM, Jonathan Lange wrote: I'm interested, but I'd like to know what's involved and over what period of time before I sign up. Helping students with design, planning and scoping, possibly doing code reviews if no code reviews are forthcoming, and then doing a review at the e

Re: [Twisted-Python] We need more mentors!

2012-04-12 Thread Dave Peticolas
2012/4/12 Jonathan Lange > On Thu, Apr 12, 2012 at 2:53 PM, Itamar Turner-Trauring > wrote: > > We have a pile of enthusiastic Google Summer of Code applicants, and not > > enough mentors at the moment. Anyone interested in mentoring a student > > or two over the summer? If so, email me ASAP. >

Re: [Twisted-Python] We need more mentors!

2012-04-12 Thread Itamar Turner-Trauring
The five hour estimate comes from the FAQ, and may be underestimate: https://www.google-melange.com/gsoc/document/show/gsoc_program/google/gsoc2012/faqs#time_mentor ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.co

Re: [Twisted-Python] We need more mentors!

2012-04-12 Thread Jessica McKellar
GSoC runs from May 21st - August 24th as a full-time internship. The GSoC FAQ says to expect to spend 5 hours per week on GSoC per mentee: https://www.google-melange.com/gsoc/document/show/gsoc_program/google/gsoc2012/faqs#time_mentor Some resources: - GSoC FAQ: http://www.google-melange.com/docum

Re: [Twisted-Python] We need more mentors!

2012-04-12 Thread Jonathan Lange
On Thu, Apr 12, 2012 at 3:08 PM, Jessica McKellar wrote: > GSoC runs from May 21st - August 24th as a full-time internship. The GSoC > FAQ says to expect to spend 5 hours per week on GSoC per > mentee: https://www.google-melange.com/gsoc/document/show/gsoc_program/google/gsoc2012/faqs#time_mentor

[Twisted-Python] txws.py websocket and Python 2.4

2012-04-12 Thread matusis
I do not quite know the most recent status of txws.py, whether it is being merged to Twisted or not. But I noticed that it has it has two incompatibilities with Python 2.4: 1. from hashlib import md5, sha1 2. protocol = "wss" if self.isSecure() else "ws" After fixing those, it w

Re: [Twisted-Python] txws.py websocket and Python 2.4

2012-04-12 Thread matusis
Maybe you could commit that? try: #python 2.6+ from hashlib import md5, sha1 except ImportError: import md5 from sha import sha as sha1 protocol = "self.isSecure() and wss" or "ws" That would help to people with 2.4! From: Corbin Simpson [mailto:mostawesom