by benjiro29
4 subcomments
- As somebody who did plenty of scraping for his own little projects, lets just say that reddit their security concerns are just PR for "we do not want to keep supporting old.reddit".
While yes, you can not simply scrap new reddit as easily as a pure html scraper is cheaper to run. And while the new reddit its js "slow down" scraping as it need to run over a headless browser. Do you slow scraping down a lot?
No. Because you can simply spin up more instances and route over more proxies. Given the fact that you can scrap millions of pages per day, on a single cheap 1 CPU node...
The limiting factor for scraping a website is not html vs js / client vs headless browser. Its avoiding detection by running from different ips, faking browser information and masking your traffic to not give off the smell of automatization (and avoiding tls fingerprinting).
I wrote this type of stuff before we had AI to help write it, in a few days time. Now with a LLM at your fingertips in a few hours, you will have a complete working version with cloaking build in.
And the larger size difference does not matter, you can block irrelevant files via faked cache responds, to give the server the impression that your a repeat client, and no need to flood your browser instance with images, fonts etc. Some think that this is a defense, aka throttling you with increased bandwidth usage lol
So in my personal opinion, its not about dealing with scrapers, but trying to push people to new reddit, so they can finally phase out old reddit.
PS: So much fun reading new reddit on your phone browser, to have it pop-up a "use our app" banner, that prevents you from interacting with the website anymore. And even blocks firefox its scroll ability (and thus accessing to the browser its nav bar). Tip for people: delete the sites cookies and cache regularly, to prevent this usage tracking, so the banner newer shows.
- I always wondered how Reddit justified the old.reddit effect. If your new design is so awful that a large percentage of users refuse to use it, and prefer the (more performant!) version from more than a decade ago, shouldn't that be a strong signal that you've made some mistakes? Why not try making the new version more appealing by investigating and fixing the issues that cause people to use the old one.
I guess credit to whoever fought internally to keep old.reddit running all these years. I'm sure it's been a candidate for the axe many times.
by felooboolooomba
9 subcomments
- Meta has spent $2B on verification lobbying. Very successfully it seems.
In 1-2 years, you won't be able to browse the internet without scanning a body part and providing a ID for your ass.
https://www.gadgetreview.com/reddit-user-uncovers-who-is-beh...
by galleywest200
4 subcomments
- I don't buy the “scraping” protection when appending .json to any reddit URL still gives you the data.
Example: https://www.reddit.com/r/whatisit/comments/1v3mzl6/what_is_t...
by aucisson_masque
15 subcomments
- I think at this point I'm ready to give up on Reddit, most of my questions are already answered by LLM.
And the discussions quality on Reddit are abysmal, its filled with bots.
by account42
3 subcomments
- I noticed they logged me out when I happened on a link recently. I don't think this change will make me log back in. The value of the site has already crashed, now the only question is which site will manage to capture the mainstream link/image discussion next.
> This is because appending site: reddit.com to a search query is basically a surefire way to find results written by genuine humans.
This hasn't been true for a while now. A lot of what you find on reddit these days feels incredibly fake. It's like there should be a variant of Goodhart's law: Once a forum becomes known for genuine human writing it stops being a forum for genuine human writing.
- Reddit has licensing deals with OpenAI and Google, so is likely trying to keep other AI companies out
https://mediaandthemachine.substack.com/p/reddits-new-ai-lic...
by DivingForGold
2 subcomments
- Actually plain html is what IS safe.
It is javascript that allows corporate interests to pop up and nag screen you, and otherwise control your web browsing experience to their favor.
I have an app in my browser that allows me to toggle off javascript and vanquish most pop ups and nag screens.
- I only used old.reddit, it's a sad day as I say goodbye to reddit because the new layout is terrible and since they killed open reddit clients there is no alternative.
by tassadarforaiur
6 subcomments
- I don't care about any of reddits social features anymore, I logged out a long time ago, but where do we go now for the knowledge base of old reddit how to questions / recommendations / guides?
Good forums with trustworthy guides are hard to find for niches you're newly learning about.
Discord is it's own problem.
I haven't explored mastodon / blue sky / etc. in a while.
Do we have to find an old dump of reddit html, and self host a snapshot of days before the front page of the Internet went behind a login page?
- Reddit is such an amazing business model that exploits the gullible. People go on reddit, voluntarily post comments, generate interest vectors that can be harvested and get "paid" with upvotes. The so called reddit mods do voluntarily, unpaid work to manage subreddits that can be closed at any time by reddit admins.
All of this work done by people for free for a commercial platform, so that it can then build a walled-garden around all that content and charge others for API usage.
Hats off.
- The login page is a very nice reminder to not use Reddit. I have the old reddit redirect extension so this change was the push I needed after the latest very clearly botted hate campaign took over the site recently. Dead internet theory is taking it over, so I'm off to the next moderated social website.
- There's a third theory of why they're doing this that I don't see discussed too much.
Behavioral tagging of bot traffic is actually easier when you're not serving plain HTML pages, because the number of signals thrown off by bad bots that don't exactly replicate browsing habits goes through the roof. The larger anti-bot implementations do a lot of this type of thing nowadays.
Bot authors no doubt have their own incentives for using old.reddit (lower bandwidth, conceptually simpler to crawl, etc) but it would not surprise me to learn that Reddit wants exactly one door for bots to have to shuffle through. They also don't work on old.reddit much at all these days, so any effort they have to put in to handling bot traffic is kept to one route.
Pretty dumb era of the internet we've wound up in.
- I am hard put to defend reddit and a lot of the things they do ... but I can attest, from personal experience, that scrapers are a huge problem for anybody trying to keep a complex site working. Withholding the display of the comments will significantly reduce the database traffic needed to satisfy a request; I can see why they would want to do that for anonymous readers.
by moritzwarhier
0 subcomment
- The "plain" HTML spec is notoriously hard to analyze statically though, due to "error tolerance".
The "error tolerance" introduces algorithmic complexity into what could be a parsing problem.
Root cause: DOM parsing can lead to a different result when you take the first-pass output, serialize it to HTML again, and use it as input for the second parsing pass. And if it sounds stupid: browser do this, AFAIK.
Side note, not security-related: CSS has introduced two-pass rendering since Flexbox, AFAIK. Not the same thing regarding what "rendering" means (there, it's about boxes on screen, not about transforming HTML->HTML, but...).
Lehacy inline attributes that allow JS execution are a favorite example, but disabling them via CSP is not a silver bullet.
Even if you disallow all attributes like "onclick", "onload", etc, modern document parsing is not context-free, and allows for arbitrarily complex exploits, AFAIK (a href, src or style payload can be just as bad as arbitrary JS execution).
The author of the ancient library DOMPurify made a decent amount of money from explaining this thoroughly and providing solutions.
In short, detecting XSS is a variant of the Halting Problem in some especially hard cases, as far as I remember. Because HTML parsing is not context-feee.
- Yes, and I have the same problem with Cloudlare’s “we are checking the security of your connection” page that is now popping up for me everywhere.
Thanks for making sure I’m secure enough to read your three-paragraph news article…
- > This is because appending site: reddit.com to a search query is basically a surefire way to find results written by genuine humans.
This take seems... very out of date.
Anyway, old.reddit.com is still loading fine for me in a Private Browsing tab. Firefox + NoScript on desktop, just like OP.
by dredmorbius
0 subcomment
- Reddit's been dead to me for years.
It's ... deader now.
I'd noticed this change myself a few days ago, suspected something was up.
(Occasionally visit for information that's not readily available elsewhere. Log in only to pull content from my now-private subs, perhaps a few times/year.)
- You're not a fringe user, a ton of people use old reddit (myself included).
They're killing themselves the same way Tumblr did. Oh well.
by LaurensBER
5 subcomments
- For users, Reddit has been in a downwards spiral since the IPO.
It's pretty clear that their focus is no longer on providing the best communities (see the many examples of power hungry mods, see below) or the best UX (see the deprecation of the API or the recent changes to old.reddit.com described in the post).
The "product" is now selling data to LLM companies, everything else is clearly a secondary concern. It's a shame because at some point I really enjoyed participating on Reddit and it was a good source of valuable information.
to give some examples of mod abuse:
- /r/energy used to (or still does?) ban anyone in favour of nuclear power
- /r/ubisoft and /r/assasinscreed do not allow any posts criticizing the writing or characters, these are clearly run by the company
- /r/unitedkingdom is famous for shadow banning everyone who's critical of some government program (I got a ban for criticizing motability cars)
- /r/europe banned me 1 minute after submitting a chat control post that got 1.5k upvotes before it was removed
- some vaccination subs ban anyone who posted in anti-vaccination subs (irrespective of what they post)
- Reddit isn't saying HTML has a security flaw. The problem, from reddits perspective, is that old reddit makes it easy to scrape a lot of content anonymously. Requiring a login gives reddit an account it can rate limit or ban, while "New" reddit provides more telemetry and anti-bot checks.
The article is right about one thing: JavaScript and frontend bloat do not secure public content. They just make scraping more "expensive"
But frontend design does affect how easily a site can detect and restrict automated traffic. Reddit may have a real abuse problem. Calling the change necessary 'to keep Reddit safe' though, is slippery wording. this is about controlling access to content and automated traffic, not protecting anyone from unsafe HTML.
by pwndByDeath
1 subcomments
- I've not been a fan of Reddit in a while, but I do appreciate a useful asynchronous human interaction.
I think reddit lost the useful humans a few bad ideas ago but I'm not well versed in that drama.
I'm curious what HN minds would consider a useful fix to this cyborg Internet problem. It seems having humans and bots coexisting is problematic.
If you had to start over knowing what could happened and what we should avoid, how would you do it?
Right now the reticulum network stack has my vote, it enables and cripples just the right things to make me think it might help.
But I don't earn my living from the commercial form of the Internet, I find I blame the commercial interest for the bulk of the problems (enabled by human fragility)
But I may just be a crusty old mind.
- I closed all my Reddit accounts after they instantly shadow-banned my 8+y main account after I shared a single gdrive link to reply to a user with actual data.
I've been appreciated as contributor in various places for being helpful, thorough and precise, but Reddit doesn't care to have good content. It's simply not a good discussion platform (and the UI sucks).
by y-c-o-m-b
2 subcomments
- If you were using old.reddit.com then presumably you were viewing popular by default? In which case you have some alternatives:
https://safereddit.com/
https://lemmy.today/?dataType=Post&listingType=All&sort=TopD...
OR
https://old.lemmy.world/?listingType=All&sort=TopDay
https://piefed.social/ (more or less the same as above)
by doodlebugging
3 subcomments
- I read the author's post and many of the comments and decided that I was finished with reddit, finally. I have always used old reddit to surf the subs and have never used new reddit.
I did my normal morning routine of checking 8-10 subs that still have interesting content and did not see any nag screen for logins at all. Everything worked on my end just as it always has worked. I read comments and post titles with no issues and no login prompts.
I wonder if the login nags only happen on mobile devices. I surf entirely from a desktop using Firefox or Librewolf and a couple of extensions. I never log in to reddit unless there is some issue that I can help with. I avoid most of the popular subs and focus on things that I have direct experience doing or using. If I do post I leave it up for a day or two and then edit it a bit like Yossarian-style censoring - death to all modifiers!
- Why people do things and what people say decided what they do often differ. I think it very likely reddit want login to old reddit for lots of reasons and the post fact rationalisation to badge it security is the least important one.
Money and legal compliance pressures are far higher in my view.
by decimalenough
1 subcomments
- > This is because appending site: reddit.com to a search query is basically a surefire way to find results written by genuine humans.
This is, sadly, not even remotely the case anymore.
- Interestingly, I remember that the clean interface of old Reddit, not so different from current HN, was one of the nice things when coming from Digg back in the day.
It started dying for me when they started censoring posts and comments to appeal to advertisers, followed by killing non-official clients, then the light mobile website. Killing old.reddit feels like the last nail in the coffin.
Unfortunately, we have yet to see an alternative that can sustain mass migration.
- As a heavy reddit user since the glorious Digg times... what's up with this "old reddit" thing?
I vaguely remember some problems with new reddit initially. But the "new" frontend looks nice to me in all aspects. What am I missing?
by darepublic
0 subcomment
- First there is a patch of greenery. People naturally drawn to spend time there. Then a generous benefactor comes along and builds a paved road. Hey you don't have to use those footpaths anymore! You can ride your bike along this! Thank you!
Then this wonderful benefactor starts adding more things.. fencing.. signage, guardrails. Then one day the benefactor says to everyone I've made all this for you. And yet some of you still don't use this place in the intended way. I will now put up a security perimeter. You must show your papers to enter, walk along the narrow lanes we've set up and obey the signage and pay a toll to justify all I've done. Some of you are so ungrateful
I wonder if we can find a new patch of greenery
- This is sad. I've been using a few read-only lurking apps to browse reddit for a while now and unfortunately this change seems to have broken most of them.
I tried looking into how to do things the "correct" way nowadays and they seem to have completely changed their app platform since the last time I looked. They've completely locked out the old method for requesting API access in favor of whatever this Devvit thing is: https://developers.reddit.com/docs/
If you want just plain old data access you have to submit a help ticket, which as far as I can tell just goes completely ignored if it doesn't get rejected outright by some automation.
- Scrapers prefer old.reddit for the same reason users do: it's lean. Oh well, good thing Reddit has solved the scraping problem. It's a small price to pay to not have their site scraped anymore.
by programmertote
2 subcomments
- I am like OP -- I use old.reddit.com strictly in Firefox. I'm comfortable and familiar with the old UI (been a Reddit user for as long as Reddit has been around).
I was a little annoyed by being asked to log in. But I don't want to browse 'reddit.com' because I don't like the way the new UI looks. It's hard to read and scan the first few pages quickly in the new UI (also looking at you Vanguard; you destroyed your old UI which was compact and informative).
Worse, now that I'm logged in and can use "old.reddit.com", Reddit serves me what it "thinks" I like, so now I'm trapped in the subreddit/topic bubble that Reddit selects for me (btw, it selects things poorly). I want to go to the old front page, so I click on 'Hot' or 'Top'. But Reddit still interleaves the posts with what it thinks I'd like to see.
Madness and sadness ensue.
- It says to keep Reddit safe, as in their profit. It doesn't say to keep you or your computer safe.
- I refuse to log in to Reddit, deleted my account ages ago. And now on mobile it places an unclosable pop-over asking me to log in to continue reading. So now I only read things on desktop. Would like to stop using Reddit all together but sometimes it is genuinely useful to read some human answers, although since LLM’s train on the data I can get a lot of the same info that way at least.
- Old Reddit is the only way to read text there for me so if that's login-walled or gone I am done with them as well.
by Gareth321
2 subcomments
- I don't mind logging in, but when they remove old.reddit altogether, I'm just going to stop using Reddit. The new interface is the slimiest culmination of all the worst dark patterns and manipulative algorithms. I gave up on Facebook and I'll give up on Reddit. I have so many games and books and magazines to consume which I just don't because of this awful habit of picking up my phone to doom scroll. In fact, bring it on. Turn it off. I dare you. I need an excuse to log off Reddit forever. It's a toxic cesspit of the very worst people on the internet. Worse than 4chan. Worse than Kiwi Farms. When I look back on my time on Reddit I have almost only disdain. It is a supreme waste of my life.
- got banned on my EU country subreddit for saying hamas dresses as civilians
reddit is probably the worst echo chamber of the internet
- Pretty clear they are defending against (a) AI scrapers (b) impending age verification requirements. Honestly, requiring login is probably the least they could do with old Reddit to keep it running with those two constraints.
by darepublic
0 subcomment
- many 'human' generated comments on reddit are very toxic. characteristic of a sort of oneupmanship of shrill accusation and doomer-ism that gets incentivized with karma. Even when the general sentiment is justified I find it unhelpful and harmful for mental health. Yet I still sometimes drift over there. It can be addictive to scroll through.
by 1970-01-01
0 subcomment
- Almost. NYSE:RDDT has decided that plain HTML is unprofitable. That is the entire premise in one sentence.
by Melatonic
1 subcomments
- Remember Aaron Schwartz !
- “Safety” is overloaded here. I agree with the author; the new front end doesn’t seem safer for end users. It probably does make it safer for Reddit in that it’s harder for scrapers to do their thing.
- There is a Nitter for Reddit, called Redlib, correct?
Best to treat Reddit archives as read-only and modern Reddit as a marketing slopfarm. It mostly consists of bots trying to get their brands into AI training data.
- It seems like the community business itself is dying. Not just Reddit, but other communities and forums are all in decline. I thought it was because of LLMs, but they were already dying before LLMs appeared. Though LLMs did accelerate the decline.
The business model where a company owns a public community and monetizes through ads and search traffic seems to have just been a failed model.
The value of a community comes from the conversations and knowledge that users accumulate for free. But when the content company lowers accessibility under the pretense of protecting that content, new members stop coming in.
Platforms try to protect their assets, but in doing so, they end up damaging the ecosystem that created those assets in the first place.
- Yes. There are questionable policies on the website where Ghislaine Maxwell is the top moderator.
- The funnest kinds of problems to solve are the pretend ones.
by madhu_ghalame
1 subcomments
- Login is not the actual solution. Proper rate limiting and bot detection would have handled this much better.
- This is the second death of reddit, the penultimate one. But it stems directly from the first death in ~2015 when they accepted the massive venture capital investment and then had to try to monetize the facebook refugees which meant clearing out all the business appropriate "undesirables" including firing many beloved long time corporate employee, and switching to model where people and corporations posted to their profiles (like facebook) instead of subreddits set up by the existing userbase. It hasn't been reddit since. And they're making that very clear as of yesterday.
- old reddit is broken... the message/mail notifications don't work/go away.
- Old reddit still works for me even without login though. I'm too lazy to figure out which from the multiple of userscripts and addons I use allows it, but apparently the block is done half-assedly and easy to circumvent.
by giancarlostoro
0 subcomment
- I assume they are being screen scraped by LLMs even though you can find exports of reddit posts elsewhere. I can't blame them for trying to charge for API usage, it was never a cheap cost to them to begin with.
- > is basically a surefire way to find results written by genuine humans
Was a surefire way?
by wwalexander
3 subcomments
- Another fun New Reddit quirk: on iOS, the un-dismissable “better in the app” popover makes scroll stop working, meaning you can’t scroll up to get the iOS-native “Open in App” toolbar that actually opens the app, so your only option is to click their hand-rolled button that just opens the App Store listing, or reload the page and tap the native “Open in App” button before the popover reappears.
- If the login nag bothers you, narrow the screen until it disappears. You'll then have access to a hamburger for navigation
- It’s really hard to feel bad for these Web 2.0 platforms that made money off of free content and are now enshittifying on top of it.
I stopped using Reddit when they blocked 3rd party apps and forced people to use their first party ad-ridden and painful UX. Every time I go back I find some other annoying unilateral change like deleting r/all.
In any case, Reddit was so filled with politics and bots and low-effort drive-by comments that I don’t miss it too much.
- I am not logged in into Reddit at work or on my phone. But I have redirect to old.reddit.com enabled.
- I've noticed a large uptick in websites being more comfortable blatantly lying to visitors recently, where beforehand they'd say something like "for the best experience" or not state a reason at all to try and get you to do what they want.
A recent example: if you use a VPN and are signed out, YouTube will occasionally claim you need to sign in to "Protect our community", despite signed out users being unable to affect anything in the first place.
by Mountain_Skies
0 subcomment
- I started getting it on new Reddit about an hour ago. So far it's only a couple of sub-reddits, but it's weird that this is happening around the same time they put a login wall on old reddit. I don't think it's a NSFW thing because I'm getting it on the College Football sub-reddit, which should be accessible to anyone. Guess they want to be more like twitter.
by LoganDark
1 subcomments
- New reddit has a literally worse user experience. No comments display more than maybe 1 reply and if you click to view more, it takes you to a dedicated page for just that reply. If you click the back button it completely forgets where you were in the original comment thread. Basically impossible to peruse comment sections like on askreddit posts, etc.
by ChrisArchitect
0 subcomment
- An earlier thread:
Tell HN: Old Reddit Now Requires Login
https://news.ycombinator.com/item?id=48983857
- I assume this is another push to force people onto the terrible "new" UI.
When they eventually remove the old reddit, they'll lose this 18 year reddit veteran. No way in hell am I using that infinite scroll abomination.
by traceroute66
3 subcomments
- YouTube have also become very aggressive in forcing you to have a Google account and to watch videos to allegedly "help protect our community".
I avoid YouTube like the plague, but sadly there are lots of people out there who don't know anything other than YouTube exists and so they post their videos there (e.g. conference presentation recordings etc.).
by rose-knuckle17
0 subcomment
- they mean keeping their board/investors safe from scraping. that's all.
- BTW old.reddit is still working for me without login when VPNed into Canada (for now)
by moralestapia
0 subcomment
- The solution to this is to leave Reddit for good.
I did that several years ago, after encountering a very abusive mod.
I was a heavy user, visited the site several times a day for like a decade, and yet I was surprised to realize that I did not miss it one bit.
Just leave Reddit for good. :).
- If old.reddit dies, I leave. It's just another step into the grave.... That's about all that should be said.
by dncornholio
0 subcomment
- This is petty. The people who still claiming the old reddit was superior might hold truth, but it's time to move forward. Reddit owes us nothing.
Also you can scrape Reddit with JSON now, which is 10x better than any HTML, safe or unsafe, whatever that means.
- the platform that built its entire identity on user-generated HTML pages now considers HTML a security threat. somewhere a web standards working group is having an existential crisis
by ChrisArchitect
0 subcomment
- IF you're an actual user of the site, like, logging in and what not, you can still just set your preferences to use the old design. Never need to go to old.reddit
by ChrisArchitect
0 subcomment
- Related:
Reddit will require you to log in to use old.reddit.com
https://news.ycombinator.com/item?id=48740217
(Source: https://old.reddit.com/r/modnews/comments/1ujtebf/logging_in...)
- > This is because appending site: reddit.com to a search query is basically a surefire way to find results written by genuine humans.
I don't think this has been true for a while now. Reddit has been filled with bots and shill accounts for a while.
by impish9208
1 subcomments
- I feel like Richard Hendricks in the show Silicon Valley was on the right track with his new internet project. It seemed too idealistic back then, but it’s clear that the modern internet needs to be burned to the ground (or kept barely alive to keep the PMs, MBAs, growth hackers and slop farmers busy). How do you bootstrap a new humans-only network without doing the whole eyeball scanning thing though?
by shevy-java
0 subcomment
- I retired from reddit last year or perhaps two years ago already.
The reason was censorship by insane moderators. I am also hardly
the only one - there is so much criticism about reddit on reddit
that it is quite interesting to see reddit has not yet died already.
On the one hand, some info on reddit is useful, but on the other
hand, I would not be in the slightest concerned if reddit were to
be removed - nobody needs censordit.
Thinking about it, I actually should have also deleted all my contributions; feels a bit unfair that they can still benefit from what I wrote even though they (many moderators) censored me.
- When I’m browsing, reddit on my iphone on Safari, when the little pop-up shows up that tells you to use the app it completely locks up Safari (it doesn’t hang) I can’t change tabs, bring up the back control buttons or do anything else except exit out of Safari how are they doing that?
by luxuryballs
0 subcomment
- If you want to be paranoid it's a decent idea, if you also make your own internal html/xml alternative you can then say your sanctioned html flavor is safe, but regular html would mean it has to came from an outside third party no matter where you encounter it.
- I've pretty much switched to Lemmy. It's one of the few Fediverse systems that actually seems to live up to its private counterpart.
- Politics aside, this is a sensible position, there was a major client revision, they can put security measures in the new version that are not present in the older one, this happens in many many industries.
To be specific, the defensive measures probably rely on javascript, captchas and captchaless bot detection measures (probably javascript), like measuring mouse movement and stuff like that. So sending a client with javascript that loads content if some security checks pass, is harder to abuse than a plain html site that sends all content in the first request.
Besides scraping, this probably has implications for posting as well. Do you like reading comments from humans and not from other bots? Well, in that case a system that uses plain html will be easier to automate with bots than a javascript clusterfuck.
You can't have the cake of web 1.0 and the eat-it of a botless experience too.
- Politics aside, this is a sensible position, there was a major client revision, they can put security measures in the new version that are not present in the older one, this happens in many many industries.
To be specific, the defensive measures probably rely on javascript, captchas and captchaless bot detection measures (probably javascript), like measuring mouse movement and stuff like that. So sending a client with javascript that loads content if some security checks pass, is harder to abuse than a plain html site that sends all content in the first request.
- hey, it's working again!
by ChrisArchitect
1 subcomments
- Cannot duplicate.
What I'm getting is a temporary/false "You've been blocked by network security" page but refreshing then brings up the reddit page as per usual.
https://old.reddit.com/r/modnews/comments/1ujtebf/logging_in...
- I expected this to go for a long time. It's the only way to anonymously browse 18+ subreddits. I would not be surprised if reddit accounts are effectively (if not always) connectable to a legal identity.
by dust-jacket
0 subcomment
- I feel like this is a deliberately obtuse response to a real and irritating change.
Old reddit is going to be MUCH, MUCH easier to scrape. Scraping has the potential to bring down the site. Gating old reddit to logged in users will massively mitigate that.
I don't like it either. But it's not hard to see a good reason why doing so helps "keep reddit safe"
Even if it also coincidentally makes it easier for them to make more money. Grr.
- One more walled garden enshitifying rapidly
- > This is because appending `site: reddit.com` to a search query is basically a surefire way to find results written by genuine humans.
People share that tip as if it’s some kind of cheat code for the internet, and it baffles me how they can’t see they’re being manipulated. Of course advertisers took notice and there are Reddit posts which are ads disguised as content. That has been happening since before LLMs. After LLMs, of course plenty of posts there are written by them. Not that the human posts are great, either: for sharing opinions it’s of course subjective, but for factual stuff they are just as wrong as anywhere else on the internet, but with the bad results even more upvoted to the top. Reddit is full of propaganda and confidently ignorant people.
- There UI tactics are top evil. Does anyone else has the issue of back button action not remembering scroll position of the previous page? I think they did it deliberately for some unknown reason.
by analog8374
0 subcomment
- When we spend this much effort picking through their bullshit, whether we prove our case or not, they win.
- Oh I despise them
You should become a pariah if you were anywhere close to companies like Reddit. Or at least Steve Huffman. There are some companies that clearly decided at some point "yeah, no. fuck the user"
by russellbeattie
0 subcomment
- After 20 years my account on reddit was "permanently suspended" after some right wing nitwit reported a comment of mine as threatening. (It wasn't, though it also wasn't kind towards him and his ilk.) Happily, my login still works fine so I just keep using it as a permanent lurker.
I find I spend a lot less time on the site as a result, which really is a blessing in retrospect. I'm pretty convinced it's at least half AI bots now. Given how much AI sites use reddit as a source of "truth", it's not a good sign.
Still, I was among the first couple thousand people to create an account, so it still annoys me that the automated process just happily nuked me. Oh well.
by kaide666666
0 subcomment
- [dead]
- [dead]
- [dead]
- [dead]
by nelliepeter733
0 subcomment
- [dead]
- [dead]
- This is hyperbolic. Users that started with the older interface often prefer that. Humans do not like change. This is a trap that many software developers offering prereleases also fall into. The safety claim has as much to do with maintaining only one stack at a time. Keeping an older interface around extends vulnerabilities and generates ongoing maintenance costs. Referring to old Reddit as plain, safe HTML is not an accurate characterization.