frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why packaging is moving from 1D to 2D barcodes

https://www.packaging-gateway.com/features/why-packaging-is-moving-from-1d-to-2d-barcodes/
1•jawns•56s ago•0 comments

The Book of Bots

https://whatever.scalzi.com/2026/08/18/the-big-idea-james-patrick-kelly-2/
1•MattSayar•1m ago•0 comments

To Build a Data Center – Intro to Diesel Generation

https://power2026.ai/diesel
1•nsomani•2m ago•0 comments

Show HN: A sample dataset of computer-use tasks on professional software

https://cua.graderlabs.com/
7•parthmah•4m ago•0 comments

Memory Allocation for Constant-Bounded Programs

https://arxiv.org/abs/2608.14471
1•matt_d•6m ago•0 comments

Ask HN: Good IMAP Email Clients?

1•pudgywalsh•10m ago•0 comments

OpenAI's Second-Quarter Sales Show Tepid Growth Compared with Anthropic

https://www.wsj.com/tech/ai/openais-second-quarter-sales-show-tepid-growth-compared-with-anthropi...
3•cwwc•14m ago•1 comments

Ask HN: Slightly Strange LinkedIn Survey

1•duxup•15m ago•0 comments

The 90-year history of the binoculars bolted to scenic overlooks

https://www.dpreview.com/news/the-90-year-history-of-the-binoculars-bolted-to-scenic-overlooks/
4•sohkamyung•17m ago•0 comments

Simple Systemd Hermes Service Management for Linux and WSL2

https://github.com/icecore2/hermes-as-a-service
2•icecore•17m ago•1 comments

Apple: DOJ's latest challenge in antitrust case 'fails at every level'

https://9to5mac.com/2026/08/17/apple-dojs-latest-challenge-in-antitrust-case-fails-at-every-level/
1•CharlesW•17m ago•0 comments

Building apps using TanStack Start

https://lovable.dev/blog/building-apps-using-tanstack-start
1•e2e4•17m ago•0 comments

Cork Oak Forest in Spain

https://explorelatierra.com/en/2020/11/30/cork-oak-forest-in-spain-uses-and-extraction-of-cork/
1•devy•18m ago•0 comments

Google wins $10M bankruptcy auction for Spirit Airlines 100M emails, 500M chats

https://247wallst.com/investing/2026/08/18/google-just-bought-100-million-emails-from-a-dead-airl...
1•CGMthrowaway•19m ago•0 comments

Google 'gradually' rolling out Android's 'advanced' sideloading

https://9to5google.com/2026/08/18/google-gradually-rolling-out-androids-advanced-sideloading-ahea...
2•gumby271•20m ago•0 comments

Fx, a tiny, open, native coding agent

https://twitter.com/vercel_dev/status/2089828083415355806
2•cramforce•21m ago•0 comments

Fx: Unix Like Coding Agent

https://github.com/vercel-labs/fx
2•jlaneve•21m ago•0 comments

An Ancient Poop Explosion Could Have Helped Complex Life Evolve

https://www.sciencealert.com/an-ancient-poop-explosion-could-have-helped-complex-life-evolve
1•gmays•23m ago•0 comments

Building Without Predicting

https://sive.rs/fit
2•herbertl•24m ago•0 comments

Terry A. Davis Quotes

https://en.wikiquote.org/wiki/Terry_A._Davis
3•LAC-Tech•24m ago•0 comments

The Microsoft Rebrand Registry

https://www.msrebrandregistry.com/analysis.html
2•jnord•26m ago•0 comments

Israeli Soldiers Write ID Numbers on Palestinians in Dehumanising West Bank Raid

https://www.ibtimes.co.uk/outrage-israeli-soldiers-mark-palestinian-detainees-1814880
6•hebelehubele•27m ago•1 comments

Show HN: Clinch – Local-first Warp fork built for agent session management

https://clinch.sh/
2•ponchopunchy•28m ago•0 comments

Comcast Is Turning Its Routers into Motion Detectors

https://www.theverge.com/news/981381/comcast-xfinity-shield-wifi-motion-sensing
4•m463•30m ago•1 comments

Unclaimed Boat Strikes in Ecuador

https://www.cfr.org/articles/unclaimed-boat-strikes-in-ecuador-has-trumps-operation-southern-spea...
3•petethomas•33m ago•0 comments

Fake polls on Wisconsin and California elections

https://www.nytimes.com/2026/08/18/polls/median-strategies-polls-bass-california-wisconsin.html
2•ajd555•34m ago•1 comments

Popcorn: Democratized Fast Kernel Dispatching

https://blog.tilderesearch.com/blog/popcorn
2•ronfriedhaber•35m ago•0 comments

Programmable Property-Based Testing

https://dl.acm.org/doi/10.1145/3828685
3•matt_d•37m ago•0 comments

Who owns the code? AI code == no author == no copyright

https://whoownsthecode.com/
5•dgellow•38m ago•1 comments

Nomadic Agent: multi-model with Git integration

https://nomadic-agent.vercel.app
1•jdieselny•40m 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.