python

Back Open Paginator
06.08.2025 15:13
driscollis (@driscollis@mastodon.social)

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!





Show Original Post


06.08.2025 15:07
carapace (@carapace@mastodon.social)

Functional fast quicksort from
"Quick-Sort: A Pet Peeve", 2018, Arthur Nunes-Harwitt, Matt Gambogi, Travis Whitaker
gambogi.com/papers/QuickSortPe
dl.acm.org/doi/abs/10.1145/315

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




Show Original Post


06.08.2025 14:50
Posit (@Posit@fosstodon.org)

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: positron.posit.co/layout.html# #Positron





Show Original Post


06.08.2025 14:36
pythonbytes (@pythonbytes@fosstodon.org)

Python Bytes 443: Patching Multiprocessing
pythonbytes.fm/episodes/show/4 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




Show Original Post


06.08.2025 14:15
hn50 (@hn50@social.lansky.name)

Python performance myths and fairy tales

Link: lwn.net/SubscriberLink/1031707
Discussion: news.ycombinator.com/item?id=4

#python




Show Original Post


06.08.2025 14:09
andros (@andros@activity.andros.dev)

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




Show Original Post


06.08.2025 14:03
pyOpenSci (@pyOpenSci@fosstodon.org)

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.

馃憠 pyopensci.org/blog/pyopensci-b

#OpenScience #ResearchSoftware #Python #pyOpenSci




Show Original Post


06.08.2025 14:01
post (@post@programming.dev)

the guy in charge of random data base object names

programming.dev/post/35193435




Show Original Post


06.08.2025 13:57
stevensanderson (@stevensanderson@mstdn.social)

Today's #Python article is on Debugging. I'm learning as I write so, have a heart :)

Post: spsanderson.com/steveondata/po

#Python #Debugging #Blog #Technology #Learning





Show Original Post


06.08.2025 13:50
rbanffy (@rbanffy@mastodon.social)

Faster : Unlocking the Python Global Interpreter Lock | The PyCharm Blog blog.jetbrains.com/pycharm/202




Show Original Post


06.08.2025 13:45
rbanffy (@rbanffy@mastodon.social)

performance myths and fairy tales [LWN.net] lwn.net/SubscriberLink/1031707




Show Original Post


06.08.2025 13:14
nedbat (@nedbat@hachyderm.io)

Latest critical update to the #Python docs: github.com/python/cpython/pull

(add "dunder" and "walrus" to the Glossary)




Show Original Post


1 ...1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 ...1546
UP