frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

RapidFire Lite – Zero-dependency API load tester in pure Python

https://github.com/arjuninfotechinc/rapidfire-lite
1•hifiarjun•2m ago•0 comments

100 Best Novels of All Time

https://www.theguardian.com/books/ng-interactive/2026/may/12/the-100-best-novels-of-all-time
1•bookofjoe•2m ago•0 comments

The Wild Cyberwest

https://xm4ch1ne.github.io/2026-05-17-the-wild-cyberwest/
1•futurisold•3m ago•0 comments

Show HN: Proper, a Rails-shaped Python web framework

https://properproject.org/
1•jp_sc•4m ago•0 comments

Simulacra Levels and Their Interactions

https://www.lesswrong.com/posts/qDmnyEMtJkE9Wrpau/simulacra-levels-and-their-interactions
1•epestr•4m ago•0 comments

KV Cache Is Becoming the Memory Hierarchy of Inference

https://touchdown-labs.com/blog/kv-cache-memory-hierarchy-inference.html
1•matt_d•5m ago•0 comments

Show HN: I made a printable graph papaer templates website

https://printablegraphpaper.org/
1•atharvtathe•6m ago•0 comments

LocalLightChat – New AI Chat UI that handles 500k tokens on a 15 year old laptop

https://www.locallightai.com/llc/
1•JustMyNews•6m ago•0 comments

HuggingFace

https://huggingface.co/spaces/bestsugardaddyapp/sugardaddyapps
2•hankerapp•7m ago•0 comments

Nerds, ninjas, and neutrons: The story of The Nuclear Emergency Support Team

https://thebulletin.org/premium/2023-03/nerds-ninjas-and-neutrons-the-story-of-the-nuclear-emerge...
1•novafacing•7m ago•0 comments

The Kind of AI Adoption I Believe In

https://blog.namar0x0309.com/2026/05/the-kind-of-ai-adoption-i-actually-believe-in/
1•namar0x0309•7m ago•0 comments

A few ways of specifying per-theme colours in only CSS

https://chrismorgan.info/css-themed-colours
1•birdculture•10m ago•0 comments

How to Share the AI Windfall

https://www.economist.com/finance-and-economics/2026/05/14/how-to-share-the-ai-windfall
2•andsoitis•11m ago•0 comments

XS: A programming language. Anywhere, anytime, by anyone

https://xslang.org
2•yacin•14m ago•0 comments

Show HN: Freelang – a direct-to-assembly syscall lang with rad concurrency

https://freelang.dev
1•keepamovin•19m ago•1 comments

Reddit Is Blocking Some Users from Accessing Its Website from Mobile Devices

https://arstechnica.com/information-technology/2026/05/why-reddit-blocked-my-daily-visit-to-its-m...
3•Brajeshwar•20m ago•1 comments

The Programming Language for Agents

https://zerolang.ai/
1•alex_x•22m ago•0 comments

Three's a party: US, China, and now Russia are on the prowl in GEO

https://arstechnica.com/space/2026/05/threes-a-party-us-china-and-now-russia-are-on-the-prowl-in-...
2•rbanffy•23m ago•0 comments

What Software Is Made Of

https://siderea.dreamwidth.org/1219758.html
1•teddyh•24m ago•0 comments

Show HN: Whisper Large V3 Turbo Stream API

https://www.makeform.ai/f/mtwDANdO
1•tamnv•27m ago•0 comments

EV charging station fire caused by remote technician, report finds

https://vancouver.citynews.ca/2026/05/15/ev-charger-fire-caused-u-s/
1•Throwthrowbob•28m ago•0 comments

South Korea says it will pursue all options to avoid Samsung strike

https://www.reuters.com/business/world-at-work/south-korea-says-it-will-pursue-all-options-avoid-...
3•01-_-•30m ago•0 comments

Europe Just Unveiled a Serious Rival to SpaceX's Starship

https://scitechdaily.com/europe-just-unveiled-a-serious-rival-to-spacexs-starship/
3•01-_-•31m ago•0 comments

AVX-512

https://en.wikipedia.org/wiki/AVX-512
1•tosh•32m ago•0 comments

Datacenters slurping up so much juice they boosted prices 75%

https://www.theregister.com/on-prem/2026/05/15/datacenters-slurping-juice-help-drive-75-jump-in-p...
1•Bender•34m ago•1 comments

Google users fight for refunds as unauthorized API usage bills soar

https://www.theregister.com/ai-ml/2026/05/13/google-users-fight-for-refunds-as-unauthorized-api-u...
3•Bender•35m ago•0 comments

Is Britain Ungovernable?

https://www.cnn.com/2026/05/16/uk/uk-government-prime-minister-leadership-starmer-ungovernable-la...
3•Bender•40m ago•1 comments

The filesystem is the API (with TigerFS)

https://www.youtube.com/watch?v=RFLk5iLyFG4
1•der_gopher•43m ago•0 comments

Brown vs. Board of Education (May 17th, 1954)

https://en.wikipedia.org/wiki/Brown_v._Board_of_Education
4•simonebrunozzi•46m ago•0 comments

PyPI packages are increasing rapidly

https://rushter.com/blog/pypi-packages/
3•f311a•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 ...