frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What's New in Inkdrop v6

https://forum.inkdrop.app/t/whats-new-in-v6/5570
1•dgavrilov•3m ago•0 comments

Coldcard hardware wallet firmware flaw sees 2k BTC (~$130M) drained

https://www.web3isgoinggreat.com/?id=coldcard-hardware-wallet-flaw
1•ilamont•6m ago•0 comments

Wikipedia's founder on his life's work: "A propaganda tool"

https://nordictimes.com/world/wikipedias-founder-on-his-lifes-work-a-propaganda-tool/
1•thisislife2•7m ago•0 comments

Time Series Observing Itself

https://timeseriesofindia.com/meta/
2•prtk25•10m ago•0 comments

Show HN: Fullscreener // borderless fullscreen for any window (Windows only)

https://github.com/carlos-menezes/fullscreener
1•carlos-menezes•10m ago•0 comments

AI Music Debate Is Missing Half the Money

https://justwordz.medium.com/the-ai-music-debate-is-missing-half-the-money-ffb714924aaa
1•samspenc•11m ago•0 comments

Leibniz's Treatise Disputatio metaphysica de principio individui

https://ojs.tnkul.pl/index.php/rf/article/view/12197
1•Bluestein•11m ago•0 comments

Use Claude Code to make synced video edits to a song

https://github.com/ZiadAbdelkarim/beat-synced-edit
1•iwasastreamer•14m ago•0 comments

Am I the problem? Interviewing another team to find out

https://www.macchaffee.com/blog/2026/am-i-the-problem/
1•signa11•18m ago•0 comments

What We Talk About When We Talk About Bruce Lee

https://decodingvibes.com/blog/what-we-talk-about-when-we-talk-about-bruce-lee/
1•altmanaltman•19m ago•0 comments

Shadow AI is a hidden risk to your business

https://proton.me/business/blog/shadow-ai
3•devonnull•21m ago•0 comments

I build the Tinder to choose food

https://beta.platetale.com/
1•anhyourdream•22m ago•0 comments

Anthropic Economic Index

https://www.anthropic.com/economic-index
4•ronfriedhaber•22m ago•0 comments

Swift-Gigatoken

https://github.com/1amageek/swift-gigatoken
1•frizlab•28m ago•1 comments

The Idea of an Immutable Social Media

https://citizendot.github.io/articles/the-idea-of-immutable-social-media/
3•CITIZENDOT•34m ago•0 comments

Maryland Closes More of Cunningham Falls State Park After Second Beaver Attack

https://news.maryland.gov/dnr/2026/08/05/dnr-closes-additional-areas-of-cunningham-falls-state-pa...
11•bookofjoe•34m ago•4 comments

Pneumatic tube mail in New York City

https://en.wikipedia.org/wiki/Pneumatic_tube_mail_in_New_York_City
4•gkaemmer•38m ago•0 comments

MacGregor the Bridge Builder

https://www.astralcodexten.com/p/macgregor-the-bridge-builder
1•Ariarule•39m ago•0 comments

I gave Claude complete ownership over a website

https://freebot.dev/
2•BenediktHolm•40m ago•2 comments

Attack Techniques: Fake Captive Portals

https://textslashplain.com/2026/08/03/attack-techniques-fake-captive-portals/
2•rowbin•43m ago•0 comments

Improving Heuristics

https://www.redblobgames.com/pathfinding/heuristics/differential.html
2•ingve•47m ago•0 comments

Microsoft Tells Engineers 'Tokenmaxxing Is Not What We Are Optimizing For'

https://www.404media.co/microsoft-tells-engineers-tokenmaxxing-is-not-what-we-are-optimizing-for/
4•doener•49m ago•0 comments

How to write production-quality code with AI

https://curtispoe.org/paad/
3•Ovid•51m ago•1 comments

YouTube Mistakenly Penalizes Kurzgesagt for AI-Generated Slop

https://kotaku.com/youtube-mistakenly-penalizes-popular-science-channel-kurzgesagt-for-ai-generat...
10•guilamu•54m ago•0 comments

Instagram's AI Rewards Human Attention

https://ai-updates.net/instagram-ai-human-attention-content/
2•ashurandi•54m ago•0 comments

Show HN: Live beach data for Nova Scotia

https://whenshouldigotothebeach.ca/
1•recvonline•54m ago•0 comments

Is Justified True Belief Knowledge? [pdf]

https://courses.physics.illinois.edu/phys419/sp2021/Gettier.pdf
4•jsLavaGoat•55m ago•1 comments

You have to do above average

https://kipsmiling.com/you-have-to-do-above-average-actions/
3•imsurajkadam•56m ago•0 comments

Understanding std:counting_semaphore and std:binary_semaphore from C++20

https://www.cppstories.com/2026/semaphore/
2•jandeboevrie•57m ago•0 comments

Reservation Apps Have Made Getting into a Restaurant a Nightmare

https://www.wsj.com/business/restaurant-reservation-apps-30a29e6b
3•pseudolus•57m 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