We're building a dystopia just to make people click on ads [video]
244 comments
·April 27, 2025Imustaskforhelp
MichaelZuo
Why would you spend any amount of time at all on a website that you’ve observed to serve known fraud ads for more than a week or two (and hasn’t sacked their advertising provider)?
null
BobbyTables2
You aren’t reversing type 2 diabetes and erectile dysfunction by drinking warm salt water? /s
antfarm
My way to circumvent most of this: I am using Safari with AdBlock Pro and AdBlock and see zero ads when browsing the web.
I spend more time on YouTube than I care to admit, so I got a Premium subscription, bought an extension called UnTrap for YouTube to hide most recommendations and turned off all YouTube history etc.
I regularly visit BlueSky, Hacker News and YouTube, but not X, TikTok, Instagram or Facebook.
The hardest thing is to not use Amazon, but I am working on it.
asmor
You are using the inferior way to block ads, which will continue to degrade as advertisers take advantage of Google killing synchronous blocking of web requests with Manifest v2.
skygazer
I'm like the parent, on Safari – apparently also using an "inferior" way to block ads that, somehow, inexplicably, works 100% of the time and has never let an ad slip through. Is it supposed to be inferior because it's brittle and requires constant work on the side of the developer? Is it blocking too much and I'm just not aware of it? Is there some new ad tech that it's not prepared for, and can't adapt to, and will fail in the near future?
grugagag
Me too but expect this to stop working though.
Nursie
It’s inferior AFAICT because the API is more limited, and it looks an awful lot like the world’s biggest ad company (Google) has arranged that specifically to be less effective for ad and tracker blocking.
It’s a good reason to use Firefox.
kjkjadksj
Ublock origin is more than an adblocker. You can target entire site elements you don’t like loading. Screw it, delete the entire youtube recommendations sidebar and live in bliss. Is it possible to learn this power? Not from a Jedi.
knome
Only for chrome.
I finally went back to firefox, recently. I needed to update some of the flag defaults to turn on tab changing with mouse scroll and similar, but they are unlikely to break things like ublock any time soon.
I was a frequent profiles user under chrome, and still don't like firefoxes UI there, but just made a bookmark to the profile launching screen.
It's good enough.
kilburn
You may have reasons to require separate profiles. However, keep in mind that firefox multi-account containers [1] address many of the use cases for separate profiles in chrome with an IMHO better UX.
[1] https://support.mozilla.org/ca/kb/how-use-firefox-containers
null
antfarm
Please excuse my ignorance, but what is the superior way? Pi-Hole?
int_19h
Use a third-party browser with integrated ad blocker - then all this Manifest v3 stuff doesn't matter even if the browser is Blink-based. One example is Vivaldi.
Pi-Hole (or better yet AdGuard) is still desirable because it will block ads for other apps and devices. Defense in depth.
PaulKeeble
Pi holes don't swallow everything, in stream ads like on Youtube and Twitch and served by the domain all make it through the Pi hole approach. It also doesn't allow you to turn it off for a particular page or site either, if you want to allow ads on Phronix you can't do it without enabling that advertiser everywhere since it lacks the context of the DNS calls.
The advantage is it works with every browser on every device, its network wide and it blocks a tonne of other calls that aren't made by the browser such as telemetry.
stefanfisk
uBlock Origin as linked.
AStonesThrow
I have found a really amazing way to block ads on websites. It's by not visiting them in the first place. Imagine how well this could work. It's sort of like abstinence and chastity rather than contraception. "Oh you know I love you, let me just have a little for free, and not worry so much about consequences, baby!"
Also I found this amazing hack for YouTube and YT Music. I am nearly hesitant to write it down here, lest everyone try it out. I figured out that if I pay them like $20/mo, all the ads disappear from both apps! Can you believe what suckers they are! I fear that this loophole may be closed soon, but for now I'm living high on the hog!
end1snight
You all still use the web? I've been transpiling video game frame data into shader, geometry, lighting, color gradient data, and an agent system that mix-n-matches styles.
I got into software modding game engines, though. Never cared much for web apps, SaaS. Never much saw the use in paid software since it's just geometry. We made a lot of dumb busy work out of SWE with web apps.
DRY? Yes, let's not repeat ourselves still bothering with lame day jobs that obfuscate it's just physical statistics in a machine of known constraints.
Am really excited about the rest of the world flipping the US off, nVidia full-steam ahead on autonomously organizing distributed systems. Propping up SWEs props up a dangerous delusion.
noitpmeder
Another tip for youtube is to use https://sponsor.ajay.app/ -- helps skip the ads that are increasingly embedded in the video itself.
smusamashah
The same author made another app that replaces click bait video titles with a cloud sourced video title. It also replaces cluck bait thumbnails.
Jalad
https://dearrow.ajay.app/ (super awesome project)
leoh
You are not circumventing the most troubling aspect of all this, which is that the content itself is perverted by its monetization model.
Animats
Yes. This is visible on news sites. The title and lede are rewritten as clickbait. The actual story may not be so bad. On some sites, the title on the home page may not match the article. Yesterday there was "(something happened) in Red State" on Fox News on the home page, but the actual article begins "(something happened) in Florida".
ornornor
For some reason Albania gets no ads on YT. Route your YT packets over to Albania and done.
NextDNS works very well on iOS for everything else.
musicale
> I am using Safari with AdBlock Pro and AdBlock and see zero ads when browsing the web.
Safari's vestigial "never auto-play" setting has never worked, and still doesn't.
jackjeff
I did not realize that worked so well. I gave up on Safari a while ago. Will give it another shot with AdBlock Pro then. Is it with the free tier?
I just use ublock Origin with Firefox on Mac/Pc and Orion on iOS.
The annoyance list takes care of the cookie banners.
breatheoften
Is there anyway to fully disable youtube shorts/reels/whatever that mess is called ...? I quite like youtube long form content but have found myself occasionally in short form rabbit holes (which are both very addicting and extremely unsatisfying and which motivated me to delete instagram to escape when i realized how much a time and emotion suck they are)
hikewkwek
Turning off youtube watch history stops the shorts tab from working. And you can use a userscript to swap the "shorts" word to "watch" in the url to convert all shorts to normal videos.
For example:
// ==UserScript==
// @name Redirect YouTube Shorts to Regular Videos (Mobile-Friendly)
// @namespace https://example.com/
// @version 1.4
// @description Redirects YouTube Shorts URLs to regular video URLs on mobile
// @author YourName
// @match *://*.youtube.com/*
// @run-at document-end
// @grant none
// ==/UserScript==
//Written by GPT-4o Mini
(function () {
'use strict';
// Function to redirect Shorts to regular video URLs
function redirect() {
if (location.pathname.startsWith("/shorts")) {
const videoId = location.pathname.split("/")[2];
const newUrl = "https://www.youtube.com/watch?v=" + videoId;
window.location.replace(newUrl);
}
}
// Observe changes to the DOM and check for navigation
const observer = new MutationObserver(() => {
redirect();
});
// Start observing the body for changes
observer.observe(document.body, { childList: true, subtree: true });
// Initial check in case a Shorts URL is loaded directly
redirect();
})();
tough
Idk if they work but several extensions on the chrome web store claim to hide/block shorts like https://chromewebstore.google.com/detail/hide-shorts/mnakeci...
toomuchtodo
I’m hopeful browsers with LLM support are the future of ad blocking for users. This enables robust and sophisticated control by users of their experience.
philistine
I can’t let you do that Dave.
passwordoops
Perplexity strongly disagrees
https://techcrunch.com/2025/04/24/perplexity-ceo-says-its-br...
toomuchtodo
Don’t use their browser? Browsers existed before Perplexity, they will exist long after they’re gone. I’m advocating for deep LLM support in any browser engine, with the assumption of on device inference (but also supporting off device endpoints, as use case dictates).
stefap2
I'm using Adblock Browser on Android. Works pretty well also with youtube.
ujkhsjkdhf234
I have been groaning about income inequality a lot but it is amazing how much of this can be explained by it. People do not have the disposable income to spend on services so you make people pay with attention. Give them the carrot for free so they don't notice. On top of that, the product is free so there is no expectation of support for the end user. You're getting it for free so what are you complaining about?
catigula
People definitely have disposable income. They can, and are willing, to go into even non-trivial amounts of debt if you're good enough.
The goal is extracting your portion of it via social engineering and other mechanisms available to you.
dilyevsky
What would be the point of showing an ad to someone without disposable income?
lcnPylGDnU4H9OF
Some examples, with varying levels of predation:
An ad for Pampers shown to a family with a toddler; an ad for Tidy Cats shown to a cat owner; an ad for Reese’s shown to someone who exhibits poor impulse control; an ad for McDonald’s shown to someone who works two jobs and doesn’t have time to cook food for themselves; an ad for a gambling app shown to someone using a gambling app.
gruez
>an ad for McDonald’s shown to someone who works two jobs and doesn’t have time to cook food for themselves
You're presumably trying to imply it's predatory, but if the premise is that the person "doesn't have time to cook food", how is the ad making things worse? What's the person supposed to do? starve?
amelius
It would change the way they spend their nondisposable money.
tough
They might not have enough disposable income to pay for software but enough to pay for whatever is on the ad.
More generally, if the service is free, you're the product, and you're being sold to someone else
dilyevsky
Both yours and your sibling comments seem to be operating under the assumption that all advertisers are some kind of idiots
lrvick
Propaganda
kjkjadksj
Does the client know they lack disposable income? This is just as much an exercise about fleecing a client out of their adspend by giving shoddy metrics on your end.
accrual
Perhaps interesting anecdata - I have a close friend who has a great career, plenty of assets and income, etc., but doesn't pay to remove ads in their streaming services. Thus, together we watch unskippable ads on a brilliant 70" OLED TV while resting on plush leather sofa in their beautiful loft, haha.
netsharc
In the ancient times there was an ISP selling Internet access where the catch is, you dial up via their program, and this program would have an always-on-top window showing ads...
Then again, Facebook, Instagram, YouTube started "You pay for it with your attention (and your data)" and only later have they implemented payment for being ad-free, although with Zuck's properties, the EU forced it.
MiddleEndian
Nothing to do with income equality, organizations will show whatever ads they can get away with. I paid Microsoft thousands of dollars for my Microsoft laptop. The hardware and form factor are admittedly pretty fantastic. But in spite of this, Microsoft is still determined to try (and fail) to show me ads.
grumbel
Money alone wouldn't fix this, as a Web where every page has a paywall wouldn't be much better either. Which in turn would concentrate most of the Web in a few services just as it is today and enshittyfication would bring the ads back sooner or later, even if you pay for the service.
corytheboyd
> bring the ads back sooner or later, even if you pay for the service.
This has already happened for subscription TV services. Your previously ad-free subscription now has ads, but you can get rid of them again by upgrading! It’s fucking gross. It’s also of course just going to work, and become the new normal.
schnable
[flagged]
poetworrier
I accepted cookies, watched an ad, dismissed a popup for a newsletter to watch a video about ads.
That really nails it.
dijit
The funny thing is that we fought so hard against pop-ups throughout the 90's and 2000's only to re-implement pop-ups in javascript as soon as we could.
no_wizard
I have always wondered what the web would be like if we added the scripting language later and only solidified CSS and HTML for the first 15 years or so.
I wonder if things would actually be better overall. I’m not going to argue that having a scripting language for the web was a mistake, it definitely isn’t on the whole, but I think having it come at a more mature point for the web might have helped stave off a lot of really bad decisions
Imustaskforhelp
I think what would have happened if the web didn't have scripting languages was that you would be forced to download java applets... which now can also run on javascript/wasm coming full circle.
Also, java's dominance I guess was the reason that javascript is named after inspiration of java.
What you are asking for are static pages which already exists and most people do use static pages due to it being very easy to deploy on github pages etc. , though I wonder we would've way more abundance of static pages as compared to non static pages, like there are some pages which could've been static but they aren't.
Though I still think the difference would've existed & it could've been net positive IDK, I just like to go create websites as apps which can be booted on any pc,device without worrying about anything, installing and running it would likely require a setup and it would've been a bigger hassle as well.
And well noone's stopping you from doing it right now. There's gopher and gemini if you are interested.
makeitdouble
We could look at the print world for reference.
Everything is perfectly static and linear, and instead of popups we get full-page ads, double-full-page ads sometimes, and ad inserts in the rest of the pages, with stealth marketing for the content left.
The fundamental issue is not technology IMHO. Scripting can make it worse, but it wouldn't have been great in the first place.
NBJack
Flash would still be around I suspect.
sershe
I dunno, I think it was a net negative by a large margin. 1) html only Gmail shows that pretty advanced, well made apps are possible without scripting; 2) There are very few web apps that without JavaScript wouldn't just be implemented as native without loss of convenience; 3) OTOH for simple apps and sites JavaScript adds inconvenience (non standard links breaking browser features etc), security risks, compatibility issues, massive bloat and tracking.
Nothing like 3 paragraphs of text that requires downloading 2 megabytes of crap, runs code from 20 sketchy looking domains, takes 15 seconds to load, cannot be linked to, and demands you upgrade your browser. As a consolation you can have slightly slower maps in browser instead of downloading an app, once.
I think web scripting is probably THE worst technology ever invented in the IT field. "If I ruled the world", a full ban would be better than its current state; or some AMA on steroids (+Jones act) making JavaScript developers extremely rare and well paid, so that it was limited to the best (as determined by the market) uses with better quality.
altairprime
We would have ended up with Flash and then Chrome, just as we did. Client-side programming is essential to creating certain experiences, and with all great powers comes the extractive shit, etc. This is typically where economists will claim the free market is producing an efficient outcome; regulation would be the only preventative, and that’s anathema to tech libertarians.
timewizard
The modern web has successfully liberated applications from mostly vendor locked OS environments into mostly agnostic browser environments. I think this has been a good thing.
Otherwise, with just CSS and HTML, you'd have a web strictly dedicated to publishing. A read only experience curated by those who are willing to invest the time and tooling into being a publisher.
Even then with the advent of RSS and other data exchange formats it's arguable we didn't even need that part of the web. It would be far better for publishing to deliver headlines and summaries via RSS and then allow me to purchase full content and issues digitally.
I think the bigger complication in the creation of the web was the complete lack of payment systems and user trust in entering their payment information into these platforms. So only the large well moneyed entities like advertisers were willing to absorb that risk and built out the platform. Instead of us conveniently and safely paying creators for content we now have aggressive advertisers who litter the web so publishers can shake pennies out of the CPM tree.
doublerabbit
TCL was to be javascript but didn't happen. Google offered to sell Google to Yahoo and AltaVista $1m for Google, but didn't happen.
I wish to think all these things exist in a alternative universe and we've just not constructed the time-portal yet.
cyanydeez
socialism. that's what we're talking about. No one every said, "Should we try to make the internet a publish good?"
ProllyInfamous
I use the following code (as a toolbar bookmarklette) for a quick button which disables all pop-overs/cookie requests:
javascript:/*https://bookmarkl.ink/ashtonmeuser/849a972686e1505093c6d4fc5c6e0b1a*/(()%3D%3E%7Bvar%20e%2Co%3Ddocument.querySelectorAll(%22body%20*%22)%3Bfor(e%3D0%3Be%3Co.length%3Be%2B%2B)getComputedStyle(o%5Be%5D).position%3D%3D%3D%22fixed%22%26%26o%5Be%5D.parentNode.removeChild(o%5Be%5D)%3B%7D)()%3B%0A
Doesn't always work (sometimes it kills the website functionality), and I have no clue what it's actually doing (I'm not a coder)... but usually it gets rid of hover-overs.Nursie
At least, generally, they no longer open hundreds of windows above or below the current window, which may or may not have browser control bars, may ‘warn’ on exit etc etc
If a page wants to cover itself in noise and dialogues, sure it’s annoying but it’s not quite on the same level as back then.
krupan
Why do I keep seeing, "it's not as bad as that" as a defense? It's still bad!
Buttons840
Remember how wild pop-ups on the early web could be: https://youtu.be/LSgk7ctw1HY
kjkjadksj
Yeah sometimes you’d have to just powercycle the computer if they started cascading too fast and bogging down the system. People would make websites specifically to troll and do this.
musicale
> we fought so hard against pop-ups throughout the 90's and 2000's only to re-implement pop-ups in javascript as soon as we could
A group of people who thought that web users should not be abused may have won the first pop-up battle, but the businesses that made money from intrusive advertisements clearly won the war.
In hindsight maybe it wasn't a such a great idea for web users to switch en masse to a browser made by an advertising company.
The endgame is a probably a war between web sites that are endless mazes of advertising and user agents that try to navigate the maze and extract the non-advertising content.
nirvdrum
I don’t know if hindsight is quite right. There were people raising alarms about this when Chrome initially came out and repeatedly as it grew in popularity. Especially when sites started requiring Chrome. It’s just they were dismissed as conspiracy theorists or brushed aside because right now Chrome is faster and the present is all that matters. This was 100% pushed by tech enthusiasts and web developers… the average person would’ve otherwise stuck with their OS default browser.
I’m not trying to correct you. It’s just a sequence of events I’ve seen play out repeatedly and I’m not sure if there’s a solution. Most recently I’ve seen it with Bambu Lab locking down their 3D printers. Prior to that Autodesk yanking the Fusion 360 enthusiast licenses.
Maybe there isn’t a solution. There’s a lot of UX work that isn’t fun to do and so it’s hard to get volunteers to do it. It’s hard to do product management in a distributed group of volunteers in general. So, companies that can afford to bankroll projects often gain traction with performance or usability gains and suck away attention and funding from open source options. Then when they amass enough of the user base they flip the switch and now folks are stuck. The cost of changing is often prohibitively high and the OSS option is generally far behind at that point.
I think people are bad at thinking longer term. Or maybe they just prefer immediate gratification. In any event, absent a shift in human behavior I expect we’ll see this sort of situation to continue to play out. It’d just be nice if folks were less antagonistic about it when those concerned raise that alarm.
musicale
"OK Gemini, please take this 10-minute video on youtube and give me a version without any advertising or promotional content."
"I'm sorry Dave, but I am unable to accept requests that oppose Google's business interests."
"Well, send it to ChatGPT then!"
"Sure thing. Here is your... 5 second video:"
(Video) "Hey what's up? Be sure to like and subscribe." (end of video)
cma
Google began as a search engine with a popup blocker extension for a competitor's browser. Now they're a display ad company with a browser that includes a built in popup blocker extension blocker.
ethbr1
Google began as a company that cared about users. Now they're a company that cares about advertisers.
trod1234
Well, there are really only three things that form the aggregate of the world we see today.
There are accidents of history, money, and ideology.
These things fit squarely in the money category. The advertising industry was subsumed by adtech during that time, which was driven by government grant and fiat debt-based financing. Advertising fraud has never been harder to account for, and the justified use of analytics for that purpose has driven surveillance capitalism with governments being the customer.
Money printing is the role of the state, so technically if you remove all indirections its state apparatus which makes sense that an individual wouldn't be able to fight against it.
delusional
At least these popups are restricted to the page. It's one thing for a website to decide to block my use of it for some asinine reason. It's quite another for it to block my use of everything else on my computer.
-__---____-ZXyw
I'm reminded of the videos about procrastination on youtube where people seem to never, ever, ever tire of comenting to say things like:
"I'm watching a video about procrastination... and I've got a test tomrrow! Lolol!"
Obviously your comment is the refined HN equivalent, but still.
karmakaze
It's also been a long while since clicking "Manage cookie preferences" shows "Opt-out..." pre-checked and "Confirm choices" button, unlike the "Reject all" button also being shown these days. Then unchecking "Opt out..." dynamically shows a "Allow all" button.
gusfoo
For balance, I clicked the link and (after a moment of my browser imposing my will) the video started playing. Opera + Ghostery is quite a pleasant experience, at least when compared to mobile browsing (at the other end of the spectrum).
grg0
You know it's gonna be good.
avipars
Same video on YouTube: https://www.youtube.com/watch?v=iFTWM7HV2UI
The one on TED.com appears to have been removed.
Sophira
One thing I've noticed is that Reddit is very, very aggressive about how it implements its telemetry.
Not only is the endpoint that it uses for collecting events randomized each time you load a page, but it also happens that every event collector URL is a valid API endpoint that is used for other things. You can't block any of them with regular ad blocking tools unless you're okay with blocking the corresponding API endpoint. And given that the website itself uses the API, this can be difficult.
It's evil and I hate it.
ornornor
> It's evil and I hate it.
That sums post-IPO Reddit up rather well
lukev
Half the comments here are just pointing out that ad blockers exist, which is missing the point.
The damage of an advertising-based internet economy is not limited to just "seeing ads." The entire content and structure of the internet is warped around this economy. Search engines, SEO, content discovery mechanisms, types and variety of content... all could have been different and better.
nelblu
Interesting you say "seeing ads", because lately when I am volunteering with legally blind population as their "tech-mate", I can't explain them why technology isn't doing what they want it to do. It's a million times worse when we put ourselves into their shoes.... My strategy has changed from helping them learn technology, to helping them avoid how to use technology. One of the person I help, who is legally blind but can see font size 50+, asked me to teach him how to search for lyrics of songs so that he can play his guitar. I tried to teach him, but it was pointless because of how the websites were full of ads. I did install an ad blocker which helped a bit but in the end, I gave up and now I just print out lyrics for him.
HenryBemis
Suggestion in case it helps:
step 1: install & use Firefox
step 2: install and use adblockers (multiple)(I got ublock origin, adblock plus, noscript, privacy badger, privacy possum)(nothing gets through!!)
step 3: install "Open in Reader View" addon (not affiliated in any way). With this, when I DDG-search for something, especially lyrics or something for which I am interested in only the text, I right-click and "open in reader view" so it does exactly that.
step 4: set the Reader View (F9) in FF, to the font size, color, etc.
and the your 'friend' will Google for: Metallica enter sandman lyrics, and just right-click and pick the "Open in reader view", and presto! new tab with just the lyricsEDIT: tip: tell your 'friend' to search for Band Song_title AZLyrics (not affiliated) so the first hit will be from "AZLyrics.com" which will have a standard format (I always search for ".... azlyrics" instead of just "..lyrics")
sssilver
So much this.
I don’t think we fully fathom how much everything on the Internet has degraded. And we and our children have degraded with it. Like frogs boiling alive in a pot, we never noticed it because of how gradually they increased the temperature.
prinny_
"The best minds of my generation are thinking about how to make people click ads. That sucks." - Jeff Hammerbacher
bee_rider
N.B., he is right on the Gen-X/Millenial border. So, we can now look retrospectively at a good chunk of his generation’s career. The tech industry we’ve built does, in fact, suck.
Although, Millenials seem to be pretty annoyed by all this, and aren’t really anywhere near retirement yet. So maybe we can figure out some way to apply the brakes.
delusional
That's such a copout quote. The people working on ads aren't the best minds, if they were they wouldn't be working on ads. We somehow bought into the lie that "maximize profit" has anything to do with intelligence. And that a bank account is a equivalent to an intelligence score.
No, the problem we find ourselves in is that we let ad companies buy the entire economy and infect it with anticompetitive behavior. The people working on Android aren't working on ads. Their work is being exploited by an ad company and twisted to serve ads.
I personally find my doctor infinitely more intelligent than any Google tech bro. I find the group of people making Little Kitty Big City infinitely more intelligent than some Facebook wanker.
antfarm
But how are you going to change that?
lukev
You're right: it's probably fine then. My bad.
null
antfarm
The comments you criticised describe a solution or at least a workaround, but you are just stating a problem, thus my honest question. No need to get snarky.
grumbel
Give every Internet user a domain name and routable IP for free with their Internet account.
That won't magically fix all the problems in an instant, but the core of everything wrong with the Internet starts with the Internet being separated into consumers and providers, instead of being a true peer2peer network.
Even in the olden days of the Internet when ISPs would give you free webspace with your Internet account, you still didn't get your own domain name, meaning all your Web presence would bust when you switched providers.
Alternatively, get Freenet, IPFS/IPNS or any of the other distributed alternatives working, but after 25 years of people trying, I kind of given up hope of it ever happening.
null
bigyabai
Couple choices:
1. Switch to cryptocurrency, let small-time criminals control the web.
2. Switch to micropayments, let criminal corporations control the web.
ToucanLoucan
Step 1: remove Section 230 protection for algorithmically-elevated content.
If you're going to have attention-mining addiction-creating software funnel people into rabbit holes, then those rabbit holes need to be verified, safe-to-consume stuff. Watching 5 hours of 5 minute crafts is at worst, going to make someone spend too much money at Hobby Lobby. Certainly not good, but a workable issue. Watching 5 hours of white supremacist propaganda is how you get our current sociopolitical climate.
latency-guy2
How is that a "step 1" when thats describing something else entirely?
How much would you pay to own an account on social media? If your answer is $0 then you're not addressing anything, you just want someone else to subsidize your entertainment and you want to call the shots on top.
I don't work for free, and I know damn well neither do you.
dfadsadsf
Would you support blocking BLM and black supremacist propaganda too? Essentially you are just proposing traditional government censorship. The good thing about Soviet TV is that it had only wholesome content - not that western capitalist stuff.
dang
Related:
Zeynep Tufekci: We're building a dystopia just to make people click on ads - https://news.ycombinator.com/item?id=29026203 - Oct 2021 (2 comments)
We're building a dystopia just to make people click on ads (2017) [video] - https://news.ycombinator.com/item?id=16684860 - March 2018 (170 comments)
We're building a dystopia just to make people click on ads [video] - https://news.ycombinator.com/item?id=15891014 - Dec 2017 (50 comments)
We're Building a Dystopia Just to Make People Click on Ads - https://news.ycombinator.com/item?id=15572578 - Oct 2017 (12 comments)
1vuio0pswjnm7
"We're building a dystopia to make people click on ads"
Why not, "They're building a dystopia to make people click on ads"
I'm not building this dystopia
Are you
jorgesborges
Is it possible to launch an offensive against advertising by spoofing humans that consume ads so numbers increase so dramatically they’re meaningless?
null
dest
Check AdNauseam!
SpicyLemonZest
I don’t think so. Ads were still common and widespread back in the analog days when there was no such thing as a click through rate to measure.
doctorpangloss
No. If you know how to make prices move a certain direction, go become a billionaire.
esafak
(2017)
Nobody is excited about ads in 2025.
thomastjeffery
It's less exciting when you've been living in the dystopia for a few years.
JKCalhoun
That is wild — that this video is 8 years old. I didn't realize until I read your comment.
I think the problem is, I feel like most ads are so empty,hollow & fraudful on the internet...
I am okay with ads, if they aren't all the above.
But I don't know what the Algorithm overlord serves me as an Ad, so I use Ublock Origin.
I actually think ads should probably be changed from paid promotion to actually use that money on such a good level of ad that even if you release it as a standalone video for example, people would want to watch it.
And I think people are doing it, I still listen to this Splendor Song Chalta rahe because of how great the music of this ad is.
But Most ads are of frauds trying to sell you a get rich quick scheme etc. (atleast I feel like every ad wants to sell me a course?), and I don't want to be the fraud's shitty course's next victim, I hate such course sellers so much that I kind of want to punch them through the video just thinking how the whole economy of ads is generally revolving around these frauds..., and how they make money is by scamming innocent individuals.
All of this while building a privacy nightmare, a dystopia.
No thanks. I am going to keep ads off of any of my services to a higher level of degree though I do imagine that most people don't donate shit & I don't even think that in businesses, the real money are in normal clients because they require free tier and way too much hassle for like 10$?, but rather business clients (B2B).
Though I also feel this moral obligation to open source whatever I build.. but then businesses can simply self host it, maybe I should probably only release it as fair source?
IDK, the whole system boils down to money, I can be only so good a person as the constraint of money requires me to. If money is low, morality has a higher probability of being ignored... , IDK, there is too much competition, sometimes unworthy,sometimes not, but still too much competition on a lot of ideas and they have not much differences so they try to do ads...