frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Things that made me come back to Emacs

https://cephei8.dev/blog/emacs-things/
1•signa11•5m ago•0 comments

I turned Slack into a live console for my production dotnet app

https://mykeels.com/blog/i-turned-slack-into-a-live-console-for-my-production-dotnet-app/
1•mykeels•6m ago•0 comments

Heap. – native desktop Kanban, calendar, and docs for engineers

https://github.com/sectapunterx/heap
1•eloisius•10m ago•0 comments

Five Unix ideas from the 1970s are why Linux still works so well

https://www.howtogeek.com/stop-reinventing-the-wheel-these-unix-ideas-from-the-seventies-are-why-...
1•teleforce•13m ago•0 comments

RL economics, morally charged terms, and "distillation"

https://thomasdullien.github.io/posts/2026-06-15-rl-economics-morally-charged-terms-and-distillat...
1•samuel246•16m ago•0 comments

How to prevent white clothes from turning yellow in storage

https://www.southernliving.com/how-to-pevent-white-clothes-from-turning-yellow-in-storage-12016122
1•teleforce•16m ago•0 comments

Tokensave: An MCP Server That Saved Me Tokens While Coding

https://www.tobiasreithmeier.de/en/blog/tokensave-mcp-server-tutorial-review
1•freediver•20m ago•0 comments

Show HN: Synapse – local codebase indexer and MCP server for Claude Code

https://github.com/nrkoka786/synapse
1•nrkoka1•29m ago•0 comments

Overload and insight look identical from the outside

https://pilgrima.ge/p/what-the-wire-knows
1•momentmaker•31m ago•0 comments

Show HN: Free car spec db to defeat the paywalls

https://openlaborproject.com/
1•chackleman•35m ago•1 comments

Madison Square Garden Sues Wired Magazine over L.G.B.T.Q. Tracking Report

https://www.nytimes.com/2026/07/18/business/media/msg-entertainment-sues-wired-magazine.html
1•ChrisArchitect•36m ago•1 comments

How Word Count Is Important for Social Media Posts

https://medium.com/@thesuperrepemail/how-word-count-is-important-for-social-media-posts-87372645377c
2•rajsuper123•48m ago•0 comments

William Gaddis and William H. Gass: A Literary Conversation and Reading (1995)

https://www.92ny.org/archives/william-gaddis-and-william-h-gass-a-literary-conversation-and-reading
1•ofalkaed•53m ago•0 comments

Trump Media pitched $100K monthly fee for fastest feed of US president's posts

https://www.reuters.com/business/media-telecom/trump-media-pitched-100000-monthly-fee-fast-feed-u...
4•geox•55m ago•1 comments

Disney Has Started Feeding Your Kids AI Slop

https://kotaku.com/disney-has-started-feeding-your-kids-ai-slop-2000717222
5•wslh•1h ago•0 comments

Lawyers risk being sued for failing to use AI

https://www.legalcheek.com/2026/07/lawyers-risk-being-sued-for-failing-to-use-ai/
3•Tomte•1h ago•0 comments

LLM-Integrated Multivariable Calculus Course

https://calculus.academa.ai/
6•sinaatalay•1h ago•2 comments

Topographical Collection of King George III

https://www.flickr.com/photos/britishlibrary/collections/72157719509637544/
1•Eridanus2•1h ago•0 comments

XRPLink – Cryptographically Verified XRP Payment Receipts, Powered by Flare FDC

https://github.com/joverman/xrplink
1•joverman•1h ago•0 comments

FDA approves new kind of cholesterol pill

https://www.fda.gov/news-events/press-announcements/fda-approves-first-oral-pcsk9-inhibitor-lower...
6•mgh2•1h ago•1 comments

Useless Use of Cat Award

https://porkmail.org/era/unix/award
1•gregsadetsky•1h ago•1 comments

Novo Space builds modular computers for satellite constellations

https://runtimewire.com/article/startup-spotlight-novo-space-builds-modular-computers-for-satelli...
1•ryanmerket•1h ago•0 comments

Gaming Sickness and Its Impact on Players' Experiences with Games

https://dl.acm.org/doi/10.1145/3670653.3677494
2•BiraIgnacio•1h ago•0 comments

I built a browser-based P2P file transfer tool using WebRTC

https://airdows.com/
2•SamOkampo•1h ago•1 comments

Jordan Ellenberg explains how geometry helps us understand the world

https://www.cbc.ca/lite/story/1.6448326
1•colinprince•1h ago•0 comments

Retry is not a loop, its a data structure

https://siddhantkhare.com/writing/retry-is-not-a-loop
2•meetpateltech•1h ago•0 comments

Association Between Low/No-Calorie Artificial Sweeteners and Cognitive Decline

https://www.neurology.org/doi/10.1212/WNL.0000000000214023
2•corvad•1h ago•0 comments

PersonalDrive: Personal Cloud Storage

https://personaldrive.xyz/
2•thunderbong•1h ago•1 comments

Implementation of "Writing a C compiler" in Zig

https://github.com/igor84/wcc
2•rguiscard•2h ago•0 comments

Toyota pump tech could be key to hydrogen-combustion practicality

https://www.autocar.co.uk/car-news/technology/toyota-pump-tech-could-be-key-hydrogen-combustion-p...
2•breve•2h ago•0 comments
Open in hackernews

AI hasn't shifted the bottleneck from coding to code review

https://thenewstack.io/ai-code-bottleneck-myth/
6•Brajeshwar•1d ago

Comments

r-johnv•1d ago
One of the primary purposes of batching is to release features at a regular cadence, and all releases go through the same minimum set of checks to catch any unexpected regressions.

In my experience, the workload of these checks grows much slower than linearly with batch size.

What other factors am I missing here?

yorwba•19h ago
I think the article is mostly just confusing throughput and latency. Releasing on a fixed schedule adds some latency, but that doesn't mean there's a bottleneck constraining throughput. And long-term, development speed is determined by throughput, not whether you shipped a feature a few days earlier.

High latency might become a problem if you need user feedback to decide what to work on next, but you don't necessarily need to push everything to production immediately to get feedback. You can have a separate beta/staging system and ask users to check out your new changes there before they get rolled out to everyone.