• 3 Posts
  • 134 Comments
Joined 1 year ago
cake
Cake day: March 13th, 2025

help-circle

  • For tracking analysing the data is required. Even if user doesn’t do anything sophisticated, just upgrading the browser will change their fingerprint; services that track users need to be prepared for that. But consider that 34 bits is enough to uniquely identify every person on the planet. If you’re able to collect say 50 bits of information about a request, even if some information changes, you can cluster the requests and attribute to the same user.


  • Yes, that’s why I wrote ‘in this case’. Those two bits of information which are highly correlated with user’s behaviour on a website don’t meaningfully impact the privacy. And regarding Discord, having age attestation on OS level has a chance to reduce number of websites which ask for ID thus improving overall privacy.




  • mina86toLinux@lemmy.ml[SOLVED] display Japanese in terminal
    link
    fedilink
    English
    arrow-up
    4
    ·
    14 days ago

    Terminal and console are two different things. Console is what you get if your computer boots up in text mode. Terminal is what you start inside graphical environment (X or Wayland). Which one are you having issues with? What does echo $TERM output? If it’s the former, how are you watching videos exactly? O_o If it’s the latter, setfont won’t do anything; you need to look at configuration of your terminal emulator or try a different one.



  • mina86toLinux@lemmy.ml*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    1
    ·
    24 days ago

    With gl/Vulcan and some other libraries that’s pretty challenging to do if your goal is to become more portable not less portable.

    I still don’t see how this is different from Windows. Games on Windows ship with DirectX. Ship whatever graphics libraries you need if you’re worried about ABI breaking.

    Shipping also sort of different libraries with your proprietary game could also be a licensing issue.

    No, it’s not. Any library you’re dynamically linking to that’s present in a Linux distribution, you can distribute yourself.


  • mina86toLinux@lemmy.ml*Permanently Deleted*
    link
    fedilink
    arrow-up
    5
    ·
    24 days ago

    Linux ABI compatibility is a fuck.

    I’m never convinced by this argument. If game developers have problems with ABI they can do what they’re already doing on Windows: ship their game with all the dependencies. Casual gamer’s Windows system might have more versions of Microsoft Visual C++ Redistributable than they have games installed. This had been my experience.


    • My rule of thumb is at least 2GB of RAM per compilation jobs. Even if you have more cores, the jobs may start swapping or crashing slowing down the build in the end. This may of course depends on the size of the project.
    • Disable LTO during development. Is it only when you’re ready to release your binary.
    • If your editor doesn’t keep up, disable fancy IDE features such as Rust analyser. Run checks periodically the same way you run test.