Live data from Hacker News

No adblocker detected

maurycyz.com

41–50 of 388 posts

Re: No adblocker detected

#41
I'm torn. I'm not a huge fan of ads and I don't have a lot of respect for the modern ad networks. However this culture of expecting websites to host the data then freeloading off it by blocking the tracking and ads is also a bit ugly.

There is an unwritten social contract here. Websites are willing to host and organise a vast number of content because that'll attract an audience for ads. If there are too may freeloaders resisting the ads then services won't host the content, and on the path to that the freeloaders are really just leeching off a system in an entitled way (unless their goal is to destroy the services they use in which case good on them for consistency and for picking a worthy target).

If people aren't going to be polite and accept that contract then fine, enforcement was always by an honour system. But strategically if a service's social contract doesn't work for someone then they shouldn't use that service - they'd just be feeding the beast. They should go make their own service work or investigate the long list of alternative platforms.

Re: No adblocker detected

#42
post #33

Earlier quoted context omitted.

I don't understand why DNS ad blockers (Ad Guard, Pi-Hole, other) aren't frequently used across corporates. Especially given the regular-ish training on cybersecurity and related.

Because ads are not how malware is distributed? You have higher chance of getting a malware from `pnpm add` than seeing an ad on the web.

> Because ads are not how malware is distributed?

Malware is absolutely distributed through ads. In the case of more reputable ad platforms that don’t allow arbitrary scripts, it’s by linking to malware, but they’re also used to serve drive-by exploits.

> You have higher chance of getting a malware from `pnpm add` than seeing an ad on the web.

If you’re a normal computer user who browses the web without an ad blocker and never runs `pnpm add`, the relevant chance is a little different. (Fun side fact: current pnpm wisely doesn’t run install scripts by default.)

Re: No adblocker detected

#43
post #33

Earlier quoted context omitted.

I don't understand why DNS ad blockers (Ad Guard, Pi-Hole, other) aren't frequently used across corporates. Especially given the regular-ish training on cybersecurity and related.

Because ads are not how malware is distributed? You have higher chance of getting a malware from `pnpm add` than seeing an ad on the web.

This is very incorrect.

Ads are basically running a program they wrote on your computer. If there’s any exploitable feature in your browser’s JS sandbox, count on someone sending you an ad that will exploit it.

Re: No adblocker detected

#45
post #25
post #3

I wish browsers could just provide a way to disable javascript after page `onload`. Perhaps only enables js when user clicks something.

setTimeout(() => { // fuck up all future javascripts setTimeout = setInterval = requestAnimationFrame = () => {}; Element.prototype.appendChild = () => { throw new Error("Blocked"); }; document.addEventListener = () => {}; window.addEventListener = () => {}; Object.defineProperty(document, "readyState", { get: () => { throw new Error("No JS"); } }); document.write = () => {}; // fuck up canvas if(window.HTMLCanvasEle…

    const iframe = document.createElement("iframe");
    document.body.append(iframe);
    iframe.contentWindow...

Re: No adblocker detected

#46

I'm torn. I'm not a huge fan of ads and I don't have a lot of respect for the modern ad networks. However this culture of expecting websites to host the data then freeloading off it by blocking the tracking and ads is also a bit ugly. There is an unwritten social contract here. Websites are willing to host and organise a vast number of content because that'll attract an audience for ads. If there are too may freeload…

I feel like SEO and click bait of all kinds has already broken that unwritten social contract. I feel like your argument is that using an adblocker is impolite, borderline unfair. But I also feel like we, the users, have been exploited by surveillance capitalism. If anyone broke the social contract, it's the websites that participated in [enshittification](https://en.wikipedia.org/wiki/Enshittification).

Re: No adblocker detected

#47

I'm torn. I'm not a huge fan of ads and I don't have a lot of respect for the modern ad networks. However this culture of expecting websites to host the data then freeloading off it by blocking the tracking and ads is also a bit ugly. There is an unwritten social contract here. Websites are willing to host and organise a vast number of content because that'll attract an audience for ads. If there are too may freeload…

Ads in and of themselves aren't really the issue. It's the tracking that is.

If the ad was delivered without cookies and without tracking, as just a stationary gif, I'd be more okay with it.

But without tracking, back in 2008/9 ish before the real estate crash, the Simpsons made a reference to the dancing cowboys ad for selling mortgages. These were the adjustable rate mortgages that went sky high shortly after closing on the house.

https://trailers.getyarn.io/yarn-clip/1f73a011-858b-418b-940...

Re: No adblocker detected

#49
post #3

I wish browsers could just provide a way to disable javascript after page `onload`. Perhaps only enables js when user clicks something.

Tried to browse a while with NoScript addon. But barely any page loads, so you need to whitelist almost every page you visit, which defeats the purpose.

I have been thinking about some kind of render proxy that runs all the JS for you somewhere else in a sandbox and sends you the screenshot or rendered HTML instead. Or maybe we could leverage an LLM to turn the Bloated JS garbage into the actual information you are looking for.

Re: No adblocker detected

#50

I'm torn. I'm not a huge fan of ads and I don't have a lot of respect for the modern ad networks. However this culture of expecting websites to host the data then freeloading off it by blocking the tracking and ads is also a bit ugly. There is an unwritten social contract here. Websites are willing to host and organise a vast number of content because that'll attract an audience for ads. If there are too may freeload…

The websites you speak of don't get to decide what my hardware and my software does when running in my hands. Their content is a suggestion for my user agent, not some unbreakable law. If they don't like it, they should shut down completely.
Post reply on HN