frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Sen. Chuck Grassley mourns Beth, 49yo vacuum cleaner

https://twitter.com/ChuckGrassley/status/2086178745191133662
1•nianderwallace•19s ago•0 comments

High car prices lead to long-term auto loans

https://www.marketplace.org/story/2026/08/07/high-car-prices-lead-to-longterm-auto-loans
1•mooreds•20s ago•0 comments

Tape scratching the "Peter Piper" routine, using a homemade tape loop [video]

https://www.youtube.com/watch?v=L6SMyND8hso
1•CharlesW•24s ago•0 comments

Why.com – Explore any topic by repeatedly asking why

https://why.com/
1•m5r•30s ago•0 comments

Quantifying dynamics of failure across science, startups and security

https://arxiv.org/abs/1903.07562
1•highfrequency•4m ago•0 comments

The Post-Quantum WebPKI

https://rmhrisk.github.io/classical-webpki/
1•tomwas54•7m ago•0 comments

AI assistant hacks gym website in first known Australian autonomous cyber attack

https://www.abc.net.au/news/2026-08-10/ai-assistant-hacks-gym-website-aus-cyber-attack/107007986
1•stared•7m ago•0 comments

Is Cyber Warfare the Next World War?

https://medium.com/freedomofthought/is-cyber-warfare-the-next-world-war-0305756d37eb
1•raynchad•7m ago•1 comments

Sam Zeloof Home Chip Fab: Silicon IC Fabrication in the Garage – Hackaday [video]

https://www.youtube.com/watch?v=23fTB3hG5cA
2•binyu•8m ago•0 comments

Cambridge University's Disgrace

https://fakenous.substack.com/p/cambridge-universitys-disgrace
2•barry-cotter•10m ago•0 comments

JavaScript for Unity

https://onejs.com
1•CreepGin•10m ago•0 comments

AI Agent Qubitz

https://github.com/Gabrieliam42/AI-Agent-Qubitz
1•Gabrieliam42•17m ago•1 comments

My Brain Doesn't Have Git Worktrees

https://eliasson.me/articles/my-brain-doesnt-have-git-worktrees
1•elitan•18m ago•0 comments

Lawyers using "AI" could face sanctions including costs for fake citations

https://www.irishtimes.com/crime-law/2026/08/05/lawyers-could-face-sanctions-including-costs-if-a...
3•1vuio0pswjnm7•23m ago•0 comments

Bros and Cons

https://bros-and-cons.com/
1•bookofjoe•25m ago•0 comments

Why a Generic Open-Source Project Cant Also Be a Successful Civil Rights Project

https://chrismcdonough.substack.com/p/why-a-generic-open-source-project
2•sagacity•27m ago•0 comments

Lava Lamps and Internet Encryption

https://www.cloudflare.com/learning/ssl/lava-lamp-encryption/
1•kamphey•27m ago•1 comments

Rowly – a free open-source supabase security scanner

https://rowly.me
1•popkoren•28m ago•0 comments

Mayflies and the Toxic Side of "Carpe Diem"

https://decodingvibes.com/blog/mayflies-and-the-toxic-side-of-carpe-diem/
1•altmanaltman•32m ago•0 comments

The Evolution of Go Generics: A Retrospective from 1.18 to 1.27

https://towardsdev.com/the-evolution-of-go-generics-a-retrospective-from-1-18-to-1-27-f11c06513ee...
1•cheikhdev•34m ago•0 comments

Kill Switch (X-Files episode)

https://en.wikipedia.org/wiki/Kill_Switch_(The_X-Files)
4•theopsimist•38m ago•1 comments

Colors' Package Skills Catalog is live

https://www.getcolors.ai/skills
1•amiorin•39m ago•0 comments

Ask HN: How has AI helped your personal algorithmic trading strategy?

2•brcmthrowaway•39m ago•0 comments

Georgia police officers fired after Flock camera misuse

https://www.wtoc.com/2026/08/07/savannah-police-department-fires-6-employees-over-flock-safety-sy...
8•chirau•39m ago•3 comments

Ask HN: What would convince you that a closed source messaging app is secure?

2•Brandon-Coll•41m ago•1 comments

How to Find the Most Talented People on Earth (Tyler Cowen, 2025)

https://www.thefp.com/p/the-fives-rules-of-finding-talent
1•ronfriedhaber•42m ago•1 comments

Framework for Digital Media Lifespans and EOL Safe Harbors

https://github.com/jbenoitdigitalpolicy/digital-media-lifespan-framework
1•jbenoitdigitalp•43m ago•0 comments

Search Engine – MP3Juice

https://ppev.co.za/search/yimi-umaqondana-mahostela-97
2•figelandadrian•46m ago•0 comments

Reducing Graphics API Complexity: A Clean Slate Design for Modern GPUs

https://www.youtube.com/watch?v=aQv9pUl9PBM
1•coffeeaddict1•47m ago•0 comments

Edge Browser: End Date for Manifest V2 Set – End for uBlock Origin

https://www.heise.de/en/news/Edge-Browser-End-date-for-Manifest-V2-set-End-for-uBlock-Origin-1140...
2•wodniok•48m 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