frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI is changing how we code. Is this positive?

1•simondukr•1m ago•0 comments

Contract for difference

https://en.wikipedia.org/wiki/Contract_for_difference
1•petethomas•1m ago•0 comments

Ask HN: When will the AI bubble burst and eradicate all life in the planet?

1•roschdal•1m ago•0 comments

Keycloak unauthenticated account takeover via reset-credentials flow bypass

https://github.com/keycloak/keycloak/issues/51833
1•4mnt•1m ago•0 comments

AI Is Changing How We Hac

1•simondukr•1m ago•0 comments

Agarwood

https://en.wikipedia.org/wiki/Agarwood
2•teleforce•4m ago•0 comments

PgDog is 2x faster than RDS Proxy

https://pgdog.dev/blog/pgdog-vs-rds-proxy
1•levkk•9m ago•0 comments

Vibe Coder – A Parody of Downfall

https://twitter.com/amitranjan/status/2090011590150287837
1•vismit2000•13m ago•0 comments

Ways to Smuggle SQLite into Nix

https://fzakaria.com/2026/08/19/three-ways-to-smuggle-sqlite-into-nix
1•ingve•14m ago•0 comments

NASA's Attempt to Save the Swift Telescope Has Failed

https://www.nytimes.com/2026/08/19/science/nasa-swift-telescope-failed-rescue.html
2•greenburger•15m ago•0 comments

Jason Arday's Final Self-Delusion

https://www.theatlantic.com/ideas/2026/08/jason-arday-death-lies-delusion/688311/
2•pabo•16m ago•0 comments

Why the Future Doesn't Need Us (2000)

https://www.wired.com/2000/04/joy-2/
2•naves•18m ago•0 comments

LLM Reasoning Traces Are Not Audit Records

https://rye.ai/blog/cot-faithfulness-reasoning-traces-not-audit-logs/
1•wakahiu•18m ago•1 comments

Windows brings out the Rorschach test in everyone

https://devblogs.microsoft.com/oldnewthing/20030825-00/?p=42803
2•luu•21m ago•0 comments

Rising number of people seeking ADHD diagnosis without treatment, say experts

https://www.theguardian.com/society/2026/aug/18/great-adhd-myth-rising-diagnosis-without-treatment
3•theanonymousone•24m ago•0 comments

The data center fight is heating up

https://www.axios.com/2026/08/19/ai-power-data-center-electricity-construction
6•1vuio0pswjnm7•34m ago•1 comments

The tests your agent writes defend the code it saw. Bugs included

4•Marvin_RunAI•35m ago•0 comments

Cuisenaire Rods

https://en.wikipedia.org/wiki/Cuisenaire_rods
3•tosh•36m ago•0 comments

Old.reddit.com is now login only

5•denvrede•36m ago•4 comments

Seoul to cover all sidewalks with shade by 2028 to combat heat waves

https://en.yna.co.kr/view/AEN20260819007000315
5•riffraff•37m ago•0 comments

Wrapping C libraries in Nim (2023)

https://peterme.net/wrapping-c-libraries-in-nim.html
2•erikschoster•38m ago•0 comments

Show HN: Rove – parallel coding agents that can fan out subtasks and report back

https://github.com/Sma1lboy/rove
1•zhallen_work•39m ago•0 comments

Asana cleared 5 years of engineering work in 2 weeks with Codex

https://openai.com/index/asana/
22•tosh•43m ago•34 comments

Why Every Receipt in Taiwan Is a Lottery Ticket [video]

https://www.youtube.com/watch?v=s1EVk7k9S7Q
3•dataflow•44m ago•0 comments

My Grandfather's Career Took Off at 58

https://kejiakejia.substack.com/p/my-grandfathers-career-took-off-at
17•jamarna•44m ago•2 comments

Samsung hikes chipmaking prices by up to 15% for new orders, on demand spike

https://www.reuters.com/business/autos-transportation/samsung-hikes-chipmaking-prices-by-up-15-de...
4•giuliomagnifico•45m ago•0 comments

Show HN: I fixed a dead Bitcoin ASIC and made a foundry that engraves your words

https://strikeablock.com/
1•laksgandikota•46m ago•0 comments

ChessIQ – training positional evaluation instead of just finding tactics

https://chessiqapp.com/
1•VyomJ•47m ago•0 comments

Psychedelics align brain activity with context

https://www.nature.com/articles/s41586-026-10910-z
3•dr_dshiv•51m ago•0 comments

Neo-Etiquette Basics: The New Rules of Being Human

https://www.joanwestenberg.com/p/neo-etiquette-basics-the-new-rules
1•rapnie•51m 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.