Game developer and artist.

Spoken languages: Hu, En, some Jp

Programming languages: C, C++, D, C#, Java

Mastodon: @ZILtoid1991

Github: https://github.com/ZILtoid1991

  • 5 Posts
  • 76 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle


  • I have already done my part on my Mastodon account.

    My main concern is the awful moderation of Meta’s services. Bullying, celebration of loss of rights and violence committed towards of protected minorities; and outright misinformation are allowed. All while the very same people duped the moderation AI to flag any criticism of said hate speech as the real hate speech because false reportings. Facebook, instagram, etc. are notorious for letting big far-right accounts get away with hate speech and defamation, and I don’t really think it’ll be different on Threads for very long.

    EDIT: In the meanwhile, I remembered screenshots of showing this exact moderation problem already happening on Threads, but to a way lesser degree, than on Facebook so far. Maybe this will make them getting booted from even the instances that didn’t originally plan to defederate them.





  • Also GPU drivers.

    If you’re mad at NVidia for their closed-source drivers, then remember that ARM seldom makes their Linux drivers available for free, so you have to either have to deal with absolutely no GPU driver while the CPU does the graphics rendering (might not be a big deal on a NAS though), or with open source drivers that are less capable than the Nouveau drivers and even fiddlier to install. The ARM Mali driver issue is so bad I was legit thinking on a solution to run the Android binary blobs (which at least are available by ripping them off from the Android kernel) on regular Linux, a lot of function call redirects would likely take care of that issue.













  • Depends on what you’re doing. Functional programming has its own downsides, especially once you want to write interactive programs, which often depend on global states. Then you either have to rely on atoms, which defeat the purpose of the functional programming, or pass around the program state, which is janly and can be slow.

    I personally go multi paradigm. Simpler stuffs are almost functional (did not opt for consting everything due to performance issues), GUI stuff is OOP, etc.