Hugo van Kemenade: Moved to hugovk.dev
Link: https://dev.to/hugovk/moved-to-hugovkdev-l4k
🚀 See you over at hugovk.dev!
Link: https://dev.to/hugovk/moved-to-hugovkdev-l4k
🚀 See you over at hugovk.dev!
DEV Community
Moved to hugovk.dev
🚀 See you over at hugovk.dev!
Vinayak Mehta: IPychat — An AI extension for IPython
Link: https://vinayak.io/2025/01/02/ipychat/
Recently, I've been exploring geospatial data about Paris. Although I've seen others work with this type of data and know basic terms like shapefiles and polygons, this is my first time working wit
Link: https://vinayak.io/2025/01/02/ipychat/
Recently, I've been exploring geospatial data about Paris. Although I've seen others work with this type of data and know basic terms like shapefiles and polygons, this is my first time working wit
IPychat — An AI extension for IPython - Vinayak Mehta
Real Python: The Real Python Podcast – Episode #233: PyCoder's Weekly 2024 Top Articles & Missing Gems
Link: https://realpython.com/podcasts/rpp/233/
PyCoder's Weekly included over 1,500 links to articles, blog posts, tutorials, and projects in 2024. Christopher Trudeau is back on the show this week to help wrap it all up by sharing some highlights
Link: https://realpython.com/podcasts/rpp/233/
PyCoder's Weekly included over 1,500 links to articles, blog posts, tutorials, and projects in 2024. Christopher Trudeau is back on the show this week to help wrap it all up by sharing some highlights
Realpython
Episode #233: PyCoder's Weekly 2024 Top Articles & Missing Gems – The Real Python Podcast
PyCoder's Weekly included over 1,500 links to articles, blog posts, tutorials, and projects in 2024. Christopher Trudeau is back on the show this week to help wrap it all up by sharing some highlights and uncovering a few missing gems from the pile.
PyPy: Towards PyPy3.11 - an update
Link: https://www.pypy.org/posts/2025/01/towards-pypy311-an-update.html
We1 are steadily working towards a Python 3.11 interpreter, which will be part
of the upcoming PyPy 7.3.18 release. Along with that, we also recently updated
speed.pypy.org to compare PyPy's performa
Link: https://www.pypy.org/posts/2025/01/towards-pypy311-an-update.html
We1 are steadily working towards a Python 3.11 interpreter, which will be part
of the upcoming PyPy 7.3.18 release. Along with that, we also recently updated
speed.pypy.org to compare PyPy's performa
PyPy
Towards PyPy3.11 - an update
We1 are steadily working towards a Python 3.11 interpreter, which will be part
of the upcoming PyPy 7.3.18 release. Along with that, we also recently updated
speed.pypy.org to compare PyPy's performa
of the upcoming PyPy 7.3.18 release. Along with that, we also recently updated
speed.pypy.org to compare PyPy's performa
Marcos Dione: We have been writing Ansible tasks wrong
Link: https://www.grulic.org.ar/~mdione/glob/posts/we-have-been-writing-ansible-tasks-wrong/
Look at the following Ansible task:
- name: Prometheus Exporters
- name: Extend caps for ping - File
template:
src: "roles/server/files{{ item }}"
dest: "{{ item }}"
owner:
Link: https://www.grulic.org.ar/~mdione/glob/posts/we-have-been-writing-ansible-tasks-wrong/
Look at the following Ansible task:
- name: Prometheus Exporters
- name: Extend caps for ping - File
template:
src: "roles/server/files{{ item }}"
dest: "{{ item }}"
owner:
.:: Marcos Dione/StyXman's glob ::.
We have been writing Ansible tasks wrong
Look at the following Ansible task:
- name: Prometheus Exporters
- name: Extend caps for ping - File
template:
src: "roles/server/files{{ item }}"
dest: "{{ item }}"
owner:
- name: Prometheus Exporters
- name: Extend caps for ping - File
template:
src: "roles/server/files{{ item }}"
dest: "{{ item }}"
owner:
Zato Blog: Getting started with network automation in Python
Link: https://zato.io/en/blog/network-automation-getting-started.html
Getting started with network automation in Python
2025-01-07, by Dariusz Suchojad
All network engineers and architects understand that automation is essential for efficiency and reliability,
e
Link: https://zato.io/en/blog/network-automation-getting-started.html
Getting started with network automation in Python
2025-01-07, by Dariusz Suchojad
All network engineers and architects understand that automation is essential for efficiency and reliability,
e
PyPy: Musings on Tracing in PyPy
Link: https://www.pypy.org/posts/2025/01/musings-tracing.html
Last summer, Shriram Krishnamurthi asked on
Twitter:
"I'm curious what the current state of tracing JITs is. They used to be all the
rage for a while, then I though I heard they weren't so effective,
Link: https://www.pypy.org/posts/2025/01/musings-tracing.html
Last summer, Shriram Krishnamurthi asked on
Twitter:
"I'm curious what the current state of tracing JITs is. They used to be all the
rage for a while, then I though I heard they weren't so effective,
PyPy
Musings on Tracing in PyPy
Last summer, Shriram Krishnamurthi asked on
Twitter:
"I'm curious what the current state of tracing JITs is. They used to be all the
rage for a while, then I though I heard they weren't so effective,
Twitter:
"I'm curious what the current state of tracing JITs is. They used to be all the
rage for a while, then I though I heard they weren't so effective,
Real Python: Iterators and Iterables in Python: Run Efficient Iterations
Link: https://realpython.com/python-iterators-iterables/
Understanding iterators and iterables in Python is crucial for running efficient iterations. Iterators control loops, allowing you to traverse arbitrary data containers one item at a time. Iterables,
Link: https://realpython.com/python-iterators-iterables/
Understanding iterators and iterables in Python is crucial for running efficient iterations. Iterators control loops, allowing you to traverse arbitrary data containers one item at a time. Iterables,
Realpython
Iterators and Iterables in Python: Run Efficient Iterations – Real Python
In this tutorial, you'll learn what iterators and iterables are in Python. You'll learn how they differ and when to use them in your code. You'll also learn how to create your own iterators and iterables to make data processing more efficient.
Real Python: Ways to Start Interacting With Python
Link: https://realpython.com/courses/interactive-python/
There are multiple ways of interacting with Python, and each can be useful for different scenarios. You can quickly explore functionality in Python’s interactive mode using the built-in Read-Eval-Prin
Link: https://realpython.com/courses/interactive-python/
There are multiple ways of interacting with Python, and each can be useful for different scenarios. You can quickly explore functionality in Python’s interactive mode using the built-in Read-Eval-Prin
Realpython
Ways to Start Interacting With Python – Real Python
In this video course, you'll explore the various ways of interacting with Python. You'll learn about the REPL for quick testing and running scripts, as well as how to work with different IDEs, and Python's IDLE.
PyCoder’s Weekly: Issue #663 (Jan. 7, 2025)
Link: https://pycoders.com/issues/663
#663 – JANUARY 7, 2025 View in Browser » Building HTTP APIs With Django REST Framework This course will get you ready to build HTTP APIs with Django REST Framework. The Django REST framework (DR
Link: https://pycoders.com/issues/663
#663 – JANUARY 7, 2025 View in Browser » Building HTTP APIs With Django REST Framework This course will get you ready to build HTTP APIs with Django REST Framework. The Django REST framework (DR
Pycoders
PyCoder’s Weekly | Issue #663
DRF, Temp Files, Dataclasses, and More
Real Python: Image Processing With the Python Pillow Library
Link: https://realpython.com/image-processing-with-the-python-pillow-library/
Python Pillow allows you to manipulate images and perform basic image processing tasks. As a fork of the Python Imaging Library (PIL), Pillow supports image formats like JPEG, PNG, and more, enabling
Link: https://realpython.com/image-processing-with-the-python-pillow-library/
Python Pillow allows you to manipulate images and perform basic image processing tasks. As a fork of the Python Imaging Library (PIL), Pillow supports image formats like JPEG, PNG, and more, enabling
Realpython
Image Processing With the Python Pillow Library – Real Python
In this step-by-step tutorial, you'll learn how to use the Python Pillow library to deal with images and perform image processing. You'll also explore using NumPy for further processing, including to create animations.
PyCharm: Data Cleaning in Data Science
Link: https://blog.jetbrains.com/pycharm/2025/01/data-cleaning-in-data-science/
In this Data Science blog post series, we’ve talked about where to get data from and how to explore that data using pandas, but whilst that data is excellent for learning, it’s not similar to what we
Link: https://blog.jetbrains.com/pycharm/2025/01/data-cleaning-in-data-science/
In this Data Science blog post series, we’ve talked about where to get data from and how to explore that data using pandas, but whilst that data is excellent for learning, it’s not similar to what we
The JetBrains Blog
Data Cleaning in Data Science | The PyCharm Blog
Real-world data needs cleaning before it can give us useful insights. Learn how how you can perform data cleaning in data science on your dataset.
EuroPython Society: Board Report for December 2024
Link: https://www.europython-society.org/board-report-for-december-2024/
The board has been working tirelessly over the past month to bootstrap the organization of the 2025 conference and lead the Society toward a more sustainable and stable future!In December, we focused
Link: https://www.europython-society.org/board-report-for-december-2024/
The board has been working tirelessly over the past month to bootstrap the organization of the 2025 conference and lead the Society toward a more sustainable and stable future!In December, we focused
EuroPython Society
Board Report for December 2024
The board has been working tirelessly over the past month to bootstrap the organization of the 2025 conference and lead the Society toward a more sustainable and stable future! In December, we focused on three main areas: OnboardingHiring an Event ManagerBootstrapping…
Django Weblog: DSF member of the month - Hiroki Kiyohara
Link: https://www.djangoproject.com/weblog/2025/jan/08/dsf-member-of-the-month-hiroki-kiyohara/
This month marks the start of a new year, and the Django Software Foundation would like to wish you all a very happy new year. New year, new resolutions, but also the start of a new blog post series,
Link: https://www.djangoproject.com/weblog/2025/jan/08/dsf-member-of-the-month-hiroki-kiyohara/
This month marks the start of a new year, and the Django Software Foundation would like to wish you all a very happy new year. New year, new resolutions, but also the start of a new blog post series,
Django Project
DSF member of the month - Hiroki Kiyohara
Posted by Sarah Abderemane on Jan. 8, 2025
eGenix.com: Python Meeting Düsseldorf - 2025-01-22
Link: https://www.egenix.com/company/news/Python-Meeting-Duesseldorf-2025-01-22
The following text is in German, since we're announcing a regional user group meeting in Düsseldorf, Germany.
Ankündigung
Das nächste Python Meeting Düsseldorf findet an folgendem Termin statt:
22.0
Link: https://www.egenix.com/company/news/Python-Meeting-Duesseldorf-2025-01-22
The following text is in German, since we're announcing a regional user group meeting in Düsseldorf, Germany.
Ankündigung
Das nächste Python Meeting Düsseldorf findet an folgendem Termin statt:
22.0
eGenix.com
eGenix.com: Python Meeting Düsseldorf - 2025-01-22
We are pleased to announce the next Python Meeting Düsseldorf on 2025-01-22.
DaPythonista: Blackjack Matematiği ile Zihnini Keskinleştir, Oyunu Kazan!
Link: https://www.dapythonista.com/blackjack-matematigi/
Blackjack matematiği ile zekanı birleştir! Stratejik hamlelerle canlı masada kasadan daima daha üstün olma şansını yakala!
Online 21, yalnızca şansla kazanılmamaktadır. Şansın etkisi büyük olsa da ma
Link: https://www.dapythonista.com/blackjack-matematigi/
Blackjack matematiği ile zekanı birleştir! Stratejik hamlelerle canlı masada kasadan daima daha üstün olma şansını yakala!
Online 21, yalnızca şansla kazanılmamaktadır. Şansın etkisi büyük olsa da ma
Yüzünü Karartma BlackJack Bahis Sitelerinde Kazanan Hep Sensin!
Blackjack Matematiği ile Zihnini Keskinleştir, Oyunu Kazan! - Yüzünü Karartma BlackJack Bahis Sitelerinde Kazanan Hep Sensin!
Blackjack matematiği ile zekanı birleştir! Stratejik hamlelerle canlı masada kasadan daima daha üstün olma şansını yakala!
The Python Show: 51 - Dead Simple Python with Jason McDonald
Link: https://www.pythonshow.com/p/51-dead-simple-python-with-jason
In this episode, we have special guest, Jason McDonald, the author of Dead Simple Python from No Starch Press.We chatted about the following topics:Python packagesPackaging in generalPython concurrenc
Link: https://www.pythonshow.com/p/51-dead-simple-python-with-jason
In this episode, we have special guest, Jason McDonald, the author of Dead Simple Python from No Starch Press.We chatted about the following topics:Python packagesPackaging in generalPython concurrenc
Pythonshow
51 - Dead Simple Python with Jason McDonald
In this episode, we have special guest, Jason McDonald, the author of Dead Simple Python from No Starch Press.
Real Python: The Real Python Podcast – Episode #234: Building New Structures for Learning Python
Link: https://realpython.com/podcasts/rpp/234/
What are the new ways we can teach and share our knowledge about Python? How can we improve the structure of our current offerings and build new educational resources for our audience of Python learne
Link: https://realpython.com/podcasts/rpp/234/
What are the new ways we can teach and share our knowledge about Python? How can we improve the structure of our current offerings and build new educational resources for our audience of Python learne
Realpython
Episode #234: Building New Structures for Learning Python – The Real Python Podcast
What are the new ways we can teach and share our knowledge about Python? How can we improve the structure of our current offerings and build new educational resources for our audience of Python learners? This week on the show, Real Python core team members…
Python Morsels: The benefits of trailing commas
Link: https://www.pythonmorsels.com/trailing-commas-in-python/
Trailing commas make for easier code changes, shorter diffs, and fewer bugs.
Table of contents
What's a trailing comma?
Swapping items over multiple lines
Adding new items over multiple lines
The
Link: https://www.pythonmorsels.com/trailing-commas-in-python/
Trailing commas make for easier code changes, shorter diffs, and fewer bugs.
Table of contents
What's a trailing comma?
Swapping items over multiple lines
Adding new items over multiple lines
The
Pythonmorsels
The benefits of trailing commas
Trailing commas make for easier code changes, shorter diffs, and fewer bugs.
Python Anywhere: We're hiring!
Link: https://blog.pythonanywhere.com/218/
Are you so keen on PythonAnywhere that you’d like to work with us? We have an
open role, and the recruitment team at our parent company Anaconda
are looking for great people.
We’re looking for a seni
Link: https://blog.pythonanywhere.com/218/
Are you so keen on PythonAnywhere that you’d like to work with us? We have an
open role, and the recruitment team at our parent company Anaconda
are looking for great people.
We’re looking for a seni