[-] Honse@lemmy.dbzer0.com 32 points 2 weeks ago

They're using this to gather facial biometric data to deanonymize protestors. Everyone stay safe and cover your face, else they'll use it against you!!

[-] Honse@lemmy.dbzer0.com 31 points 1 month ago

Honestly thank god. That place is getting louder and louder and spilling their obvious double standards and apologetics for Authoritarianism all over my feed. They will not be missed.

[-] Honse@lemmy.dbzer0.com 25 points 2 months ago

Severance. Maybe it's just being a hobby 3d artist that makes every frame of that delicious intro so captivating

[-] Honse@lemmy.dbzer0.com 8 points 2 months ago

on the basis of a letter from Secretary of State Marco Rubio that says he has personally determined Khalil poses “adverse foreign policy consequences” to the US

What!? Thats the only basis? I mean thats a complete joke of a reason.

[-] Honse@lemmy.dbzer0.com 26 points 3 months ago* (last edited 3 months ago)

Yeah we need to upvote this one for more general discussion. From what I'm reading if Trump gets his way on this one then the fediverse will essentially be able to be crippled by frivolous lawsuits from anyone who dislikes the speech on the platform and essentially make running it impossible within the US. And of course there's some tech-illiterate grandpas on the Democrats side who fundamentally misunderstand (or willfully and with a stuffed wallet) this legislation and will work with the GOP to end free speech online.

[-] Honse@lemmy.dbzer0.com 59 points 4 months ago

Are those leopards I hear?

[-] Honse@lemmy.dbzer0.com 13 points 7 months ago* (last edited 7 months ago)

Its not as easy as launching from steam for example, but if you have some basic linux knowledge and the ability to use Google you can get 99% of pirated games running in either bottles or lutris. Search for steam deck specific piracy guides, they largely apply to all linux distros.

[-] Honse@lemmy.dbzer0.com 22 points 1 year ago

At least they added offline. Can't even expect the minimum these days.

[-] Honse@lemmy.dbzer0.com 41 points 1 year ago

Need more courageous people to do what's right

[-] Honse@lemmy.dbzer0.com 10 points 2 years ago

This has not worked for me.

[-] Honse@lemmy.dbzer0.com 60 points 2 years ago

This method lets ads load for half a second but then get skipped instantly. i have not personally found a way to 100% block ads once ive gotten their block page.

[-] Honse@lemmy.dbzer0.com 108 points 2 years ago* (last edited 2 years ago)

I'm going to start a discussion in the comments here about methods to bypass the message. I will add suggestions here, so leave comments if you find a method!

Methods to bypass Youtube Anti-Adblock:

  • The easiest method is simply to comply and turn off your adblock extension.

My Method

  • My method, and the one that will likely work universally is as follows:

Install Extension Enhancer for YouTube™

Go to the extensions settings and ensure that under the Ads Management section, "Block Ads" is turned OFF

Now find the Custom Script box at the very bottom and enter the following script. I did not write this code, it comes from egaudette on GitHub

(function() {
    'use strict';
    var clickInterval = setInterval(skipAds, 5);
    var ytpAdModule;
    var miniAdd;
    var skipButton;
    var currentVideo;

    function skipAds() {
        ytpAdModule = document.querySelector('.ytp-ad-module');
        skipButton = document.querySelector('button[class*="ad-skip"]');
        miniAdd = document.querySelector('.ytp-ad-overlay-container');

        if (ytpAdModule !== null && ytpAdModule.innerHTML !== '') {
            ytpAdModule.style.display = 'none';
        }

        if (skipButton !== null) {
            skipButton.click();
            return;
        }

        currentVideo = document.querySelector('video[class*="main-video"]')
        if (currentVideo !== null && currentVideo.duration <= 5) {
            currentVideo.muted = true;
            currentVideo.play();
            currentVideo.currentTime = currentVideo.duration;
        }
    }
})();

Lastly, ensure the "Automatically execute the script when YouTube is loaded in a tab" box is checked, and press Save


I'll add more methods as they are discovered!

625
submitted 2 years ago* (last edited 2 years ago) by Honse@lemmy.dbzer0.com to c/piracy@lemmy.dbzer0.com

UPDATE 2 It seems that starting today, uBlock Origin is working to combat this Youtube Block. Mine started working again! Lets all thank the devs of UBO for fighting this fight!

UPDATE So as new info comes out, I'll be posting it here. It seems as if this Rollout Has Several Parts.

Part 1

You get a popup message over top of your video, blocking the screen:

  • This is the first sign. If you see this popup AND are logged into a YouTube account, your account has been selected.
  • At this stage you can likely close or block these messages with an adblocker.

Part 2

This message will change, indicating that you have 3 remaining videos to watch without ads.

Will insert photo once one has been found

  • At this stage your adblocker will imminently stop working in 3 videos time.
  • Personally using Firefox + uBlock Origin and tweaking filters and updates does not even fix it.

Part 3

None of the video loads now, everything looks blank.

  • At this stage you must tred new ground to avoid ads. I have posted methods in the comments. If you want to bypass this end page, read down there.

End of Update


YouTube has started rolling out anti-adblock to users inside the United States, which means that they are preparing to roll this out to the entire country. Personally, I have been blocked already. I want to gauge how common this occurrence is.

view more: next ›

Honse

joined 2 years ago