From philippehenri.gosselin at gmail.com Sun Dec 5 15:04:40 2021 From: philippehenri.gosselin at gmail.com (Philippe-Henri Gosselin) Date: Sun, 5 Dec 2021 21:04:40 +0100 Subject: [pydotorg-www] Tutorial for beginners Message-ID: Hi all, I wrote a tutorial for beginners. We discover Python programming with games. At the end of the tutorial, we create a small tank game with 2D graphics (using Pygame). I would like to add a link to the page https://wiki.python.org/moin/BeginnersGuide/NonProgrammers or https://wiki.python.org/moin/BeginnersGuide/Programmers. The tutorial is here: https://www.patternsgameprog.com/series/discover-python-and-patterns/ My login on the wiki is PhilippeGosselin Thx! Philippe From rosuav at gmail.com Sun Dec 5 17:37:08 2021 From: rosuav at gmail.com (Chris Angelico) Date: Mon, 6 Dec 2021 09:37:08 +1100 Subject: [pydotorg-www] Tutorial for beginners In-Reply-To: References: Message-ID: On Mon, Dec 6, 2021 at 7:04 AM Philippe-Henri Gosselin wrote: > > Hi all, > > I wrote a tutorial for beginners. We discover Python programming with > games. At the end of the tutorial, we create a small tank game with 2D > graphics (using Pygame). > > I would like to add a link to the page > https://wiki.python.org/moin/BeginnersGuide/NonProgrammers or > https://wiki.python.org/moin/BeginnersGuide/Programmers. > > The tutorial is here: > > https://www.patternsgameprog.com/series/discover-python-and-patterns/ > > My login on the wiki is PhilippeGosselin > No problem! You're now an editor. ChrisA From bar94 at cornell.edu Wed Dec 8 05:08:10 2021 From: bar94 at cornell.edu (Ben Rosenberg) Date: Wed, 8 Dec 2021 10:08:10 +0000 Subject: [pydotorg-www] Meaningful typo in bitwise operator article Message-ID: To whom it may concern: In the article on bitwise operators here: https://wiki.python.org/moin/BitwiseOperators there is a meaningful typo under `~x`. It says ?This is the same as -x ? 1?, where it should be ?-x + 1?. Best, Ben -------------- next part -------------- An HTML attachment was scrubbed... URL: From rosuav at gmail.com Wed Dec 8 05:09:56 2021 From: rosuav at gmail.com (Chris Angelico) Date: Wed, 8 Dec 2021 21:09:56 +1100 Subject: [pydotorg-www] Meaningful typo in bitwise operator article In-Reply-To: References: Message-ID: On Wed, Dec 8, 2021 at 9:08 PM Ben Rosenberg wrote: > > To whom it may concern: > > In the article on bitwise operators here: https://wiki.python.org/moin/BitwiseOperators there is a meaningful typo under `~x`. It says ?This is the same as -x ? 1?, where it should be ?-x + 1?. > >>> ~5 -6 >>> -5 - 1 -6 >>> x = -5 >>> ~x 4 >>> -x - 1 4 ChrisA From bar94 at cornell.edu Wed Dec 8 06:54:45 2021 From: bar94 at cornell.edu (Ben Rosenberg) Date: Wed, 8 Dec 2021 11:54:45 +0000 Subject: [pydotorg-www] Meaningful typo in bitwise operator article In-Reply-To: References: Message-ID: Sorry, looks like I was a bit hasty. Thanks for the clarification. Ben On Dec 8, 2021 5:10 AM, Chris Angelico wrote: On Wed, Dec 8, 2021 at 9:08 PM Ben Rosenberg wrote: > > To whom it may concern: > > In the article on bitwise operators here: https://wiki.python.org/moin/BitwiseOperators there is a meaningful typo under `~x`. It says ?This is the same as -x ? 1?, where it should be ?-x + 1?. > >>> ~5 -6 >>> -5 - 1 -6 >>> x = -5 >>> ~x 4 >>> -x - 1 4 ChrisA -------------- next part -------------- An HTML attachment was scrubbed... URL: From rosuav at gmail.com Wed Dec 8 06:56:37 2021 From: rosuav at gmail.com (Chris Angelico) Date: Wed, 8 Dec 2021 22:56:37 +1100 Subject: [pydotorg-www] Meaningful typo in bitwise operator article In-Reply-To: References: Message-ID: On Wed, Dec 8, 2021 at 10:54 PM Ben Rosenberg wrote: > > Sorry, looks like I was a bit hasty. Thanks for the clarification. > > Ben > No probs :) A lot of people get confused by double negations (I've seen people insist that abs(x) is x if x is positive, otherwise it's +x). ChrisA From datacreative01 at gmail.com Wed Dec 15 19:40:59 2021 From: datacreative01 at gmail.com (Brian Broumas) Date: Wed, 15 Dec 2021 16:40:59 -0800 Subject: [pydotorg-www] request for editing permission Message-ID: Hi, I work for DataCreative, a Sacramento-based IT training company. We offer a Python Fundamentals class both online and in-person. I was hoping to list my company on your Python Training page and get added to the editors group. My username is *BrianBroumas*. Sincerely, Brian Broumas (916) 661-0992 brian at datacreative.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From rosuav at gmail.com Wed Dec 15 21:13:16 2021 From: rosuav at gmail.com (Chris Angelico) Date: Thu, 16 Dec 2021 13:13:16 +1100 Subject: [pydotorg-www] request for editing permission In-Reply-To: References: Message-ID: On Thu, Dec 16, 2021 at 11:41 AM Brian Broumas wrote: > > Hi, I work for DataCreative, a Sacramento-based IT training company. We offer a Python Fundamentals class both online and in-person. > > I was hoping to list my company on your Python Training page and get added to the editors group. My username is BrianBroumas. > No probs, go for it! ChrisA From martin at martinedwards.co.uk Tue Dec 21 15:17:06 2021 From: martin at martinedwards.co.uk (Martin Edwards) Date: Tue, 21 Dec 2021 20:17:06 +0000 Subject: [pydotorg-www] Out-of-date link Message-ID: Hello, I noticed that the link to the Python Cookbook on the following Python Wiki page is out of date: https://wiki.python.org/moin/BeginnersGuide/Examples I believe the URL is now: https://code.activestate.com/recipes/langs/python/ I realise I could create an account on the wiki and then request permission to edit, but since I'm new to Python I'm unlikely to have much to contribute in the near future. Therefore I thought that for this small update, I'd let you know directly rather than creating an account. I hope that's okay. Regards, Martin Edwards -------------- next part -------------- An HTML attachment was scrubbed... URL: From mal at egenix.com Wed Dec 22 04:27:27 2021 From: mal at egenix.com (Marc-Andre Lemburg) Date: Wed, 22 Dec 2021 10:27:27 +0100 Subject: [pydotorg-www] Out-of-date link In-Reply-To: References: Message-ID: <3f3dda54-df1d-3757-5a16-a665952dc587@egenix.com> Hi Martin, thanks for helping. I have fixed the link accordingly. Cheers, -- Marc-Andre Lemburg eGenix.com Professional Python Services directly from the Experts (#1, Dec 22 2021) >>> Python Projects, Coaching and Support ... https://www.egenix.com/ >>> Python Product Development ... https://consulting.egenix.com/ ________________________________________________________________________ ::: We implement business ideas - efficiently in both time and costs ::: eGenix.com Software, Skills and Services GmbH Pastor-Loeh-Str.48 D-40764 Langenfeld, Germany. CEO Dipl.-Math. Marc-Andre Lemburg Registered at Amtsgericht Duesseldorf: HRB 46611 https://www.egenix.com/company/contact/ https://www.malemburg.com/ On 21.12.2021 21:17, Martin Edwards wrote: > Hello, > > I noticed that the link to the Python Cookbook on the following Python Wiki page > is out of date: > > https://wiki.python.org/moin/BeginnersGuide/Examples > > I believe the URL is now: > > https://code.activestate.com/recipes/langs/python/ > > I realise I could create an account on the wiki and then request permission to > edit, but since I'm new to Python I'm unlikely to have much to contribute in the > near future. Therefore I thought that for this small update, I'd let you know > directly rather than creating an account. I hope that's okay. > > Regards, > > Martin Edwards > > _______________________________________________ > pydotorg-www mailing list > pydotorg-www at python.org > https://mail.python.org/mailman/listinfo/pydotorg-www > From pwazeng36 at gmail.com Sat Dec 25 19:19:39 2021 From: pwazeng36 at gmail.com (Wazeng P) Date: Sun, 26 Dec 2021 07:19:39 +0700 Subject: [pydotorg-www] (no subject) Message-ID: -------------- next part -------------- An HTML attachment was scrubbed... URL: From schettino72 at gmail.com Thu Dec 30 04:03:40 2021 From: schettino72 at gmail.com (Eduardo Schettino) Date: Thu, 30 Dec 2021 17:03:40 +0800 Subject: [pydotorg-www] Python Wiki: editor group Message-ID: Hi, Please add me to python wiki Editor Group. My username is "EduardoSchettino" I am the author of doit[1] and would like to update the entry for the project in the build-tools page [2]. [1] https://github.com/pydoit/doit [2] https://wiki.python.org/moin/ConfigurationAndBuildTools Regards -------------- next part -------------- An HTML attachment was scrubbed... URL: From rosuav at gmail.com Thu Dec 30 14:28:51 2021 From: rosuav at gmail.com (Chris Angelico) Date: Fri, 31 Dec 2021 06:28:51 +1100 Subject: [pydotorg-www] Python Wiki: editor group In-Reply-To: References: Message-ID: On Thu, Dec 30, 2021 at 8:04 PM Eduardo Schettino wrote: > > Hi, > > Please add me to python wiki Editor Group. My username is "EduardoSchettino" > I am the author of doit[1] and would like to update the entry for the project in the build-tools page [2]. > > [1] https://github.com/pydoit/doit > [2] https://wiki.python.org/moin/ConfigurationAndBuildTools > > Regards > No problem! Go for it. ChrisA