frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Hidden Software Variable in UAS Performance

https://foxandlion.pub/analysis/the-hidden-software-variable-in-uas-performance
3•agrantic•2m ago•0 comments

A malleable IDE for typed knowledge

https://github.com/arsumbris/arsumbris
1•arscontexta•6m ago•1 comments

What are the five pros and cons of artificial intelligence?

https://www.aljazeera.com/news/2026/9/13/what-are-the-five-pros-and-cons-of-artificial-intelligence
4•jethronethro•9m ago•0 comments

The Human Use of Human Beings - Norbert Wiener (1989) [pdf]

https://monoskop.org/images/6/60/Wiener_Norbert_The_Human_Use_of_Human_Beings_1989.pdf
4•andsoitis•12m ago•0 comments

I think of time as an arrow, so I made a linear calendar

https://theawesomecalendar.com/en
1•maksonam•14m ago•3 comments

Expanding model choice in Copilot with Grok

https://techcommunity.microsoft.com/blog/microsoft-copilot-blog/expanding-model-choice-in-copilot...
2•andsoitis•16m ago•0 comments

Ask HN: Is there an emerging pattern for NEGATIVESKILLS.md files?

1•mehmetoguzderin•17m ago•1 comments

BluBeam Pro

https://blubeam.pro/
1•alexawilder•19m ago•1 comments

DuckDB 2.0 Pushes Whole Queries Through ADBC–10–11× Faster on PostgreSQL

https://query.farm/blog/one-query-one-arrow-stream-adbc-duckdb-2/
1•rustyconover•27m ago•0 comments

Why is privacy so hard?

https://cacm.acm.org/blogcacm/why-is-privacy-so-hard/
4•andsoitis•27m ago•3 comments

Ask HN: In The Matrix, the bad guys are the 'agents'. Coincidence? Clairvoyance?

4•spottedmarley•27m ago•2 comments

Show HN: SF Title Alert

https://sftitlealert.com
1•arkadiyt•29m ago•0 comments

What Is Wrong with Nike?

https://www.s-1.site/s/the-middle-market-focus-verticals.html
1•anthonybourdain•29m ago•0 comments

SCH: An affordable sandbox for Coding Agents in your AWS account

https://c-daniele.github.io/en/posts/2026-09-07-close-the-lid-serverless-coding-harness/
1•cdani•29m ago•0 comments

The Outrageous Collapse of a 'Montessori Ponzi'

https://www.nytimes.com/2026/09/13/business/guidepost-montessori-higher-ground-education-ray-girn...
3•sciurus•33m ago•1 comments

Claude Fable 5.1 Solves the Cyphral Distich, a 370-year-old cipher

https://www.vals.ai/blogs/fable-solves-cyphral-distich
10•u1hcw9nx•34m ago•0 comments

Veilid is an open-source, peer-to-peer application framework

https://veilid.com/
4•Bluestein•36m ago•0 comments

AI Is Destroying the World

https://gornak40.org/blog/ai-is-destroying-the-world.html
4•Gornak40•36m ago•0 comments

BitBang: End-to-End Verified, Browser-Native Remote Access

https://github.com/richlegrand/bitbang/blob/main/whitepaper.md
4•Bluestein•41m ago•0 comments

Terminal multiplexer and experimental Wayland compositor for browsers

https://blit.sh/
4•williamstein•42m ago•0 comments

Claude Fable 5.1 cracked a cipher that has survived for 370 years in 40 min.

https://osintsights.com/ai-deciphers-370-year-old-cipher-in-minutes
3•u1hcw9nx•44m ago•2 comments

Two cheers (out of three) for Dario Amodei

https://garymarcus.substack.com/p/two-cheers-out-of-three-for-dario
4•chmaynard•50m ago•0 comments

Hikers guided by AI stranded on Mt. Shasta [video]

https://www.youtube.com/watch?v=OlwxEnN50e4
1•jumploops•54m ago•0 comments

Sam Altman pitches utilities on AI grid defense

https://www.politico.com/news/2026/09/10/sam-altman-pitches-utilities-on-ai-grid-defense-01070425
3•cdrnsf•55m ago•1 comments

Jason Arday and the Corruption of Science

https://chronicleofhighereducation.substack.com/p/jason-arday-and-the-corruption-of
3•kgwgk•55m ago•0 comments

OpenAI faces Senate probe into Hugging Face breach

https://www.axios.com/2026/09/10/openai-hugging-face-senate-investigation-hawley
3•reasonableklout•56m ago•0 comments

Go Implementation of WireGuard

https://github.com/WireGuard/wireguard-go
2•Bluestein•57m ago•0 comments

Show HN: Opine, a public polling website with maps

https://opinepolls.com/
1•superphotonic•57m ago•0 comments

YC: Why the Harness Matters More Than the Model [video]

https://www.youtube.com/watch?v=n9xKblqyQ28
1•mgl•1h ago•0 comments

How Much Could Europe Pay for U.S. Weapons for Ukraine?

https://www.thepricer.org/how-much-could-europe-pay-for-u-s-weapons-for-ukraine/
1•cinderelacinder•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.