chayleaf

joined 3 years ago
[–] chayleaf@lemmy.ml 3 points 2 years ago

I think they wanted to push the fork Sneedacity?

[–] chayleaf@lemmy.ml 5 points 2 years ago* (last edited 2 years ago) (2 children)

For the browser, use Firefox (Fennec or Mull in F-Droid) with Ublock Origin. For anything else, honestly if the app has ads you should avoid using it anyway.

[–] chayleaf@lemmy.ml 2 points 2 years ago* (last edited 2 years ago)

You can do it via any of the tun2socks implementations. Maybe this can achieve what you want (it's an app with a hardcoded leaf config, you will have to compile it yourself)

If you're fine with proprietary code, this should be enough.

[–] chayleaf@lemmy.ml 2 points 2 years ago (1 children)

wouldn't opt.showmode = false instead of set noshowmode work?

[–] chayleaf@lemmy.ml 2 points 2 years ago* (last edited 2 years ago)

they're talking about sites like Facebook or Google

[–] chayleaf@lemmy.ml 2 points 2 years ago (2 children)

a couple notes

  • you should declare all variables with let before you assign them, it's good practice and you can enforce it by enabling strict mode - put "use strict"; at the beginning of your function (or the entire script). Of course it's only needed in browsers, strict mode is usually enabled by default in most tools.
  • try not to execute extra code if you can help it. For example, in this case only the final reversedWord value matters, so you can do it at the end as opposed to on every iteration. Your code right now works in O(N^2) - with every new character in the string its speed decreases exponentially, but it should work in O(N) - a linear time. If you couldn't create reversedWord at the end, you could still initialize it with an empty string and append some text with += on every iteration, that still works in O(N) time as you don't have to recreate the entire string on every iteration.
[–] chayleaf@lemmy.ml 4 points 2 years ago

yes, many games have 32-bit builds (though maybe Valve can just use 32-bit Steam Runtime to preserve compatibility)

[–] chayleaf@lemmy.ml 3 points 2 years ago (1 children)

privacy.resistFingerprinting in about:config forbids the websites to use canvas by default among other things, you can override it using site permissions

[–] chayleaf@lemmy.ml 5 points 2 years ago

you will pry my s/a/b/ from my cold dead hands!

[–] chayleaf@lemmy.ml 6 points 2 years ago (6 children)

Race is a social concept. Race is a thing which exists. Gender is a social concept. Gender is a thing which exists. Race is based on ethnicity, but can't be explained by it alone, gender is based on sex, but can't be explained by it alone.

[–] chayleaf@lemmy.ml 2 points 2 years ago

Firefox Desktop uses simple cryptography to obscure your passwords

Obscure, not secure. It's trivial for any program you've installed to read them.

[–] chayleaf@lemmy.ml 3 points 2 years ago
  1. Depending on your language, use language codes like :en or :de. Very important if your native language isn't English.
  2. You can choose the search engine using DDG shebangs like !g (or redirect yourself to Google using !!g
  3. If SearxNG using Google gives you much worse results, it just means Google has that much info about you. Nonetheless, that's not my experience
view more: ‹ prev next ›