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, <python-dev-request@python.org> wrote:
Send Python-Dev mailing list submissions to python-dev@python.org
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 python-dev-request@python.org
You can reach the person managing the list at python-dev-owner@python.org
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 <steve@holdenweb.com> To: Arc Riley <arcriley@gmail.com> Cc: python-dev@python.org Subject: [Python-Dev] Fwd: How to recruit open-source contributors ? The Story of Data Message-ID: <44E4E015-4C35-4265-A4EF-51B2D3A64086@holdenweb.com> 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-contribut...
S -- Steve Holden steve@holdenweb.com, 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/

<- its just my gmail face On Thu, Jul 12, 2012 at 3:30 AM, Ryan Paullin <ryanpaullin@gmail.com> wrote:
looks like theres no forgiveness except for dj yoda
On Thu, Jul 12, 2012 at 3:00 AM, <python-dev-request@python.org> wrote:
Send Python-Dev mailing list submissions to python-dev@python.org
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 python-dev-request@python.org
You can reach the person managing the list at python-dev-owner@python.org
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 <steve@holdenweb.com> To: Arc Riley <arcriley@gmail.com> Cc: python-dev@python.org Subject: [Python-Dev] Fwd: How to recruit open-source contributors ? The Story of Data Message-ID: <44E4E015-4C35-4265-A4EF-51B2D3A64086@holdenweb.com> 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-contribut...
S -- Steve Holden steve@holdenweb.com, 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/

$ python -m timeit -s 'import test' 'list(test.grouper(2,"abcdef"))' 100000 loops, best of 3: 5.34 usec per loop $ python -m timeit -s 'import test' 'test.grouper(2,"abcdef")' 100000 loops, best of 3: 2.19 usec per loop $ python -m timeit -s 'import test' 'list(test.chunks(2,"abcdef"))' 100000 loops, best of 3: 2.85 usec per loop $ python -m timeit -s 'import test' 'test.chunks(2,"abcdef")' 1000000 loops, best of 3: 0.685 usec per loop some woman wrote this On Thu, Jul 12, 2012 at 3:31 AM, Ryan Paullin <ryanpaullin@gmail.com> wrote:
<- its just my gmail face
On Thu, Jul 12, 2012 at 3:30 AM, Ryan Paullin <ryanpaullin@gmail.com>wrote:
looks like theres no forgiveness except for dj yoda
On Thu, Jul 12, 2012 at 3:00 AM, <python-dev-request@python.org> wrote:
Send Python-Dev mailing list submissions to python-dev@python.org
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 python-dev-request@python.org
You can reach the person managing the list at python-dev-owner@python.org
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 <steve@holdenweb.com> To: Arc Riley <arcriley@gmail.com> Cc: python-dev@python.org Subject: [Python-Dev] Fwd: How to recruit open-source contributors ? The Story of Data Message-ID: <44E4E015-4C35-4265-A4EF-51B2D3A64086@holdenweb.com> 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-contribut...
S -- Steve Holden steve@holdenweb.com, 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/

On Thu, 12 Jul 2012 03:34:20 -0700, Ryan Paullin <ryanpaullin@gmail.com> wrote:
$ python -m timeit -s 'import test' 'list(test.grouper(2,"abcdef"))' 100000 loops, best of 3: 5.34 usec per loop $ python -m timeit -s 'import test' 'test.grouper(2,"abcdef")' 100000 loops, best of 3: 2.19 usec per loop $ python -m timeit -s 'import test' 'list(test.chunks(2,"abcdef"))' 100000 loops, best of 3: 2.85 usec per loop $ python -m timeit -s 'import test' 'test.chunks(2,"abcdef")' 1000000 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
participants (2)
-
R. David Murray
-
Ryan Paullin