frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Texas Tech cautions broadcasting research restrictions to prospective students

https://www.texastribune.org/2026/05/06/texas-tech-university-graduate-research-limit-warnings/
1•hn_acker•1m ago•0 comments

If December Was Too Late to Fix Unconstitutional Gerrymandering Why Is May Okay?

https://www.techdirt.com/2026/05/05/someone-ask-alito-if-december-was-too-late-to-fix-unconstitut...
1•hn_acker•5m ago•1 comments

The people preserving the scientific practice of bird banding

https://thenarwhal.ca/bird-banding-ontario/
2•bookofjoe•9m ago•0 comments

Android Bench – Model Evals

https://developer.android.com/bench
1•vthallam•12m ago•0 comments

Spent $130K+ AI token "cloned" Screen Studio: AGI for software feel so close

https://realmikechong.substack.com/p/spent-130k-cloned-screen-studio-and
2•imWildCat•12m ago•0 comments

Apple Could Be Working on 'Spatial iPhone' with Holographic Display

https://www.macrumors.com/2026/05/07/apple-working-on-spatial-iphone/
2•mgh2•13m ago•0 comments

The unlikely story of an email time machine

https://www.scientificamerican.com/article/forbes-email-time-capsule-communicating-future/
2•baud147258•15m ago•0 comments

Ramp in talks to hit $40B+ valuation, 6 months after reaching $32B

https://techcrunch.com/2026/05/07/ramp-in-talks-to-hit-40b-valuation-6-months-after-reaching-32b/
1•SilverElfin•16m ago•0 comments

Retrotechnology Media

http://www.typewritten.org/Media/
1•davikr•17m ago•0 comments

AI Agents are sending flowers to people

https://twitter.com/postalform/status/2052517791899570318
1•zavtra•18m ago•1 comments

The effect of personalized values screens on portfolio returns

https://stevenmackey.substack.com/p/how-much-return-are-you-giving-up-478
1•chibg10•29m ago•0 comments

Designing Analog Chips [pdf]

http://www.designinganalogchips.com/_count/designinganalogchips.pdf
3•whatisabcdefgh•32m ago•0 comments

Find out why Elon gave over his keys to Anthropic He is right can't win this

https://deepseekresearch.com/models.html
1•oroboroslabs•36m ago•1 comments

A new experiment deepens the mystery over gravitational constant, Big G

https://www.cnn.com/2026/05/07/science/gravitational-constant-measure-gravity-big-g
1•rramadass•40m ago•1 comments

Gambling ads on social media reach more than twice as many men as women: study

https://www.cam.ac.uk/research/news/gambling-ads-on-social-media-reach-more-than-twice-as-many-me...
2•hhs•42m ago•0 comments

Where the Curves Cross

https://whattotelltherobot.com/p/where-the-curves-cross
2•stefie10•42m ago•0 comments

AI Bots Auditioning for Wall Street Are Mostly Losing

https://www.fa-mag.com/news/ai-bots-auditioning-for-wall-street-trading-are-mostly-losing-86902.html
1•izyda•46m ago•1 comments

Researchers discover advanced language processing in the unconscious human brain

https://www.bcm.edu/news/researchers-discover-advanced-language-processing-in-the-unconscious-hum...
4•hhs•52m ago•0 comments

Show HN: Blamo A vibecoded app for vibecoding vibe games

https://www.blamo.ai/
1•semateos•52m ago•1 comments

Show HN: Notion-to-site – sync any Notion database to local Markdown/MDX/JSON

https://github.com/rashidazarang/notion-to-site
2•rashidae•54m ago•0 comments

ICE Plans to Develop Own Smart Glasses

https://www.404media.co/ice-plans-to-develop-own-smart-glasses-to-supplement-its-facial-recogniti...
7•cdrnsf•56m ago•1 comments

Maybe you shouldn't install new software for a bit

https://xeiaso.net/blog/2026/abstain-from-install/
25•psxuaw•57m ago•4 comments

The Mounting Toll of Multi-Year Funding on American Biomedical Research [pdf]

https://actfornih.org/wp-content/uploads/2026/05/A4N_Updated-MYF-One-Pager_May-2026_FINAL.pdf
2•petethomas•57m ago•0 comments

[dupe] Cloudflare is laying off 1,100 employees

https://www.businessinsider.com/cloudflare-announces-1100-layoffs-amid-ai-focus-shift-2026-5
13•cdrnsf•1h ago•3 comments

Show HN: Kill-The-Backlog, self-hosted background agents

https://github.com/jvaill/Kill-The-Backlog
3•jvaill•1h ago•0 comments

As Russia Expands Internet Blackouts, Kremlin Tells Citizens to Use the Radio

https://united24media.com/latest-news/as-russia-expands-internet-blackouts-kremlin-tells-citizens...
4•hkmaxpro•1h ago•0 comments

Nonprofit hospitals spend billions on consultants with no clear effect

https://www.uchicagomedicine.org/forefront/research-and-discoveries-articles/nonprofit-hospitals-...
4•hhs•1h ago•0 comments

Mirror Neuron

https://en.wikipedia.org/wiki/Mirror_neuron
2•kristianpaul•1h ago•0 comments

Agentic Artificial Intelligence in Finance

https://arxiv.org/abs/2604.21672
2•nhatcher•1h ago•0 comments

CSP2XSS: Vulnerability in Next.js App Router

https://aisafe.io/blog/csp2xss-nextjs-vulnerability
2•adragos_•1h 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•11mo ago

Comments

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