frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The cult of vibe coding is insane

https://bramcohen.com/p/the-cult-of-vibe-coding-is-insane
259•drob518•1h ago•157 comments

Battle for Wesnoth: open-source, turn-based strategy game

https://www.wesnoth.org
218•akyuu•2h ago•54 comments

Launch HN: Freestyle: Sandboxes for AI Coding Agents

https://www.freestyle.sh
120•benswerd•3h ago•65 comments

A cryptography engineer's perspective on quantum computing timelines

https://words.filippo.io/crqc-timeline/
172•thadt•4h ago•72 comments

Germany Doxes "UNKN," Head of RU Ransomware Gangs REvil, GandCrab

https://krebsonsecurity.com/2026/04/germany-doxes-unkn-head-of-ru-ransomware-gangs-revil-gandcrab/
210•Bender•6h ago•101 comments

Book review: There is no antimemetics division

https://www.stephendiehl.com/posts/no_antimimetics/
149•ibobev•6h ago•95 comments

Show HN: GovAuctions lets you browse government auctions at once

https://www.govauctions.app/
80•player_piano•3h ago•35 comments

Sky – an Elm-inspired language that compiles to Go

https://github.com/anzellai/sky
82•whalesalad•4h ago•11 comments

Claude Code is unusable for complex engineering tasks with the Feb updates

https://github.com/anthropics/claude-code/issues/42796
493•StanAngeloff•6h ago•335 comments

Eighteen Years of Greytrapping – Is the Weirdness Finally Paying Off?

https://nxdomain.no/~peter/eighteen_years_of_greytrapping.html
23•jruohonen•2d ago•0 comments

Show HN: Ghost Pepper – 100% local hold-to-talk speech-to-text for macOS

https://github.com/matthartman/ghost-pepper
4•MattHart88•9m ago•0 comments

Agent Reading Test

https://agentreadingtest.com
16•kaycebasques•1h ago•2 comments

Adobe modifies hosts file to detect whether Creative Cloud is installed

https://www.osnews.com/story/144737/adobe-secretly-modifies-your-hosts-file-for-the-stupidest-rea...
120•rglullis•2h ago•57 comments

What being ripped off taught me

https://belief.horse/notes/what-being-ripped-off-taught-me/
250•doctorhandshake•7h ago•148 comments

The Last Quiet Thing

https://www.terrygodier.com/the-last-quiet-thing
83•coinfused•2d ago•52 comments

Show HN: I built a tiny LLM to demystify how language models work

https://github.com/arman-bd/guppylm
803•armanified•19h ago•123 comments

Londoners are sick of viral videos telling lies about their city

https://www.londoncentric.media/p/london-crime-viral-videos-crime
41•pseudolus•1h ago•17 comments

Microsoft hasn't had a coherent GUI strategy since Petzold

https://www.jsnover.com/blog/2026/03/13/microsoft-hasnt-had-a-coherent-gui-strategy-since-petzold/
745•naves•1d ago•527 comments

PostHog (YC W20) Is Hiring

1•james_impliu•7h ago

Gemma 4 on iPhone

https://apps.apple.com/nl/app/google-ai-edge-gallery/id6749645337
822•janandonly•1d ago•225 comments

I won't download your app. The web version is a-ok

https://www.0xsid.com/blog/wont-download-your-app
715•ssiddharth•5h ago•403 comments

Reducto releases Deep Extract

https://reducto.ai/blog/reducto-deep-extract-agent
34•raunakchowdhuri•3h ago•3 comments

An open-source 240-antenna array to bounce signals off the Moon

https://moonrf.com/
238•hillcrestenigma•16h ago•51 comments

France pulls last gold held in US for $15B gain

https://www.mining.com/france-pulls-last-gold-held-in-us-for-15b-gain/
511•teleforce•11h ago•282 comments

81yo Dodgers fan can no longer get tickets because he doesn't have a smartphone

https://twitter.com/Suzierizzo1/status/2040864617467924865
280•josephcsible•3h ago•289 comments

Zooming UIs in 2026: Prezi, impress.js, and why I built something different

24•tinchox6•1h ago•6 comments

Show HN: I successfully failed at one-shot-ing a video codec like h.264

https://github.com/DheerG/libsinter
7•bushido•2d ago•2 comments

Smart people recognize each other – science proves it

https://comuniq.xyz/post?t=920
36•01-_-•2h ago•28 comments

The 1987 game “The Last Ninja” was 40 kilobytes

https://twitter.com/exQUIZitely/status/2040777977521398151
254•keepamovin•16h ago•163 comments

Wikipedia's AI agent row likely just the beginning of the bot-ocalypse

https://www.malwarebytes.com/blog/ai/2026/04/wikipedias-ai-agent-row-likely-just-the-beginning-of...
6•hackernj•18m 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.