frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Email – The Perfect Tech for the Jet Set? (1986) [video]

https://www.youtube.com/watch?v=JqJ159pngY8
1•kspacewalk2•1m ago•0 comments

Why Europe Struggles to Scale Startups – Thinking Talks with Peter Vesterbacka

https://www.martenscentre.eu/multimedia/why-europe-struggles-to-scale-startups-thinking-talks-ep-...
1•jruohonen•2m ago•0 comments

UV Index App

https://www.uvindex.app/
1•debo_•5m ago•0 comments

Ultrasound aimed at the brain offers new hope for Parkinson's patients

https://www.sciencenews.org/article/parkinsons-ultrasound-brain-shake-pain
3•sohkamyung•7m ago•0 comments

The Social Contract of Writing

https://jola.dev/posts/the-social-contract-of-writing
1•f311a•7m ago•0 comments

Ring – a lightweight workload orchestrator, single binary, no control plane

https://github.com/kemeter/ring
1•Shine-neko•7m ago•0 comments

CIA accused of using Ancestry and 23andMe to 'hunt down' alien bloodlines

https://www.dailymail.com/sciencetech/article-15845349/cia-ancestry-23andme-alien-dna.html
1•Bender•7m ago•0 comments

Copying Remote Command Output to Your macOS Clipboard

https://it-notes.dragas.net/2026/05/26/copying-remote-command-output-to-your-macos-clipboard/
1•draga79•9m ago•0 comments

Show HN: Apery – Synthetic Data Generator for AI Agents

https://github.com/compuficial/apery
1•compuficial•10m ago•0 comments

Google's new gradient icons for Gmail, Calendar, Drive, and other apps

https://9to5google.com/2026/04/26/gmail-google-gradient-redesign/
1•akyuu•10m ago•0 comments

How Virtual Tables Work in the Itanium C++ ABI

https://peter0x44.github.io/posts/vtables-itanium-abi/
1•jandeboevrie•11m ago•0 comments

600M people write right-to-left: 2 fixes your app needs

https://evilmartians.com/chronicles/600-million-people-write-right-to-left-2-fixes-your-app-needs
1•mooreds•11m ago•0 comments

The Camera Inside the Fingertip – Perception

https://atomsfrontier.substack.com/p/the-camera-inside-the-fingertip
1•jpatel3•11m ago•0 comments

Are We Doomed? [audio]

https://doompod.com/
1•mooreds•12m ago•0 comments

The Weekly Look at the Global Economy and Markets

https://mohamedelerian.substack.com/p/the-weekly-look-at-the-global-economy-8d2
1•mooreds•12m ago•0 comments

Unstable software tests ripple through 55% of OpenStack projects

https://techxplore.com/news/2026-05-unstable-software-ripple-openstack-days.html
1•geox•13m ago•0 comments

Understanding complex conjugates in quantum mechanics

https://unstableontology.com/2026/01/09/understanding-complex-conjugates-in-quantum-mechanics/
1•surprisetalk•13m ago•0 comments

OpenRouter, an Exchange for A.I. Models, Raises $113M

https://www.nytimes.com/2026/05/26/business/dealbook/openrouter-ai-models-fundraising.html
1•donohoe•14m ago•0 comments

Will AI cause a job apocalypse? 3 AIs Answer

https://bwanaerp.medium.com/will-ai-actually-cause-a-job-apocalypse-3-ais-answer-b32ab742d9f8
1•darthzeus•15m ago•0 comments

AI agents as explicit state machines

https://arizenai.com/state-machine-pattern-agentic-ai/
1•arizen•15m ago•0 comments

Nearly half (44%) of every T-shirt goes to waste before you even buy it

https://norwegianscitechnews.com/2026/05/nearly-half-of-every-t-shirt-goes-to-waste-before-you-ev...
1•giuliomagnifico•16m ago•0 comments

Show HN: elio – A terminal file manager with rich previews

https://elio-fm.github.io/
1•miguelregueiro•17m ago•0 comments

Permute – Media Converter for macOS – Charlie Monroe Software

https://software.charliemonroe.net/upgrade/permute/v4/
1•janandonly•17m ago•0 comments

Waiting [pdf]

https://github.com/accomodating-fellow/Greek-Mystery-School/blob/main/On%20Waiting%20by%20Harold%...
1•mrmarket•22m ago•0 comments

Show HN: Rogue-Bench – LLMs play the game Rogue

https://iwhalen.github.io/rogue-bench/
1•iwhalen•24m ago•0 comments

Mirall – Secure Large File Transfer, No Cloud

https://mirall.app/
1•janandonly•25m ago•0 comments

I'm insistently making it better every-week, The macOS Quake Terminal Emulator

https://www.patreon.com/posts/cutest-macos-app-159277202
1•rohanrhu•26m ago•0 comments

Computer game cuts risk of dementia by 25% and it's free

https://www.dailymail.com/health/article-15847055/Computer-game-cuts-risk-dementia-free.html
3•Bender•26m ago•0 comments

Show HN: Pviz-parser – codebase parsing package for Python and TS/JS codebases

https://github.com/mikebmac86/pviz-parser
1•pvizgenerator•27m ago•0 comments

Show HN: I built a tool to estimate AI agent costs before you ship

https://airunrate.com/
1•melmahdi•28m 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 ...