frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

My sentiment on AI, March 2026

https://www.carlos-menezes.com/posts/ai-sentiment-march-2026
1•carlos-menezes•2m ago•0 comments

Humanitarian crisis looming: 300k displaced as Israeli army pounds Lebanon

https://www.france24.com/en/humanitarian-crisis-looming-300-000-displaced-as-israeli-army-pounds-...
1•pera•6m ago•0 comments

Data Center Intelligence at the Price of a Laptop

https://tomtunguz.com/qwen-9b-matches-frontier-models/
1•vinhnx•7m ago•0 comments

Show HN: WebGPU Running a Swin Transformer

https://fungi.renderlab.cc
1•hirako2000•10m ago•0 comments

Americans' electricity bills are up. Don't blame AI

https://www.economist.com/finance-and-economics/2026/03/05/americans-electricity-bills-are-up-don...
1•pingou•11m ago•0 comments

Warmto.me Record a voice note after networking, AI writes your follow-up

https://www.warmto.me
1•aimoae•13m ago•1 comments

A Tour of Acme (2012)

https://research.swtch.com/acme
1•tosh•18m ago•0 comments

Jse v2.0 AI Output Specification

https://marchliu.github.io/2026/03/07/jse-v20-ai-output-specification
1•mars_liu•18m ago•0 comments

AI Angels – a platform for creating personalized AI companions

1•aiangels_24•18m ago•0 comments

I don't know if my job will still exist in ten years

https://www.seangoedecke.com/will-my-job-still-exist/
1•s_dev•19m ago•1 comments

Show HN: Ptero, a Svelte Alternative to Docusaurus

https://github.com/yail259/ptero
1•yaoke259•19m ago•0 comments

ma

http://www.call-with-current-continuation.org/ma/README
2•tosh•21m ago•0 comments

Show HN: SPF Flattener Solves the 10-Lookup Limit using recursive DNS resolution

https://spf1.com/
1•bwoud•21m ago•1 comments

Show HN: Visual drag-and-drop README builder with live GitHub preview

1•ofershapira•21m ago•0 comments

Show HN: MCP Starter Kit – Production-Ready TypeScript Template for MCP Serve

https://github.com/junna-legal/mcp-starter-kit
1•KJ_Labs•21m ago•0 comments

Sith Names and Darth Titles – Ultimate Dark Side Name Guide for Star Wars Fans

https://starwarsnamegenerator.com/blog/ultimate-sith-names-guide
1•Jaxon_Varr•23m ago•1 comments

Show HN: Anypost – P2P (group)chat with calls

https://anypost.xyz/
1•emilss•24m ago•0 comments

Show HN: I built Asterode, a multi model AI app with memory and power features

https://asterode.ai
2•stefbuzas•24m ago•1 comments

The $130/Month AI Agent Stack That Replaced a $200k Marketing Team

3•jackcofounder•24m ago•0 comments

UTF-8 History (2003)

https://www.cl.cam.ac.uk/~mgk25/ucs/utf-8-history.txt
1•tosh•25m ago•0 comments

Sarajevo Safari

https://en.wikipedia.org/wiki/Sarajevo_Safari
2•thunderbong•29m ago•0 comments

Specialization After Generalization: Towards Understanding Test-Time Training

https://arxiv.org/abs/2509.24510
1•teleforce•29m ago•0 comments

Capital Efficiency and the Tech Layoff Correction (2020-2025)

https://datakid.org/r/2026-03-07-jxhde2
1•tigerkid•31m ago•0 comments

Build an Agent That Learns from Its Own Mistakes [video]

https://www.youtube.com/watch?v=-stDHMwbBRw
1•malgamves•37m ago•0 comments

Filesystems Are Having a Moment

https://madalitso.me/notes/why-everyone-is-talking-about-filesystems/
2•malgamves•38m ago•0 comments

Show HN: Vimalender a Vim style calendar for the terminal written in Go

https://github.com/Sadoaz/vimalender
2•sadoaz•39m ago•0 comments

The salary cap debate has Major League Baseball gearing up for war

https://www.theguardian.com/sport/2026/feb/27/mlb-salary-cap-stoppage-owners
1•PaulHoule•39m ago•0 comments

We messed up with the Windows 12 article. What we got wrong and how it happened

https://www.pcworld.com/article/3079754/we-messed-up-with-the-windows-12-article-what-we-got-wron...
1•joshstrange•39m ago•1 comments

Use Claude for free through Amazon customer support

https://xcancel.com/pseudotheos/status/2029957370323870040
2•doener•40m ago•0 comments

Show HN: SimplAI – Build and deploy AI agents and workflows without boilerplate

https://simplai.ai
1•SimplAI_ai•41m 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 ...