python

Back Open Paginator
23.03.2026 21:43
guiadeti (@guiadeti@flipboard.social)

Bootcamp Python Análise de Dados gratuito: vagas abertas com projetos e IA

guiadeti.com.br/bootcamp-pytho

#analisededados #automacao #bootcamp #carreiratecnologia #dados #engenhariadedados #inteligenciaartificial #programacao #python #sql
guiadeti.com.br/bootcamp-pytho




Show Original Post


23.03.2026 21:41
tartley (@tartley@fosstodon.org)

Going to #PyCon US? I did my usual trick of booking a cool Airbnb close to the venue, but this year my foreign friends are unenthused by the prospect of visiting the US, and other friends might have to drop out, so I'm going to have some free spots. LMK if you might want to join our cool shared house that will be SUBSTANTIALLY cheaper than conference hotels, and also more optimized for hilarity. #Python




Show Original Post


23.03.2026 21:20
davep (@davep@fosstodon.org)

So @andyc asked about finer control for code blocks in BlogMore and now I'm sat on my sofa amusing myself by toggling contrasting themes...

#python #ssg





Show Original Post


23.03.2026 21:18
mburlac (@mburlac@mastodon.social)

I just released Tappie-py — a cross-platform GUI for Homebrew that runs on both macOS and Linux.
Built with Python. Browse, search, install/uninstall packages, visualize dependencies — all without touching the terminal.
Available as .dmg (macOS), .AppImage, and .deb (Linux).
Free to download.
empiricapps.com/tappie/download




Show Original Post


23.03.2026 20:18
r (@r@fed.brid.gy)

Check Out TITAN…a Tool for Interpreting and Transforming Archival Nodes from Ultima 8!

fed.brid.gy/r/https://ultimaco





Show Original Post


23.03.2026 20:18
treyhunner (@treyhunner@mastodon.social)

“But there's another issue that often crops up when splitting text into lines: trailing newlines.”

Read more 👉 pym.dev/splitlines/




Show Original Post


23.03.2026 20:02
DataCartographer (@DataCartographer@mastodon.social)

"We hope this acquisition amplifies that work, not diminishes it."

Not exactly a ringing endorsement of OpenAI's acquisition of Astral in Jetbrains ' blog entry.

Personally, I am deeply disappointed by this acquisition. I find it hard to see this benefiting the Python community that has come to love uv, ruff and ty.

OpenAI Acquires Astral: What It Means for PyCharm Users
blog.jetbrains.com/pycharm/202




Show Original Post


23.03.2026 20:00
lobsters (@lobsters@mastodon.social)

Rewriting a 20-year-old Python library lobste.rs/s/jbyzxt
b-list.org/weblog/2026/mar/23/




Show Original Post


23.03.2026 19:46
stephenblum (@stephenblum@mastodon.social)

Feels like Python with braces, plus Rust style types built in.





Show Original Post


23.03.2026 19:43
r (@r@fed.brid.gy)

Rewriting a 20-year-old Python library

fed.brid.gy/r/https://www.b-li





Show Original Post


23.03.2026 19:42
ubernostrum (@ubernostrum@infosec.exchange)

New blog post: Rewriting a 20-year-old #Python library

b-list.org/weblog/2026/mar/23/




Show Original Post


23.03.2026 19:21
treyhunner (@treyhunner@mastodon.social)

Python Tip #82 (of 365):

Don't assign 2 variables to the same mutable object.

An assignment of one variable to another ("x = y") is usually only a good idea for IMMUTABLE VALUES.

Pointing two names to the same object leads to confusion because mutating the object will "change" the value of both variables.

>>> x = [2, 1, 3, 4]
>>> x = y
>>> y.append(7)
>>> x
[2, 1, 3, 4, 7]

This happens because variables are pointers in Python: pym.dev/variables-are-pointers/

#Python #DailyPythonTip




Show Original Post


1 ...273 274 275 276 277 278 279 280 281 282 283 ...1597
UP