frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Automated hints for 6 daily NYT puzzles (Cloudflare Workers)

https://dailygameanswers.com/
1•Roselol•21s ago•0 comments

Reliable OST to PST Conversion

https://blog.perfectdatasolutions.com/ost-to-pst-converter-software-2/
1•tieanderson•1m ago•0 comments

Boston Is Drinking Like It's 1776. The Founding Fathers Would Be Proud

https://www.nytimes.com/2026/07/02/us/brooke-barbier-revolutionary-era-drinks.html
1•koolba•1m ago•0 comments

DOGE self-deletes on July 4th. The grand experiment fell apart long before that

https://www.eenews.net/articles/doge-self-deletes-on-july-4th-the-grand-experiment-fell-apart-lon...
2•Anon84•3m ago•0 comments

The Founder Who Got Fired for Ignoring His Own Return-to-Office Rules

https://www.wsj.com/business/the-founder-who-got-fired-for-ignoring-his-own-return-to-office-rule...
1•bushwart•3m ago•0 comments

JavaScript still can't ship a full-stack module

https://wasp.sh/blog/2026/06/22/javascript-still-cant-ship-a-full-stack-module
1•infomiho•6m ago•0 comments

ClickHouse is winning the Observability Wars

https://matduggan.com/clickhouse-is-winning-the-observability-wars/
2•birdculture•6m ago•0 comments

In-browser programmable robot simulator

https://bittlex-sim.petoi.com/
2•lijay•8m ago•0 comments

Nocode: Way to write secure and reliable applications

https://github.com/kelseyhightower/nocode
1•yladiz•11m ago•0 comments

Carbon Engine – open-source tech powering EVE Online

https://github.com/orgs/carbonengine/repositories
1•regnerba•12m ago•0 comments

Show HN: A Simple Containerized Browser

https://spunto.net/blog/browser-remote
1•codehammer•15m ago•0 comments

Category Theory Illustrated – Monoids

https://abuseofnotation.github.io/category-theory-illustrated/03_monoid/
2•frenchie_sans•15m ago•0 comments

Thieves Are Now Targeting AI Data Center Construction Sites for Copper

https://www.vice.com/en/article/thieves-are-now-targeting-ai-data-center-construction-sites-for-c...
1•Gedxx•16m ago•0 comments

Bhopal's '90-degree' bridge turns out to bend 118 degrees (2025)

https://organiser.org/2025/09/14/315715/bharat/bhopals-90-degree-bridge-turns-out-to-bend-118-deg...
1•Tomte•18m ago•0 comments

Ask HN: How are you creating demo videos for your product?

1•akarshhegde18•23m ago•0 comments

Instagram running ads promoting child sexual abuse material in India, BBC finds

https://www.bbc.co.uk/news/articles/cvgm4e0316zo
1•shrikant•27m ago•0 comments

A big Markdown file should become a PDF you can navigate

https://demchaav.github.io/blog/posts/markdown-navigable-pdf/
1•demchaav•28m ago•0 comments

Very Average Prototypes

https://goodnameforablog.com/posts/very-average-prototypes/
1•robin_reala•29m ago•1 comments

Scaling Java-Based Real-Time Systems: Hidden Tradeoffs of Event-Driven Design

https://www.infoq.com/articles/tradeoffs-event-driven-design/
1•theanonymousone•30m ago•0 comments

The virtual power plant era has arrived

https://www.pv-magazine.com/2026/06/29/the-virtual-power-plant-era-has-arrived/
1•ndr42•30m ago•0 comments

Intent-addressable code for AI coding agents

https://github.com/croviatrust/causari
1•CroviaTrust•31m ago•0 comments

Show HN: Autosynth – generating synthetic data with strong/weak model filtering

https://github.com/Ahmad8864/autosynth
1•ahmadbabdallah•33m ago•0 comments

The Intimate Legacies of a White-Supremacist Coup

https://www.newyorker.com/news/letter-from-the-south/the-intimate-legacies-of-a-white-supremacist...
2•rbanffy•33m ago•1 comments

Guandimiao (Archaeological Site in Henan, China)

https://en.wikipedia.org/wiki/Guandimiao
1•tux3•35m ago•0 comments

Astrophysicists Puzzle over Webb's New Universe

https://www.quantamagazine.org/astrophysicists-puzzle-over-webbs-new-universe-20260702/
3•jnord•41m ago•0 comments

Diseconomies of scale in fraud, spam, support, and moderation

https://danluu.com/diseconomies-scale/
3•Liriel•42m ago•0 comments

ProofToken16: My Proposal for Private Decentralised Age Verification

https://incoherency.co.uk/blog/stories/private-decentralised-age-verification.html
2•jstanley•45m ago•0 comments

Horsewood Reality Check 2026 – The Truth Behind the Claims

https://finance.yahoo.com/sectors/healthcare/articles/horsewood-urgent-report-2026-horse-19110038...
2•rafisalp•46m ago•0 comments

From flocks to pyramids: Balancing self-organization and architecture

https://www.youtube.com/watch?v=R0WiSoW-wL8
1•RebootStr•46m ago•0 comments

AB 1856: CA Exempts Open Source, Still Expands Age-Gating

https://www.eff.org/deeplinks/2026/05/one-step-forward-two-steps-back-cas-ab-1856-exempts-open-so...
2•mashally•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