>Because it’s not just a glorified CRUD app
In what way (that's not related to the difficulty of scaling it, which I already addressed separately)?
The point of my comment was:
"Somebody with AI cloning Reddit in a week is not as special as you make it to be, all things considering. A Reddit clone is not that difficult, it's basically a CRUD app. The difficult part of replicating it, or at least all the basics of it, is its scaling - and even that wouldn't be as difficult for a dev in 2026, the era of widespread elastic cloud backends".
The Bernabeu analogy handwavingly assumes that Reddit is more challenging than a homegrown clone, but doesn't address in what way Reddit differs from a CRUD app, and how my comment doesn't hold.
And even if it did, it would be moot regarding the main point I make, unless the recent AI-clone also handles those differentiating non-CRUD elements and thus also differs from a CRUD app.
>But even if you were right, the real barrier to building a Reddit clone is getting traction.
True, but not relevant to my point, which is about the difficulty of cloning Reddit coding-wise, not business wise, and whether it's or isn't any great feat for someone using AI to do it.
Calling Reddit a CRUD app isn’t wrong, it’s just vacuous.
It strips away every part that actually makes Reddit hard.
What happens when you sign up?
A CRUD app shows a form and inserts a row.
Reddit runs bot detection, rate limits, fingerprinting, shadow restrictions, and abuse heuristics you don’t even see, and you don’t know which ones, because that knowledge is their moat.
What happens when you upvote or downvote?
CRUD says “increment a counter.”
Reddit says “run a ranking algorithm refined over years, with vote fuzzing, decay, abuse detection, and intentional lies in the UI.” As the number you see is not the number stored.
What happens when you add a comment?
CRUD says “insert record.”
Reddit applies subreddit-specific rules, spam filters, block lists, automod logic, visibility rules, notifications, and delayed or conditional propagation.
What happens when you post a URL?
CRUD stores a string.
Reddit fingerprints it, deduplicates it, fetches metadata, detects spam domains, applies subreddit constraints, and feeds it into ranking and moderation systems.
Yes, anyone can scaffold a CRUD app and style it like Reddit.
But calling that a clone is like putting white lines on your lawn and calling it the Bernabeu.
You haven’t cloned the system, only its silhouette.