frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Investigating Split Locks on x86-64

https://chipsandcheese.com/p/investigating-split-locks-on-x86
1•ingve•2m ago•0 comments

Purisaki Berberine Patches – Herbal Metabolism Support

https://experiment.com/projects/wpurwskbhbclzxxrvmwj/protocols/24143-purisaki-berberine-patches-i...
1•FrankHFix•3m ago•0 comments

Trump Took the U.S. to War with Iran

https://www.nytimes.com/2026/04/07/us/politics/trump-iran-war.html
1•u1hcw9nx•6m ago•0 comments

We moved Railway's frontend off Next.js. Builds went from 10+ mins to under two

https://blog.railway.com/p/moving-railways-frontend-off-nextjs
3•bundie•7m ago•0 comments

Temporarily disabling language support on rubygems.org

https://blog.rubygems.org/2026/04/07/temporarily-disabling-language-support.html
1•ciconia•10m ago•0 comments

Two Years of Valkey

https://redmonk.com/sogrady/2026/04/06/valkey-at-two/
2•gpi•12m ago•0 comments

Optinum – finds the blind spots AI coding agents systematically miss in PR tests

https://github.com/anhnguyensynctree/optinum
2•nta25297•14m ago•1 comments

Anatomy of Mercor's Data Breach

https://share.jotbird.com/restless-steady-riverbend
1•generativeai•15m ago•0 comments

Unlocking cloud inference compute for OpenClaw

2•openinfer•17m ago•0 comments

Improving Interactive In-Context Learning from Natural Language Feedback

https://arxiv.org/abs/2602.16066
1•revv00•20m ago•1 comments

Russians turn to cat feeders, classifieds, and vacuum cleaners to stay connected

https://meduza.io/en/feature/2026/04/02/with-telegram-blocked-russians-turn-to-cat-feeders-classi...
1•BaudouinVH•20m ago•0 comments

Under the hood of MDN's new front end

https://developer.mozilla.org/en-US/blog/mdn-front-end-deep-dive/
2•soheilpro•21m ago•0 comments

Show HN: Voiceplan.it – The New Planning Mode

https://voiceplan.it/
1•elliptic1•24m ago•0 comments

Energy giant Drax pulls out of UK climate plan

https://www.politico.eu/article/energy-giant-drax-pulls-out-of-uk-climate-plan/
1•leonidasrup•26m ago•1 comments

GPU-resident vector database under 300kb

https://github.com/PsyChip/VEC
1•psychip•30m ago•0 comments

Show HN: I'm trying to get 100 users in 24 hours with this simple idea

https://buildfeed.co
1•moodiverse•31m ago•9 comments

"I started to lose my ability to code"

https://thenewstack.io/ai-coding-tools-reckoning/
2•MrBuddyCasino•32m ago•0 comments

Automated penetration testing for SaaS products

https://pentestpro.app/
1•Mhambe•34m ago•0 comments

Razor1911. A demo 40 years in the making

https://www.youtube.com/watch?v=Lw4W9V57SKs
2•tetrisgm•34m ago•3 comments

How the Vision Pro Rollout Inflamed Tensions at Apple

https://www.wired.com/story/book-excerpt-mutiny-noam-scheiber-apple-vision-pro/
5•f_allwein•38m ago•0 comments

Swish Concurrency Engine

https://github.com/becls/swish
1•NiceAndWarm•40m ago•0 comments

Acoustic Eavesdropping with Telecom Fiber Optic Cables

https://www.ndss-symposium.org/ndss-paper/hiding-an-ear-in-plain-sight-on-the-practicality-and-im...
2•Chaucer•40m ago•0 comments

Does Vinyl Sound Better?

https://news.harvard.edu/gazette/story/2026/04/does-vinyl-sound-better/
2•axiomdata316•43m ago•1 comments

Introduction to Nintendo DS Programming

https://www.patater.com/files/projects/manual/manual.html
1•medbar•46m ago•0 comments

Barrington's Theorem for Mortals

https://briankitano.com/circuit-complexity/expressivity-part-1/
1•bkitano19•48m ago•0 comments

FitPlan AI – AI that builds your workout plan in seconds

https://projectgym.org/
1•FitPlanAI•54m ago•0 comments

A public changelog for product builders to share updates

https://www.featdrop.com/
1•allanhahaha•55m ago•1 comments

DevGlish – I mispronounced "Kubernetes" for 2 years. So I built this

https://devglish.com/
3•dengjiuhong•59m ago•0 comments

EU's Exposed AI Infrastructure

https://insecurestack.substack.com/p/eus-exposed-ai-infrastructure
2•perch56•1h ago•1 comments

Potential Anthropic Price Increases

3•ms_menardi•1h ago•0 comments
Open in hackernews

Ask HN: How are you using LLMs for coding?

2•mraza007•11mo ago
What have been your tips and tricks when coding with LLMs

Comments

benoau•11mo 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•11mo 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•11mo 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.