frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Twenty-Five Years After 9/11

https://hassanali110.substack.com/
1•securitystrateg•18s ago•0 comments

When Yemen and Saudi Arabia Come to Pakistan

https://hassanali110.substack.com/p/when-yemen-and-saudi-arabia-come
1•securitystrateg•2m ago•0 comments

There is no model called taste-1

https://cmd.safzan.dev/
1•infomiho•3m ago•0 comments

Show HN: Fentaris, an open-source proxy for managing multiple MCP servers

https://github.com/Fentaris/fentaris
1•Gabry848•3m ago•0 comments

kev: Jev-like model built on Qwen2.5-0.5B

https://github.com/jaredpalmer/kev
1•tosh•5m ago•0 comments

AI coding agents' 0-click RCE flaw could hand attackers keys to the kingdom

https://www.theregister.com/security/2026/09/17/ai-coding-agents-0-click-rce-flaw-could-hand-atta...
1•sbulaev•6m ago•0 comments

Vale, code-like linting for prose

https://vale.sh
1•birdculture•6m ago•0 comments

Can the AI arms race be stopped?

https://www.economist.com/leaders/2026/09/17/can-the-ai-arms-race-be-stopped
1•andsoitis•7m ago•0 comments

Is ChatGPT Dead

2•ahanjura•7m ago•1 comments

How to be a wise optimist about science and technology? (2024)

https://michaelnotebook.com/optimism/index.html
1•Gooblebrai•8m ago•0 comments

The Math of Clothing Design

https://mrc.stanford.edu/events/mathematics-clothing-design
1•marysminefnuf•10m ago•0 comments

A local Jev backed by DiffusionGemma

https://github.com/githubnext/localjev
1•awei•10m ago•0 comments

SafeSeal: Certifiable Watermarking for LLM Deployments

https://suny.technologypublisher.com/tech?title=SafeSeal%3a_Certifiable_Watermarking_for_LLM_Depl...
1•geox•10m ago•0 comments

Why I'm (sort of) not worried about AI – Jack Conte - SXSW [video]

https://www.youtube.com/watch?v=17_HcR95YBc
2•consumer451•15m ago•0 comments

Onyx: An interchange format for personal food diaries

https://github.com/dsemakin/onyx
1•dsemakin•16m ago•0 comments

We found defects in 37 of DeepSWE's 113 tasks

https://www.scrimdata.com/blog/deep-swe-benchmark-defects-ambiguities
3•lebek•17m ago•0 comments

Show HN: Htmldoc – A pastebin that renders the HTML your coding agent writes

https://htmldoc.space
1•ajaxray•18m ago•0 comments

Democrats try to ride data center backlash to election victory rural US Midwest

https://www.reuters.com/legal/government/democrats-try-ride-data-center-backlash-election-victory...
2•dat999zx•18m ago•0 comments

Jaguar XJ220 Jail Broken

https://www.theautopian.com/this-ancient-computer-program-is-the-key-to-keeping-jaguar-xj220-supe...
1•mauvehaus•19m ago•0 comments

Show HN: I asked Claude Code to teach my son about the phases of the moon

https://ricardoborges.github.io/MoonSrc/
2•r2ob•23m ago•0 comments

Yoshua Bengio's non-profit LawZero to build safe AI

https://www.theglobeandmail.com/business/article-yoshua-bengio-lawzero-receives-300-million-from-...
2•heresie-dabord•25m ago•0 comments

Type Systems You Might Not Know (But Will Love)

https://www.wearedevelopers.com/videos/100067-type-systems-you-might-not-know-but-will-love
2•silenttwin•25m ago•0 comments

What failed when I trained an object detector on synthetic images only

https://datasint.tech/rendered-training-data.html
3•stepangalickov•31m ago•2 comments

How to add comments to a static site using GitHub Pull Requests(2023)

https://nateeagle.com/posts/how-to-add-comments-to-a-static-site-using-github-pull-requests/
1•fv3y•34m ago•0 comments

When "Review" Becomes Permission: A Prompt Injection Lab

https://rsec.uk/insights/when-review-becomes-permission-a-prompt-injection-lab-mu5tsobx
1•Irsheidat•34m ago•0 comments

Hunting the Wild Vibrotruck

https://hackaday.com/2026/09/09/hunting-the-wild-vibrotruck/
1•sohkamyung•35m ago•0 comments

AI kill switch, explained: 'It's not too little, but it's probably too late'

https://www.cnbc.com/2026/09/19/ai-kill-switch-explained.html
1•pseudolus•37m ago•0 comments

Show HN: ParentPackIt – a mobile checklist app designed for parents and kids

https://apps.apple.com/us/app/parentpackit-kids-checklist/id6748917901
1•ashkans_dev•37m ago•0 comments

Hackers breach OpenAI using Claude tools, gaining access to employee accounts

https://www.tomshardware.com/tech-industry/cyber-security/hackers-breach-openai-using-claude-tool...
2•thunderbong•37m ago•0 comments

Is startpage.com mining Bitcoin when you open it?

1•roscas•38m ago•1 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.