frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

List of cool lesser-known small iOS features

https://github.com/kiliankoe/awesome-ios
1•kiliankoe•19s ago•1 comments

The Social-Media Shakedown Begins

https://www.wsj.com/opinion/social-media-verdict-meta-youtube-california-6b7c05dd
1•thm•42s ago•0 comments

Yes, Learning to Code Is Still Valuable

https://adventures.nodeland.dev/archive/yes-learning-to-code-is-still-valuable/
1•Tijana329•5m ago•0 comments

Show HN: Are We Friends in X?

https://arewefriends.sawirstudio.com/
1•sawirricardo•9m ago•0 comments

Ejaculating more frequently may improve sperm quality

https://theconversation.com/ejaculating-more-frequently-may-improve-sperm-quality-new-study-275373
1•0xedb•12m ago•1 comments

Against Time-Series Foundation Models

https://shakoist.substack.com/p/against-time-series-foundation-models
1•sebg•13m ago•0 comments

MetaImGui

https://github.com/andynicholson/MetaImGUI
1•andynicholson•19m ago•0 comments

OpenAI Is Doing Everything Poorly

https://www.theatlantic.com/technology/2026/03/sora-openai-identity-crisis/686544/
2•JumpCrisscross•22m ago•0 comments

A Phone-Free Childhood? One Irish Village Is Making It Happen

https://www.nytimes.com/2026/03/25/realestate/ireland-cell-phones-children.html
2•JumpCrisscross•23m ago•0 comments

IPhey: Fingerprinting and IP Checker

https://momoproxy.com/blog/iphey
1•udpchannel•23m ago•0 comments

2023 Or, Why I am Not a Doomer

https://www.hyperdimensional.co/p/2023
1•sebg•25m ago•0 comments

Treat Errors as Warnings

https://thejoylab.ai/p/ewarning
1•xerxes249•26m ago•0 comments

In Math, Rigor Is Vital. But Are Digitized Proofs Taking It Too Far?

https://www.quantamagazine.org/in-math-rigor-is-vital-but-are-digitized-proofs-taking-it-too-far-...
1•isaacfrond•26m ago•0 comments

LetPlant GreenFocus Pomodoro Timer

https://chromewebstore.google.com/detail/letplant-greenfocus-pomod/faafihopigjlmphlldphfgdgagioejmk
1•doener•27m ago•0 comments

Supreme Court rejects Sony's attempt to kick music pirates off the Internet

https://arstechnica.com/tech-policy/2026/03/supreme-court-rejects-sonys-attempt-to-kick-music-pir...
7•isaacfrond•28m ago•0 comments

We cache too much

https://websmith.studio/blog/we-cache-too-much/
1•titanslayer•28m ago•0 comments

Mazda may have found the apex in ICE design with the Skyactiv-Z

https://newatlas.com/automotive/mazda-skyactiv-z/
5•breve•30m ago•0 comments

Show HN: Imrobot – Reverse CAPTCHA that verifies AI agents, not humans

https://github.com/leopechnicki/im_robot
1•leo_pechnicki•30m ago•0 comments

Ireland's first mobile video call via satellite is made

https://www.rte.ie/news/business/2026/0326/1565222-satellite-call-ireland/
2•austinallegro•30m ago•0 comments

Why Sora Failed: $15M/day inference cost vs. $2.1M lifetime revenue

https://www.revolutioninai.com/2026/03/%20chatgpt-gpt-54-mini-silent-switch-march-2026.html
24•vinodpandey7•30m ago•11 comments

Running Sonnet 4.5 Level LLM's on Your Own Servers: Kimi K2.5 Economics

https://twitter.com/CDerinbogaz/status/2037101565249487079
1•textcortex•30m ago•0 comments

MSA on memory issues with AI-a [pdf]

https://github.com/EverMind-AI/MSA/blob/main/paper/MSA__Memory_Sparse_Attention_for_Efficient_End...
1•Liriel•32m ago•0 comments

Vim_gym – Practice Vim by competing against other people

https://www.vimgym.app/
1•Aaronmacaron•33m ago•1 comments

Why pylock.toml includes digital attestations

https://snarky.ca/why-pylock-toml-includes-digital-attestations/
1•lumpa•34m ago•0 comments

Paper: Reducing hallucination in English–Hindi LLMs using citation grounding

https://arxiv.org/abs/2603.18911
1•vedantpandya•36m ago•0 comments

Is there any way to remove an already-pushed commit from GitLab?

1•bluewhalecove•36m ago•1 comments

Engineers do get promoted for writing simple code

https://www.seangoedecke.com/simple-work-gets-rewarded/
3•lalitmaganti•41m ago•0 comments

Intel Arc Pro B70 and Arc Pro B65 GPUs Bring 32GB of RAM to AI and Pro Apps

https://www.tomshardware.com/pc-components/gpus/intel-arc-pro-b70-and-arc-pro-b65-gpus-bring-32gb...
4•throwaway270925•41m ago•1 comments

The Inside Story of the Greatest Deal Google Ever Made: Buying DeepMind

https://www.wsj.com/tech/ai/deepmind-google-demis-hassabis-5bd6de54
1•bookofjoe•41m ago•1 comments

SidClaw – The approval layer for AI agents (open-source)

https://github.com/sidclawhq/platform
1•sidclaw•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•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 ...