frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Temperature Zero for Culture: Why Everything Is Starting to Look the Same

https://laurenleek.substack.com/p/temperature-zero-for-culture-why
1•jalev•2m ago•0 comments

Startup Just Got Approval to Test Beaming Sunlight to Earth

https://www.smithsonianmag.com/smart-news/an-aerospace-startup-just-got-approval-to-test-beaming-...
1•geox•2m ago•0 comments

AI text watermarking is not a big deal

https://www.seangoedecke.com/ai-text-watermarking-is-not-a-big-deal/
1•meetpateltech•5m ago•0 comments

Reaction-Diffusion Playground(2020)

https://jasonwebb.github.io/reaction-diffusion-playground/
1•o4c•8m ago•1 comments

Cogister: Hitster for Philosophy

https://cogitster.vibetrunk.com/
1•spockz•12m ago•0 comments

Pax Silica vs. Waico: Competing AI and Tech Blocs

https://earthly.city/datasets/geoevent/naddr1qvzqqqyj3vpzpfe82g8nhe34mayaj656t2zctv0d5nsv6kjnss55...
2•rzerowan•12m ago•0 comments

Invisible to the Machine: auditing AI recommendation against a complete census

https://arxiv.org/abs/2608.07069
1•fspunch•16m ago•0 comments

Show HN: AlertChecker – get emailed when a plain-English statement comes true

https://alertchecker.com
1•alertchecker•17m ago•1 comments

Show HN: PyScrappy, self-healing web scraping selectors plus an MCP server

https://github.com/mldsveda/PyScrappy
1•vedaant00•19m ago•0 comments

Everything You Need to Know About 2-5 Horn Voicings

https://www.toshiclinchproductions.com/2-5-horn-voicings
1•lioeters•21m ago•0 comments

How Diplomats See the World

https://asteriskmag.com/issues/15/how-diplomats-see-the-world
2•sebg•22m ago•0 comments

Google's Favicon API

https://gist.github.com/iuzn/bbd4df2823bd69643a8553d6967f68eb
3•thecopy•27m ago•0 comments

What happens when an LLM never sees material beyond fifth grade?

https://littlelearner-ll.github.io/
31•porridgeraisin•27m ago•8 comments

A century after Goscinny, Asterix remains a witty guide to resisting authority

https://economictimes.indiatimes.com/opinion/et-commentary/a-century-after-goscinnys-birth-asteri...
2•thunderbong•32m ago•1 comments

Growth of CVEs fixed in Postgres looks exponential

https://twitter.com/samokhvalov/status/2088870235705319924
1•samokhvalov•35m ago•0 comments

A Third World Embedded Engineer Responds to RISC-V They Should Have Known Better

https://rvembedded.com/blog_post/12/
2•fork-bomber•37m ago•0 comments

I'm 15 building the place where ambitious people find the people build with

https://www.linkupbuild.com/
1•tanakabuilds•48m ago•0 comments

A portable, sensitive, low power, analog Geiger counter

https://ludens.cl/Electron/geiger2/geiger2.html
1•crorella•52m ago•0 comments

AI Agents have a half-life

https://construct.computer/blog/agent-task-half-life/
2•ankushKun•52m ago•0 comments

DOJ deploys tactic to strip naturalized Americans of citizenship [video]

https://www.youtube.com/watch?v=bZDq3e0wYgc
3•mgh2•55m ago•0 comments

Connecting my Illumos box to a Japanese ISP

https://skalski.dev/connecting-my-illumos-box-to-a-japanese-isp/
2•mskalski•56m ago•0 comments

An Anecdote Against Slop Artifacts

https://www.markusde.ca/pages/noslop.html
1•DamonHD•58m ago•0 comments

Is this the end of human code review?

https://arxiv.org/abs/2608.12440
1•bonjourjoel•1h ago•6 comments

Cloning could be used to save species–or make human "organ sacks"

https://www.technologyreview.com/2026/08/14/1141919/cloning-save-species-or-make-human-organ-sacks/
2•joozio•1h ago•0 comments

Show HN: See what your Linux machine measured at boot (through TPM eventlog)

https://jiankun.lu/eventlog-parser/
1•jklu•1h ago•0 comments

Two years as prime minister in a hit new game – then my cabinet deserted me

https://www.bbc.co.uk/news/articles/cq56pzqy6jvo
2•zeristor•1h ago•0 comments

Show HN: Laptop is the last place your secrets are still in plaintext

https://github.com/jitpass/jit
36•bukershok•1h ago•35 comments

Why Aging May Be a Program, Not a Breakdown

https://www.quantamagazine.org/why-aging-may-be-a-program-not-a-breakdown-20260814/
3•pykello•1h ago•0 comments

Beancount in Rust

https://rustledger.github.io
1•NamlchakKhandro•1h ago•0 comments

AI Stock Research Assistant · Streamlit

https://ai-stock-research-kiaan.streamlit.app
2•KiaanKothari•1h 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.