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
wouldn't opt.showmode = false
instead of set noshowmode
work?
they're talking about sites like Facebook or Google
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 createreversedWord
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.
yes, many games have 32-bit builds (though maybe Valve can just use 32-bit Steam Runtime to preserve compatibility)
privacy.resistFingerprinting
in about:config
forbids the websites to use canvas by default among other things, you can override it using site permissions
you will pry my s/a/b/
from my cold dead hands!
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.
Firefox Desktop uses simple cryptography to obscure your passwords
Obscure, not secure. It's trivial for any program you've installed to read them.
- Depending on your language, use language codes like
:en
or:de
. Very important if your native language isn't English. - You can choose the search engine using DDG shebangs like
!g
(or redirect yourself to Google using!!g
- 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
I think they wanted to push the fork Sneedacity?