frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Bun v1.4.1

https://bun.com/blog/bun-v1.4.1
1•ErenayDev•3m ago•0 comments

Scientists observe Einstein's gravity in the quantum world

https://www.eurekalert.org/news-releases/1141933
1•_hao•5m ago•0 comments

Whistle Synth

https://www.jefftk.com/p/whistle-synth-mac-app
1•luu•8m ago•0 comments

Tracing np.add, all the way down

https://blog.veitheller.de/numpy.html
1•luu•10m ago•0 comments

A preview of the future IA documentation

https://intel.github.io/SDM/announcement/2026/08/20/announce-preview.html
1•luu•15m ago•0 comments

Sudden Unexpected Death in the Pfizer Trial: A Pharmacovigilance Failure

https://esmed.org/MRA/mra/article/view/7810/99193550508
1•inanothertime•16m ago•0 comments

Hot take on GPT-6 Astra

https://garymarcus.substack.com/p/hot-take-on-gpt-6-astra
2•Bluestein•17m ago•2 comments

By 2029 no computer or "machine intelligence" will have passed the Turing Test

https://longbets.org/1/
1•tetris11•17m ago•0 comments

Nvidia's AVO harness boosts Opus 5 to 100% on ARC-AGI 3

https://developer.nvidia.com/blog/nvidia-avo-reaches-100-on-arc-agi-3-demonstrating-a-frontier-le...
1•irthomasthomas•20m ago•0 comments

Cybercab motor uses no rare earth metals

https://twitter.com/elonmusk/status/2095720611695759704
2•tosh•28m ago•0 comments

German Government abandons plan for BSI constitutional amendment

https://www.heise.de/en/news/Cybersecurity-Government-abandons-plan-for-BSI-constitutional-amendm...
2•doener•32m ago•0 comments

Which European league is hardest to predict? 52,471 matches with closing odds

https://pythiafootball.com/research/hardest-league-to-predict/
1•Yiannis91•33m ago•0 comments

Punktfunk – Game streaming that outgrew GameStream

https://punktfunk.unom.io/en/
1•sagacity•34m ago•0 comments

Nerdminer mines xcoin on a Mac using new consensus algoritm

https://medium.com/@knexcoin/why-a-macbook-beats-a-mining-warehouse-on-metaldag-3c0e4f498b87
1•winnertakeall•38m ago•0 comments

A hundred coffee machines and the joy of small open source

https://sjg.io/writing/a-hundred-coffee-machines-and-the-joy-of-small-open-source/
1•simonjgreen•41m ago•0 comments

CERN Transitioning Computers To Debian After Being A Longtime RHEL Institution

https://www.phoronix.com/news/CERN-Goes-Debian-Leaving-RHEL
4•thunderbong•41m ago•1 comments

Kraaken: A Ship, Power Plant, Reservoir and Data Centre in One

https://energydigital.com/news/kraaken-a-ship-power-plant-reservoir-data-centre-in-one
1•geox•42m ago•0 comments

Show HN: Professional Security Testing Platform

https://bugbounty-arsenal.net/
3•foxvr•43m ago•0 comments

PostHog reported zero signups while Supabase showed one

https://lifecmp.com/blog/posthog-zero-signups-supabase-one
1•michaelwang100•45m ago•0 comments

ERIS: Local-first vault agent in Rust, grammar-enforced tools

https://github.com/janpauldahlke/eris
1•teleforce•47m ago•0 comments

Show HN: TERMy – A fast terminal assistant that does not use LLMs

https://github.com/gioblu/NPC-Forge/blob/main/docs/development.md
1•gioscarab•49m ago•0 comments

Tesla launches steering-wheel-free Cybercab robotaxi in Austin

https://www.businessinsider.com/tesla-cybercab-robotaxi-launch-event-austin-self-driving-car-2026-9
1•joak•52m ago•0 comments

Show HN: Send secrets a server can't decrypt, even if compelled to

https://serial.sumitdwivedi.com/
2•AuraFarm•53m ago•1 comments

How I use GBNF grammars to make small local models stop hallucinating JSON

https://eris-system.dev/blog/gbnf-grammars
1•teleforce•53m ago•0 comments

Ask HN: Rename ChatGPT?

1•alansaber•53m ago•0 comments

Nicholas Polson Has Written Over 200 Academic Papers in 2026 (so far)

https://economistwritingeveryday.com/2026/08/26/nicholas-polson-has-written-over-200-academic-pap...
4•luu•59m ago•0 comments

Show HN: Prices.eu.org

https://prices.eu.org/
3•sourcecodeplz•1h ago•1 comments

BlackRock CEO said Americans' savings and investments will fund data centers

https://www.msn.com/en-us/money/economy/blackrock-ceo-said-americans-savings-and-investments-will...
2•SockThief•1h ago•1 comments

Promptmatics – Free telemprompter following your voice

https://promptmatics.vercel.app/
1•olvy0•1h ago•0 comments

Weird Little Guys of FOSS

https://drewdevault.com/weird-guys/
4•absoluteleyyes•1h ago•2 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.