frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

QA/Testing at Startups

1•ovi_firstqa•1m ago•0 comments

The EU Wants to Grow Homegrown Tech. Its Courts Keep Making That Impossible

http://www.techdirt.com/2026/06/26/the-eu-wants-to-grow-homegrown-tech-its-courts-keep-making-tha...
1•beardyw•3m ago•0 comments

In Loving Memory of Om Malik – Hodinkee

https://www.hodinkee.com/articles/in-loving-memory-of-om-malik-friend-writer-venture-capitalist-a...
1•adamfuhrer•3m ago•0 comments

AI Models Directory (To Compare)

https://aimodels.directory/
1•entempsllc•4m ago•0 comments

Transformers Explained for Software Engineers

https://bharad.dev/blog/transformers-and-attention
1•bharadwajp•4m ago•0 comments

Europe's largest datacentre hub leaves town sweltering

https://www.theguardian.com/environment/2026/jun/26/slough-is-like-an-experiment-europes-largest-...
1•speckx•5m ago•0 comments

Designing a Personal Pebble Watchface

https://www.jonashietala.se/blog/2026/06/26/designing_a_personal_pebble_watchface/
1•lawn•8m ago•0 comments

Auto-Charge Tracker makes Steam Controller move toward its charging dock

https://videocardz.com/newz/modder-makes-steam-controller-move-itself-to-the-charging-puck
1•LorenDB•13m ago•0 comments

The Ontological Consequences of AGI Autonomy

https://secondexpulsion.substack.com/p/the-apple-the-serpent-and-the-outside
1•cosmosjang•13m ago•0 comments

Cory Doctorow on the Right – and Wrong – Way to Criticize AI

https://jacobin.com/2026/06/ai-bubble-layoffs-workers-copyright
1•thunderbong•16m ago•0 comments

I was laid off from Meta and now I work at a butcher shop [video]

https://www.youtube.com/watch?v=oLzuO4FmcqE
3•mmarian•18m ago•0 comments

If your blog doesn't have an RSS feed, then it's not a blog

https://martinschuhmann.com/rss
12•speckx•18m ago•2 comments

The New Blub Paradox, Or: Why TypeScript Is a Poor Choice for the AI Era

https://www.iankduncan.com/engineering/2026-06-26-the-new-blub-paradox/
1•gnabgib•19m ago•1 comments

High School Student Journalists Investigate Flock

https://scotscoop.com/smile-youre-on-flock-how-san-mateo-county-built-a-network-of-mass-surveilla...
1•coloneltcb•21m ago•0 comments

How PgBouncer Works

https://www.augusteo.com/blog/how-pgbouncer-works/
1•linggen•24m ago•0 comments

Show HN: Run multiple instances of Codex(GUI) each with their own auth

https://github.com/ccheney/codex-multi-account
1•ccheney•25m ago•0 comments

Trump threatens 100% tariff on any country that imposes digital services tax

https://www.reuters.com/world/us/trump-threatens-100-tariff-any-country-that-imposes-digital-serv...
2•onemoresoop•25m ago•1 comments

Fireship was bought by a major investing firm

https://old.reddit.com/r/webdev/comments/1m8a2yx/fireship_was_bought_by_a_major_investing_firm/
1•mmarian•26m ago•1 comments

GPT-5.6 Preview System Card

https://deploymentsafety.openai.com/gpt-5-6-preview
2•blazespin•28m ago•0 comments

The SaaS Adventure (2015)

https://techcrunch.com/2015/02/01/the-saas-travel-adventure/
1•mooreds•29m ago•0 comments

Gossamer: a Rust-flavoured language with real goroutines and pause-free memory

https://gossamer-lang.org/
2•mwheeler•29m ago•0 comments

Expect RAM prices to stay high with Micron locking in deals for 5 years

https://www.gamingonlinux.com/2026/06/expect-ram-prices-to-stay-high-with-micron-locking-in-deals...
1•speckx•31m ago•2 comments

Slisp: Simple Lisp compiler (Linux/amd64)

https://github.com/skx/slisp
11•stevekemp•31m ago•1 comments

SpaceX's Starfall Demo Mission

https://www.spacex.com/launches/starfalldemo
9•caseysoftware•32m ago•0 comments

Hot Lotto Fraud Scandal (2017)

https://en.wikipedia.org/wiki/Hot_Lotto_fraud_scandal
1•badcryptobitch•32m ago•0 comments

Show HN: ToolPalace – 25 free browser tools that work offline, no sign-up

https://toolpalace.online
2•sohilpathan•33m ago•0 comments

Longer daylight linked to 4.4 minutes less sleep per extra hour of light

https://www.nature.com/articles/s44323-026-00092-2
1•kyriakosel•34m ago•2 comments

Show HN: Bsize yet Another Byte Size Crate

https://github.com/fast/bsize
1•tison•34m ago•0 comments

Show HN: Open protocol for agents to book vacation rentals direct from the host

https://vacationrentalprotocol.com/
2•Freezone•36m ago•0 comments

Made a Rust DB run spatial queries on gaming GPU RT cores, beating an H100

https://sedona.apache.org/latest/blog/2026/06/26/sedonadb-04-gpu-accelerated-spatial-joins/
2•dr-jia-yu•36m 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.