frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Empirical results fine-tuning π0.5 on a real manufacturing task

https://dream-machines.eu/blog/pi05-fine-tuning
1•dopaul•54s ago•0 comments

CropIntel – crop disease detection from a leaf photo

https://cropintel.org
1•rakshithj09•1m ago•0 comments

8 in 10 people aged 16-34 say smartphone use harms their everyday life

https://nltimes.nl/2026/09/23/8-10-people-aged-16-34-say-smartphone-use-harms-everyday-life
2•TechTechTech•2m ago•0 comments

Screen Lane

https://nickalexander.org/screen-lane.html
1•nick007•3m ago•0 comments

Jensen Huang on AI Alarmists – NYT Ezra Klein Show

https://www.nytimes.com/2026/09/23/opinion/ezra-klein-podcast-jensen-huang.html
1•athrowaway3z•3m ago•1 comments

Data centers are black boxes, but California wants to change that

https://www.theverge.com/policy/999412/data-center-water-electricity-disclosure-bills
1•speckx•4m ago•0 comments

A lightweight terminal UI for Colima on macOS

https://github.com/leodeim/colimui
1•ygagaga•5m ago•0 comments

Show HN: SDF Studio – Create 2D SDF scenes, compile to GLSL

https://linkdd.github.io/sdf-studio/
1•linkdd•6m ago•0 comments

How to serve trillions of tokens for trillion-parameter coding agents

https://modal.com/blog/trillion-tokens-trillion-parameters
1•kkm•6m ago•0 comments

Google Beam expands to new countries

https://blog.google/innovation-and-ai/technology/research/google-beam-expansion/
1•xnx•9m ago•0 comments

Brazil's Lula Campaign Dataset

https://huggingface.co/datasets/geoffchan/lula-footage/viewer/default/train
1•rodrigueslotu•10m ago•0 comments

Starbucks Korea CEO dismissed, what about startups?

https://2nd-look.vercel.app
1•adarshmd•10m ago•0 comments

GitCaliber, swap github.com for gitcaliber.com to get a Git repo explained

https://www.gitcaliber.com
1•bengunvl•10m ago•0 comments

Show HN: I made an app that transform your daily habits into a medieval

https://www.reddit.com/r/ProductivityApps/comments/1wnd233/comment/pbipzwg/
1•macfleid•12m ago•0 comments

City council can approve license plate cameras without you ever finding out

https://alprradar.com/
3•Cider9986•13m ago•0 comments

My relationship with AI: seductive, frustrating and always demanding vigilance

https://www.theguardian.com/commentisfree/2026/sep/24/my-complicated-relationship-with-ai-chatgpt...
3•jethronethro•15m ago•0 comments

Dr Tricks Senior Dev N2 Taking Job W AI

1•JacobEdmondKerr•15m ago•0 comments

If Carpenters Were Hired Like Programmers (2013)

https://web.archive.org/web/20140316234620/http://www.jasonbock.net/jb/News/Item/7c334037d1a9437d...
2•legitster•15m ago•0 comments

My Story

https://github.com/Sovereign-Intel-Founder/sovereignintelfounder
1•Joshua445•15m ago•0 comments

The Unhired Index: Big Tech revenue-headcount trend suggests 185K missing hires

https://www.drorpoleg.com/charts/unhired/
1•keeda•17m ago•2 comments

Security Debt: How Legacy Systems Increase Cyber Risk

https://www.cybrsecmedia.com/security-debt-series-part-1-legacy-systems/
1•speckx•17m ago•0 comments

How Apple uses faulty silicon to power fab new devices

https://www.cultofmac.com/news/apple-chip-binning
2•wslh•18m ago•0 comments

AOS GLM Language Engine – Beta Test

https://github.com/ThePikey/AOS_GLM_language
1•imageanet•22m ago•0 comments

Ask HN: How do you test Lambda/ECS code before deploying?

1•ioanarebeca•24m ago•2 comments

Work, Wellbeing, and Choice: Empirical Lessons for AI Futures

https://arxiv.org/abs/2609.11019
1•gwintrob•24m ago•0 comments

Local AI News Feed

https://local-ai-signal.vercel.app/
1•agcat•26m ago•2 comments

The Fine-Grained City Needs an Operating System

https://courtyardurbanist.com/p/the-fine-grained-city-needs-an-operating
1•idbnstra•29m ago•0 comments

Small Modular Reactors: a short history of a nuclear pipe dream

https://engelsbergideas.com/essays/smrs-a-short-history-of-a-nuclear-pipe-dream/
1•bazzmt•30m ago•0 comments

LensVLM: Compressing long context as images, expanding only relevant pages

https://huggingface.co/apple/LensVLM-9B
2•victormustar•30m ago•0 comments

Ask HN: Do you offload your coding to AI, or keep your skills sharp?

3•Hex08•31m ago•3 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