frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenAvocado: Open-Source Adaptive Learning

https://github.com/frankhli843/openavocado
1•franksoftware•4s ago•0 comments

Major Memory Manufacturers Hit with Price-Fixing Class Action as RAM Prices Soar

https://openclassactions.com/lawsuits/antitrust/samsung-sk-hynix-micron-dram-price-fixing-class-a...
1•sydney6•1m ago•0 comments

Who cleans up after the vibe-coding party?

https://www.ft.com/content/cec8df9e-b43b-4cd1-8feb-c07e804e8d33
1•thm•2m ago•0 comments

Vim of Coding Agents

https://rasyidanaf.com/blog/vim-of-coding-agents/
1•aberoham•5m ago•0 comments

Multi-agent network: Own the node. Let the agents build together

https://github.com/quantiota/SKA-Protocol
2•quantiota•8m ago•0 comments

Linear is always a lagging indicator

https://remark.ing/rob/rob/-/Linear-is-always-a
2•koch•13m ago•0 comments

AI Adoption Was the Easy Part. Now Comes the Dollar-Sign Shock

https://www.inc.com/bruce-crumley/ai-adoption-was-the-easy-part-now-comes-the-dollar-sign-shock/9...
1•1vuio0pswjnm7•14m ago•0 comments

The cowboys of crypto: Wyoming ropes a $1 stablecoin

https://www.post-gazette.com/news/nation/2026/06/24/wyoming-stablecoin-token-digital-currency/sto...
2•greyface-•15m ago•0 comments

Litert.js, Google's High Performance Web AI Inference

https://developers.googleblog.com/litertjs-googles-high-performance-web-ai-inference/
2•kordlessagain•20m ago•0 comments

Investors sell longer-dated AI debt amid Big Tech borrowing spree

https://www.ft.com/content/28380abc-72f9-4287-8d36-2823c73358ce
3•1vuio0pswjnm7•22m ago•0 comments

You Have an AI Working Agreement. Write It Down

https://age-of-product.com/ai-working-agreement/
3•swolpers•23m ago•0 comments

What Is DAAD Ready?

https://www.ngpaws.com/daadready/
2•doener•25m ago•0 comments

Barron Wood Text Adventure

https://qladventures.itch.io/the-secret-of-barron-wood
2•doener•26m ago•0 comments

THEA1200 Juli F&A

https://www.youtube.com/watch?v=atZFmK9aOCI
2•doener•27m ago•0 comments

Microsoft joins Google in backing Go for AI agents — OpenAI and Anthropic lag

https://thenewstack.io/microsoft-agent-framework-go/
3•Brajeshwar•28m ago•0 comments

DVarr, a self-hosted sports DVR built to never miss the end of a game

https://github.com/haydenw22/DVarr
2•haydenw22•31m ago•0 comments

Show HN: Nihonpost – Japanese postal code lookup for Vue 3

https://github.com/Thiya11/nihonpost
2•kitsunechaos•34m ago•0 comments

Show HN: Nihonpost – Japanese postal code lookup for Vue 3

https://www.npmjs.com/package/nihonpost
1•kitsunechaos•34m ago•0 comments

The Floating Robot Companion Designed for Safe, Friendly Human Interaction

https://www.cnet.com/tech/floating-robots-safe-friendly-human-interaction/
2•zzzeek•36m ago•0 comments

Actojs – Bringing Elixir's Actors to TypeScript

https://www.npmjs.com/package/actojs
2•gidellav•39m ago•0 comments

HairGlimpse

https://hairglimpse.com/
2•lawrenceTang•39m ago•0 comments

Command Line Interface Guidelines

https://clig.dev/
3•subset•39m ago•0 comments

AI Boosts Research Careers but Flattens Scientific Discovery

https://spectrum.ieee.org/ai-science-research-flattens-discovery
3•zaikunzhang•41m ago•0 comments

Show HN: Jargo – Conversational-AI Golang Framework

https://github.com/gojargo/jargo
1•fallais•42m ago•0 comments

Count Binface the Game

https://binfacegame.co.uk
1•dawildcat•42m ago•0 comments

Show HN: Only 1 of 4,356 reachable MCP servers is ready for the 2026-07-28 spec

https://github.com/Roee-Tsur/mcp-spec-check
2•roee_tsur•47m ago•0 comments

I Love Details

https://nuno-icons.com/2026/07/11/i-heart-details/
1•LorenDB•47m ago•0 comments

HFI: Harmonic Firmware Initiative for RISC-V

https://qsoe.net/hfi/
1•ymz5•47m ago•1 comments

Fixed3D, a fixed point conversion of Box3D (box2d.org)

https://github.com/mas-bandwidth/fixed3d/blob/main/README.md
1•gafferongames•48m ago•0 comments

Making Crash Bandicoot (2011)

https://all-things-andy-gavin.com/2011/02/02/making-crash-bandicoot-part-1/
11•alexpls•49m 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