Do you have uBO annoyances lists enabled? Because I never get any.
- 0 Posts
- 33 Comments
I went to cnn to try and didn’t have any. I couldn’t find the exact article in your screen but I tried a few without any popup.
Did you enable uBO annoyances lists?
What’s an ad-blocker popup? uBlock Origin never show me a popup.
There are some examples of projects that use CleanURLs db in its readme but most have not been updated for a long time.
There are plenty of sites that use more than one parameters. It’s true that a lot of sites now use the history API instead of url parameters but you can still find plenty, and you have no garante about the parameters order. Any site with a search page that have a few options will probably use url parameters instead of the history API. It’s easier to parse and will end up being shorter most of the time.
Well for youtube it’s quite easy, there are only 4 useful parameters that I can think of, the video id
v
, the playlist idlist
andindex
if it’s a playlist and the timet
if you’re sending a specific time in the video. Everything else can be removed. Here’s what uBlock Origin with the AdGuard URL Tracking filter list:! Youtube $removeparam=embeds_referring_euri,domain=youtubekids.com|youtube-nocookie.com|youtube.com $removeparam=embeds_referring_origin,domain=youtubekids.com|youtube-nocookie.com|youtube.com $removeparam=source_ve_path,domain=youtubekids.com|youtube-nocookie.com|youtube.com ||youtube.com^$removeparam=pp
There is no logic as to which parameters is useful and which is used for tracking. But there are databases.
Here is the one for the CleanURLs extension and here is the one for the AdGuard URL Tracking filter list (which I recommend everyone should enable in uBlock Origin).
ivn@jlai.luto World News@lemmy.ml•Dozens of WhatsApp Users Targeted by Israeli Spyware CompanyEnglish5·5 months agoWhile it’s a good thing to avoid WhatsApp there is no way to know if Signal is safe from Graphite, they used to claim to be able to target it.
I’ve never seen the
!0
and!1
, it is dumb and indicates either young or terrible devs.Boolean(window.chrome)
is the best,!!window.chrome
is good, no need to test if it’s equal totrue
if you make it a boolean beforehand.
Well in the end I think I’m needlessly nitpicking. It doesn’t matter if it’s strictly immutable or not. What matter is that it has the good parts of reproducibility, immutability and declarativity.
Isn’t immutability related to the root filesystem being read-only? I can write on my root filesystem, even if it’s mostly links to the store I can replace those links.
Yes, or use flakes which gives you a lockfile pinning everything. But this is related to reproducibility, not immutability.
I’ve had NixOS absolutely refuse to run some compiler toolchain I depended upon that should’ve been dead simple on other distros, I’m really hesitant to try anything that tries to be too different anymore.
Yes, some toolchain expect you to run pre-compiled dynamically linked binaries. These won’t work on NixOS, you need to either find a way to install the binary from nix and force the toolchain to use it or run
patchelf
on it somehow.
Well that was an approximation to keep it simple and disprove the given example. There are other directories in the root filesystem that are in the path by default, or used in some other critical way (like
/etc
). Even if they are links to directories in the nix store you can replace the link.
These seems to be related to flatpak, not immutability.
What namespace are you talking about?
To be honest I don’t know these very well. I only use NixOS. My understanding is that in an immutable distribution the root filesystem is read-only. Granted in NixOS the nix store is immutable and most things in the root filesystem are just links to the nix store, but the root filesystem itself is not read-only.
I’ve never experienced any breakage.