frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why developers using AI are working longer hours

https://www.scientificamerican.com/article/why-developers-using-ai-are-working-longer-hours/
2•birdculture•1m ago•0 comments

Trump administration rolls back payday loan protections, affects youth (2019)

https://www.cnbc.com/2019/02/06/trump-administration-rolls-back-payday-loan-protections.html
1•stopbulying•2m ago•1 comments

One in three using AI for emotional support and conversation, UK says

https://www.bbc.com/news/articles/cd6xl3ql3v0o
1•bookofjoe•3m ago•0 comments

Dutch gov't pulls report on dangers of American cloud service after criticism

https://nltimes.nl/2026/03/05/dutch-govt-pulls-report-dangers-american-cloud-service-criticism
1•vrganj•3m ago•0 comments

Agile legged locomotion in reconfigurable modular robots

https://modularlegs.github.io/
1•hhs•4m ago•0 comments

Anthropic mapped out jobs AI replaces. Great Recession for white-collar workers

https://fortune.com/2026/03/06/ai-job-losses-report-anthropic-research-great-recession-for-white-...
1•sizzle•5m ago•0 comments

A new clue to how the body detects physical force

https://www.scripps.edu/news-and-events/press-room/2026/20260305-patapoutian-piezo2.html
1•hhs•6m ago•0 comments

How to run Qwen 3.5 locally

https://unsloth.ai/docs/models/qwen3.5
1•Curiositry•7m ago•0 comments

Cost of physical therapy varies widely from state to state: study

https://news.yale.edu/2026/03/05/cost-physical-therapy-varies-widely-state-state
1•hhs•8m ago•0 comments

The Death of the Cheap Laptop Is Coming

https://www.nytimes.com/wirecutter/reviews/ai-laptop-phone-prices/
1•andrewl•12m ago•0 comments

Philosopher of the Apocalypse

https://aeon.co/essays/gunther-anders-a-forgotten-prophet-for-the-21st-century
1•aivuk•13m ago•0 comments

Sunsetting the 512kb Club

https://kevquirk.com/sunsetting-the-512kb-club
1•Curiositry•13m ago•0 comments

Put the Zipcode First

https://zipcodefirst.com
19•dsalzman•13m ago•1 comments

Nix is a lie, and that's ok

https://fzakaria.com/2026/03/07/nix-is-a-lie-and-that-s-ok
1•todsacerdoti•14m ago•0 comments

Show HN: PolicyCortex – AI agent that autonomously remediates cloud misconfigs

https://policycortex.com
1•policycortex•15m ago•1 comments

OpenAI GPT-5.4 Explained

https://veerhost.com/openai-gpt-5-4-features-improvements-pricing/
6•aiwrita•18m ago•1 comments

Technological Folie à Deux

https://arxiv.org/abs/2507.19218
3•rglover•18m ago•0 comments

Show HN: Beam Protocol – SMTP for AI Agents (natural language agent-to-agent)

https://github.com/Beam-directory/beam-protocol
2•alfridus•23m ago•3 comments

Nauticuvs – pure-Rust curvelet transform for SAR sonar, by a self-taught dev

1•NautiDogSV•24m ago•0 comments

A subreddit for people who believe in AI sentience

https://www.reddit.com/r/AISentienceBelievers/s/rilfyoaOHm
2•Moriarty2027•25m ago•0 comments

Grow Fast and Overload Things

https://surfingcomplexity.blog/2026/03/07/grow-fast-and-overload-things/
1•azhenley•27m ago•0 comments

When ChatGPT is gone: Creativity reverts and homogeneity persists (2024)

https://arxiv.org/abs/2401.06816
1•doener•29m ago•0 comments

Privacy Activist Toolbox

https://www.privacyguides.org/en/activism/toolbox/
1•ivarv•29m ago•0 comments

The plan to refill the Great Salt Lake

https://www.nbcnews.com/science/environment/utah-refill-great-salt-lake-us-olympics-2034-rescue-p...
1•bikenaga•30m ago•0 comments

Caitlin Kalinowski: I resigned from OpenAI

https://twitter.com/kalinowski007/status/2030320074121478618
5•mmaia•30m ago•1 comments

Show HN: Dropbox Cleaner – prune old Dropbox backups with Bash

https://github.com/cre8llc/Dropbox-Cleaner
1•e-gockel•31m ago•0 comments

Show HN: Run Qwen3.5 0.8B in browser (Web and Extension)

https://tiny-whale.vercel.app/
1•tantara•32m ago•0 comments

Candidate Dark Galaxy-2: Validation and Analysis of an Almost Dark Galaxy

https://iopscience.iop.org/article/10.3847/2041-8213/adddab
2•naves•32m ago•0 comments

AI SAd-ware

https://studium.dev/tech/ai-sadware
1•jerlendds•33m ago•0 comments

Show HN: Jarvey - a local JARVIS for MacOS

https://github.com/novynlabs-repo/Jarvey
2•AhmedAshraf•36m 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•9mo ago

Comments

qwertox•9mo ago
Rule #1: Always put deletions behind a flag which is disabled for the first couple of test runs.
turtleyacht•9mo 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•9mo 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•9mo ago
Oh, I see. Having a flag to skip deletion during test runs is a good rule then.
rvz•9mo 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•9mo ago
Who runs such an AI generated script without checking the code first?
qwertox•9mo 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•9mo ago
Right so lets just always run the code as is ?
qwertox•9mo 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•9mo 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•9mo ago
In which Roko's Basilisk fires a warning shot.
jethronethro•9mo ago
This is why you test code or a script before running it for real. Live and learn, I guess ...