frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Bedrock and a hard place: Claude adventure leaves AWS user with $30K invoice

https://www.theregister.com/saas/2026/05/14/bedrock-and-a-hard-place-claude-adventure-leaves-aws-...
1•ValentineC•44s ago•0 comments

Big Tech's Anti-Labor Playbook Has Come for Wikipedia

https://medium.com/@jakeorlowitz/wikipedia-is-doing-the-capitalist-thing-56a393232943
1•cdrnsf•3m ago•0 comments

After DeepSeek, Xiaomi cuts AI costs by up to 99%

https://twitter.com/i/status/2059314052892099070
1•try-working•4m ago•0 comments

Numb – Full Album – YouTube Exclusive Pre-Release

https://www.youtube.com/watch?v=M63nJq8IdIo
1•keithgdarley•7m ago•0 comments

We won't be looking at jobs numbers in 5 years (to gauge economy) [video]

https://www.youtube.com/watch?v=yyECa58Kg4Q
1•donsupreme•7m ago•0 comments

Terminal coding agent for DeepSeek V4

https://github.com/Hmbown/CodeWhale
1•nhatcher•8m ago•0 comments

Destroy My Paper

https://destroymypaper.com/
1•ThouYS•8m ago•0 comments

Robotics giant Figure AI demonstrates its robots to the world

https://forgeglobal.com/insights/figure-ai-robotics-growth-2026/
1•andsoitis•9m ago•0 comments

IT Capex Now Accounts for More Than a Third of S&P 500 Capex Spending

https://www.apollo.com/wealth/the-daily-spark/it-capex-now-accounts-for-more-than-a-third-of-s-p-...
1•akyuu•10m ago•0 comments

`A sense of trusting one's self': how to start building confidence

https://www.theguardian.com/wellness/2026/may/26/how-to-start-building-confidence
3•jethronethro•11m ago•0 comments

User-testing the user-tester: synthetic user feedback driven self improvemnt

https://noemica.io/blog/user-testing-the-user-tester
1•SebastianSosa•11m ago•0 comments

Bay Area mom out thousands after scammers use AI to mimic daughter's voice

https://abc7news.com/post/bay-area-mom-thousands-scammers-use-ai-mimic-daughters-voice-fake-kidna...
2•arkadiyt•12m ago•0 comments

There are now more ETFs than stocks in the US

https://www.apollo.com/wealth/the-daily-spark/more-etfs-than-stocks
2•akyuu•14m ago•1 comments

Claude, Author of the Humanitas

https://www.greaterwrong.com/posts/wRNJZz2iYrfDaSDdz/claude-author-of-the-humanitas
1•Jakob•15m ago•0 comments

Iran Is Back Online

https://mastodon.social/@netblocks/116642131173028444
2•2dvisio•20m ago•0 comments

The Psychology of Arrival in Coworking Spaces

https://twofifty.co/en/blog/psychology-of-arrival-coworking-spaces
1•inchevd•21m ago•0 comments

I'm 19 and built an AI golf swing analyzer with on-device CoreML

https://apps.apple.com/us/app/the-swing-sensei/id6759412468
1•TheSwingSensei•22m ago•0 comments

iOS 26.6 adds new alert when you try blocking too many contacts

https://9to5mac.com/2026/05/26/ios-26-6-adds-new-alert-when-you-try-blocking-too-many-contacts/
1•cdrnsf•22m ago•0 comments

The Nation-State Is a Legacy System. Time for an Upgrade

https://gccsproject.pages.dev/
1•pear01•23m ago•0 comments

Encrypted DNS in 2026: DoH, DoT and DoQ compared with real benchmarks

https://www.copahost.com/blog/encrypted-dns/
1•ggallas•24m ago•0 comments

The worst job interview I ever had

https://www.oliverio.dev/blog/the-worst-job-interview-i-had
1•oliverio•24m ago•0 comments

Being a 1.5-10x Developer

https://build.ms/2026/5/26/being-a-1-5-10x-developer/
1•mergesort•25m ago•0 comments

6M Fake GitHub Stars: How to Vet Open-Source AI Tools

https://www.chatgpt.ca/blog/github-fake-stars-ai-tool-evaluation
2•b-man•25m ago•0 comments

Mysteries of the Griffin iMate

https://www.projectgus.com/2023/04/griffin-imate/
1•geerlingguy•29m ago•0 comments

The Computer That Was Too Advanced for Its Own Good [video]

https://www.youtube.com/watch?v=OWPnEDXVTl8
3•devonnull•29m ago•0 comments

Optimization Constants in Mathematics

https://teorth.github.io/optimizationproblems/
2•bmc7505•35m ago•0 comments

GitHub Classroom sign-ups are no longer available

https://github.blog/changelog/2026-05-26-github-classroom-sign-ups-are-no-longer-available/
2•DropDead•36m ago•0 comments

Analyst on China's spent rocket stages: "Things only continue to get worse"

https://arstechnica.com/space/2026/05/analyst-on-chinas-spent-rocket-stages-things-only-continue-...
5•xoa•38m ago•0 comments

Tracing libjxl decoding patterns, with JPEG XL as the trace data container

https://ender672.github.io/posts/2026-05-26-tracing-libjxl-decoding-patterns/
1•ender672•38m ago•0 comments

Why LLMs will be always Terrible at Software Architecture

https://devforth.io/insights/why-llms-will-be-always-terrible-at-software-architecture/
3•dotnot•38m 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 ...