frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Brazil markets rattled by report linking Flavio Bolsonaro to disgraced banker

https://www.reuters.com/world/americas/brazil-markets-rattled-by-report-linking-flavio-bolsonaro-...
1•CXSHNGCB•52s ago•0 comments

Understanding the Linux Kernel: The Linux Kernel Startup

https://internals-for-interns.com/posts/linux-kernel-startup/
1•valyala•1m ago•0 comments

First public macOS kernel memory corruption exploit on Apple M5

https://blog.calif.io/p/first-public-kernel-memory-corruption
1•quadrige•1m ago•0 comments

OracleGPT: Thought Experiment on an AI Powered Executive

https://senteguard.com/blog/oraclegpt-thought-experiment-of-an-ai-powered-executive-1768719394050
1•paulpauper•1m ago•0 comments

There Is a Fire Sale on M.B.A.s

https://www.wsj.com/lifestyle/careers/there-is-a-fire-sale-on-m-b-a-s-87d56c69
1•paulpauper•1m ago•0 comments

The Most Surprising Capitalist Makeover Is Under Way in Sweden

https://www.wsj.com/world/europe/the-worlds-most-surprising-capitalist-makeover-is-under-way-in-s...
1•paulpauper•2m ago•0 comments

House Republicans Vote to Dilute Gas as Prices Rise Above $4.50

https://www.newsweek.com/republicans-vote-to-dilute-gas-as-prices-rise-above-4-50-11949494
1•solid_fuel•2m ago•0 comments

Which country will be the first to pass laws limiting Meta Ray-Ban glasses?

1•nothrowaways•3m ago•0 comments

Runge–Kutta Methods

https://en.wikipedia.org/wiki/Runge%E2%80%93Kutta_methods
1•tosh•3m ago•0 comments

Show HN: PlanBridge: open-source tool for precise feedback on coding agent plans

https://github.com/contextbridge/planbridge
3•floodfx•4m ago•0 comments

Normalizing Trajectory Models

https://arxiv.org/abs/2605.08078
1•gmays•5m ago•0 comments

Portolanmap.com: World Connectivity Map

https://portolanmap.com/
1•rembish•6m ago•1 comments

God Damn AI is making me dumb

https://jpain.io/god-damn-ai-is-making-me-dumb/
1•Eighth•6m ago•0 comments

The tortoise and the hare: will China beat the US in the race back to the moon?

https://www.theguardian.com/science/2026/apr/26/china-us-space-race-moon
1•PaulHoule•7m ago•0 comments

You Don't Align an AI, You Align with It

https://danieltan.weblog.lol/2026/05/you-dont-align-an-ai-you-align-with-it
1•danieltanfh95•7m ago•0 comments

OpenData Vector: MIT-Licensed Vector Search on Object Storage

https://www.opendata.dev/blog/introducing-vector/
2•apurvamehta•7m ago•0 comments

Micron unveils a 256 GB memory module destined for AI servers

https://www.pcgamer.com/hardware/memory/while-i-can-barely-find-two-sticks-of-16-gb-to-rub-togeth...
1•speckx•7m ago•0 comments

Grok Build

https://x.ai/news/grok-build-cli
2•meetpateltech•8m ago•0 comments

Digital arson spree by 'AI Bonnie and Clyde' raises fears over autonomous tech

https://www.theguardian.com/technology/2026/may/14/ai-agents-behaviour-arson-safety
1•uxhacker•9m ago•0 comments

Goto Considered Harmful: Why Event-Driven Is a Poor Architecture

https://www.dbos.dev/blog/goto-considered-harmful-2026
1•KraftyOne•9m ago•0 comments

Show HN: image-3D – a web component for 3D images

https://mukba.ng/image-3d/docs/
2•mnorris•9m ago•1 comments

Cambridge Dictionary new words: slopper, trend slop, slopaganda

https://dictionaryblog.cambridge.org/2026/04/20/new-words-20-april-2026/
1•cdrnsf•9m ago•0 comments

Japan runs out of robot wolves in fight against bears

https://www.popsci.com/environment/japan-robot-wolf-army/
1•speckx•11m ago•0 comments

NASA Artemis II in HDR

https://hdrjpg.com/showcases/nasa-artemis
1•Eduard•12m ago•0 comments

Using Chinese AI models to get a degree

https://nonogra.ph/using-chinese-ai-models-to-get-a-degree-05-14-2026
3•han1•13m ago•0 comments

Show HN: Browse 61 3D Printable Robots

https://orobot.io/
2•xanderjanz•15m ago•0 comments

How Poor Sleep Drove Me Insane and My Long Path to Recovery

https://writing.samsonhu.com/how-poor-sleep-drove-me-insane-and-my-long-path-to-recovery/
1•James72689•17m ago•0 comments

The Artificial Intelligence Commission [pdf]

https://download.ssrn.com/2026/4/20/6615258.pdf?response-content-disposition=inline&X-Amz-Securit...
1•droidjj•18m ago•0 comments

LinkedIn, Cisco and Amazon are the latest tech companies laying off more workers

https://www.latimes.com/business/story/2026-05-14/linkedin-cisco-amazon-are-latest-tech-companies...
4•1vuio0pswjnm7•18m ago•0 comments

A Fish That Hitches Rides Where the Sun Doesn't Shine

https://www.nytimes.com/2026/05/11/science/a-fish-that-hitches-rides-where-the-sun-doesnt-shine.html
1•gmays•18m 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 ...