Sunsetting Jazzband
https://fed.brid.gy/r/https://jazzband.co/news/2026/03/14/sunsetting-jazzband
Python Tip #73 (of 365):
Use self-concatenation to make horizontal rules
To print 80 '=', '-', or '*' characters, you can multiply a single-character string by the number 80:
>>> print("-" * 80)
--------------------------------------------------------------------------------
Very interesting summary of different approaches to improve #python / #pydata performance: https://cemrehancavdar.com/2026/03/10/optimization-ladder/
Season 1 Lesson 8 Part 7 - Your First Steps Check if a String Contains Only Letters in Python #dataengineer #pythoncode #pythonprogramming #learncoding #python #softwaredeveloper #codingtutorial #jupyternotebook #dataanalysis
Lyon: Créer un site web facilement avec MkDocs… c'est fini ?, Le jeudi 19 mars 2026 de 19h00 à 21h00. https://www.agendadulibre.org/events/34776 #python #siteWeb #creation
Quick Python debugging tip that saved me hours:
Instead of print() everywhere, use:
import sys
def debug(*args): print(*args, file=sys.stderr)
Why? stderr is unbuffered by default, so you see output immediately. And you can redirect stdout to a file while still seeing debug messages.
Small thing, huge difference when debugging streaming APIs.
Want to include a dynamic value in a multi-line #Python string? That would require both an f-string and a triple-quoted string.
Good news: Python supports this!
x = 10
y = 20
s = f"""{x} + {y} = {x+y}
{x} * {y} = {x*y}"""
print(s) # shows 10+20 = 30 and also 10*20 = 200

I would very much love to live in a world where all #Python / #Perl / #Shell code is replaced by #Rebol code. What a beautiful world that would be.
https://github.com/Oldes/Rebol3
#piday2026 Calcul de π avec de vrais grains de riz (les élèves adorent, même si j'ai du le faire le 13 puisque il' n'y a pas cours le samedi 😄) puis une simulation python Monte Carlo 😊
#iteachphysics #physics #python

#piday with #python and random numbers.
Just added async support to the #Python UR SDK along with other technical changes
Will not release yet though as there are breaking changes and #Uniswap works on the next version, so will try to include it as well
But feel free to clone the project and share your thoughts! :)
#Python #uniswap #web3 #programming #coding #ethereum
Made a little helper script for the @altstore dev community! :)
Automatically generates the assetURLs config for GitHub-Releases-hosted apps. No more copy-pasting dozens of URLs by hand :D
https://gist.github.com/partyknightsdev/a86643e06facfaad6f53c0df502dd6b9
#iOS #SideLoading #Python #AltStorePAL #AltStore