Only 3 more days before my latest #Python book Kickstarter ends!
Learn all about type hints and type checkers for Python in my newest book.
If we hit my stretch goal, I will make signed paperbacks an option too!
ruff, uv, pydantic-core, polars, tiktoken — all Rust under the hood.
The #Python ecosystem reaches for Rust when performance matters.
Short reminder that the Statistics Globe Hub starts tomorrow!
The lower rate of $13 per month is still available until the official start tomorrow. Join now to secure this price before it increases to $15 per month.
More info: https://statisticsglobe.com/hub
#statistics #datascience #ai #rstats #python

You can help shape EuroPython 2026's programme! 🗳️
Vote if you:
✅ Registered for EuroPython 2022–2025
✅ Submitted a 2026 proposal
Why vote?
🚀 Help build a programme you’ll love
🚀 See what goes into top Python talks
🚀 Get a cute voting companion to share!
Vote now: https://europython.eu/voting
Deadline: March 5th!
#europython #conference #europython2026 #python #opensource #programme

I now hunt the great hairy mammoth. Learn to enchant a great snake to send messages in its realm: https://cromwell-intl.com/open-source/python-social-media-automation/?s=mc #OpenSource #Python #TwitterMigration

🐧 7 Hot Free and Open Source Application Servers for Python
An application server is software which provides the business logic for an application program. Here's our recommended servers for Python. The post 7 Hot Free and Open Source Application Servers fo...
📰 Source: LinuxLinks
🔗 Link: https://www.linuxlinks.com/free-open-source-python-application-servers/
Pandas на Python: От чтения CSV до сложной аналитики за 1 статью
Сколько раз вы пытались открыть в Excel файл на пару миллионов строк и смотрели на зависший белый экран под звук взлетающего кулера? А сколько раз писали трехэтажные циклы for в чистом Python, чтобы просто сгруппировать данные и посчитать среднее? Pandas — это Excel на максималках и швейцарский нож любого разработчика и аналитика. В этой статье я собрал абсолютную выжимку: 10 главных шагов для работы с таблицами. Разберем вечную путаницу между loc и iloc, правильную очистку от пропусков, группировки и джойны (merge).
https://habr.com/ru/articles/1005114/
#python #python3 #python_для_начинающих #pandas #pandas_dataframe #pandas_merge
Cracking the Python Monorepo
https://gafni.dev/blog/cracking-the-python-monorepo/
How to Run Self-Hosted Link-in-Bio Tool with #LinkStack on #AlmaLinux #VPS
This article provides a guide for how to run self-hosted Link-in-Bio tool with LinkStack on AlmaLinux VPS.
🛠️ How to Run Self-Hosted Link-in-Bio Tool with LinkStack on AlmaLinux VPS
This guide walks you through installing and running LinkStack, a free and open-source alternative to Linktree, on an ...
Continued 👉 https://blog.radwebhosting.com/how-to-run-self-hosted-link-in-bio-tool-with-linkstack-on-almalinux-vps/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.social #opensource #composr #selfhosted #laravel #selfhosting #python #letsencrypt

Python Tip: Multiple Assignment
# Swap without temp variable
a, b = b, a
# Multiple returns
def min_max(lst):
return min(lst), max(lst)
lo, hi = min_max([3,1,4,1,5])
Python's tuple packing/unpacking makes swaps and multiple returns elegant.
https://raccoonette.gumroad.com/l/Python-for-Beginners-From-Zero-to-Your-First-Projects
#Python #CodingTips #Programming
Python Tip: itertools.chain()
from itertools import chain
lists = [[1,2], [3,4], [5,6]]
flat = list(chain.from_iterable(lists))
# [1, 2, 3, 4, 5, 6]
chain.from_iterable() flattens nested iterables without creating intermediate lists....
https://raccoonette.gumroad.com/l/Python-for-Beginners-From-Zero-to-Your-First-Projects
#Python #CodingTips #Programming
Oof, I just realized that I haven't been taking notes about any of the Programming stuff that I learned. 😬
I'll finish this Introduction to Programming and cycle back to the beginning in order to write notes about it (and actually retain information).
It's a happy accident as I'll retain more of the lesson that way.