frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Tidal-Innards

https://glfmn.io/posts/tidal-innards/
1•ibobev•43s ago•0 comments

Bend 2 Is Here

https://github.com/bendlang/bend
1•tempaccount420•1m ago•1 comments

RFC 3161 vs. OpenTimestamps: What Each Timestamp Proves

https://zatona.dev/blog/rfc-3161-vs-opentimestamps
1•dzatona•2m ago•0 comments

The Harness Margin Opportunity

https://tomtunguz.com/the-harness-margin-opportunity/
1•imichael•2m ago•0 comments

Crafting Painterly Shaders

https://blog.maximeheckel.com/posts/on-crafting-painterly-shaders/
1•ibobev•2m ago•0 comments

Bend

https://bend-lang.com/
2•nicolas-siplis•3m ago•0 comments

Abusing ID3 chapters to turn videos into glanceable podcasts

https://alexwlchan.net/2026/glancecast/
1•ingve•3m ago•0 comments

Move your Mem0 memories to Memanto

https://memanto.ai/blog/move-your-mem0-memories-to-memanto
2•supportm•4m ago•0 comments

Jina-OCR-v1: Faster Document Parsing on Low-Budget GPU

https://jina.ai/en-US/news/jina-ocr-v1-faster-document-parsing-on-low-budget-gpus/
3•torchenjoyer•5m ago•0 comments

The One Website You Will Never Admit You Went On

https://galratner.substack.com/p/this-is-the-one-website-you-will
1•bliblue•5m ago•1 comments

More than 100k people in Japan are now aged 100 or older

https://www.bbc.com/news/articles/cmzezj5e18xxo
1•karakoram•6m ago•0 comments

The bug your AI reviewer flagged twice was in your PR five times

https://github.com/OrenAshkenazy/gh-review-loop
1•chaosinc604•7m ago•0 comments

The Tube Computer

https://www.thetubecomputer.com/
2•karakoram•8m ago•0 comments

A Netflix documentary led to resurrecting a 9/11 memorial

https://www.gwintrob.com/how-a-netflix-documentary-led-to-resurrecting-a-9-11-memorial/
1•rafaelc•9m ago•0 comments

Show HN: Vim-like TUI agent, complete tasks in 20–80k tokens instead of 300k+

https://easiest.ai/
1•skhameneh•13m ago•0 comments

Fast Math/Slow Math

https://terrytao.wordpress.com/2026/09/15/fast-math-slow-math/
1•coffeeaddict1•16m ago•0 comments

Jev beats Opus 5 at a Pokemon Showdown while being ~820x cheaper, ~10x faster

https://twitter.com/sid19arya0/status/2100458351440048258
2•sidarya0•17m ago•1 comments

Astra for Law

https://openai.com/index/astra-for-law/
30•vertigoruntime•21m ago•15 comments

Nerdlog, or How I Implemented a Simple Alternative to Graylog

https://dmitryfrank.com/projects/nerdlog/article
1•dimonomid•22m ago•0 comments

Microsoft, OpenAI lose fight to hide internal docs admitting scraping is theft

https://arstechnica.com/tech-policy/2026/09/microsoft-exec-called-ai-scraping-the-largest-theft-o...
3•pseudolus•22m ago•0 comments

Nobody pays for open source. We can force them to

https://seldo.com/posts/nobody-pays-for-open-source-we-can-force-them-to/
2•phyzome•23m ago•0 comments

What Policymakers and the Public Need to Know About the Cult of AI

https://www.techpolicy.press/what-policymakers-and-the-public-need-to-know-about-the-cult-of-ai/
2•cdrnsf•23m ago•0 comments

Killer AI Is Here. We're Using It in Iran

https://www.motherjones.com/politics/2026/09/killer-ai-iran-autonomous-maven-poll-ai-safety/
2•cdrnsf•23m ago•0 comments

Millions of fish tested Canada's largest nuclear plant

https://www.cbc.ca/news/canada/ontario-bruce-power-climate-change-gizzard-shad-fish-event-lake-hu...
1•geox•24m ago•0 comments

Show HN: HSL-Noise – A noise generator mapped to the HSL color space

https://hsl-noise.mitpit.com/
1•MitPitt•24m ago•0 comments

Friday – a personal AI agent that lives in your text messages

https://askfriday.io
1•claire_befreed•24m ago•0 comments

English: A vs. An

https://www.redblobgames.com/blog/2026-09-16-english-a-vs-an/
4•ingve•29m ago•0 comments

Brevo supply-chain attack injected ClickFix scripts on customer sites

https://www.bleepingcomputer.com/news/security/brevo-supply-chain-attack-injected-clickfix-script...
2•sbulaev•32m ago•0 comments

After the Write Hole (Btrfs)

https://claude.ai/code/artifact/90f24687-21ff-4709-a3e0-5bf50ba547c2
1•airhangerf15•34m ago•0 comments

Plugin4Shell – Zero Click RCE Vulnerability found in top four coding agents

https://www.air.security/blog-posts/plugin4shell
3•fishthethis•34m 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.