Anarcat: A slow blogging year
Link: https://anarc.at/blog/2025-02-09-one-failed-year/
Well, 2024 will be remembered, won't it? I guess 2025 already wants to
make its mark too, but let's not worry about that right now, and
instead let's talk about me.
A little over a year ago, I was glo
Link: https://anarc.at/blog/2025-02-09-one-failed-year/
Well, 2024 will be remembered, won't it? I guess 2025 already wants to
make its mark too, but let's not worry about that right now, and
instead let's talk about me.
A little over a year ago, I was glo
Talk Python to Me: #493: Quarto: Open-source technical publishing
Link: https://talkpython.fm/episodes/show/493/quarto-open-source-technical-publishing
In this episode, I'm joined by JJ Allaire, founder and executive chairman at Posit, and Carlos Scheidegger, a software engineer at Posit, to explore Quarto, an open-source tool revolutionizing technic
Link: https://talkpython.fm/episodes/show/493/quarto-open-source-technical-publishing
In this episode, I'm joined by JJ Allaire, founder and executive chairman at Posit, and Carlos Scheidegger, a software engineer at Posit, to explore Quarto, an open-source tool revolutionizing technic
talkpython.fm
Quarto: Open-source technical publishing
In this episode, I'm joined by JJ Allaire, founder and executive chairman at Posit, and Carlos Scheidegger, a software engineer at Posit, to explore Quarto, an open-source tool revolutionizing technical publishing. We discuss how Quarto empowers users to…
Real Python: How to Join Strings in Python
Link: https://realpython.com/python-join-string/
Python’s built-in string method .join() lets you combine string elements from an iterable into a single string, using a separator that you specify. You call .join() on the separator, passing the itera
Link: https://realpython.com/python-join-string/
Python’s built-in string method .join() lets you combine string elements from an iterable into a single string, using a separator that you specify. You call .join() on the separator, passing the itera
Realpython
How to Join Strings in Python – Real Python
In this tutorial, you'll learn how to use Python's built-in .join() method to combine string elements from an iterable into a single string with a specified separator. You'll also learn about common pitfalls, and how CPython makes .join() work efficiently.
Python Morsels: Newlines and escape sequences in Python
Link: https://www.pythonmorsels.com/newlines-and-escape-sequences/
Python allows us to represent newlines in strings using the \n "escape sequence" and Python uses line ending normalization when reading and writing with files.
Table of contents
Newline characters
Link: https://www.pythonmorsels.com/newlines-and-escape-sequences/
Python allows us to represent newlines in strings using the \n "escape sequence" and Python uses line ending normalization when reading and writing with files.
Table of contents
Newline characters
Pythonmorsels
Newlines and escape sequences in Python
Python allows us to represent newlines in strings using the \n "escape sequence" and Python uses line ending normalization when reading and writing with files.
Quansight Labs Blog: Two years of contributions to conda-forge: work done during our CZI EOSS 5 grant
Link: https://labs.quansight.org/blog/czi-eoss-5-conda-forge
In 2022 we were awarded a CZI EOSS grant for conda-forge. The proposal, co-submitted by Quansight Labs and QuantStack, targeted three areas: maintaining and improving conda-forge's infrastructure, cre
Link: https://labs.quansight.org/blog/czi-eoss-5-conda-forge
In 2022 we were awarded a CZI EOSS grant for conda-forge. The proposal, co-submitted by Quansight Labs and QuantStack, targeted three areas: maintaining and improving conda-forge's infrastructure, cre
labs.quansight.org
Two years of contributions to conda-forge: work done during our CZI EOSS 5 grant
In 2022 we were awarded a CZI EOSS grant for conda-forge. The proposal, co-submitted by Quansight Labs and QuantStack, targeted three areas: maintaining and improving conda-forge's infrastructure, creating a new maintainer's dashboard, and implementing OCI…
Django Weblog: DSF member of the month - Lily Foote
Link: https://www.djangoproject.com/weblog/2025/feb/10/dsf-member-of-the-month-lily-foote/
For February 2025, we welcome Lily Foote (@lilyf) as our DSF member of the month! ⭐
Lily Foote is a contributor to Django core for many years, especially on the ORM. She is currently a member of the D
Link: https://www.djangoproject.com/weblog/2025/feb/10/dsf-member-of-the-month-lily-foote/
For February 2025, we welcome Lily Foote (@lilyf) as our DSF member of the month! ⭐
Lily Foote is a contributor to Django core for many years, especially on the ORM. She is currently a member of the D
Django Project
DSF member of the month - Lily Foote
Posted by Sarah Abderemane on Feb. 10, 2025
Kushal Das: Using openpgp-card-tool-git with git
Link: https://kushaldas.in/posts/using-openpgp-card-tool-git-with-git.html
One of the power of Unix systems comes from the various small tools and how
they work together. One such new tool I am using for some time is for git
signing & verification using OpenPGP and my Yubik
Link: https://kushaldas.in/posts/using-openpgp-card-tool-git-with-git.html
One of the power of Unix systems comes from the various small tools and how
they work together. One such new tool I am using for some time is for git
signing & verification using OpenPGP and my Yubik
Quansight Labs Blog: PEP 517 build system popularity
Link: https://labs.quansight.org/blog/pep-517-build-system-popularity
Analysis of PEP 517 build backends used in 8000 top PyPI packages
Link: https://labs.quansight.org/blog/pep-517-build-system-popularity
Analysis of PEP 517 build backends used in 8000 top PyPI packages
labs.quansight.org
PEP 517 build system popularity
Analysis of PEP 517 build backends used in 8000 top PyPI packages
Seth Michael Larson: Building software for connection (#2: Consensus)
Link: https://sethmlarson.dev/building-software-for-connection-consensus?utm_campaign=rss
This is the second article in a series about “software for connection”.
In the previous article we concluded that a persistent always-on internet
connection isn't required for software to elicit feeli
Link: https://sethmlarson.dev/building-software-for-connection-consensus?utm_campaign=rss
This is the second article in a series about “software for connection”.
In the previous article we concluded that a persistent always-on internet
connection isn't required for software to elicit feeli
sethmlarson.dev
Building software for connection (#2: Consensus)
This is the second article in a series about “software for connection”.
In the previous article we concluded that a persistent always-on internet
connection isn't required for software to elicit f...
In the previous article we concluded that a persistent always-on internet
connection isn't required for software to elicit f...
Real Python: Building a Python Command-Line To-Do App With Typer
Link: https://realpython.com/courses/build-command-line-todo-app-typer/
Building an application to manage your to-do list can be an interesting project when you’re learning a new programming language or trying to take your skills to the next level. In this video course, y
Link: https://realpython.com/courses/build-command-line-todo-app-typer/
Building an application to manage your to-do list can be an interesting project when you’re learning a new programming language or trying to take your skills to the next level. In this video course, y
Realpython
Building a Python Command-Line To-Do App With Typer – Real Python
In this step-by-step video course, you'll create a to-do application for your command line using Python and Typer. While you build this app, you'll learn the basics of Typer, a modern and versatile library for building command-line interfaces (CLI).
PyCoder’s Weekly: Issue #668: NumPy, Compiling Python 1.0, BytesIO, and More (Feb. 11, 2025)
Link: https://pycoders.com/issues/668
#668 – FEBRUARY 11, 2025 View in Browser » NumPy Techniques and Practical Examples In this video course, you’ll learn how to use NumPy by exploring several interesting examples. You’ll read data
Link: https://pycoders.com/issues/668
#668 – FEBRUARY 11, 2025 View in Browser » NumPy Techniques and Practical Examples In this video course, you’ll learn how to use NumPy by exploring several interesting examples. You’ll read data
Pycoders
PyCoder’s Weekly | Issue #668
Issue #668 of the PyCoder’s Weekly newsletter, published Feb. 11, 2025.
meejah.ca: Terminal Visualizer
Link: https://meejah.ca/blog/terminal-visualizer
Showing numbers is fun and hard
Link: https://meejah.ca/blog/terminal-visualizer
Showing numbers is fun and hard
Python Insider: Python 3.14.0 alpha 5 is out
Link: https://pythoninsider.blogspot.com/2025/02/python-3140-alpha-5-is-out.html
Here comes the antepenultimate alpha.
https://www.python.org/downloads/release/python-3140a5/
This is an early developer preview of Python
3.14
Major
new features of the 3.14 series, compared to 3.13
Link: https://pythoninsider.blogspot.com/2025/02/python-3140-alpha-5-is-out.html
Here comes the antepenultimate alpha.
https://www.python.org/downloads/release/python-3140a5/
This is an early developer preview of Python
3.14
Major
new features of the 3.14 series, compared to 3.13
Blogspot
Python Insider: Python 3.14.0 alpha 5 is out
Kushal Das: pass using stateless OpenPGP command line interface
Link: https://kushaldas.in/posts/pass-using-stateless-openpgp-command-line-interface.html
Yesterday I wrote about how
I am using a different tool for git signing and verification. Next, I
replaced my pass usage. I have a small
patch to use
stateless OpenPGP command line interface (SOP). I
Link: https://kushaldas.in/posts/pass-using-stateless-openpgp-command-line-interface.html
Yesterday I wrote about how
I am using a different tool for git signing and verification. Next, I
replaced my pass usage. I have a small
patch to use
stateless OpenPGP command line interface (SOP). I
Zato Blog: Modern REST API Tutorial in Python
Link: https://zato.io/en/blog/modern-rest-api-tutorial-in-python.html
Modern REST API Tutorial in Python
2025-02-12, by Dariusz Suchojad
Great APIs don't win theoretical arguments - they just prefer to work reliably and to make developers' lives easier.
Here's a
Link: https://zato.io/en/blog/modern-rest-api-tutorial-in-python.html
Modern REST API Tutorial in Python
2025-02-12, by Dariusz Suchojad
Great APIs don't win theoretical arguments - they just prefer to work reliably and to make developers' lives easier.
Here's a
Real Python: Quiz: Python Keywords: An Introduction
Link: https://realpython.com/quizzes/python-keywords/
In this quiz, you’ll test your understanding of Python Keywords.
Python keywords are reserved words with specific functions and restrictions in the language. These keywords are always available in Pyt
Link: https://realpython.com/quizzes/python-keywords/
In this quiz, you’ll test your understanding of Python Keywords.
Python keywords are reserved words with specific functions and restrictions in the language. These keywords are always available in Pyt
Realpython
Python Keywords: An Introduction Quiz – Real Python
In this quiz, you'll test your understanding of Python keywords and soft keywords. These reserved words have specific functions and restrictions in Python, and understanding how to use them correctly is fundamental for building Python programs.
EuroPython Society: Changes in the Grants Programme for 2025
Link: https://www.europython-society.org/changes-in-the-grants-programme-for-2025/
TL;DR:We are making small changes to the Grant ProgrammeWe are increasing transparency and reducing ambiguity in the guidelines.We would like to support more events with our limited budgetWe’ve introd
Link: https://www.europython-society.org/changes-in-the-grants-programme-for-2025/
TL;DR:We are making small changes to the Grant ProgrammeWe are increasing transparency and reducing ambiguity in the guidelines.We would like to support more events with our limited budgetWe’ve introd
EuroPython Society
Changes in the Grants Programme for 2025
TL;DR: We are making small changes to the Grant ProgrammeWe are increasing transparency and reducing ambiguity in the guidelines.We would like to support more events with our limited budgetWe’ve introduced caps for events in order to make sure all grants…
Python Morsels: Avoid over-commenting in Python
Link: https://www.pythonmorsels.com/avoid-comments/
When do you need a comment in Python and when should you consider an alternative to commenting?
Table of contents
Documenting instead of commenting
Non-obvious variables and values
Unnamed code blo
Link: https://www.pythonmorsels.com/avoid-comments/
When do you need a comment in Python and when should you consider an alternative to commenting?
Table of contents
Documenting instead of commenting
Non-obvious variables and values
Unnamed code blo
Pythonmorsels
Avoid over-commenting in Python
When do you need a comment in Python and when should you consider an alternative to commenting?
Real Python: Python Keywords: An Introduction
Link: https://realpython.com/python-keywords/
Python keywords are reserved words with specific functions and restrictions in the language. Currently, Python has thirty-five keywords and four soft keywords. These keywords are always available in P
Link: https://realpython.com/python-keywords/
Python keywords are reserved words with specific functions and restrictions in the language. Currently, Python has thirty-five keywords and four soft keywords. These keywords are always available in P
Realpython
Python Keywords: An Introduction – Real Python
Python keywords are the fundamental building blocks of any Python program. In this tutorial, you'll learn the basic syntax and usage of each of Python's thirty-five keywords and four soft keywords so you can write more efficient and readable code.
EuroPython Society: Board Report for January 2025
Link: https://www.europython-society.org/board-report-for-january-2025/
The top priority for the board in January was finishing the hiring of our event manager. We’re super excited to introduce Anežka Müller! Anežka is a freelance event manager and a longtime member of th
Link: https://www.europython-society.org/board-report-for-january-2025/
The top priority for the board in January was finishing the hiring of our event manager. We’re super excited to introduce Anežka Müller! Anežka is a freelance event manager and a longtime member of th
EuroPython Society
Board Report for January 2025
The top priority for the board in January was finishing the hiring of our event manager. We’re super excited to introduce Anežka Müller! Anežka is a freelance event manager and a longtime member of the Czech Python community. She’s a member of the Pyvec board…