It is worrying to see a major vendor release code that does not actually work just to sell a new product. When companies pretend that complex engineering is easy it makes it very hard for the rest of us to explain why building safe software takes time. This kind of behavior erodes the trust that we place in their platform.
Cloudflare claimed they implemented Matrix on Cloudflare workers. They didn't
51–60 of 231 posts
Re: Cloudflare claimed they implemented Matrix on Cloudflare workers. They didn't
#52Technical blogs from infrastructure companies used to serve two purposes: demonstrate expertise and build trust. When the posts start overpromising, you lose both. I don't know enough about this specific implementation to say whether "implemented Matrix" is accurate or marketing stretch. But the pattern of "we did X" blog posts that turn out to be "we did a demo of part of X" is getting tiresome across the industry.…
Re: Cloudflare claimed they implemented Matrix on Cloudflare workers. They didn't
#53Earlier quoted context omitted.
I also use this as a simple heuristic: https://github.com/nkuntz1934/matrix-workers/commits/main/ There exist only two commits. I've never seen a "real" project that looks like this.
The repository is less than one week old though; having only the initial commit wouldn't shock me right away.
Re: Cloudflare claimed they implemented Matrix on Cloudflare workers. They didn't
#54Re: Cloudflare claimed they implemented Matrix on Cloudflare workers. They didn't
#55Days after the fake story about Cursor building a web browser from scratch with GPT-5.2 was debunked. Disbelief should be the default reaction to stories like this.
Btw, after I wrote that initial article ("Cursor's latest "browser experiment" implied success without evidence"), I gave it my own try to write a browser from scratch with just one agent, using no 3rd party crates, only commonly available system libraries, and just made a Show HN about it: https://news.ycombinator.com/item?id=46779522 The end result: Me and one agent (codex) managed to build something more or less t…
I’m no expert but it seems like a strange choice to me - using a mutex around an MPSC receiver, so whoever locks first gets to block until they get a message.
Is that not introducing unnecessary contention? It wouldn’t be that hard to just retain a sender for each worker and just round robin them
Re: Cloudflare claimed they implemented Matrix on Cloudflare workers. They didn't
#56The developer just "cleaned up the code comments", i.e. they removed all TODOs from the code: https://github.com/nkuntz1934/matrix-workers/commit/2d3969dd... Professionalism at its finest!
>Claude's output was thoroughly reviewed by Cloudflare engineers with careful attention paid to security
>To emphasize, this is not "vibe coded".
>Every line was thoroughly reviewed and cross-referenced with relevant RFCs, by security experts with previous experience with those RFCs.
...Some time later...
Re: Cloudflare claimed they implemented Matrix on Cloudflare workers. They didn't
#57Earlier quoted context omitted.
As long as you take ownership, test your stuff and ensure it actually does what you claim it does, I don't mind if you use LLMs, a book or your dog. I'm mostly concerned that something we used to see as a part of basic "software engineering" (verify that what you build is actually doing what you think it is) has suddenly made a very quick exit from the scene, in chase of outputting more LOC which is completely backwa…
I review every line of code I generate, and make sure I know enough that I can manually reproduce everything I commit if you take away the LLM assistant tomorrow. This is also what I ask our engineers to do, but it's getting hard to enforce.
Re: Cloudflare claimed they implemented Matrix on Cloudflare workers. They didn't
#58I found the source code Jade was referring to, and it looks like the author just noticed this thread: https://github.com/nkuntz1934/matrix-workers/commit/0823b47c...
Re: Cloudflare claimed they implemented Matrix on Cloudflare workers. They didn't
#59Earlier quoted context omitted.
It didn't even compile, which makes me consider wether your comment is just ignorant or outright maliciously misleading
The version that was live on GitHub the day they published their blog post was missing compilation instructions, didn't cleanly compile and didn't pass GitHub Actions CI. The project itself did compile most of the time it was being developed - the coding agents had been compiling it the whole time they were running on it. Shortly after the blog post they updated the GitHub repo with compilation instructions and it wo…
If I install an Arch Linux, I don't say I 'installed Linux from scratch'.
Re: Cloudflare claimed they implemented Matrix on Cloudflare workers. They didn't
#60Earlier quoted context omitted.
The repository is less than one week old though; having only the initial commit wouldn't shock me right away.
But if the initial commit contains the finished project then that suggests that either it was developed without version control, or that the history has deliberately been hidden.
So I wouldn't use the single-commit as a signal indicating AI-generated code. In this case, there are plenty of other signals that this was AI-generated code :)