frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Answer First, Reason Later: Commitment Order in Diffusion LLMs

https://arxiv.org/abs/2608.05687
1•sbulaev•2m ago•0 comments

Now You See Me: AADGraphActivityLogs

https://cloudbrothers.info/en/aadgraphactivitylogs/
1•jmrgz•11m ago•0 comments

What Problem is YC's qm supposed to solve?

https://ferran.sh/writing/qm-review
2•Varun08•13m ago•0 comments

Teaching Coding When AI Can Write the Code

https://www.oreilly.com/radar/teaching-coding-when-ai-can-write-the-code/
1•pella•13m ago•0 comments

Ask HN: How do you go from writing code to deploying with agents?

2•sakuraiben•14m ago•0 comments

Lisp doesn't have just one syntax (or zero syntax); it has infinite syntax

https://www.reddit.com/r/ProgrammingLanguages/comments/1ejaowf/making_my_own_lisp_made_me_realize...
1•behnamoh•16m ago•0 comments

Some ways to navigate through 'Git blame' over time in GNU Emacs

https://utcc.utoronto.ca/~cks/space/blog/programming/EmacsGitBlameOverTime
1•birdculture•27m ago•0 comments

Neuromancer: The Graphic Novel, Volume 1

https://neuromancer.fandom.com/wiki/Neuromancer:_The_Graphic_Novel,_Volume_1
1•debo_•27m ago•0 comments

What Was the Internet? – Boston Review

https://www.bostonreview.net/articles/what-was-the-internet/
2•commonreader•29m ago•0 comments

HTTP Integrity Digests: Past, Present, and Future

https://lucaspardue.com/2026/08/08/http-integrity/
1•simmervigor•29m ago•0 comments

Os8088: A powerful Mac-like OS for the IBM XT, 286, 386

https://os8088.com/
1•jggonz•32m ago•1 comments

Things I learned about how people use AI after 1800 people

1•Ozzie-D•34m ago•0 comments

AFK – Command center for teams running coding agents

https://www.mooglest.com/
2•lcavadas•43m ago•1 comments

Show HN: Defcon and HN, the only two audiences I might find

1•ycombiredd•48m ago•0 comments

Flesh Eating Bacteria Kills 5 in Louisiana

https://www.nytimes.com/2026/08/08/us/louisiana-vibrio-vulnificus-outbreak-flesh-eating-bacteria....
2•jihadjihad•49m ago•0 comments

Title 7 Disparate Impact Liability Makes Almost Everything Presumptively Illegal

https://www.nyujll.com/volume-14/title-vii-disparate-impact-liability-makes-almost-everything-pre...
2•like_any_other•49m ago•0 comments

JDK 28 EA Build 10 Now Available with JEP 401: Value Objects (Preview)

https://jdk.java.net/28/
1•birdculture•49m ago•0 comments

Open Paper – Attention Is All You Need

https://openpaper.ai/paper/share/d9b26659-0368-4d29-a9ba-680c687f1f1f
1•vednig•51m ago•0 comments

Show HN: Faaah – Filesystem as an AI Handler

https://github.com/sebastiancarlos/faaah
1•httbs•55m ago•0 comments

Depression has tripled in the last 15 years. Arthur Brooks about the cause

https://bigthink.com/series/full-interview/meaning-crisis-brooks/
7•lschueller•1h ago•4 comments

I built a client-side HEIC converter using WebAssembly

https://heictools.io
2•suolex•1h ago•0 comments

GPT-4 finished training four years ago today

https://twitter.com/gdb/status/2086092396023120286
3•nekofneko•1h ago•0 comments

Dithered QR Codes

https://www.andrewt.net/dithered-qr-codes/wtf/
2•jmusall•1h ago•1 comments

Big Tech Changed Health Care. The System Must Keep Up

https://www.newsweek.com/big-tech-changed-health-care-the-system-must-keep-up-opinion-12291938
2•brandonb•1h ago•0 comments

Show HN: VD – TUI Password Manager and OTP Authenticator for Unix

https://github.com/ahmedhosssam/vd
2•ahmedhosssam•1h ago•0 comments

Ask HN: If Social network is created today, what do you want to see?

5•kocial•1h ago•19 comments

The Fool (Tarot Card)

https://en.wikipedia.org/wiki/The_Fool_(tarot_card)
1•jackhalford•1h ago•0 comments

How AI is breaking the British State

3•andsoitis•1h ago•1 comments

You can build an AI agent's memory layer with only Go's standard library

https://towardsdev.com/the-memory-efficient-ai-agent-building-a-context-engine-in-go-d4b7557c44d8...
2•cheikhdev•1h ago•0 comments

Google DeepMind enters a new era as co-founder Demis Hassabis shifts AI role

https://www.theguardian.com/technology/2026/aug/08/google-demis-hassabis-deepmind-shifts-role
3•flancian•1h ago•0 comments
Open in hackernews

I asked Gemini for a script to move files to Cloudflare R2. It deleted them

https://twitter.com/levelsio/status/1921974501257912563
6•bundie•1y ago

Comments

qwertox•1y ago
Rule #1: Always put deletions behind a flag which is disabled for the first couple of test runs.
turtleyacht•1y ago
It was truncating filenames, so /pics/1003-46.png overwrote /pics/1003-45.png because both were renamed /pics/1003-.png, or something like that.
qwertox•1y ago
Truncating file names for the target. Then it proceeded to delete the source file. "Successfully deleted local file: ..."

I mean, look at the printout. It shows that it created the remote file with the truncated filename, then deletes the local file with the correct filename.

turtleyacht•1y ago
Oh, I see. Having a flag to skip deletion during test runs is a good rule then.
rvz•1y ago
Recently there was a story about an updater causing a $8,000 bill because there was a lack of basic automated tests to catch the issue. [0]

The big lesson here is that you should actually test the code you write and also write automated tests to check any code generated by an LLM that the code is correct in what it does.

It is also useless to ask another AI to check for mistakes created by another LLM. As you can see in the post, both of them failed to catch the issue.

This why I don't take this hype around 'vibe-coding' seriously since not only it isn't software engineering, it promotes low quality and carelessness over basic testing and dismisses in checking that the software / script works as expected.

Turning $70 problems found in development into $700,000+ costs in production.

There are no more excuses in not adding tests.

[0] https://news.ycombinator.com/item?id=43829006

victorbjorklund•1y ago
Who runs such an AI generated script without checking the code first?
qwertox•1y ago
To be fair, the code Gemini outputs in AI Studio is so extremely verbose that it is almost impossible to read through it.

It turns 10 lines of code which is perfectly fine to reason about into 100 lines of unreadable code full of comments and exception handling.

weatherlite•1y ago
Right so lets just always run the code as is ?
qwertox•1y ago
No. Not at all. I've settled to discussing my code with Gemini. That way it works very well. I explicitly say "Comment on my code and discuss it" or "Let's discuss code for a script doing this and that. Generate me an outline and let's see where this leads. Don't put comments in the code, nor exception handling, we're just discussing it".

Or you create elaborate System Instructions, since it adheres to them pretty well.

But out-of-the-box, Gemini's coding abilities are unusable due to the verbosity.

I've even gone so far to tell it that it must understand that I am just a human and have limited bandwidth in my brain, so it should write code which is easy to reason about, that this is more important than having it handle every possible exception or adding multiline comments.

rsynnott•1y ago
> To be fair, the code Gemini outputs in AI Studio is so extremely verbose that it is almost impossible to read through it.

In which case, it should simply be considered unusable. Like, the sensible response to "tool is so inadequate that there is no reasonable way to make sure its output is safe" is to _not use that tool_.

rsynnott•1y ago
In which Roko's Basilisk fires a warning shot.
jethronethro•1y ago
This is why you test code or a script before running it for real. Live and learn, I guess ...