Bootcamp Python Análise de Dados gratuito: vagas abertas com projetos e IA
https://guiadeti.com.br/bootcamp-python-analise-dados-gratuito/
#analisededados #automacao #bootcamp #carreiratecnologia #dados #engenhariadedados #inteligenciaartificial #programacao #python #sql
https://guiadeti.com.br/bootcamp-python-analise-dados-gratuito/?fsp_sid=306
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
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...
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.
https://www.empiricapps.com/tappie/download
#homebrew #linux #macos #python #opensource #devtools #gui
Check Out TITAN…a Tool for Interpreting and Transforming Archival Nodes from Ultima 8!

“But there's another issue that often crops up when splitting text into lines: trailing newlines.”
Read more 👉 https://pym.dev/splitlines/
"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
https://blog.jetbrains.com/pycharm/2026/03/openai-acquires-astral-what-it-means-for-pycharm-users/
Rewriting a 20-year-old Python library https://lobste.rs/s/jbyzxt #python
https://www.b-list.org/weblog/2026/mar/23/20-year-library/
Feels like Python with braces, plus Rust style types built in.
Rewriting a 20-year-old Python library
https://fed.brid.gy/r/https://www.b-list.org/weblog/2026/mar/23/20-year-library/

New blog post: Rewriting a 20-year-old #Python library
https://www.b-list.org/weblog/2026/mar/23/20-year-library/
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: https://pym.dev/variables-are-pointers/