frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Learning to Write (Again)

https://jampa.bearblog.dev/learning-to-write-again/
1•tjampa•2m ago•0 comments

The latest X algorithm has been published to GitHub

https://twitter.com/elonmusk/status/2055277918633562153
3•guiambros•8m ago•0 comments

A Tale of Two File Names

https://tomgalvin.uk/blog/gen/2015/06/09/filenames/
1•GranPC•10m ago•1 comments

Refray – ∞-way RW Git sync tool and auto conflict resolution, for leaving GitHub

https://github.com/MaigoLabs/refray
1•azaneko•11m ago•0 comments

Recent Developments in LLM Architectures: KV Sharing, MHC, Compressed Attention

https://magazine.sebastianraschka.com/p/recent-developments-in-llm-architectures
1•pretext•12m ago•0 comments

I Found Ultra-Pure Quantum Crystals in an Abandoned Mine in the Atacama Desert

https://medium.com/@breid.at/ultra-pure-quantum-crystals-from-an-abandoned-mine-in-a-mysterious-d...
1•vi_sextus_vi•14m ago•0 comments

We Built a Web That Consumes Us

https://gist.github.com/motyar/e53a2c23362a5d5a73a6895e79ee3d20
2•motyar•16m ago•0 comments

'News will find me' mindset makes people trust algorithms and online networks

https://www.psu.edu/news/bellisario-college-communications/story/news-will-find-me-mindset-makes-...
1•thunderbong•20m ago•0 comments

Async I/O in Zig 0.16, today

https://lalinsky.com/2026/05/11/async-io-in-zig-016-today.html
1•signa11•23m ago•0 comments

Reasons to Use Std:SIMD

https://github.com/NoNaeAbC/std_simd
2•quasigloam•30m ago•0 comments

AI Faceless Video Generator for TikTok, Shorts and Reels

https://faceless-video.com/
1•duanhjlt•31m ago•0 comments

Ultime Western

http://www.ultimewestern.com/
1•hyperific•33m ago•0 comments

Fourth Television Network

https://en.wikipedia.org/wiki/Fourth_television_network
1•Ariarule•33m ago•0 comments

The Blind Witness: AI observer with fu

https://theairtgroup.com/blind-witness.html
1•simonaitchison•35m ago•0 comments

TheArchiveBase – A Lightweight Distributed Search Engine

https://thearchivebase.com/
1•tanvirredwan•35m ago•1 comments

Trillions of miles of data: Your car is spying on you

https://www.bbc.com/future/article/20260513-your-car-is-spying-on-you-its-about-to-get-worse
1•1659447091•36m ago•0 comments

Fly.io is getting rid of GPU-accelerated machines

https://fly.io/docs/gpus/
4•abound•38m ago•1 comments

I Rewrote My Project from Clojure to Gleam [video]

https://www.youtube.com/watch?v=iEP6pWmxWeI
1•TheWiggles•39m ago•0 comments

SF vibes are frenetic over the divide in outcomes and career uncertainty

https://www.techmeme.com/260516/p9
2•danorama•52m ago•1 comments

SeeFlow – Architecture diagrams that run

https://seeflow.dev
1•tuongaz•54m ago•0 comments

Lord of the Flies: A Harmful Distortion of Children's Nature

https://petergray.substack.com/p/114-lord-of-the-flies-a-harmful-distortion
1•Ariarule•55m ago•0 comments

Unmanned lab opens with robots at work as researchers push AI, automation

https://japantoday.com/category/tech/unmanned-lab-opens-with-robots-at-work-as-researchers-push-a...
1•pseudolus•59m ago•0 comments

Eric Weinstein: "I Was Wrong About UFOs " [video]

https://www.youtube.com/watch?v=ZBjJTj_ZFXU
1•keepamovin•1h ago•0 comments

Ccstory – Weekly recap of what you did in Claude Code

https://github.com/atomchung/ccstory
1•atomtw•1h ago•0 comments

Bear spray is exploding in the trash near Yellowstone National Park

https://www.sfgate.com/national-parks/article/exploding-bear-spray-yellowstone-22244713.php
7•turtlegrids•1h ago•4 comments

2026 will be a HVAC contractor bloodbath

https://www.reddit.com/r/heatpumps/s/APgJ68ZSyz
3•ssuds•1h ago•1 comments

LLMs and the Epistemic Apocalypse

https://haversine.substack.com/p/the-slow-creep-of-epistemic-apocalypse
1•MakeAJiraTicket•1h ago•1 comments

How to buy cheap Claude tokens in China

https://www.chinatalk.media/p/how-to-buy-cheap-claude-tokens-in
2•RyanShook•1h ago•0 comments

Science Behind Too Much Homework for Lower School Kids

https://restingrichface.substack.com/p/im-quitting-my-third-graders-homework
3•_RRF•1h ago•1 comments

Ascetic Computing

https://ratfactor.com/ascetic-computing
2•RohanAdwankar•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