frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why the Events in Gaza Are Not "Genocide"

https://www.ajc.org/news/5-reasons-why-the-events-in-gaza-are-not-genocide
1•spacelaserfan•1m ago•0 comments

Literate Programming

https://en.wikipedia.org/wiki/Literate_programming
1•busfahrer•2m ago•0 comments

What is the recipe for human progress?

https://capx.co/what-is-the-recipe-for-human-progress
1•marcsidwell•4m ago•0 comments

Proprietary sector indexes across tech and beyond

https://multiples.vc/sector-indexes
1•ashvardanian•4m ago•0 comments

Mirror Life Worries

https://www.science.org/content/blog-post/mirror-life-worries
1•etiam•5m ago•0 comments

The Challenges of Distributed Systems

https://newsletter.francofernando.com/p/the-challenges-of-distributed-systems
1•ibobev•6m ago•0 comments

American Chemical Society: do not expect CO2 capture breakthrough to save us

https://www.youtube.com/watch?v=dWJi8pRBW4E
1•gsf_emergency_2•9m ago•0 comments

Kmart broke privacy laws by using facial recognition, commissioner finds

https://www.abc.net.au/news/2025-09-18/kmart-facial-recognition-technology-privacy-commissioner/1...
1•maxeda•9m ago•0 comments

RDMA-Powered Distributed Cache for Fast AI Training and Inference

https://github.com/blackbird-io/blackbird
9•hackercat01012•10m ago•0 comments

The Constexpr Debugger

https://blog.jetbrains.com/clion/2025/09/introducing-constexpr-debugger/
2•ashvardanian•10m ago•0 comments

Unbundling Adobe

https://blog.tryresearchly.com/articles/unbundling-adobe-ai
1•leo_researchly•12m ago•0 comments

China's largest chipmaker testing first homegrown immersion DUV litho tool

https://www.tomshardware.com/tech-industry/semiconductors/chinas-largest-foundry-testing-first-do...
2•dataminer•15m ago•0 comments

Nvidia buys $5B in Intel stock in seismic deal

https://www.tomshardware.com/pc-components/cpus/nvidia-and-intel-announce-jointly-developed-intel...
7•stycznik•17m ago•1 comments

JLR hack: Supply chain staff told to apply for Universal Credit, claims union

https://www.autocar.co.uk/car-news/new-cars/jlr-hack-supply-chain-staff-told-apply-universal-cred...
1•breve•19m ago•0 comments

Toys can tell us a lot about the future of tech

https://www.theregister.com/2025/09/18/toys_and_tech_futures/
1•LorenDB•20m ago•0 comments

South Africa's Small Businesses Are Overtaxed. Its Gotten Out of Hand [video]

https://www.youtube.com/watch?v=4OiU3lgw_-A
1•flojo•22m ago•0 comments

Translating ePub Ebooks with Local LLM and for Free. An Effective Approach

https://grigio.org/translating-epub-ebooks-with-local-llm-and-for-free-an-effective-approach/
1•grigio•22m ago•0 comments

The Hottest New Defense Against Drones? Lasers

https://www.nytimes.com/2025/09/18/world/europe/drones-laser-weapons.html
1•mistersquid•22m ago•0 comments

Samsung brings ads to US fridges

https://www.theverge.com/news/780757/samsung-brings-ads-to-us-fridges
3•gloxkiqcza•22m ago•0 comments

Garys Economics: What does Elon Musk want? [video]

https://www.youtube.com/watch?v=wPoXOwiEfrQ
2•nabla9•25m ago•0 comments

Toyota Exec Thinks Hydrogen 'Will Take over Diesel'

https://www.thedrive.com/news/toyota-exec-thinks-hydrogen-will-take-over-diesel
1•breve•25m ago•0 comments

AI Product Image Generator – Create Product Photos

https://aiproductimage.net
1•wukongfine•25m ago•1 comments

China bans tech companies from buying Nvidia's AI chips

https://www.ft.com/content/12adf92d-3e34-428a-8d61-c9169511915c
2•mihau•26m ago•1 comments

Show HN: Diamants, an open-source drone swarm to fight wildfires

https://github.com/lololem/diamants-collab
1•lololem83•26m ago•0 comments

Reliance's LP Strategy

https://www.dealflowiq.com/p/reliances-lp-strategy
1•koolhead17•28m ago•0 comments

Chronological Haircut Record

https://splorp.me/about/haircut
1•fbn79•33m ago•0 comments

Trump targets Antifa movement as 'terrorist organization'

https://www.reuters.com/world/us/trump-targets-antifa-movement-terrorist-organization-2025-09-18/
4•throw0101a•34m ago•1 comments

Benchmarking Humans and AI in Contract Drafting

https://www.legalbenchmarks.ai/research/phase-2-research
2•ReDeiPirati•37m ago•0 comments

Show HN: AI agents to handle customer support tickets

https://ticketdesk.ai/
1•vrathee•38m ago•1 comments

Nexstar to Acquire Tegna for $6.2B in Local TV Megadeal Fueled by Deregulation

https://deadline.com/2025/08/nexstar-acquires-tegna-local-tv-merger-donald-trump-1236491712/
1•throw0101a•39m 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•4mo ago

Comments

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