Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)AP
Posts
0
Comments
651
Joined
2 yr. ago

  • Setting the DPI is only a partial solution and plenty of assets and rendering will be incorrect. It is more crisp, especially for text, than the approach others take of upscaling though. It’s probably the approach I’d prefer personally.

  • How the WebRequest API works is:

    1. Network request is made
    2. Sent to the WebExtension
    3. Extension runs arbitrary JavaScript (Slow to very slow)
    4. Repeat for every extension handling requests
    5. Results eventually make it to the WebProcess where it belongs.

    This is slow and will always be. Their change to remove blocking makes steps 2-4 a copy of the data instead of a synchronous call.

    Now an ad can be slower, just by more data or bad JS. But that isn’t Googles concern because they sell those ads.

  • If you are running things inside of containers you aren’t helping yourself by disabling unprivileged namespaces, you are actually just running more things as root. Inside the containers they generally block namespaces anyway.

    TBH I’ve never heard anything positive about most of what hardened does.