frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

iOS 27 Released

https://www.apple.com/os/ios/
1•Zhenya•1m ago•0 comments

Show HN: MCP Harbor – An MCP Registry

https://ai.mcpharbor.dev/
2•Lbesecker195•2m ago•0 comments

Kevin Boone: Why are modern televisions so cheap?

https://kevinboone.me/cheap_tv.html
2•speckx•3m ago•0 comments

Developing provably correct Rust code with Verus

https://www.amazon.science/blog/developing-provably-correct-rust-code-with-verus
2•Betelbuddy•3m ago•0 comments

EU to limit access to social media before age of 15

https://www.politico.eu/article/eu-to-propose-new-legislation-on-minors-protection-on-thursday/
3•thm•3m ago•0 comments

CHERIoT Provides Strong and Usable Isolation Without an MMU

https://queue.acm.org/doi/10.1145/3831361
1•birdculture•3m ago•0 comments

The Beauty of the Middle East

https://protesilaos.com/commentary/2026-09-14-beauty-middle-east/
1•dalvrosa•4m ago•0 comments

SCOTUSblog writer sentenced to six years in prison

https://www.nbcwashington.com/news/national-international/supreme-court-litigator-6-years-prison-...
1•mukmuk•4m ago•1 comments

The Great Unwind

https://revyl.com/blog/the-great-unwind/
2•anamhira•4m ago•0 comments

Show HN: I rebuilt a 4-year-old app in 5 days using many agents – here's harness

https://mega.dev/autonomous-product-development
1•gregrog•5m ago•0 comments

Volvo Trucks launches new 80-tonne electric truck with longer range

https://www.volvotrucks.com/en-en/news-stories/press-releases/2026/sep/volvo-trucks-launches-new-...
1•thelastgallon•5m ago•0 comments

Limen: One-human-many-agents harness built from files, Git and one CLI

https://github.com/overment/limen
1•gregrog•6m ago•0 comments

Theseus: A neural architecture research stack with time-travel debugging

https://twitter.com/houjun_liu/status/2099531885818855774
1•devStorms•7m ago•1 comments

We are all Product Engineers now – Seldo.com

https://seldo.com/posts/we-are-all-product-engineers-now/
1•rbanffy•9m ago•0 comments

Push-based vs. Pull-based Customization

https://brevzin.github.io/c++/2026/09/14/push-vs-pull/
1•ibobev•9m ago•0 comments

A1ex: A simple LLM coding agent in Lua

https://github.com/ziyao233/a1ex
1•uneven9434•9m ago•0 comments

Prompt steering can reduce DeepSeek v4 hallucinations to below GPT and Claude

https://propensitylabs.substack.com/p/how-to-get-deepseek-to-hallucinate
2•unconditioned•9m ago•0 comments

The Metamorphosis of Prime Intellect

https://en.wikipedia.org/wiki/The_Metamorphosis_of_Prime_Intellect
2•milleramp•12m ago•0 comments

Sign in as Y Combinator

https://trustedrouter.com/sign-in-as-ycombinator
1•ljlolel•12m ago•1 comments

America's Everywhere Millionaires

https://www.newyorker.com/magazine/2026/09/21/the-everywhere-millionaire-owen-zidar-and-eric-zwic...
5•bookofjoe•13m ago•1 comments

A cache hit is not proof that you skipped the work

https://siddhantkhare.com/writing/kv-cache-truth-auditor
2•gmays•13m ago•0 comments

We cut CDN metadata lookup latency by 91%

https://vercel.com/blog/how-we-cut-cdn-metadata-lookup-latency-by-91-percent
1•speckx•14m ago•0 comments

Your AI coding spend bought 25% more output. Duplication rose 81%.

https://thenewstack.io/ai-coding-duplication-rose/
1•Brajeshwar•15m ago•0 comments

Free IVF with Pavel Durov's donated sperm

https://altravita-ivf.com/free-ivf-with-pavel-durov-donated-sperm.html
3•Mizza•16m ago•0 comments

Buffer overruns, license violations and bad code: FreeBSD 13's close call (2021)

https://arstechnica.com/gadgets/2021/03/buffer-overruns-license-violations-and-bad-code-freebsd-1...
1•robinpie•16m ago•0 comments

Automattic's board is out after failed attempt to oust CEO Matt Mullenweg

https://techcrunch.com/2026/09/14/sources-say-automattics-board-is-out-after-failed-attempt-to-ou...
2•bhrlady•16m ago•1 comments

A Cop's Case for Flock

https://www.worksinprogress.news/p/a-cops-case-for-flock
2•abe94•19m ago•0 comments

Show HN: Biloba: fast and stable Chrome-based browser tests in Go and Vitest

https://github.com/onsi/biloba
3•onsi•19m ago•0 comments

Ask HN: Why the sudden "AI Regulation" posts?

2•stevenhubertron•19m ago•2 comments

Yulbbs

https://seancoates.com/blogs/yulbbs
2•speckx•20m ago•0 comments
Open in hackernews

Ask HN: How are you using LLMs for coding?

2•mraza007•1y ago
What have been your tips and tricks when coding with LLMs

Comments

benoau•1y ago
Whenever it gets in a cycle of fucking up, I ask it to break the code down into smaller functions and write a test suite for each individually.

Tell it what language or packages to use or it might make selections that add dependencies or require installing stuff on your computer.

Tell it how you want your code written or it will be an extra chore to accommodate linting requirements.

Basically just being very explicit.

GianFabien•1y ago
I mostly write low-level code in Python and JS. When working with a new API, I would sometimes find it difficult to locate information to fix problems. With ChatGPT I simply rubber duck my problem. It usually only takes a couple of iterations to zoom into the core solution.
Flundstrom2•1y ago
Copilot in visual studio to fix compiler errors and let it type all the boilerplate code by TAB-ing. Sometimes it even manages to spit out an entire - and correct - function.

Mistral Le Chat for more advanced questions and figuring out things that copilot can't.