frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The IBM PC, Part 2: Tsunami

https://technicshistory.com/2026/08/29/the-ibm-pc-part-2-tsunami/
1•cfmcdonald•1m ago•0 comments

In Chile's Atacama Desert, the biggest telescope ever built is taking shape

https://www.bbc.com/future/article/20260827-the-biggest-telescope-of-all-time-is-nearly-ready-cou...
1•Betelbuddy•5m ago•0 comments

I came across DBYTE, a small programming language

1•lexsandra56•7m ago•1 comments

Running an LLM in the Browser: Verifying WebGPU, and Local Inference

https://capytoolkit.com/blog/developer-tools/running-llm-browser-verifying-webgpu-model-hashes-lo...
1•ChillyCapy•13m ago•0 comments

Crossing Boundaries with Integration Events

https://deniskyashif.com/2026/08/29/crossing-boundaries-with-integration-events/
1•alembic_fumes•15m ago•0 comments

FreeToken: Efficient Edge-Native Moe Serving with Bandwidth-Adaptive Execution

https://arxiv.org/abs/2608.16157
2•gmays•17m ago•0 comments

TurnBench

https://turnbench.sesame.com/
1•selimonder•18m ago•0 comments

But where does taste come from?

https://dustycloud.org/blog/but-where-does-taste-come-from/
2•paroneayea•18m ago•0 comments

Show HN: I built a physical dream machine for my wife

https://twitter.com/oblomovius/status/2094053464552698325
1•oblo_mov•19m ago•2 comments

Ask HN: How do I make sure ChatGPT/Claude/Gemini forget all prior conversations?

1•chirau•21m ago•0 comments

ClaudeDevs: We're permanently raising standard weekly limits in Claude Code

https://twitter.com/chandlerwilcox/status/2093742530659766324
2•isolli•21m ago•1 comments

Rust Function Overloading – Call for Experimentation

https://blog.rust-lang.org/inside-rust/2026/08/19/overloading-experiment/
1•torutofu•22m ago•0 comments

Write the Fucking Manual

https://wtfmbook.com/
1•theletterf•24m ago•0 comments

Judge rule AI-generated child sex abuse material is protected by First Amendment

https://reason.com/volokh/2026/08/27/home-possession-of-ai-generated-porn-depicting-fake-children...
3•DeepLogin•31m ago•0 comments

90 days of attacks on AI infrastructure

https://www.wiz.io/blog/ai-infrastructure-honeypot
1•coder-pm•37m ago•1 comments

Software project folder structure for isolating agent scope

https://graphthinking.blogspot.com/2026/08/software-project-folder-structure-for.html
1•physicsgraph•37m ago•0 comments

Show HN: Podiom – durable sessions, scheduling and goals for local Claude/Codex

https://github.com/Podiom/Podiom
3•Maphielbso•38m ago•0 comments

Prevalence of Silent Atherosclerosis Across Adult Life

https://doi.org/10.1056/nejmoa2609059
1•sbulaev•39m ago•0 comments

Openpyxl silently drops cached formula values when you edit an unrelated cell

https://kookerella.com/posts/ai-agent-silently-breaks-formula-values/
1•mnicholls•40m ago•0 comments

Zoom activated my mic and played "recording in progress" at 4AM

https://imgur.com/a/0NQ0rFk
5•telmop•42m ago•1 comments

Onefile-unlock: a crypto paywall in one self-contained HTML file

https://raw.githack.com/EltonCherrington/onefile-unlock/main/onefile-unlock.html
1•memctlagent2026•47m ago•0 comments

Why Does Top Gun (1986) Feel So Gay Despite Being About a Straight Navy Pilot?

https://decodingvibes.com/blog/why-top-gun-feels-so-gay-despite-being-about-a-straight-navy-pilot/
4•altmanaltman•48m ago•0 comments

Get(key) in libmdbx by up to x1000 using a lock‑free cache on top of a B‑tree

https://github.com/orgs/Mithril-mine/discussions/314
1•erthink•52m ago•0 comments

Claude Session URL appended to commit messages and PR descriptions by default

https://github.com/anthropics/claude-code/issues/66504
62•sparsesignal•55m ago•56 comments

Ask HN: Do you run A/B Tests?

3•hackeryogi•1h ago•0 comments

Nobody Told Me People Still Code New Games for a 1982 Computer

https://comuniq.xyz/Technology/post?t=1634
6•01-_-•1h ago•0 comments

Sports Engines

https://random.ma.ttias.be/boxermotor
2•Mojah•1h ago•0 comments

AWS mumbles about its cost-busting networking tech when it should be shouting

https://www.theregister.com/networks/2026/08/29/aws-mumbles-about-its-cost-busting-networking-tec...
3•sandbach•1h ago•0 comments

Claude Team Plan for Scientists

https://claude.com/programs/team-plan-for-scientists
2•Anon84•1h ago•0 comments

Vaultwarden Sequence Diagrams

https://app.ilograph.com/demo.ilograph.Vaultwarden/Log%2520In
2•billyp-rva•1h ago•0 comments
Open in hackernews

We Slashed API Response Times by 50% with Go Compiler Optimizations

https://medium.com/@utsavmadaan823/how-we-slashed-api-response-times-by-50-with-go-compiler-optimizations-3c2592c2d241
2•tanelpoder•1y ago

Comments

rvz•1y ago
So as I was saying in [0] and [1], there is no doubt that properly tuning the compiler for performance can make a significant real difference instead of wasting more money and risking an increase in costs just by throwing more servers at the problem.

Also, If you needed to re-architect the entire codebase to solve a performance issue, either you chose one of the most inefficient technologies / languages or the code itself was badly architected in the first place or both.

Before any architectural changes to the codebase first check if you can get performance gains from the compiler flags and measure it. That should be the industry standard practice for high quality efficient software.

We must learn from excellent SWEs teams such as DeepSeek which frankly embarrassed the entire AI industry due to their performance optimizations and savings in inference usage.

[0] https://news.ycombinator.com/item?id=43753443

[1] https://news.ycombinator.com/item?id=43753725

kristianp•1y ago
> -ldflags="-s -w": Strips debugging info, making the binary smaller

> I was honestly shocked when this simple change gave us an 8% speedup right off the bat.

Is that all they did to get 8% speedup? Could be a measurement error?

potato-peeler•1y ago
> Dave (our senior backend dev who’s been coding since before I was born) mumbled something like, “Wonder if we’re even using the Go compiler properly…” Most of us kinda ignored it at first — I mean, compiler optimizations? Really? That’s your big solution?

Young devs ignoring their seniors is a tale as old as time