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/)QA
Posts
173
Comments
1,656
Joined
2 yr. ago

  • If the general stance is that reaction can be “up to the admin”, that’s a bit… minefield-y.

    I understand that this might seem problematic. We (the mods of 196) are only partially in control of what is removed and who is banned, due it being hosted on blahaj.zone.

  • Better(ule)

    Jump
  • You don't have to censor "naughty" words like that here

    EDIT: That girl better be 18+ tho, it being a minor would be bannable

    EDIT 2: Could you mark this post NSFW please?

  • TLDR: Rust, Go and other modern languages don't use more dependencies than C/C++, but have larger binaries due to including libraries into the executable binary. This trade-off was chosen to ensure you can reliably run the executable on various systems without dependency issues.

    I personally have gone with both options on several occasions. Being able to include an HTTP client without having to debug someone's cURL installation is certainly worth a few extra MiB's of disk space. However, I've also used C instead of Rust to avoid a very simple CLI program turning into several MiB's large binary (due to statically including the Rust std lib).