Re: [Python-Dev] Python-Dev Digest, Vol 108, Issue 14
looks like theres no forgiveness except for dj yoda On Thu, Jul 12, 2012 at 3:00 AM, wrote: > Send Python-Dev mailing list submissions to > [email protected] > > To subscribe or unsubscribe via the World Wide Web, visit > http://mail.python.org/mailman/listinfo/python-dev > or, via email, send a message with subject or body 'help' to > [email protected] > > You can reach the person managing the list at > [email protected] > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Python-Dev digest..." > > > Today's Topics: > >1. Fwd: How to recruit open-source contributors ? The Story of > Data (Steve Holden) > > > -- > > Message: 1 > Date: Wed, 11 Jul 2012 19:54:33 -0500 > From: Steve Holden > To: Arc Riley > Cc: [email protected] > Subject: [Python-Dev] Fwd: How to recruit open-source contributors ? > The Story of Data > Message-ID: <[email protected]> > Content-Type: text/plain; charset="us-ascii" > > Interesting article about Gentoo's approach to developer recruitment from > GSoC: > > > http://redmonk.com/dberkholz/2012/07/10/how-to-recruit-open-source-contributors/ > > S > -- > Steve Holden [email protected], Holden Web, LLC http://holdenweb.com/ > Python classes (and much more) through the web http://oreillyschool.com/ > Conferences and technical event management at http://theopenbastion.com/ > Next: DjangoCon US Sep 6-8, Washington DC http://djangocon.us/ > > > > -- next part -- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/python-dev/attachments/20120711/0a6e9085/attachment-0001.html > > > > -- > > ___ > Python-Dev mailing list > [email protected] > http://mail.python.org/mailman/listinfo/python-dev > > > End of Python-Dev Digest, Vol 108, Issue 14 > *** > ___ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
Re: [Python-Dev] Python-Dev Digest, Vol 108, Issue 14
<- its just my gmail face On Thu, Jul 12, 2012 at 3:30 AM, Ryan Paullin wrote: > looks like theres no forgiveness except for dj yoda > > > On Thu, Jul 12, 2012 at 3:00 AM, wrote: > >> Send Python-Dev mailing list submissions to >> [email protected] >> >> To subscribe or unsubscribe via the World Wide Web, visit >> http://mail.python.org/mailman/listinfo/python-dev >> or, via email, send a message with subject or body 'help' to >> [email protected] >> >> You can reach the person managing the list at >> [email protected] >> >> When replying, please edit your Subject line so it is more specific >> than "Re: Contents of Python-Dev digest..." >> >> >> Today's Topics: >> >>1. Fwd: How to recruit open-source contributors ? The Story of >> Data (Steve Holden) >> >> >> -- >> >> Message: 1 >> Date: Wed, 11 Jul 2012 19:54:33 -0500 >> From: Steve Holden >> To: Arc Riley >> Cc: [email protected] >> Subject: [Python-Dev] Fwd: How to recruit open-source contributors ? >> The Story of Data >> Message-ID: <[email protected]> >> Content-Type: text/plain; charset="us-ascii" >> >> Interesting article about Gentoo's approach to developer recruitment from >> GSoC: >> >> >> http://redmonk.com/dberkholz/2012/07/10/how-to-recruit-open-source-contributors/ >> >> S >> -- >> Steve Holden [email protected], Holden Web, LLC http://holdenweb.com/ >> Python classes (and much more) through the web http://oreillyschool.com/ >> Conferences and technical event management at http://theopenbastion.com/ >> Next: DjangoCon US Sep 6-8, Washington DC http://djangocon.us/ >> >> >> >> -- next part -- >> An HTML attachment was scrubbed... >> URL: < >> http://mail.python.org/pipermail/python-dev/attachments/20120711/0a6e9085/attachment-0001.html >> > >> >> -- >> >> ___ >> Python-Dev mailing list >> [email protected] >> http://mail.python.org/mailman/listinfo/python-dev >> >> >> End of Python-Dev Digest, Vol 108, Issue 14 >> *** >> > > ___ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
Re: [Python-Dev] Python-Dev Digest, Vol 108, Issue 14
$ python -m timeit -s 'import test' 'list(test.grouper(2,"abcdef"))' 10 loops, best of 3: 5.34 usec per loop $ python -m timeit -s 'import test' 'test.grouper(2,"abcdef")' 10 loops, best of 3: 2.19 usec per loop $ python -m timeit -s 'import test' 'list(test.chunks(2,"abcdef"))' 10 loops, best of 3: 2.85 usec per loop $ python -m timeit -s 'import test' 'test.chunks(2,"abcdef")' 100 loops, best of 3: 0.685 usec per loop some woman wrote this On Thu, Jul 12, 2012 at 3:31 AM, Ryan Paullin wrote: > <- its just my gmail face > > > On Thu, Jul 12, 2012 at 3:30 AM, Ryan Paullin wrote: > >> looks like theres no forgiveness except for dj yoda >> >> >> On Thu, Jul 12, 2012 at 3:00 AM, wrote: >> >>> Send Python-Dev mailing list submissions to >>> [email protected] >>> >>> To subscribe or unsubscribe via the World Wide Web, visit >>> http://mail.python.org/mailman/listinfo/python-dev >>> or, via email, send a message with subject or body 'help' to >>> [email protected] >>> >>> You can reach the person managing the list at >>> [email protected] >>> >>> When replying, please edit your Subject line so it is more specific >>> than "Re: Contents of Python-Dev digest..." >>> >>> >>> Today's Topics: >>> >>>1. Fwd: How to recruit open-source contributors ? The Story of >>> Data (Steve Holden) >>> >>> >>> -- >>> >>> Message: 1 >>> Date: Wed, 11 Jul 2012 19:54:33 -0500 >>> From: Steve Holden >>> To: Arc Riley >>> Cc: [email protected] >>> Subject: [Python-Dev] Fwd: How to recruit open-source contributors ? >>> The Story of Data >>> Message-ID: <[email protected]> >>> Content-Type: text/plain; charset="us-ascii" >>> >>> Interesting article about Gentoo's approach to developer recruitment >>> from GSoC: >>> >>> >>> http://redmonk.com/dberkholz/2012/07/10/how-to-recruit-open-source-contributors/ >>> >>> S >>> -- >>> Steve Holden [email protected], Holden Web, LLC http://holdenweb.com/ >>> Python classes (and much more) through the web http://oreillyschool.com/ >>> Conferences and technical event management at http://theopenbastion.com/ >>> Next: DjangoCon US Sep 6-8, Washington DC http://djangocon.us/ >>> >>> >>> >>> -- next part -- >>> An HTML attachment was scrubbed... >>> URL: < >>> http://mail.python.org/pipermail/python-dev/attachments/20120711/0a6e9085/attachment-0001.html >>> > >>> >>> -- >>> >>> ___ >>> Python-Dev mailing list >>> [email protected] >>> http://mail.python.org/mailman/listinfo/python-dev >>> >>> >>> End of Python-Dev Digest, Vol 108, Issue 14 >>> *** >>> >> >> > ___ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
Re: [Python-Dev] Python-Dev Digest, Vol 108, Issue 14
On Thu, 12 Jul 2012 03:34:20 -0700, Ryan Paullin wrote: > $ python -m timeit -s 'import test' 'list(test.grouper(2,"abcdef"))' > 10 loops, best of 3: 5.34 usec per loop > $ python -m timeit -s 'import test' 'test.grouper(2,"abcdef")' > 10 loops, best of 3: 2.19 usec per loop > $ python -m timeit -s 'import test' 'list(test.chunks(2,"abcdef"))' > 10 loops, best of 3: 2.85 usec per loop > $ python -m timeit -s 'import test' 'test.chunks(2,"abcdef")' > 100 loops, best of 3: 0.685 usec per loop > > some woman wrote this I don't have any idea what any of your recent posts mean, but this one appears to be offensive. I would appreciate it if you would stop posting until you have something substantive to say, and can do so in a civil fashion. --David ___ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
Re: [Python-Dev] How to recruit open-source contributors – The Story of Data
On Wed, 11 Jul 2012 19:54:33 -0500 Steve Holden wrote: > Interesting article about Gentoo's approach to developer recruitment from > GSoC: > > http://redmonk.com/dberkholz/2012/07/10/how-to-recruit-open-source-contributors/ This is quite an interesting article, but I don't think we are that high in pyramid of needs; we would first need someone dedicated enough to keep track of all GSoC projects. (and we would also need mentoring of potential mentors) Regards Antoine. -- Software development and contracting: http://pro.pitrou.net ___ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
