gamingdirectional: Detect the player’s boundary
Link: http://gamingdirectional.com/blog/2019/02/16/detect-the-players-boundary/
In this article, we will start to create the boundary detection mechanism which can be used to help the boy moving around the canvas. We will go slowly where this topic will take a few chapters to com
Link: http://gamingdirectional.com/blog/2019/02/16/detect-the-players-boundary/
In this article, we will start to create the boundary detection mechanism which can be used to help the boy moving around the canvas. We will go slowly where this topic will take a few chapters to com
Gaming Directional
Detect the player’s boundary
Create the boundary detection mechanism for the boy object
Codementor: Getting Started with Pathlib
Link: https://www.codementor.io/iyanuashiri/getting-started-with-pathlib-s8rsr4i98
Introduction This tutorial will guide you on how to use the Pathlib module for working with filesystem paths, the benefits, and understand the problem it solves since the Python standard library&helli
Link: https://www.codementor.io/iyanuashiri/getting-started-with-pathlib-s8rsr4i98
Introduction This tutorial will guide you on how to use the Pathlib module for working with filesystem paths, the benefits, and understand the problem it solves since the Python standard library&helli
www.codementor.io
Getting Started with Pathlib | Codementor
Introduction This tutorial will guide you on how to use the Pathlib module for working with filesystem paths, the benefits, and understand the problem it solves since the Python standard library…
Weekly Python StackOverflow Report: (clxv) stackoverflow python report
Link: http://python-weekly.blogspot.com/2019/02/clxv-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2019-02-16 19:24:24 GMTWhy does Python allow out-of-range slice indexes
Link: http://python-weekly.blogspot.com/2019/02/clxv-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2019-02-16 19:24:24 GMTWhy does Python allow out-of-range slice indexes
Blogspot
(clxv) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week. Between brackets: [ question score / answers count] Build date: 2019...
Python Sweetness: Threadless mode in Mitogen 0.3
Link: https://sweetness.hmmz.org/2019-02-16-mitogen-threadless.html
Mitogen has been explicitly
multi-threaded since the design was first conceived. This choice is hard to
regret, as it aligns well with the needs of operating systems like
Windows,
makes background ta
Link: https://sweetness.hmmz.org/2019-02-16-mitogen-threadless.html
Mitogen has been explicitly
multi-threaded since the design was first conceived. This choice is hard to
regret, as it aligns well with the needs of operating systems like
Windows,
makes background ta
sweetness.hmmz.org
python sweetness — Threadless mode in Mitogen 0.3
Mitogen has been explicitly multi-threaded since the design was first conceived. This choice is hard to regret, as it aligns well with the needs of operating systems like Windows, makes background tasks like proxying possible, and allows painless...
Python Insider: Python 2.7.16 release candidate 1 available
Link: http://feedproxy.google.com/~r/PythonInsider/~3/S6j78Cu8CE0/python-2716-release-candidate-1.html
A release candidate for the upcoming 2.7.16 bug fix release is now available for download.
Link: http://feedproxy.google.com/~r/PythonInsider/~3/S6j78Cu8CE0/python-2716-release-candidate-1.html
A release candidate for the upcoming 2.7.16 bug fix release is now available for download.
Blogspot
Python Insider: Python 2.7.16 release candidate 1 available
Thomas Guest: Aligning the first line of a triple-quoted string in Python
Link: http://wordaligned.org/articles/aligning-the-first-line-of-a-triplequoted-string-in-python
Python’s triple-quoted strings are a convenient syntax for strings where the contents span multiple lines. Unescaped newlines are allowed in triple-quoted strings. So, rather than write:
song = ("Hap
Link: http://wordaligned.org/articles/aligning-the-first-line-of-a-triplequoted-string-in-python
Python’s triple-quoted strings are a convenient syntax for strings where the contents span multiple lines. Unescaped newlines are allowed in triple-quoted strings. So, rather than write:
song = ("Hap
PyBites: PyBites Twitter Digest - Issue 01, 2019
Link: https://pybit.es/twitter_digest_201901.html
It has been too long 😞 but we're excited to bring you today: 🐍 PyBites Twitter Digest - Issue 01, 2019 😎
Python Developers Survey 2018 results
Hey Pythonistas, have you already seen the Python Develo
Link: https://pybit.es/twitter_digest_201901.html
It has been too long 😞 but we're excited to bring you today: 🐍 PyBites Twitter Digest - Issue 01, 2019 😎
Python Developers Survey 2018 results
Hey Pythonistas, have you already seen the Python Develo
PyBites
PyBites Twitter Digest - Issue 01, 2019
It has been too long 😞 but we're excited to bring you today: 🐍 PyBites Twitter Digest - Issue 01, 2019 😎
gamingdirectional: Continue with the boy boundary detection mechanism
Link: http://gamingdirectional.com/blog/2019/02/17/continue-with-the-boy-boundary-detection-mechanism/
In the previous article, we have successfully made the boy climbing up the ladder but the boy will continue climbing even though there is no more ladder for him to climb. In this article, we will solv
Link: http://gamingdirectional.com/blog/2019/02/17/continue-with-the-boy-boundary-detection-mechanism/
In the previous article, we have successfully made the boy climbing up the ladder but the boy will continue climbing even though there is no more ladder for him to climb. In this article, we will solv
Gaming Directional
Continue with the boy boundary detection mechanism
Pygame boundary detection mechanism
Stefan Behnel: Speeding up basic object operations in Cython
Link: http://blog.behnel.de/posts/tuning-basic-object-operations-in-cython.html
Raymond Hettinger published a nice little micro-benchmark script for comparing basic operations like attribute or item access in CPython and comparing the performance across Python versions.
Unsurpris
Link: http://blog.behnel.de/posts/tuning-basic-object-operations-in-cython.html
Raymond Hettinger published a nice little micro-benchmark script for comparing basic operations like attribute or item access in CPython and comparing the performance across Python versions.
Unsurpris
Stefans Welt
Speeding up basic object operations in Cython
Raymond Hettinger published a nice little micro-benchmark script for comparing basic operations like attribute or item access in CPython and comparing the performance across Python versions.
Unsurpris
Unsurpris
Reuven Lerner: Python’s str.isdigit vs. str.isnumeric
Link: https://blog.lerner.co.il/pythons-str-isdigit-vs-str-isnumeric/
Let’s say that I want to write some Python code that invites the user to enter a number, and then prints that number, tripled. We could say:
>>> n = input("Enter a number: ")>>> print(f"{n} * 3 = {n*
Link: https://blog.lerner.co.il/pythons-str-isdigit-vs-str-isnumeric/
Let’s say that I want to write some Python code that invites the user to enter a number, and then prints that number, tripled. We could say:
>>> n = input("Enter a number: ")>>> print(f"{n} * 3 = {n*
Lerner Consulting Blog
Python's str.isdigit vs. str.isnumeric - Lerner Consulting Blog
Let’s say that I want to write some Python code that invites the user to enter a number, and then prints that number, tripled. We could say: >>> n = input("Enter a number: ")>>> print(f"{n} * 3 = {n*3}") The good news is that this code works just fine. The…
Test and Code: 65: one assert per test
Link: https://testandcode.com/65
Is it ok to have more than one assert statement in a test?
I've seen articles that say no, you should never have more than one assert.
I've also seen some test code made almost unreadable due to tryi
Link: https://testandcode.com/65
Is it ok to have more than one assert statement in a test?
I've seen articles that say no, you should never have more than one assert.
I've also seen some test code made almost unreadable due to tryi
Test & Code
Test & Code 65: one assert per test
Is it ok to have more than one assert statement in a test?
I've seen articles that say no, you should never have more than one assert.
I've also seen some test code made almost unreadable due to trying to avoid more than one assert per test.
Where did…
I've seen articles that say no, you should never have more than one assert.
I've also seen some test code made almost unreadable due to trying to avoid more than one assert per test.
Where did…
Real Python: How to Run Your Python Scripts
Link: https://realpython.com/run-python-scripts/
One of the most important skills you need to build as a Python developer is to be able to run Python scripts and code. This is going to be the only way for you to know if your code works as you planne
Link: https://realpython.com/run-python-scripts/
One of the most important skills you need to build as a Python developer is to be able to run Python scripts and code. This is going to be the only way for you to know if your code works as you planne
Realpython
How to Run Your Python Scripts and Code – Real Python
A Python script or program is a file containing executable Python code. Being able to run Python scripts and code is probably the most important skill that you need as a Python developer. By running your code, you'll know if it works as planned.
Mike Driscoll: PyDev of the Week: Maria McKinley
Link: http://www.blog.pythonlibrary.org/2019/02/18/pydev-of-the-week-maria-mckinley/
This week we welcome Maria McKinley (@twiteness) as our PyDev of the Week. Maria is a Senior Software Engineer at the Walt Disney Company and will be a speaker at PyCascades 2019. She is also teaching
Link: http://www.blog.pythonlibrary.org/2019/02/18/pydev-of-the-week-maria-mckinley/
This week we welcome Maria McKinley (@twiteness) as our PyDev of the Week. Maria is a Senior Software Engineer at the Walt Disney Company and will be a speaker at PyCascades 2019. She is also teaching
Red Hat Developers: Creating a containerized Python/Flask development environment with Red Hat CodeReady Workspaces
Link: https://developers.redhat.com/blog/2019/02/18/containerized-python-flask-development-environment-red-hat-codeready-workspaces/
Red Hat CodeReady Workspaces provide developers with containerized development environments hosted on OpenShift/Kubernetes. DevOps teams can now use a hosted development environment that’s pre-built f
Link: https://developers.redhat.com/blog/2019/02/18/containerized-python-flask-development-environment-red-hat-codeready-workspaces/
Red Hat CodeReady Workspaces provide developers with containerized development environments hosted on OpenShift/Kubernetes. DevOps teams can now use a hosted development environment that’s pre-built f
Red Hat Developer
Containerized Python Flask development on Red Hat OpenShift | Red Hat Developer
Red Hat CodeReady Workspaces provides developers with containerized development environments hosted on Kubernetes and Red Hat OpenShift.
Reuven Lerner: Answering Python questions from readers
Link: https://blog.lerner.co.il/answering-python-questions-from-readers/
Every so often, I’ve asked readers of my free, weekly “Better developers” newsletter to send me their Python problems. And every so often, I get a chance to answer their questions, going through their
Link: https://blog.lerner.co.il/answering-python-questions-from-readers/
Every so often, I’ve asked readers of my free, weekly “Better developers” newsletter to send me their Python problems. And every so often, I get a chance to answer their questions, going through their
Lerner Consulting Blog
Answering Python questions from readers - Lerner Consulting Blog
Every so often, I’ve asked readers of my free, weekly “Better developers” newsletter to send me their Python problems. And every so often, I get a chance to answer their questions, going through their Python problems and trying to solve them. I’ve recently…
Made With Mu: A Steady Hand and Heart
Link: https://madewith.mu/mu/users/2019/02/18/steady-hand.html
This post celebrates the extraordinarily talented and inventive friend of Mu,
Mr. Les Pounder.
I first met Les at PyCon UK back in 2013. I was coordinating the education
track where we had around 40
Link: https://madewith.mu/mu/users/2019/02/18/steady-hand.html
This post celebrates the extraordinarily talented and inventive friend of Mu,
Mr. Les Pounder.
I first met Les at PyCon UK back in 2013. I was coordinating the education
track where we had around 40
Made With Mu
A Steady Hand and Heart
This post celebrates the extraordinarily talented and inventive friend of Mu, Mr. Les Pounder.
Zato Blog: Deploying 700 services a second with one CPU
Link: https://zato.io/blog/posts/deploying-services.html
As of today, anyone building Zato from source
will notice a significant decrease in time needed for servers to start and stop - it is now
possible for an entire server to boot up to a fully functiona
Link: https://zato.io/blog/posts/deploying-services.html
As of today, anyone building Zato from source
will notice a significant decrease in time needed for servers to start and stop - it is now
possible for an entire server to boot up to a fully functiona
Zato Blog
Deploying 700 services a second with one CPU
Podcast.__init__: Unpacking The Python Toolkit For Chaos Engineering
Link: https://www.pythonpodcast.com/chaos-toolkit-chaos-engineering-episode-199/
Chaos engineering is the practice of injecting failures into your production systems in a controlled manner to identify weaknesses in your applications. In order to build, run, and report on chaos exp
Link: https://www.pythonpodcast.com/chaos-toolkit-chaos-engineering-episode-199/
Chaos engineering is the practice of injecting failures into your production systems in a controlled manner to identify weaknesses in your applications. In order to build, run, and report on chaos exp
The Python Podcast.__init__
The Python Podcast.__init__: Unpacking The Python Toolkit For Chaos Engineering
An interview about improving software reliability with chaos engineering experiments
Chris Moffitt: Monte Carlo Simulation with Python
Link: https://pbpython.com/monte-carlo.html
Introduction
There are many sophisticated models people can build for solving a forecasting
problem. However, they frequently stick to simple Excel models based on average
historical values, intuitio
Link: https://pbpython.com/monte-carlo.html
Introduction
There are many sophisticated models people can build for solving a forecasting
problem. However, they frequently stick to simple Excel models based on average
historical values, intuitio
Pbpython
Monte Carlo Simulation with Python
Performing Monte Carlo simulation using python with pandas and numpy.
PyCon: PyCon 2019 Tutorial Schedule!
Link: https://pycon.blogspot.com/2019/02/pycon-2019-tutorial-schedule.html
The highly anticipated PyCon 2019 tutorial schedule is now available! The tutorial schedule for Wednesday May 1, 2019 and Thursday May 2, 2019 can be found here.Registration for tutorials is open! Fo
Link: https://pycon.blogspot.com/2019/02/pycon-2019-tutorial-schedule.html
The highly anticipated PyCon 2019 tutorial schedule is now available! The tutorial schedule for Wednesday May 1, 2019 and Thursday May 2, 2019 can be found here.Registration for tutorials is open! Fo
Blogspot
PyCon 2019 Tutorial Schedule!
The highly anticipated PyCon 2019 tutorial schedule is now available! The tutorial schedule for Wednesday May 1, 2019 and Thursday May 2, 2...