Install
PyCon and the Python Community
PyCon and the Python Community in Python: the news, the names and what changed.
- 15 Tracked terms
- Last 30 days Feed window
What this topic collects on
An article joins this feed when it matches these terms. Each one is also a search of its own.
Related topics
Latest in PyCon and the Python Community
What crt.sh's Error Pages Taught Me About Retry Logic
46+ min ago (136+ words) First problem: 404 doesn't mean "no results." Second problem: my retry budget wasn't big enough for a real outage. Third problem: a hung connection defeats retries entirely. Fourth problem, and the sneaky one: a field just disappeared from the response shape....
31 articles vanished from my site. No error, no log — one hardcoded.limit(80).
1+ hour, 19+ min ago (935+ words) Read on: the test that never failed because it proved 1 = 1 · 繁體中文版 I had not deleted a single article, and yet 31 of them were completely gone from the site. Not in the series cards, not reachable through the category filters, not…...
Plotting histograms in the terminal
1+ hour, 20+ min ago (883+ words) A simple C library for plotting histograms in the terminal. Tagged with coding, github, opensource, programming....
Bun has Elysia and Hono for APIs. What about fullstack apps?
1+ hour, 21+ min ago (863+ words) I have been using Bun since it first started getting attention, but I had never used it as a production runtime. Mostly scripts, small tools, and things that run on my own machine. One reason it never went further is…...
Sticky in process, gone on restart: auditing the state your CLI daemon keeps in memory
1+ hour, 50+ min ago (589+ words) A containment flag can be wired correctly, tested, documented, and still be a containment flag you do not have. The wiring is only half the story. The other half is where the baseline lives. Here is the whole audit, with…...
Rate Limiting: The Traffic Cop Your API Needs
1+ hour, 44+ min ago (317+ words) Your API can be perfectly designed and still fail when too many requests hit it at once. That’s where rate limiting comes in. Rate limiting controls how many requests a client can make to your API within a specific period....
What is Vectorization in Data Science? How it Speeds Up Statistical Computing
1+ day, 16+ hour ago (761+ words) Vectorization replaces manual, element-by-element loops with operations that run across entire arrays at once. The speed gain comes from compiled code, CPU features like SIMD, and better memory access, not from shorter syntax alone. The technique has limits: dependent calculations,…...
A one-number triage tool for C code (and a cheap feedback loop for LLM output)
2+ hour, 1+ min ago (215+ words) C gets hard to trust in three predictable ways: deep nesting, pointers to pointers, and a->b->c chains where nobody null-checks the middle pointer. So I wrote a tiny scorer that squashes that into one number per function: Each factor is…...
A library default cost me 43x throughput
2+ hour, 33+ min ago (697+ words) Every SFTP file transfer in Termphin ran at exactly 1.2 MB/s. Not roughly 1.2 on average: the same figure on every server, over every network, for every file, large or small. A number that stable is not a network. Networks vary. A…...
Hash the Prompt Before You Cross the Wire
2+ hour, 47+ min ago (1133+ words) Remote help is not free if the hop is slow. A prompt that never leaves disk cannot leak. The cheap path is a local cache with a measured fill. Most coding assistants resend the same context twice. The second trip…...