Test and Code: 192: Learn to code through game development with PursuedPyBear - Piper Thunstrom
Link: https://testandcode.com/192
The first game I remember coding, or at least copying from a magazine, was in Basic. It was Lunar Lander.
Learning to code a game is a way that a lot of people get started and excited about programm
Link: https://testandcode.com/192
The first game I remember coding, or at least copying from a magazine, was in Basic. It was Lunar Lander.
Learning to code a game is a way that a lot of people get started and excited about programm
Test & Code in Python
Test & Code in Python 192: Learn to code through game development with PursuedPyBear - Piper Thunstrom
PursuedPyBear, ppb, is a game framework great for learning, with goals of being fun, education friendly, an example of idiomatic Python, hardware library agnostic, and built on event driven and object oriented concepts.
PyCharm: The PyCharm 2022.2.1 Release Candidate Is Now Available!
Link: https://blog.jetbrains.com/pycharm/2022/08/2022-2-1-rc/
We’re working closely with your feedback on the PyCharm 2022.2 version that was released last week. Thank you for sharing with us! If you encounter an issue in PyCharm 2022.2, please reach out to our
Link: https://blog.jetbrains.com/pycharm/2022/08/2022-2-1-rc/
We’re working closely with your feedback on the PyCharm 2022.2 version that was released last week. Thank you for sharing with us! If you encounter an issue in PyCharm 2022.2, please reach out to our
The JetBrains Blog
The PyCharm 2022.2.1 Release Candidate Is Now Available! | The PyCharm Blog
We’re working closely with your feedback on the PyCharm 2022.2 version that was released last week. Thank you for sharing with us! If you encounter an issue in PyCharm 2022.2, please reach out to our
PyCoder’s Weekly: Issue #537 (Aug. 9, 2022)
Link: https://pycoders.com/issues/537
#537 – AUGUST 9, 2022 View in Browser » Finding and Fixing Python Code Bugs Learn how to identify and fix logic errors, or bugs, in your Python code. You’ll use the built-in debugging tools in P
Link: https://pycoders.com/issues/537
#537 – AUGUST 9, 2022 View in Browser » Finding and Fixing Python Code Bugs Learn how to identify and fix logic errors, or bugs, in your Python code. You’ll use the built-in debugging tools in P
Pycoders
PyCoder’s Weekly | Issue #537
Issue #537 of the PyCoder’s Weekly newsletter, published Aug. 9, 2022.
Mike Driscoll: Adding Data to Empty DataFrames in pandas
Link: https://www.blog.pythonlibrary.org/2022/08/09/adding-data-to-empty-dataframes-in-pandas/
One of the most popular 3rd party Python packages is called pandas. The pandas package "is a fast, powerful, flexible and easy to use open source data analysis and manipulation tool, built on top of t
Link: https://www.blog.pythonlibrary.org/2022/08/09/adding-data-to-empty-dataframes-in-pandas/
One of the most popular 3rd party Python packages is called pandas. The pandas package "is a fast, powerful, flexible and easy to use open source data analysis and manipulation tool, built on top of t
Mouse Vs Python
Adding Data to Empty DataFrames in pandas - Mouse Vs Python
One of the most popular 3rd party Python packages is called pandas. The pandas package "is a fast, powerful, flexible and easy to use open source data
Python Bytes: #296 pip: Constrain your excitement
Link: https://pythonbytes.fm/episodes/show/296/pip-constrain-your-excitement
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=fdtDfeYmdDU' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
Link: https://pythonbytes.fm/episodes/show/296/pip-constrain-your-excitement
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=fdtDfeYmdDU' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
pythonbytes.fm
pip: Constrain your excitement
News and announcements from the Python community for the week of Aug 9th, 2022
IslandT: Rotate and scale image with Pygame
Link: https://islandtropicaman.com/wp/2022/08/10/rotate-and-scale-image-with-pygame/
In this article, I will create a small python program using the pygame framework to scale up and rotate an image on the display screen. The image will keep on rotating counterclockwise at 0.1 degrees
Link: https://islandtropicaman.com/wp/2022/08/10/rotate-and-scale-image-with-pygame/
In this article, I will create a small python program using the pygame framework to scale up and rotate an image on the display screen. The image will keep on rotating counterclockwise at 0.1 degrees
Mike Driscoll: How to Merge Dictionaries with Python (Video)
Link: https://www.blog.pythonlibrary.org/2022/08/10/how-to-merge-dictionaries-with-python-video/
Learn three different ways to merge Python dictionaries with Mike Driscoll
You will learn three different ways to merge dictionaries:
Using the dictionary's update() method
Using **
Using the Union o
Link: https://www.blog.pythonlibrary.org/2022/08/10/how-to-merge-dictionaries-with-python-video/
Learn three different ways to merge Python dictionaries with Mike Driscoll
You will learn three different ways to merge dictionaries:
Using the dictionary's update() method
Using **
Using the Union o
Mouse Vs Python
How to Merge Dictionaries with Python (Video) - Mouse Vs Python
Learn three different ways to merge Python dictionaries with Mike Driscoll You will learn three different ways to merge dictionaries: Using the
Python for Beginners: Save Numpy Array to Text File in Python
Link: https://www.pythonforbeginners.com/basics/save-numpy-array-to-text-file-in-python
Numpy arrays are used extensively while data analysis in python. In this article, we will discuss how we can save a numpy array to a text file in python.
Save Numpy Array to Text File Using the str()
Link: https://www.pythonforbeginners.com/basics/save-numpy-array-to-text-file-in-python
Numpy arrays are used extensively while data analysis in python. In this article, we will discuss how we can save a numpy array to a text file in python.
Save Numpy Array to Text File Using the str()
PythonForBeginners.com
Save Numpy Array to Text File in Python - PythonForBeginners.com
Save Numpy Array to Text File in Python will help you improve your python skills with easy to follow examples and tutorials.
Real Python: Sorting a Python Dictionary: Values, Keys, and More
Link: https://realpython.com/sort-python-dictionary/
You’ve got a dictionary, but you’d like to sort the key-value pairs. Perhaps you’ve tried passing a dictionary to the sorted() function but haven’t gotten the results you expected. In this tutorial, y
Link: https://realpython.com/sort-python-dictionary/
You’ve got a dictionary, but you’d like to sort the key-value pairs. Perhaps you’ve tried passing a dictionary to the sorted() function but haven’t gotten the results you expected. In this tutorial, y
Realpython
Sorting a Python Dictionary: Values, Keys, and More – Real Python
In this tutorial, you'll get the lowdown on sorting Python dictionaries. By the end, you'll be able to sort by key, value, or even nested attributes. But you won't stop there---you'll go on to measure the performance of variations when sorting and compare…
"Paolo Amoroso's Journal": The Python feed of my old blog Moonshots Beyond the Cloud has long been...
Link: https://journal.paoloamoroso.com/the-python-feed-of-my-old-blog-moonshots-beyond-the-cloud-has-long-been?pk_campaign=rss-feed
The Python feed of my old blog Moonshots Beyond the Cloud has long been aggregated by Planet Python. But I'm no longer going to update that blog, so I removed the old feed from Planet Python and submi
Link: https://journal.paoloamoroso.com/the-python-feed-of-my-old-blog-moonshots-beyond-the-cloud-has-long-been?pk_campaign=rss-feed
The Python feed of my old blog Moonshots Beyond the Cloud has long been aggregated by Planet Python. But I'm no longer going to update that blog, so I removed the old feed from Planet Python and submi
Paolo Amoroso's Journal
The Python feed of my old blog Moonshots Beyond the Cloud has long been... — Paolo Amoroso's Journal
#Python #blogging Discuss... | Reply by email... ...
The Python Coding Blog: Shallow and Deep Copy in Python and How to Use __copy__()
Link: https://thepythoncodingbook.com/2022/08/10/shallow-and-deep-copy-in-python/
You need to make a copy of an object in a Python program. How difficult can it be? Not very. But you also need to know the difference between shallow and deep copy in Python and decide which one you n
Link: https://thepythoncodingbook.com/2022/08/10/shallow-and-deep-copy-in-python/
You need to make a copy of an object in a Python program. How difficult can it be? Not very. But you also need to know the difference between shallow and deep copy in Python and decide which one you n
The Python Coding Book
Shallow and Deep Copy in Python and How to Use __copy__()
The article explores shallow and deep copy in Python, and how to use the __copy__() dunder method to customise the copying behaviour
TestDriven.io: Integrating Mailchimp with Django
Link: https://testdriven.io/blog/django-mailchimp/
This article looks at how to integrate Mailchimp with Django for newsletters and transactional emails.
Link: https://testdriven.io/blog/django-mailchimp/
This article looks at how to integrate Mailchimp with Django for newsletters and transactional emails.
testdriven.io
Integrating Mailchimp with Django
This article looks at how to integrate Mailchimp with Django for newsletters and transactional emails.
Python⇒Speed: Finding performance problems: profiling or logging?
Link: https://pythonspeed.com/articles/logging-vs-profiling/
When your software is too slow in production, how can you figure out the source of the problem?
One common starting point to improving production observability is logging, and ideally trace-based logg
Link: https://pythonspeed.com/articles/logging-vs-profiling/
When your software is too slow in production, how can you figure out the source of the problem?
One common starting point to improving production observability is logging, and ideally trace-based logg
Python⇒Speed
Finding performance problems: profiling or logging?
If your software is running slowly in production, do you need profiling or logging?
Codementor: #01 | Machine Learning with the Linear Regression
Link: https://www.codementor.io/projects196/01-machine-learning-with-the-linear-regression-1vq737cmem
Dive into the essence of Machine Learning by developing several Regression models with a practical use case in Python to predict accidents in the USA.
Link: https://www.codementor.io/projects196/01-machine-learning-with-the-linear-regression-1vq737cmem
Dive into the essence of Machine Learning by developing several Regression models with a practical use case in Python to predict accidents in the USA.
www.codementor.io
#01 | Machine Learning with the Linear Regression | Codementor
Dive into the essence of Machine Learning by developing several Regression models with a practical use case in Python to predict accidents in the USA.
Fabio Zadrozny: PyDev debugger: Going from async to sync to async... oh, wait.
Link: http://pydev.blogspot.com/2022/08/pydev-debugger-going-from-async-to-sync.html
In Python asyncio land it's always a bit of a hassle when you have existing code which runs in sync mode which needs to be retrofitted to run in async, but it's usually doable -- in many cases, slapp
Link: http://pydev.blogspot.com/2022/08/pydev-debugger-going-from-async-to-sync.html
In Python asyncio land it's always a bit of a hassle when you have existing code which runs in sync mode which needs to be retrofitted to run in async, but it's usually doable -- in many cases, slapp
Blogspot
PyDev debugger: Going from async to sync to async... oh, wait.
In Python asyncio land it's always a bit of a hassle when you have existing code which runs in sync mode which needs to be retrofitted to ...
PyCharm: The Second Release Candidate for PyCharm 2022.2.1 Is Available!
Link: https://blog.jetbrains.com/pycharm/2022/08/2022-2-1-rc-2/
This is a new update for the upcoming minor bug-fix release for 2022.2. Last week, in the first release candidate for 2022.2.1, we delivered some critical fixes to use the new functionality of PyCharm
Link: https://blog.jetbrains.com/pycharm/2022/08/2022-2-1-rc-2/
This is a new update for the upcoming minor bug-fix release for 2022.2. Last week, in the first release candidate for 2022.2.1, we delivered some critical fixes to use the new functionality of PyCharm
The JetBrains Blog
The Second Release Candidate for PyCharm 2022.2.1 Is Available! | The PyCharm Blog
This is a new update for the upcoming minor bug-fix release for 2022.2. Last week, in the first release candidate for 2022.2.1, we delivered some critical fixes to use the new functionality of PyCharm
ABlog for Sphinx: ABlog v0.10.30 released
Link: https://ablog.readthedocs.org/release/ablog-v0.10-released/#ablog-v0-10-30-released
ABlog v0.10.30 released
Link: https://ablog.readthedocs.org/release/ablog-v0.10-released/#ablog-v0-10-30-released
ABlog v0.10.30 released
Hynek Schlawack: pip-tools Supports pyproject.toml
Link: https://hynek.me/til/pip-tools-and-pyproject-toml/
pip-tools is ready for modern packaging.
Link: https://hynek.me/til/pip-tools-and-pyproject-toml/
pip-tools is ready for modern packaging.
Hynek Schlawack
pip-tools Supports pyproject.toml
pip-tools is ready for modern packaging.
Real Python: The Real Python Podcast – Episode #121: Moving NLP Forward With Transformer Models and Attention
Link: https://realpython.com/podcasts/rpp/121/
What's the big breakthrough for Natural Language Processing (NLP) that has dramatically advanced machine learning into deep learning? What makes these transformer models unique, and what defines "atte
Link: https://realpython.com/podcasts/rpp/121/
What's the big breakthrough for Natural Language Processing (NLP) that has dramatically advanced machine learning into deep learning? What makes these transformer models unique, and what defines "atte
Realpython
Episode #121: Moving NLP Forward With Transformer Models and Attention – The Real Python Podcast
What's the big breakthrough for Natural Language Processing (NLP) that has dramatically advanced machine learning into deep learning? What makes these transformer models unique, and what defines "attention?" This week on the show, Jodie Burchell, developer…
Python for Beginners: Read File Line by Line in Python
Link: https://www.pythonforbeginners.com/basics/read-file-line-by-line-in-python
File operations are crucial during various tasks. In this article, we will discuss how we can read a file line by line in python.
Read File Using the readline() Method
Python provides us with the read
Link: https://www.pythonforbeginners.com/basics/read-file-line-by-line-in-python
File operations are crucial during various tasks. In this article, we will discuss how we can read a file line by line in python.
Read File Using the readline() Method
Python provides us with the read
PythonForBeginners.com
Read File Line by Line in Python - PythonForBeginners.com
Read File Line by Line in Python will help you improve your python skills with easy to follow examples and tutorials.
PyCharm: Webinar: 10 Pro Git Tips in PyCharm
Link: https://blog.jetbrains.com/pycharm/2022/08/webinar-10-pro-git-tips-in-pycharm/
Join us Tuesday, August 23, 2022, 6:00 – 7:00 pm CEST (check other time zones) for our free live webinar, 10 Pro Git Tips in PyCharm.
Save your spot
Have you ever worked on a Git repo in PyCharm and
Link: https://blog.jetbrains.com/pycharm/2022/08/webinar-10-pro-git-tips-in-pycharm/
Join us Tuesday, August 23, 2022, 6:00 – 7:00 pm CEST (check other time zones) for our free live webinar, 10 Pro Git Tips in PyCharm.
Save your spot
Have you ever worked on a Git repo in PyCharm and
The JetBrains Blog
Webinar: 10 Pro Git Tips in PyCharm | The PyCharm Blog
Have you ever worked on a Git repo in PyCharm and wondered,