frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Learning Software Architecture

https://matklad.github.io/2026/05/12/software-architecture.html
49•surprisetalk•59m ago•0 comments

Postmortem: TanStack NPM supply-chain compromise

https://tanstack.com/blog/npm-supply-chain-compromise-postmortem
865•varunsharma07•13h ago•346 comments

Screenshots of Old Desktop OSes

http://www.typewritten.org/Media/
197•adunk•5h ago•61 comments

They Live (1988) inspired Adblocker

https://github.com/davmlaw/they_live_adblocker
250•tokenburner•9h ago•85 comments

If AI writes your code, why use Python?

https://medium.com/@NMitchem/if-ai-writes-your-code-why-use-python-bf8c4ba1a055
520•indigodaddy•13h ago•562 comments

Toxicity on Social Media – The Noisy Room

https://thenoisyroom.com
26•skm•2h ago•5 comments

Rtwatch: Watch videos with friends using WebRTC

https://github.com/pion/rtwatch
30•nateb2022•2d ago•2 comments

UCLA discovers first stroke rehabilitation drug to repair brain damage (2025)

https://stemcell.ucla.edu/news/ucla-discovers-first-stroke-rehabilitation-drug-repair-brain-damage
348•bookofjoe•16h ago•69 comments

Claude Platform on AWS

https://claude.com/blog/claude-platform-on-aws
146•matrixhelix•9h ago•66 comments

Extremely Low Frequencies

https://computer.rip/2026-05-09-extremely-low-frequencies.html
81•pinewurst•6h ago•2 comments

Google says criminal hackers used AI to find a major software flaw

https://www.nytimes.com/2026/05/11/us/politics/google-hackers-attack-ai.html
188•donohoe•21h ago•140 comments

Software Internals Book Club

https://eatonphil.com/bookclub.html
103•aragonite•8h ago•20 comments

I let AI build a tool to help me figure out what was waking me up at night

https://martin.sh/i-let-ai-build-a-tool-to-help-me-figure-out-what-was-waking-me-up-at-night/
185•showmypost•13h ago•200 comments

I hate soldering

https://user8.bearblog.dev/rant/
117•James72689•4d ago•103 comments

Remembering Planet Source Code: Sharing Code Before GitHub Made It Easy

https://www.pietschsoft.com/post/2026/05/05/remembering-planet-source-code-sharing-code-before-gi...
15•pabs3•3d ago•1 comments

Nullsoft, 1997-2004 (2004)

https://slate.com/technology/2004/11/the-death-of-the-last-maverick-tech-company.html
284•downbad_•4d ago•81 comments

Boriel BASIC

https://zxbasic.readthedocs.io/en/docs/
38•AlexeyBrin•2d ago•10 comments

HDMI 2.1 Display Stream Compression (DSC) Ready for Amdgpu Linux Driver

https://www.phoronix.com/news/HDMI-2.1-DSC-AMDGPU-FRL
14•WithinReason•1h ago•0 comments

Show HN: A modern Music Player Daemon based on Rockbox firmware

https://github.com/tsirysndr/rockbox-zig
85•tsiry•2d ago•16 comments

Library for fast mapping of Java records to native memory

https://github.com/mamba-studio/TypedMemory
146•joe_mwangi•14h ago•33 comments

Interaction Models

https://thinkingmachines.ai/blog/interaction-models/
223•smhx•13h ago•26 comments

GitLab announces workforce reduction and end of their CREDIT values

https://about.gitlab.com/blog/gitlab-act-2/
530•AnonGitLabEmpl•13h ago•512 comments

VGA Memory Access Is Complicated

https://www.os2museum.com/wp/learn-something-old-every-day-part-xxi-vga-memory-access-is-complica...
60•ingve•2d ago•6 comments

Show HN: TikTok but for scientific papers

https://andreaturchet.github.io/website/index.html
129•ciwrl•18h ago•61 comments

Music has scales / raagas. What about storytelling in movies and prestige shows?

https://arc.quanten.co/archetype
4•phaedrus044•2h ago•1 comments

Unitree GD01: China's $537k rideable transformer robot is now in production

https://gagadget.com/en/709729-unitree-gd01-chinas-537k-rideable-transformer-robot-is-now-in-prod...
9•rguiscard•40m ago•0 comments

When semiconductor materials misbehave

https://semiengineering.com/when-semiconductor-materials-misbehave/
15•PaulHoule•3d ago•2 comments

Interfaze: A new model architecture built for high accuracy at scale

https://interfaze.ai/blog/interfaze-a-new-model-architecture-built-for-high-accuracy-at-scale
146•yoeven•18h ago•35 comments

A lost ancient script reveals how writing as we know it began

https://www.newscientist.com/article/2524042-a-lost-ancient-script-reveals-how-writing-as-we-know...
73•emot•4d ago•46 comments

Words Fail (2020)

https://carcinisation.com/2020/06/26/words-fail/
3•surprisetalk•3d ago•1 comments
Open in hackernews

How async/await works in Python (2021)

https://tenthousandmeters.com/blog/python-behind-the-scenes-12-how-asyncawait-works-in-python/
61•sebg•1y ago

Comments

quentinp•1y ago
While it stays at the Python level, https://github.com/AndreLouisCaron/a-tale-of-event-loops really helped me to understand how asyncio and Trio are implemented. I had no idea how sleeps worked before reading that post.
incomingpain•1y ago
Page didnt load for me.

https://realpython.com/async-io-python/

Multiprocessing all the way!

emmelaich•1y ago
(2021)

Good article!

punnerud•1y ago
A more simplified version:

Synchronous code is like a single-lane road where cars (tasks) must travel one after another in perfect sequence. If one car stops for gas (waiting for I/O), every car behind it must stop too. While orderly and predictable, this creates massive traffic jams as tasks wait unnecessarily for others to complete before they can proceed.

Pure asynchronous code (with callbacks) is like dispatching multiple cars onto independent routes with no coordination. Cars move freely without waiting for each other, but they arrive at unpredictable times and following their progress becomes chaotic. It's efficient but creates a complex tangle of paths that becomes hard to maintain.

Async/await combines the best of both approaches with a multi-lane highway system. Cars follow clear, synchronous-looking routes (making code readable), but only wait at strategic "await" exit ramps when truly necessary. When a car needs data, it signals with "await", pulls off the highway temporarily, and other cars continue flowing past. Once its operation completes, it merges back into traffic and continues. This gives you the logical simplicity of synchronous code with the performance benefits of asynchronous execution - cars only wait at crossroads when they must, maximizing throughput while maintaining order.

The genius of async/await is that it lets developers write code that looks sequential while the runtime handles all the complex traffic management under the hood.

explodes•1y ago
Excellent write up. I appreciate the level of details here showing the history from the days of old, before async/await were even keywords.
bilsbie•1y ago
How does the GIL come into play here?
punnerud•1y ago
GIL is like a "red-cap" on the head for the CPU-core running the task, so you would not be able to run true Async without GIL. Have to hand the "red-cap" back, for the next task.

Instead of using a global lock ("red-cap"), Python objects have introduced a specialized reference counting system that distinguishes between "local" references (owned by a single thread) and "shared" references (accessed by multiple threads).

In that way enabling to remove GIL in the long run, now starting with making it optional.