frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Zig Creator Calls Spade a Spade, Anthropic Blows Smoke

https://raymyers.org/post/zed-creator-calls-spade-a-spade/
19•crowdhailer•21m ago•3 comments

Backtrack-Free Cursive

https://mmapped.blog/posts/52-backtrack-free-cursive
67•dmit•2h ago•22 comments

Beavis Ultrasound PnP ISA Sound Card Replica

https://github.com/schlae/BeavisUltrasound
57•mariuz•3h ago•18 comments

Interrail: 6,379Km and 13 Countries over 7 weeks

https://shkspr.mobi/blog/2026/07/another-ridiculous-interrail-holiday-6379km-and-13-countries-ove...
13•coinfused•56m ago•0 comments

GhostLock, a stack-UAF that has existed in all Linux distributions for 15 years

https://nebusec.ai/research/ionstack-part-2/
262•ranger_danger•4d ago•108 comments

The social physics of conversation: Communication patterns matter

https://andiroberts.com/citizenship/the-social-physics-of-conversation-citizenship-leadership
26•kiyanwang•5d ago•2 comments

Cyberpunk Comics, Manga and Graphic Novels

https://shellzine.net/cyberpunk-comics/
182•zdw•10h ago•56 comments

Tiny Emulators

https://floooh.github.io/tiny8bit-preview/index.html
249•naves•12h ago•21 comments

So you want to learn physics (second edition, 2021)

https://www.susanrigetti.com/physics
212•azhenley•5d ago•35 comments

Designing and assembling my first PCB

https://vilkeliskis.com/b/2026/0711.html
108•tadasv•10h ago•41 comments

Ask HN: Add flag for AI-generated articles

623•levkk•7h ago•288 comments

How to read more books

https://scotto.me/blog/2026-07-12-how-to-read-more-books/
349•silcoon•17h ago•182 comments

Are you telling me a readonly property is wrecking my performance?

https://shub.club/writings/2026/july/check-your-scrollheight/
33•forthwall•3d ago•14 comments

Converting colors in JavaScript at 6B operations per second

https://dkryaklin.com/blog/colordx-gpu
23•dkryaklin•3d ago•4 comments

Guy took Jupiter photo with Game Boy Camera, giant telescope, publishes tutorial

https://www.engadget.com/2211886/guy-who-took-photo-of-jupiter-with-a-game-boy-camera-and-giant-t...
39•thunderbong•2d ago•16 comments

Ask HN: What Are You Working On? (July 2026)

151•david927•11h ago•475 comments

Quadrupling code performance with a "useless" if

https://purplesyringa.moe/blog/quadrupling-code-performance-with-a-useless-if/
35•birdculture•1h ago•3 comments

Migrating a production AI agent to GPT-5.6: 2.2x faster, 27% cheaper

https://ploy.ai/blog/migrating-a-production-ai-agent-to-gpt-5-6
201•brryant•15h ago•86 comments

First look at Quest, the final ship of Antarctic explorer Shackleton

https://www.cbc.ca/news/canada/quest-shipwreck-expedition-images-9.7262229
32•curmudgeon22•4d ago•2 comments

Sam Neill has died

https://www.theguardian.com/film/2026/jul/13/sam-neill-death-actor-dies-aged-78
103•j4mie•2h ago•21 comments

LARP – Revenue infrastructure for serious founders

https://www.larp.website/
235•BerislavLopac•16h ago•49 comments

Kode Dot Programmable pocket device for makers, pentesters and geeks

https://kode.diy
83•iNic•11h ago•20 comments

Vint Cerf, “father of the Internet”, is retiring

https://techcrunch.com/2026/06/30/the-father-of-the-internet-is-finally-retiring/
311•compiler-guy•3d ago•177 comments

Claude Code sends 33k tokens before reading the prompt; OpenCode sends 7k

https://systima.ai/blog/claude-code-vs-opencode-token-overhead
577•systima•14h ago•319 comments

How we can reduce traffic congestion

https://research.google/blog/the-power-of-collaboration-how-we-can-reduce-traffic-congestion/
127•raahelb•17h ago•185 comments

I Learned to Read Again

https://substack.magazinenongrata.com/p/how-i-learned-to-read-again
142•georgex7•14h ago•55 comments

Why write code in 2026

https://softwaredoug.com/blog/2026/07/09/write-code
153•softwaredoug•2d ago•200 comments

Berkshire's $397B Bet Against an Overheated Market

https://www.disruptionbanking.com/2026/07/13/inside-berkshires-397-billion-bet-against-an-overhea...
9•emsidisii•44m ago•0 comments

What xAI's Grok build CLI sends to xAI: A wire-level analysis

https://gist.github.com/cereblab/dc9a40bc26120f4540e4e09b75ffb547
471•jhoho•1d ago•172 comments

Automation Without Understanding

https://arxiv.org/abs/2607.06377
119•root-parent•16h ago•51 comments
Open in hackernews

Quadrupling code performance with a "useless" if

https://purplesyringa.moe/blog/quadrupling-code-performance-with-a-useless-if/
35•birdculture•1h ago

Comments

anematode•53m ago
Brilliant! Hadn't seen this technique before.
anirudhak47•39m ago
latency optimization is a skill. I liked how you went till CSE pass. I myself wrote several passes to go to lowest latency possible
akoboldfrying•26m ago
This is really surprising! I've never considered the possibility that using an equality test to skip a write that would be a no-op could break a dependency and thus lead to higher perf overall if the "equal" outcome occurs often enough. This might be applicable in many situations where you "edit" some data in-place, but most of the time there are few or no changes.