#Python Pro Tip 馃悕
If you use the uv package manager, don't forget to clean up every so often. You may end free up gigabytes of data on your hard drive!

Functional fast quicksort from
"Quick-Sort: A Pet Peeve", 2018, Arthur Nunes-Harwitt, Matt Gambogi, Travis Whitaker
https://gambogi.com/papers/QuickSortPetPeeve.pdf
https://dl.acm.org/doi/abs/10.1145/3159450.3159535
def quicksort(lst, a=()):
if not lst: return a
p, xs = lst
leq, gt = partition(p, xs)
return quicksort(leq, (p, quicksort(gt, a)))
1/2
Check out Positron鈥檚 Plots Pane!
Preview, resize, copy, and save your #Python and #RStats plots directly in your IDE. Never guess what your exported plot will look like ever again 馃ぉ
Learn more about Positron鈥檚 layout: https://positron.posit.co/layout.html#layout-customization #Positron
Python Bytes 443: Patching Multiprocessing
https://pythonbytes.fm/episodes/show/443/patching-multiprocessing w/ @mkennedy and @brianokken
#Python
- rumdl - markdown linting in Rust
- Coverage 7.10 and subprocess
- aioboto3
- Friends don't let friends create unnecessary Python classes
- PyPI phishing
Python performance myths and fairy tales
Link: https://lwn.net/SubscriberLink/1031707/73cb0cf917307a93/
Discussion: https://news.ycombinator.com/item?id=44809387
Acabo de terminar de revisar las 38 charlas que me han asignado para la PyConES de este a帽o.
Mis conclusiones son:
- Hay un mont贸n de charlas sobre IAs (para sorpresa nadie).
- Unas pocas escapan de las tendencias con el objetivo de explicar fundamentos: C贸mo hacer un API REST, c贸mo trabajar con Django, etc.
- Bastante m谩s de las que imaginaba giran en torno a la educaci贸n.
- FastAPI sigue estando de moda.
- Algunas sobre Django, pero mucho m谩s sobre Django REST Framework.
- Ninguna sobre Flask.
- Una solo sobre testing y seguridad.
- Y ni sobre arquitecturas.
No puedo decir cuales son mis favoritas para no influir en la decisi贸n del comit茅, pero me encantar铆an que fueran seleccionadas.
#pycones25 #python #django #fastapi
What鈥檚 getting in the way of maintaining and sharing your research software? 馃憖
At #SciPy2025 pyOpenSci hosted a Birds of a Feather (BoF) to ask that very question, and the community showed up with insight, vulnerability, and solutions.
From confusing packaging tools to cultural barriers in academia, we break down the biggest pain points and what we鈥檙e doing next.
馃憠 https://www.pyopensci.org/blog/pyopensci-bof-community-scipy-2025.html
#OpenScience #ResearchSoftware #Python #pyOpenSci
the guy in charge of random data base object names
https://programming.dev/post/35193435
Today's #Python article is on Debugging. I'm learning as I write so, have a heart :)
Post: https://www.spsanderson.com/steveondata/posts/2025-08-06/
#Python #Debugging #Blog #Technology #Learning

Faster #Python: Unlocking the Python Global Interpreter Lock | The PyCharm Blog https://blog.jetbrains.com/pycharm/2025/07/faster-python-unlocking-the-python-global-interpreter-lock/
#Python performance myths and fairy tales [LWN.net] https://lwn.net/SubscriberLink/1031707/73cb0cf917307a93/
Latest critical update to the #Python docs: https://github.com/python/cpython/pull/137430/files
(add "dunder" and "walrus" to the Glossary)