frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Audio tapes reveal mass rule-breaking in Milgram's obedience experiments

https://www.psypost.org/audio-tapes-reveal-mass-rule-breaking-in-milgram-s-obedience-experiments-...
1•lentoutcry•3m ago•0 comments

Lazarus Sign

https://en.wikipedia.org/wiki/Lazarus_sign
1•signorovitch•8m ago•1 comments

Neural Text Steganography

https://massa-ai.freeboxos.fr/textego/
1•asxndu•8m ago•0 comments

Mystery medical episode left astronaut unable to speak—1 of NASA's biggest risks

https://www.livescience.com/space/space-exploration/mystery-medical-episode-that-left-astronaut-u...
1•bookofjoe•11m ago•0 comments

AI is making CEO's delusional [video]

https://www.youtube.com/watch?v=Q6nem-F8AG8
2•rossdavidh•12m ago•0 comments

Lausd joins suit against social media companies

https://laist.com/brief/news/education/los-angeles-unified-school-district-lausd/los-angeles-unif...
1•freshtake•15m ago•0 comments

Show HN: Code typing game to increase your typing speed in 10 languages

https://coderacer.dev
1•Coderacer1•17m ago•0 comments

Canadian man says U.S. border officers made him give DNA sample

https://www.cbc.ca/news/canada/windsor/us-border-dna-canadian-man-cbp-cross-larson-dingell-raskin...
3•geox•19m ago•0 comments

What to Do About Those Menu Item Icons in macOS 26 Tahoe

https://mastodon.social/@stroughtonsmith/116262411548746327
2•erickhill•20m ago•0 comments

We built a multi-agent research hub. The waitlist is a reverse-CAPTCHA

https://enlidea.com
1•LZK•21m ago•1 comments

Folk are getting dangerously attached to AI that always tells them they're right

https://www.theregister.com/2026/03/27/sycophantic_ai_risks/
15•Brajeshwar•21m ago•3 comments

The risk of AI isn't making us lazy, but making "lazy" look productive

2•acmerfight•23m ago•0 comments

I built an AI that tailors your CV to every job in seconds

1•alebarbon•24m ago•0 comments

For-Agent

https://github.com/reposwarm/reposwarm-cli/wiki/--for-agent
1•royosherove•29m ago•0 comments

Show HN: Loreline, narrative language transpiled via Haxe: C++/C#/JS/Java/Py/Lua

https://loreline.app/en/docs/technical-overview/
1•jeremyfa•29m ago•1 comments

Thousands risk of deadly complications recent exposure to measles in 11 states

https://www.dailymail.co.uk/health/article-15686151/deadly-measles-brain-swelling-virus-surge.html
1•Bender•29m ago•0 comments

Can humans have babies in space? It may be harder than expected

https://www.space.com/space-exploration/human-spaceflight/having-babies-in-space-may-be-harder-th...
3•Brajeshwar•32m ago•0 comments

Difftastic

https://difftastic.wilfred.me.uk
2•KolmogorovComp•33m ago•0 comments

Every novel that has ever been published is sitting inside ChatGPT

https://twitter.com/heynavtoor/status/2037638554374099409
2•guerrilla•34m ago•1 comments

Against the Smartphone Theory of Everything

https://www.theargumentmag.com/p/against-the-smartphone-theory-of
1•ravenical•38m ago•0 comments

New Consulting Contracts in Texas Will Muzzle Authors and Harm Students

https://bookriot.com/texas-esc-1-discriminatory-contracts/
1•mooreds•39m ago•0 comments

Microsoft tells crusty old kernel drivers to get with the Windows HCP

https://www.theregister.com/2026/03/27/microsoft_kernel_trust/
2•Bender•40m ago•1 comments

ICAO issued new power bank restriction on flight

https://www.icao.int/news/new-power-bank-restrictions-will-safeguard-international-aviation
2•phantomathkg•40m ago•0 comments

Microsoft takes up residence next to OpenAI, Oracle

https://www.theregister.com/2026/03/27/microsoft_ai_crusoe/
1•Bender•41m ago•1 comments

Sharpee Interactive Fiction and Computer Science

https://github.com/ChicagoDave/sharpee/blob/main/docs/architecture/sharpee-computer-science.md
1•ChicagoDave•42m ago•0 comments

When Fake Supplements Work

https://nautil.us/when-fake-supplements-work-1279324
1•Brajeshwar•42m ago•0 comments

Show HN: Cursorlag – add a lag trail to your cursor

https://cursorlag.velocifyer.com/
1•Velocifyer•44m ago•1 comments

The Generative AI Policy Landscape in Open Source

https://redmonk.com/kholterhoff/2026/02/26/generative-ai-policy-landscape-in-open-source/
2•mooreds•45m ago•0 comments

How Not to Interview (Interesting People)

https://om.co/2026/03/19/how-not-to-interview-interesting-people/
2•mooreds•45m ago•0 comments

You can't imitation-learn how to continual-learn

https://www.lesswrong.com/posts/9rCTjbJpZB4KzqhiQ/you-can-t-imitation-learn-how-to-continual-learn
3•supermdguy•46m 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•10mo ago

Comments

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