frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Do You Need a CMS?

https://joost.blog/do-you-need-a-cms/
1•taubek•3m ago•0 comments

Solod: Go can be a better C

https://antonz.org/solod/
1•begoon•3m ago•0 comments

Show HN: QueryPad – Browser SQL Playground for CSV, JSON, and Parquet Files

https://github.com/vericontext/querypad
1•kiyeonjeon•6m ago•1 comments

Show HN: Inner Warden – Self-Defending Security Agent: eBPF+LSM+XDP (Rust, 29MB)

https://github.com/InnerWarden/innerwarden/
1•maiconburn•6m ago•0 comments

Apple Announces New Mac Sales Record Following MacBook Neo Launch

https://www.macrumors.com/2026/03/20/apple-shares-mac-sales-achievement/
2•akyuu•8m ago•0 comments

Jury finds Musk owes damages to Twitter investors for his tweets

https://arstechnica.com/tech-policy/2026/03/jury-agrees-that-musks-tweets-during-twitter-takeover...
3•Brajeshwar•9m ago•0 comments

Show HN: I saw Norton Commander on X and nostalgia made me build it for the web

https://github.com/victorantos/NC
1•victorbuilds•13m ago•0 comments

ESLint Tuned for Claude

https://github.com/jonathannen/eslint-formatter-prompter
2•jwilliams•14m ago•1 comments

Origin-Edge-Client: applying Amdahl's Law to network architecture

https://suthakamal.substack.com/p/one-stores-things-the-other-thinks
1•suthakamal•15m ago•1 comments

Asimov DIY Kit

https://asimov.inc/diy-kit
1•SergeAx•18m ago•0 comments

USPS warns stamp price could rise to nearly $1 amid financial strain

https://www.scrippsnews.com/politics/economy/usps-warns-stamp-price-could-rise-to-nearly-1-amid-f...
1•bookofjoe•18m ago•1 comments

Show HN: A deterministic middleware to compress LLM prompts by 50-80%

https://github.com/ARPAHLS/skillware
2•rosspeili•18m ago•0 comments

Fast Python with Rust: a data-oriented approach

https://hackeryarn.com/post/fast-python-with-rust/
1•hackeryarn•21m ago•0 comments

Never Buy a .online Domain

https://www.0xsid.com/blog/online-tld-is-pai
1•ms7892•21m ago•0 comments

ToneLoc Wardialer

https://github.com/steeve/ToneLoc
1•reconnecting•21m ago•0 comments

From C char to string_view: The cost of abstraction in C++ strings

https://thecloudlet.github.io/technical/cpp/cpp-string/
1•thecloudlet•23m ago•0 comments

Jury signals tech titans on hook for social media addiction

https://techxplore.com/news/2026-03-jury-tech-titans-social-media.html
2•Brajeshwar•23m ago•0 comments

Show HN: I built my first SaaS

https://www.lunatic-ai.com
2•fhouser•25m ago•0 comments

Remove macOS Tahoe's menu bar icons

https://mastodon.social/@stroughtonsmith/116262411548746327
3•dgomes003•25m ago•0 comments

Verilator: Open-source SystemVerilog simulator and lint system

https://github.com/verilator/verilator
2•fanf2•26m ago•0 comments

Ubuntu Maker Canonical Announces MicroCloud Cluster Manager

https://ubuntu.com//blog/introducing-microcloud-cluster-manager
1•roger01•26m ago•1 comments

ClawRun – Deploy and manage AI agents in seconds

https://clawrun.sh/
6•afshinmeh•28m ago•2 comments

Sell Bio

https://www.sellb.io/en
2•donihernandez•31m ago•0 comments

First science from private Moon lander challenges lunar divide

https://www.science.org/content/article/first-science-private-moon-lander-challenges-lunar-divide
3•Brajeshwar•36m ago•0 comments

Claude Code and the Great Productivity Panic of 2026

https://www.bloomberg.com/news/articles/2026-02-26/ai-coding-agents-like-claude-code-are-fueling-...
5•muzz•37m ago•1 comments

Thinking Fast, Slow, and Artificial: How AI Is Reshaping Human Reasoning

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6097646
3•Anon84•37m ago•0 comments

Show HN: DialectForge OS – Linux fork with structural security, not layered

https://github.com/dialectforge/dfos-releases
1•dialectforge•41m ago•0 comments

OpenAI Plans Desktop Superapp Merging ChatGPT, Codex, and Atlas Browser

https://www.cnbc.com/2026/03/19/openai-desktop-super-app-chatgpt-browser-codex.html
4•jee599•42m ago•0 comments

Looking for ArXiv cs.AI endorsement for AI coding education paper [pdf]

https://github.com/zainnab-sparq/cc-self-train/blob/master/Agentic%20Education%20-%20Using%20Clau...
2•zainnab•42m ago•1 comments

Pokemon and the Iran War Nerdsniped Me into Quantifying Strategy

https://danieltan.weblog.lol/2026/03/how-pokemon-and-the-iran-war-nerdsniped-me-into-quantifying-...
2•danieltanfh95•43m 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•11mo ago

Comments

rvz•11mo 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•11mo 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•11mo 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