frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Claude Is Down, Again

https://status.claude.com/incidents/1y63m9yzpjn2
1•imalerba•22s ago•0 comments

Quick–swap your avatar to purple, green, or a mix of both

https://purplepfp.com
1•BruceWok•1m ago•0 comments

LLMs have me feeling heavy

https://old.reddit.com/r/webdev/comments/1p5xtud/llms_have_me_feeling_heavy/
1•bundie•4m ago•0 comments

Shai-Hulud 2.0 Supply Chain Attack: 25K+ Repos Exposing Secrets

https://www.wiz.io/blog/shai-hulud-2-0-ongoing-supply-chain-attack
2•samuel246•6m ago•0 comments

Neoteny

https://en.wikipedia.org/wiki/Neoteny
2•nomilk•11m ago•0 comments

Ask HN: Who is building the next gyroscope app integrated with AI?

1•HipstaJules•13m ago•0 comments

Nvidia's 'I'm Not Enron' memo has people asking a lot of questions

https://www.theverge.com/business/828047/nvidia-enron-conspiracy-accounting
3•greg_V•13m ago•1 comments

Ai2 Dolma: 3T token open corpus for language model pretraining (2023)

https://allenai.org/blog/dolma-3-trillion-tokens-open-llm-corpus-9a0ff4b8da64
1•tosh•13m ago•0 comments

Implementing dependent types: how hard could it be? (Part 1)

https://jerrington.me/posts/2025-05-23-depty-impl.html
1•fanf2•13m ago•0 comments

We ask Valve the big questions around the Steam Machine, Frame and Controller

https://youtu.be/yvu66Y2VLq8
1•doener•18m ago•0 comments

Google is starting to bridge OpenAI's product moat with Gemini's "dynamic view"

https://spyglass.org/gemini-vs-chatgpt-product/
1•cesidio•19m ago•1 comments

Git 3.0 Retires Master: What Developers Need to Know

https://jsdevspace.substack.com/p/git-30-finally-retires-master-what
1•javatuts•20m ago•1 comments

Americans are holding onto devices longer than ever and it's costing the economy

https://www.cnbc.com/2025/11/23/how-device-hoarding-by-americans-is-costing-economy.html
1•taubek•24m ago•0 comments

A Proposal for Simplified, Modern Definitions of "Object" and "Object Oriented"

https://web.archive.org/web/20140804162018/http://wcook.blogspot.com/2012/07/proposal-for-simplif...
1•signa11•25m ago•0 comments

Introducing F# (F Sharp) 10

https://devblogs.microsoft.com/dotnet/introducing-fsharp-10/
1•keyle•25m ago•0 comments

Alice the Caml – new build system for OCaml

https://www.alicecaml.org/
1•keyle•25m ago•0 comments

We removed the τ2-bench airline eval because Opus 4.5 was too clever

https://twitter.com/alexalbert__/status/1993068200121213222
2•stared•30m ago•0 comments

Breaking AI Context Silos: A Proposal for a Portable Memory Protocol (PMX)

1•sravanth_thota•31m ago•0 comments

Having Fun with K&R C

https://sbaziotis.com/compilers/having-fun-with-k-and-r-c.html
1•thunderbong•32m ago•0 comments

PGH Transit Atlas

https://rzrizaldy.github.io/pgh-transit-atlas/
1•altilunium•34m ago•0 comments

A Practical Framework for Measuring Impact of AI Coding Assistants

https://www.oobeya.io/blog/ai-measurement-framework
1•emredu•35m ago•0 comments

Show HN: I built the literal Duolingo Killer

https://kanjieight.vercel.app/
8•Mikecraft•37m ago•8 comments

Google Leapfrogged Rivals with New Gemini Rollout

https://www.wsj.com/tech/ai/google-gemini-3-ai-behind-scenes-e1787729
2•tzury•39m ago•0 comments

Vdu_controls – a DDC control panel for monitors

https://github.com/digitaltrails/vdu_controls
2•anewhnaccount2•40m ago•0 comments

NSan: A Floating-Point Numerical Sanitizer

https://arxiv.org/abs/2102.12782
1•anewhnaccount2•40m ago•0 comments

Aussies sell their tech company to US giant for $5B

https://www.afr.com/technology/aussies-sell-their-tech-company-to-us-giant-for-5b-20251124-p5nhv7
1•iamtech•40m ago•0 comments

Unu.ran – Universal Non-Uniform RANdom Number Generators

https://statmath.wu.ac.at/unuran/doc/unuran.html
1•anewhnaccount2•40m ago•0 comments

Introvert – The AI Dating Co-Pilot Launches on Geyser Fund Today

https://geyser.fund/project/introvert
1•shegby•42m ago•1 comments

Michael Burry's Substack

https://michaeljburry.substack.com/
3•mihau•44m ago•0 comments

Jony Ive and Sam Altman say they have an AI hardware prototype

https://www.theverge.com/news/827607/openai-hardware-prototype-chatgpt-jony-ive-sam-altman
3•signa11•44m 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•7mo ago

Comments

rvz•7mo 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•7mo 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•7mo 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