frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The trap Anthropic built for itself

https://techcrunch.com/2026/02/28/the-trap-anthropic-built-for-itself/
1•pseudolus•1m ago•0 comments

Sites with a /Now Page

https://nownownow.com
1•zdw•4m ago•0 comments

Happy Map

https://pudding.cool/2026/02/happy-map/
1•latexr•6m ago•0 comments

Just two days of oatmeal cut bad cholesterol by 10%

https://www.sciencedaily.com/releases/2026/02/260225081217.htm
1•gradus_ad•13m ago•1 comments

Microgpt

http://karpathy.github.io/2026/02/12/microgpt/
1•tambourine_man•17m ago•0 comments

Blender iPad App Development Halted as Android Tablets Get Priority

https://www.macrumors.com/2026/02/27/blender-ipad-pro-app-development-halted/
2•mrkpdl•21m ago•0 comments

Reconstructing OPL: Joseph Weizenbaum's Online Programming Language

https://timereshared.com/reconstructing-joseph-weizenbaums-opl/
1•abrax3141•25m ago•0 comments

Running a One Trillion-Parameter LLM Locally on AMD Ryzen AI Max+ Cluster

https://www.amd.com/en/developer/resources/technical-articles/2026/how-to-run-a-one-trillion-para...
4•mindcrime•32m ago•0 comments

Banning children from VPNs and social media will erode adults' privacy

https://www.newscientist.com/article/2516996-banning-children-from-vpns-and-social-media-will-ero...
4•hn_acker•33m ago•1 comments

Agentation: Structured UI feedback for coding agents

https://agentation.dev/
1•firloop•34m ago•0 comments

AMA about our work with the Dow and our thinking over the past few days

https://twitter.com/sama/status/2027900042720498089
2•caaqil•37m ago•0 comments

Show HN: Cognitive architecture that hit #1 on LiveBench (68.5%)

https://truthagi.ai
1•felipemayamuniz•38m ago•1 comments

Show HN: Quizz MCP – Turn Claude Code Conversations into Quizzes

https://github.com/ThoBustos/quizz-mcp
1•ThoBustos•41m ago•0 comments

AI What Do: A framework for thinking about AI power and human agency

https://osh.works/posts/ai-what-do/
1•oshoma•43m ago•0 comments

Daily Tetonor- the Daily Math Logic Puzzle

https://dailytetonor.com/
1•H3d3s•44m ago•0 comments

How Awesome? annotates GitHub awesome lists with repo stats, stars, last commit

https://how-awesome.libklein.com/
1•zdw•44m ago•0 comments

Show HN: Integrate governance before your AI stack executes – COMMAND console

https://www.mos2es.io
1•Burnmydays•45m ago•0 comments

deleted

1•folkstack•46m ago•0 comments

Ubuntu 26.04 ends a 40-year old sudo tradition

https://www.omgubuntu.co.uk/2026/02/ubuntu-26-04-sudo-password-asterisks
2•campuscodi•46m ago•0 comments

Napkin Math Flashcards

https://chughes87.github.io/napkin-math-flashcards.html
1•archarios•46m ago•1 comments

Fast Autoscheduling for Sparse ML Frameworks

http://fredrikbk.com/cgo26scorch.html
1•matt_d•47m ago•0 comments

Sam Altman AMA about DoD deal

https://xcancel.com/i/status/2027900042720498089
8•marcuschong•47m ago•1 comments

TENSURE: Fuzzing Sparse Tensor Compilers (Registered Report)

https://www.ndss-symposium.org/ndss-paper/auto-draft-689/
1•matt_d•51m ago•0 comments

OpenAI has released Dow contract language, and it's as Anthropic claimed

https://twitter.com/justanotherlaw/status/2027855993921802484
1•erwald•51m ago•0 comments

A Day in the Life of an Enshittificator [video]

https://www.youtube.com/watch?v=T4Upf_B9RLQ
3•zahlman•52m ago•1 comments

Claude making me more productive every day usecases

1•joel_hainzl•55m ago•0 comments

DeepExplain: Interactive Guide to Dirac Notation and Quantum Mechanics

https://deepexplain.dev/dirac-notation/
2•crawde•56m ago•0 comments

Show HN: A live playground for Beautiful Mermaid

https://play.beautiful-mermaid.dev/
1•Justineo•57m ago•0 comments

Show HN: Atom – open-source AI agent with "visual" episodic memory

https://github.com/rush86999/atom
1•rush86999•57m ago•0 comments

A Reinforcement Learning Environment for Automatic Code Optimization in MLIR

https://arxiv.org/abs/2409.11068
1•matt_d•58m 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 ...