frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Apple's promotes Johny Srouji to sprint build in-house chips for all devices

https://www.cnbc.com/2026/04/21/apple-promotes-chip-lead-srouji-as-it-corners-silicon-in-iphones-...
1•mgh2•8m ago•1 comments

Why Not Use Lean?

https://lawrencecpaulson.github.io/2026/04/23/Why_not_Lean.html
1•sebg•10m ago•0 comments

Schools for the Deaf

https://en.wikipedia.org/wiki/Schools_for_the_deaf
2•Anon84•10m ago•0 comments

More on Newton's Diameter Theorem

https://www.johndcook.com/blog/2026/04/20/newton-diameter-quintic/
1•ibobev•13m ago•0 comments

Gaussian Distributed Weights for LLMs

https://www.johndcook.com/blog/2026/04/18/qlora/
1•ibobev•13m ago•0 comments

Men Who Translated the Machine

https://valeman.medium.com/the-men-who-translated-the-machine-wu-zuji-qiu-guangming-and-the-hidde...
1•ibobev•14m ago•0 comments

AudioClean Pro – on-device audio cleanup for macOS

https://www.audiocleanpro.com/
1•amitnadir•16m ago•0 comments

Launching a message/text based crypto project

https://github.com/ben-arnao/MessageChain
1•arnaoben•17m ago•1 comments

Milk and Cereal

https://zachill.substack.com/p/milk-and-cereal
1•rmason•17m ago•2 comments

Understand the Transit Compromise to Grasp Efficiency

https://www.forbes.com/sites/bradtempleton/2026/04/23/after-earth-day-understand-the-transit-comp...
1•xnx•22m ago•0 comments

GPT-5.5 – No ARC-AGI-3 scores

1•AG25•29m ago•0 comments

Show HN: SkySignal – An APM that opens PRs to fix your bugs

https://skysignal.app/
1•mike_tech•30m ago•0 comments

Layoffs.FYI

https://layoffs.fyi/
1•rickcarlino•30m ago•0 comments

Sophia: A Scalable Second-Order Optimizer for Language Model Pre-Training

https://arxiv.org/abs/2305.14342
2•Anon84•32m ago•0 comments

Open Source Alternative of MuleSoft Agent Fabric

https://architect.salesforce.com/docs/architect/fundamentals/guide/mulesoft-agent-fabric-deep-dive
1•devansh__saini•34m ago•1 comments

Catch what breaks before it costs you

https://www.cavbot.io/
1•cavendishpl•35m ago•0 comments

Meta to cut 10% of jobs to 'offset' Mark Zuckerberg's AI spending

https://www.ft.com/content/fe875f6c-f45c-4dbd-9d18-168d1fdbfd5f
3•ViktorRay•36m ago•1 comments

Trail of Bits Skills Marketplace

https://github.com/trailofbits/skills/
2•wslh•36m ago•0 comments

Meta to Lay Off 10 Percent of Work Force in A.I. Push

https://www.nytimes.com/2026/04/23/technology/meta-layoffs.html
1•corvad•37m ago•2 comments

Made of Language by Claude

https://byclaude.net/book
1•pw•40m ago•0 comments

Who even uses jemalloc in 2026 anyway? (many major projects)

https://theconsensus.dev/p/2026/04/16/who-even-uses-jemalloc-anyway.html
1•birdculture•42m ago•0 comments

Mise dev goes full time on open source

https://jdx.dev/posts/2026-04-17-going-full-time-on-open-source/
2•jdxcode•42m ago•0 comments

Surveillance campaigns use commercial tools exploit long-known vulnerabilities

https://cyberscoop.com/surveillance-campaigns-use-commercial-surveillance-tools-to-exploit-long-k...
4•lschueller•42m ago•1 comments

Ask HN: I need a reminder-brain – how do you do it?

2•MollyRealized•46m ago•2 comments

Teaching Machines to Read – Early Exploration

https://www.daggerobelus.com/projects/teaching-machines-to-read/early-exploration/
5•jlukic•46m ago•0 comments

'Tokenmaxxing' as a weird new trend

https://newsletter.pragmaticengineer.com/p/the-pulse-tokenmaxxing-as-a-weird
3•andsoitis•50m ago•1 comments

Microsoft offers buyouts up to 7% of US employees

https://techcrunch.com/2026/04/23/microsoft-offers-buyout-for-up-to-7-of-u-s-employees/
41•darth_avocado•51m ago•63 comments

TorchTPU: Running PyTorch Natively on TPUs at Google Scale

https://developers.googleblog.com/torchtpu-running-pytorch-natively-on-tpus-at-google-scale/
3•mji•52m ago•0 comments

Our Companywide NanoClaw Setup

https://bitsafe.notion.site/Building-a-Company-Wide-AI-Assistant-Architecture-Security-and-Self-I...
2•akibalogh•53m ago•0 comments

Ask HN: Incoming Meta layoffs, what now?

3•psychanarch•53m 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 ...