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?
We're building a dystopia just to make people click on ads [video]
201–210 of 285 posts
Re: We're building a dystopia just to make people click on ads [video]
#202My 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 h…
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)
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();
})();Re: We're building a dystopia just to make people click on ads [video]
#203Earlier quoted context omitted.
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…
You can't think about alternate web evolution without considering (1) the early browser wars (specifically Netscape vs IE) & (2) the need to decouple data transfer and re-rendering that led to AJAX (for network and compute performance reasons). Folks forget that before js was front-end frameworks and libaries, it was enabling (as in, making impossible possible) async data requests and page updates without requiring a…
Imagine instead if HTML evolved more in the direction of enabling this exact scenario out of the box. So that e.g. you could declaratively mark a button or a link as triggering a request that updates only part of the page. DOM diffs implemented directly by the browser etc.
Re: We're building a dystopia just to make people click on ads [video]
#204I 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?
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.
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.
Re: We're building a dystopia just to make people click on ads [video]
#205Half 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.
"The best minds of my generation are thinking about how to make people click ads. That sucks." - Jeff Hammerbacher
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.
Re: We're building a dystopia just to make people click on ads [video]
#206Pohl and Kornbluth in 1952 wrote "The Space Merchants" - "a novel of the future when advertising agencies take over." https://en.wikipedia.org/wiki/The_Space_Merchants
you will like https://en.m.wikipedia.org/wiki/Jennifer_Government also, the premise of the entire lore of shadow run, is corporations building armies and seeing they can get away with it and then just doubling down. but back to reality... everyone would buy stock of the ad-dystopia and since now their retirement is tired to it they will just normalize and promote it. just like today.
I don't think the last-name-is-the-company adapts well to the so-called "gig economy" where employment is structured as supposedly independent contractors, who in turn can be working for multiple organizations at the same time.
"Corporations building armies", etc. describes the Dutch East India Company pretty well, yes? As I get now into my 50s, that goal seems more and more an intrinsic part of limited-liability joint-stock companies.
Re: We're building a dystopia just to make people click on ads [video]
#207Earlier quoted context omitted.
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.
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…
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.
Re: We're building a dystopia just to make people click on ads [video]
#208Earlier quoted context omitted.
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.
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…
Re: We're building a dystopia just to make people click on ads [video]
#209UX largely sucks and takes a backseat to the ad experience now.
Re: We're building a dystopia just to make people click on ads [video]
#210Earlier quoted context omitted.
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.
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…