frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI Found a Root Bug in Linux That Everyone Missed for 15 Years

https://www.wired.com/story/security-news-this-week-ai-found-a-root-bug-in-linux-that-everyone-mi...
1•joozio•38s ago•0 comments

Argument Collapse: LLMs Flatten Long-Form Public Debate

https://arxiv.org/abs/2606.01736
1•mitchbob•1m ago•1 comments

A Jupiter-size planet that escaped its star's death

https://arstechnica.com/science/2026/07/a-jupiter-size-planet-that-escaped-its-stars-death/
1•Brajeshwar•5m ago•0 comments

Terrorist Groups Are Using A.I. To Gain an Edge in Battle

https://www.nytimes.com/2026/07/10/us/politics/ai-terrorism-boko-haram-nigeria.html
1•Anon84•6m ago•0 comments

HackerRank's LLM-Based Hiring Agent

https://blog.grandimam.com/posts/how-hacker-rank-scores-engineers/
1•grandimam•6m ago•0 comments

Open-source, self-hosted SEO dashboard that runs on –$4/mo of API credits

https://github.com/testedmedia/seo-command-center
2•victorsmush•11m ago•0 comments

Show HN: Standalone SearXNG CLI+MCP (no server needed)

https://github.com/nikvdp/searxng-ai-kit
1•nikvdp•11m ago•0 comments

My Experience with Evil Martians

https://old.reddit.com/r/recruitinghell/comments/1utouue/my_experience_with_evil_martians/
1•guseyn•14m ago•0 comments

LisaFPGA: The Apple Lisa computer implemented inside an FPGA

https://github.com/alexthecat123/LisaFPGA
1•birdculture•15m ago•0 comments

Meta's Muse Spark 1.1 Scores 51 on the Artificial Analysis Intelligence Index

https://twitter.com/ArtificialAnlys/status/2075677416295739660
1•bobrenjc93•21m ago•0 comments

Show HN: Orbit – AR satellite tracker, watch 15k+ objects

https://nagylukas.github.io/orbit.html
3•lukas9•22m ago•0 comments

My Hermes Setup and Usecases

https://metedata.substack.com/p/013-my-hermes-and-obsidian-set-up
2•young_mete•22m ago•0 comments

Try Even a Little at Conferences

https://maxwellforbes.com/posts/try-even-a-little-at-conferences/
2•FinnKuhn•23m ago•0 comments

Show HN: Earth Game – An offline CLI for turning life goals into quests

https://github.com/skorotkiewicz/earth-game
2•modinfo•24m ago•0 comments

A narrative account of the development of SNOBOL

https://mads.si.edu/mads/id/NMAH-AC0196_gris720521
1•cwbuilds•25m ago•0 comments

UPI: Anatomy of a Transaction

https://timeseriesofindia.com/economy/reads/upi-architecture/
2•prtk25•27m ago•0 comments

Trump administration rescinds key rule protecting endangered wildlife

https://www.upi.com/Top_News/US/2026/07/10/endangered-wildlife/5421783724407/
5•Bondi_Blue•29m ago•0 comments

Modern Decor May Be Straining People's Brains

https://studyfinds.com/modern-decor-may-be-straining-peoples-brains/
11•downwithdisease•32m ago•1 comments

Chinese courts allow heirs to inherit accounts of deceased gamers

https://www.tomshardware.com/tech-industry/big-tech/chinese-courts-allow-heirs-to-inherent-accoun...
3•thisislife2•33m ago•0 comments

Show HN: Reame – a CPU inference server that gets faster as it runs

https://github.com/swellweb/reame
2•targetbridge•33m ago•0 comments

Store Arbitrary Data on Anything

https://fliptable.nyc
1•spaghetti-code•34m ago•0 comments

Local-first agent governance: keeping an AI agent contained

https://vektorgeist.com/blog
2•VektorGeist•34m ago•0 comments

Dynamic Dispatch

https://intertwingly.net/blog/2026/07/11/Dynamic-Dispatch.html
2•ingve•38m ago•0 comments

Monist, a WebGPU compiler for non-well-founded set theory

https://firstsynth.dev/monist
1•thingltd•41m ago•0 comments

Agentation – Visual UI Annotation for AI Coding Agents

https://www.agentation.com/
2•rekl•44m ago•0 comments

More Americans are aging alone. One woman told us what it's like

https://www.msn.com/en-us/news/crime/more-americans-are-aging-alone-one-woman-told-us-what-it-s-l...
1•like_any_other•44m ago•0 comments

Show HN: I Wanted AI Code Review I Could Own. So I Built Codra

https://medium.com/@devarshidev/i-wanted-ai-code-review-i-could-actually-own-so-i-built-codra-bee...
1•devarshishimpi•45m ago•1 comments

Cancelled by your future self? The fear isn't censorship. It's permanence

https://indianexpress.com/article/fresh-take/gen-z-digital-permanence-self-censorship-nep-2020-un...
1•thisislife2•46m ago•1 comments

The Great Wave Has Arrived (Memo from GLM CEO Jie Tang)

https://twitter.com/bingxu_/status/2075961011816092158
1•antinucleon•46m ago•0 comments

Git Takes Another Step Towards Making Rust Mandatory [video]

https://www.youtube.com/watch?v=I_6Mnvobi3c
2•baranul•47m 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 ...