Ok, this is REALLY your LAST CHANCE! 😬
#PyTexasConference2026 #CFP is closing at 5p CST (2 hours from now)
We are looking for a diverse group of talk proposals from the #Python community.
As of the start of the week, we had <6% of submissions from women.
We would 💛 to see that grow!
Learn how to submit your proposal here → https://www.pytexas.org/2026/

POSSE for Hugo: Part Two - The Product
Part two of building a POSSE script for Hugo is live! 🚀 I’m sharing the Python code and workflow I use to syndicate my Hugo blog. #Hugo #POSSE #Python #Automation
https://www.kevinrkuhl.com/blog/2025/12/posse-for-hugo-pt2/
🚀 Hey hey hey, Onzr 0.6.0 has been released! 🔥
💜 It introduces support for (public) playlists! 💜
https://github.com/jmaupetit/onzr/releases/tag/v0.6.0
Today I fed 24 years of my blog posts into my Markov gibberish generator and asked it to speak for me. Here's the result. Apparently, this is how I would sound if I ever took up speaking gibberish!
The gibberish generator is available here: https://github.com/susam/mvs
#python #programming #algorithms

📝 Advent of Code 2025 Day 10: Factory
This puzzle convinced me for a while that I'd need some linear algebra solver to tackle it. But luckily, I got wind of another approach from a helpful Reddit post...
#python #AdventOfCode2025 #programming #coding
Did not have "geocities link in CPython source" on my Friday bingo card, but here we are
https://github.com/python/cpython/blob/1eddef81930ad9f7e2f411f153c35af16a6edf14/Lib/platform.py#L796
Finally finished up my comparison: two #Python implementations of #AdventOfCode Day 1 (both parts). One done the right way. The other done the right way. https://github.com/wolf/advent-of-code-2025
A minimum viable Markov gibberish generator in 32 lines of Python - (susam)
https://mastodon.social/@susam/115704263640752349
#Python #programming #markovchain
Spatial Data Management with DuckDB: From SQL Basics to Advanced Geospatial Analytics https://leanpub.com/duckdb by Qiusheng Wu is the featured book on the Leanpub homepage! https://leanpub.com #Python
Unlock the power of DuckDB for modern geospatial analytics. This hands-on guide helps GIS professionals master efficient spatial data management, transforming massive real-world datasets into powerful insights using SQL, Python, and DuckDB’s spatial extension.
Find it on Leanpub!

POSSE for Hugo: Part One - Theory
I just completed a fun new project: A Python script to auto-syndicate my blog to the Fediverse and Bluesky. 🚀 This post breaks down the theory and the decisions. Why do manual cross-posting when you can script it? #Python #Automation #Hugo
https://www.kevinrkuhl.com/blog/2025/12/posse-for-hugo-pt1/
My Python setup, December 2025 https://lobste.rs/s/oo7ovk #python
https://chrisamico.com/blog/2025-12-07/uv-new-python-setup/
🌕 40億個if語句的奇幻漂流:一位程式設計師的效能挑戰
➤ 從if語句到機器碼:一位工程師的效能極限探索
✤ https://andreasjhkarlsson.github.io//jekyll/update/2023/12/27/4-billion-if-statements.html
一位新進程式設計師以直觀但效率低下的if語句判斷奇偶數,引發了關於演算法的討論。作者透過C語言實現了這個簡單的邏輯,並進一步利用Python腳本自動生成大量if語句,以應對8位元和16位元的整數。然而,當擴展到32位元時,編譯器限制和檔案格式大小成為瓶頸。最終,作者轉向x86-64組合語言,並藉助AI工具快速生成了可執行的機器碼,成功繞過了編譯器和檔案格式的限制,實現了對32位元整數的奇偶判斷。
+ 這篇文章實在太有趣了!用40億個if語句來判斷奇偶數,真是前所未聞的創意。雖然聽起來很荒謬,但作者解決問題的過程卻展現了演算法設計和效能優化中的時間記憶體權衡,以及如何突破工具限制的思維。
+ 看到最後竟然是用
#程式設計 #效能優化 #時間記憶體權衡 #C語言 #Python #Assembly