frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Bring your own init: PID 1 handoff

https://microsandbox.dev/blog/bring-your-own-init
1•toksdotdev•35s ago•0 comments

The Drones Coming to Schools to Stop Mass Shootings

https://www.wsj.com/business/a-startup-is-supplying-drones-to-high-schools-to-stop-mass-shootings...
1•rmason•1m ago•1 comments

Camera Firmware Engineer, Consumer Devices

https://openai.com/careers/camera-firmware-engineer-consumer-devices-san-francisco/
1•haberdasher•2m ago•0 comments

Michael Burry: the market today feels like 'last months of the 1999-2000 bubble'

https://www.cnbc.com/2026/05/08/michael-burry-says-the-market-today-feels-like-the-last-months-of...
2•1vuio0pswjnm7•3m ago•1 comments

Pokegents: Making multi-agent coding feel like a team

https://castform.com/blog/pokegents/
6•kumama•5m ago•1 comments

Show HN: Agent-fox – write a spec, run agent-fox, and go do something else

https://github.com/agent-fox-dev/agent-fox
1•mickuehl•6m ago•0 comments

Practical Formal Verification for MLIR Programs

https://arxiv.org/abs/2605.01124
1•matt_d•8m ago•0 comments

Designing Microkernel IPC

https://seiya.me/blog/microkernel-ipc-design
1•birdculture•9m ago•0 comments

Discord Incident

https://discordstatus.com
2•moelf•9m ago•0 comments

Gemini 3.1 Flash-Lite is now generally available

https://cloud.google.com/blog/products/ai-machine-learning/gemini-3-1-flash-lite-is-now-generally...
1•nateb2022•10m ago•0 comments

Digg Relaunches (Again)

https://di.gg/ai
1•qingcharles•11m ago•0 comments

How to Scale Your Model

https://jax-ml.github.io/scaling-book/
2•gmays•13m ago•0 comments

Meta's Embrace of A.I. Is Making Its Employees Miserable

https://www.nytimes.com/2026/05/08/technology/meta-ai-employees-miserable.html
2•1vuio0pswjnm7•13m ago•1 comments

Europe's quiet revolt against US cloud

https://willhackett.com/europe-revolt-against-us-cloud/
1•speckx•14m ago•0 comments

30 Points compliance check for redis generated by deep seek for Sparrow

https://chat.deepseek.com/share/9eakpdlaa6b88e38u3
1•melezhik•14m ago•1 comments

Someone vibe coded a dashboard for global energy flow

https://global-energy-flow.com/
1•ghoshbishakh•14m ago•0 comments

Remote Code Execution Vulnerability in Fooocus

https://mrbruh.com/fooocus/
2•MrBruh•15m ago•0 comments

Lets Encrypt Stopping Issuance for Potential Incident

https://letsencrypt.status.io/pages/incident/55957a99e800baa4470002da/69fe2d6698ca07050eb4b1b3
24•rbaudibert•16m ago•1 comments

Interpreting A/B Test Results: Statistical vs. Practical Significance

https://prepvector.substack.com/p/interpreting-ab-test-results-statistical
1•arnavashank19•16m ago•0 comments

Production engineering when trading billions of dollars a day [video]

https://www.youtube.com/watch?v=zR9PpXWsKFQ
2•abstrus•16m ago•0 comments

Roadside Attraction

https://theoffingmag.com/essay/roadside-attraction/
2•aways•18m ago•0 comments

Next

https://apps.apple.com/us/app/next-task-money-management/id6477492823
1•inkoda•20m ago•0 comments

You gave me a u32. I gave you root. (io_uring ZCRX freelist LPE)

https://ze3tar.github.io/post-zcrx.html
2•MrBruh•21m ago•1 comments

Show HN: Chat with UFO Files

3•freakynit•21m ago•2 comments

Guy Goma's Accidental BBC Interview Lives on After 20 Years

https://www.nytimes.com/2026/05/06/business/media/bbc-guy-goma-interview.html
2•nxobject•25m ago•0 comments

PayPal layoffs: New CEO cuts 20% of workforce in Q1 2026

https://qz.com/paypal-layoffs-ceo-turnaround-cost-cutting-050626
4•josephscott•25m ago•0 comments

My first in-prod corrupted hard drive problem

https://blog.pavementlink.ch/2026/05/07/my-first-corrupted-hard-drive-problem/
4•r1chk1t•26m ago•3 comments

Model Report, May 2026

https://www.oxen.ai/blog/oxens-model-report-may-8th-2026
4•eloyalbmartinez•29m ago•2 comments

Amazon's Durability

https://stratechery.com/2026/amazons-durability/
1•wslh•29m ago•0 comments

Jane Street Pulls in Record $16.1B Quarterly Trading Haul

https://www.bloomberg.com/news/articles/2026-05-08/jane-street-pulls-in-record-16-1-billion-quart...
3•petethomas•29m 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.