frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: UBOM now has attributes and artifacts

https://github.com/comalice/ubom-v4
1•all2•2m ago•0 comments

Show HN: Dddiscover – a rabbit hole for images, quotes, podcasts, and facts

https://dddiscover.com
1•hidelooktropic•10m ago•0 comments

MIT Researchers Develop Generative AI Tool to Boost Database Searches

https://aibusiness.com/data/mit-researchers-develop-generative-ai-tool-to-boost-database-searches
1•caruasdo•10m ago•0 comments

Durable tribal knowledge for all your AI agents

https://fixdoc.dev/
1•supercech•11m ago•0 comments

Show HN: A directory of vibe-coded or AI built games

https://aibuiltgames.com/
2•rrmdp•21m ago•1 comments

Tracker in rare book ends up in Amazon facility destroying books to train AI

https://www.tomshardware.com/tech-industry/artificial-intelligence/secret-tracking-device-placed-...
3•emptybits•22m ago•0 comments

Everything I own, owned

https://schlarp.com/posts/everything-i-own-owned/
14•schlarpc•22m ago•1 comments

Top Shit: The Wheel of Paid Mediocrity

https://topshit.lol
1•insomnie•24m ago•0 comments

Why Aging May Be a Program, Not a Breakdown

https://www.quantamagazine.org/why-aging-may-be-a-program-not-a-breakdown-20260814/
2•marojejian•24m ago•1 comments

Flock CEO calls for 'compromise' as surveillance company faces growing backlash

https://techcrunch.com/2026/08/23/flock-ceo-calls-for-compromise-as-surveillance-company-faces-gr...
2•cocacola1•27m ago•0 comments

Cal Fire/USFS Aerial Firefighting Drop Safety (2019) [video]

https://www.youtube.com/watch?v=ONdSoiI4zIA
1•CaliforniaKarl•27m ago•0 comments

GCC Patch Adjusting AMD Zen 5 Misprediction Cost Nets 12% Win in Benchmark

https://www.phoronix.com/news/AMD-Zen-5-Mispredict-Cost
1•Alephinitesimal•28m ago•0 comments

Coupling free electrons to a trapped-ion quantum computer

https://arxiv.org/abs/2601.11446
1•rbanffy•29m ago•0 comments

I Tried to Solve Hangman

https://ballparkfigures.substack.com/p/hangman
1•jffry•29m ago•1 comments

GOP issues stark warning to AI companies

https://www.axios.com/2026/08/19/gop-data-center-memo-ai-election
2•adletbalzhanov•32m ago•2 comments

Show HN: World Models 101 - an interactive guide to World Models

https://worldmodels101.com/chapters/what-is-a-world-model
2•Niluk•36m ago•0 comments

Higher-Order List Operations

https://matt.might.net/articles/higher-order-list-operations/
1•azhenley•36m ago•0 comments

Linus Torvalds uses AI to debug an Intel GPU driver bug

https://github.com/torvalds/linux/commit/818bebeb63dd6bf5f4e07e145f6cdbace520a34c
4•birdculture•37m ago•0 comments

Fires are turning Forests into shrubland in America's West

https://www.nytimes.com/2026/08/23/climate/wildfire-forest-loss-california-southwest.html
2•cwwc•38m ago•1 comments

For anyone looking to make resumes

https://justquicktools.com/resume-builder
1•officialjerryno•39m ago•0 comments

Show HN: Kit – Not another events app

https://trykit.io/
1•sagsanne•44m ago•0 comments

Show HN: Locality – Sync engine to mount apps like Notion, Gmail as a filesystem

https://github.com/codeflash-ai/locality
1•misrasaurabh1•45m ago•0 comments

You can never go home again. But you can spend a lifetime trying

https://www.dwell.com/article/moving-out-of-your-childhood-home-john-petrarca-architect-b6d045d1-...
2•NaOH•45m ago•0 comments

CAD Benchmark

https://www.seldon.global/blog/cadbench
1•hmokiguess•54m ago•0 comments

Show HN: Substack Corpus Migration

https://www.shayanarman.com/archive
1•shayan-arman•54m ago•0 comments

Parallel development without the headaches using Git worktree

https://barrd.dev/article/parallel-development-without-the-headaches-using-git-worktree/
3•oogali•57m ago•0 comments

Getters, Setters, and Other Things I Loved Without Knowing Why

https://robertxworld.com/shadow-artist-software-engineer/
2•devrob•58m ago•0 comments

You probably use AI because your colleagues use AI

https://austinhenley.com/blog/aiadoption.html
1•azhenley•1h ago•1 comments

Ask HN: How to build an audience as a software engineer?

1•grandimam•1h ago•3 comments

How I Use Git Worktrees (2024)

https://matklad.github.io/2024/07/25/git-worktrees.html
2•oogali•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.