frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Alberta startup sells no-tech tractors for half price

https://wheelfront.com/this-alberta-startup-sells-no-tech-tractors-for-half-price/
437•Kaibeezy•1h ago•154 comments

Coding Models Are Doing Too Much

https://nrehiew.github.io/blog/minimal_editing/
48•pella•37m ago•17 comments

Qwen3.6-27B: Flagship-Level Coding in a 27B Dense Model

https://qwen.ai/blog?id=qwen3.6-27b
351•mfiguiere•5h ago•203 comments

Windows 9x Subsystem for Linux

https://social.hails.org/@hailey/116446826733136456
721•sohkamyung•8h ago•168 comments

5x5 Pixel font for tiny screens

https://maurycyz.com/projects/mcufont/
101•zdw•3d ago•27 comments

Martin Fowler: Technical, Cognitive, and Intent Debt

https://martinfowler.com/fragments/2026-04-14.html
64•theorchid•2h ago•12 comments

Our eighth generation TPUs: two chips for the agentic era

https://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu...
290•xnx•6h ago•145 comments

Parallel Agents in Zed

https://zed.dev/blog/parallel-agents
33•ajeetdsouza•50m ago•7 comments

Ultraviolet corona discharges on treetops

https://www.psu.edu/news/earth-and-mineral-sciences/story/treetops-glowing-during-storms-captured...
148•t-3•5h ago•40 comments

3.4M Solar Panels

https://tech.marksblogg.com/american-solar-farms-v2.html
231•marklit•6h ago•154 comments

Surveillance Pricing: Exploiting Information Asymmetries

https://lpeproject.org/blog/surveillance-pricing-exploiting-information-asymmetries/
18•cainxinth•1h ago•4 comments

Workspace Agents in ChatGPT

https://openai.com/index/introducing-workspace-agents-in-chatgpt/
14•mfiguiere•42m ago•2 comments

Bodega Cats of New York

https://bodegacatsofnewyork.com
70•zdw•4d ago•31 comments

Who Killed the Florida Orange?

https://slate.com/business/2026/04/florida-state-orange-food-houses-real-estate.html
47•danso•1d ago•23 comments

GitHub CLI now collects pseudoanonymous telemetry

https://cli.github.com/telemetry
313•ingve•6h ago•242 comments

OpenAI: Workspace Agents for Business

https://openai.com/business/workspace-agents/
7•tosh•25m ago•2 comments

Scoring Show HN submissions for AI design patterns

https://www.adriankrebs.ch/blog/design-slop/
220•hubraumhugo•3h ago•169 comments

Columnar Storage Is Normalization

https://buttondown.com/jaffray/archive/columnar-storage-is-normalization/
76•ibobev•5h ago•29 comments

Youth Suicides Declined After Creation of National Hotline

https://www.nytimes.com/2026/04/22/science/988-youth-suicides-decline.html
95•marojejian•2h ago•49 comments

Making RAM at Home [video]

https://www.youtube.com/watch?v=h6GWikWlAQA
553•kaipereira•1d ago•156 comments

How does GPS work?

https://perthirtysix.com/how-the-heck-does-gps-work
181•alfanick•9h ago•37 comments

XOR'ing a register with itself is the idiom for zeroing it out. Why not sub?

https://devblogs.microsoft.com/oldnewthing/20260421-00/?p=112247
163•ingve•11h ago•171 comments

Show HN: Broccoli, one shot coding agent on the cloud

https://github.com/besimple-oss/broccoli
16•yzhong94•2h ago•12 comments

Another Day Has Come

https://daringfireball.net/2026/04/another_day_has_come
138•ndr42•21h ago•118 comments

DuckDB 1.5.2 – SQL database that runs on laptop, server, in the browser

https://duckdb.org/2026/04/13/announcing-duckdb-152
88•janandonly•3h ago•25 comments

Anker made its own chip to bring AI to all its products

https://www.theverge.com/tech/916463/anker-thus-chip-announcement
26•Brajeshwar•1h ago•8 comments

Startups Brag They Spend More Money on AI Than Human Employees

https://www.404media.co/startups-brag-they-spend-more-money-on-ai-than-human-employees/
36•SLHamlet•1h ago•31 comments

Drunk post: Things I've learned as a senior engineer (2021)

https://luminousmen.substack.com/p/drunk-post-things-ive-learned-as
288•zdw•18h ago•209 comments

MuJoCo – Advanced Physics Simulation

https://github.com/google-deepmind/mujoco
97•modinfo•3d ago•21 comments

Prefill-as-a-Service:KVCache of Next-Generation Models Could Go Cross-Datacenter

https://arxiv.org/abs/2604.15039
42•matt_d•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•11mo ago

Comments

quentinp•11mo 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•11mo ago
Page didnt load for me.

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

Multiprocessing all the way!

emmelaich•11mo ago
(2021)

Good article!

punnerud•11mo 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•11mo 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•11mo ago
How does the GIL come into play here?
punnerud•11mo 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.