frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: LLM CLI (Claude, etc.) copy text has hard returns – macOS tool clean it

https://github.com/andrewarrow/clean-text
1•fcpguru•1m ago•1 comments

Desk Setup: From Multi-Monitor to Single Screen with Virtual Desktops

https://www.ssp.sh/brain/computer-desk-setup-monitor-workflow/
1•birdculture•1m ago•0 comments

Yes, You're Royally Screwed. Now Here's What to Do About It

https://www.ampup.ai/blog/saaspocolypse
1•amitprakash1•2m ago•0 comments

AI Is Bad

https://freelancing-gods.com/2026/02/13/ai-is-bad
1•xky•2m ago•0 comments

AI, Jobs, and the 40-Year-Old Paper We Forgot to Read

https://fayssalelmofatiche.substack.com/p/ai-jobs-and-the-40-year-old-paper
1•fayssalm•3m ago•0 comments

Theo on context management: "Delete your Claude.md (and your AGENT.md too)" [video]

https://www.youtube.com/watch?v=GcNu6wrLTJc
1•zahlman•4m ago•0 comments

OpenHarness: A code-first, composable SDK to build powerful AI agents

https://github.com/MaxGfeller/open-harness
1•MaxGfeller•4m ago•1 comments

Qntm's Leap Second Simulator

https://qntm.org/files/simulator/index.html
1•pavel_lishin•4m ago•0 comments

Mercury 2: The fastest reasoning LLM, powered by diffusion

https://www.inceptionlabs.ai/blog/introducing-mercury-2
1•fittingopposite•4m ago•0 comments

Blinc: A declarative, reactive UI system with GPU-accelerated rendering

https://github.com/project-blinc/Blinc
1•PaulHoule•6m ago•0 comments

Terms of use: What types of competition do model providers ban?

1•SteveVeilStream•7m ago•0 comments

Claude Code Remote Control

https://twitter.com/claudeai/status/2026418433911603668
1•strzalek•9m ago•0 comments

Ghostly UV sparks light up forests as thunderstorms pass overhead

https://www.scientificamerican.com/article/ghostly-uv-sparks-light-up-forests-as-thunderstorms-pa...
1•mathgenius•9m ago•0 comments

Maxwells Equation

1•MrBlink•9m ago•0 comments

A KID survived – Satellite post flight report

https://orbitalparadigmspace.notion.site/
2•gtzi•10m ago•0 comments

A quine that plays snake over its own source

https://github.com/taylorconor/quinesnake
1•nc0•10m ago•0 comments

Identity Watchlist System Tied to OpenAI Discovered in Logs

https://blog.boycat.io/posts/openai-persona-identity-watchlist-infrastructure-investigation-2026
1•abdelhousni•10m ago•1 comments

Rust Debugging Survey 2026

https://blog.rust-lang.org/2026/02/23/rust-debugging-survey-2026/
1•birdculture•11m ago•0 comments

Show HN: OpenTangl – Autonomous AI dev engine for multi-repo products

https://github.com/8co/opentangl
1•8con•12m ago•0 comments

Show HN: MephistoVault – Zero-storage P2P file transfer via WebRTC

https://www.mephistoshares.online/
1•benmxrt•12m ago•0 comments

Cell Service for the Fairly Paranoid

https://www.cape.co/
3•0xWTF•13m ago•0 comments

deck2video: Generate LLM-narrated presentations from Markdown

https://github.com/pjdoland/deck2video
1•droctothorpe•13m ago•1 comments

OpenFeds – Tracking the federal workforce with OPM data (2018–2025)

https://www.openfeds.org
2•kianoconnor•18m ago•0 comments

UK Government confirms broadcast-style regulations for streaming services

https://news.sky.com/story/streaming-services-like-netflix-to-be-subject-to-same-regulation-as-br...
1•HtmlProgrammer•18m ago•0 comments

Show HN: Prompt your billing system – Flexprice MCP Server

https://flexprice.io/
2•manishfp•19m ago•0 comments

The Great Data Reckoning (2028)

https://joereis.substack.com/p/2028-the-great-data-reckoning
2•hn1986•22m ago•1 comments

AWS Extends Agentic AI Capabilities of Kiro to Improve Code Quality

https://devops.com/aws-extends-agentic-ai-capabilities-of-kiro-developer-tool-to-improve-code-qua...
1•t2f2•23m ago•0 comments

New site design and philosophy for Stack Overflow

https://meta.stackoverflow.com/questions/438177/new-site-design-and-philosophy-for-stack-overflow...
4•rurp•24m ago•0 comments

Show HN: Autoclipper - turn long form content into short form in a few seconds

https://autoclipper.live/
1•nihey•25m ago•1 comments

Postman Removes Free Plan?

https://www.usebruno.com/migrate
2•Letmetest•26m ago•1 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•10mo ago

Comments

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