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/)BI
Posts
1
Comments
425
Joined
1 yr. ago

  • Because other CPUs don't have this problem. If the game engine is problematic then many other CPUs would show something. The game engine is just the trigger, much like a seizure can be triggered on some people by flashing lights but not others.

  • To be honest, there is no good silver bullet solution. I've come across that problem too once and in the end I decided to just simplify my program. But my journey takes me to cap'n proto which IMHO is very ideal but it rarely has updates and the ecosystem around it is lacking. If you need to support many languages, then protobuf is the best. If you didn't mind it being open source, there is ZeroC ICE (mumble use this intensively). I pray that one day there is something like cap'n proto but also works for an embedded system.

    Edit: Forgot to remind you that this is meta for programming.dev. You should check out other communities to ask this question. Mod may remove this.

  • Be careful since it is a double edged sword. Device bound session means the browser has the capabilities to differentiate devices, and thus can be used for more accurate tracking information. Of course I'm not saying it is not useful, having created a fair share of websites myself, I know the pain of authentication on the web and how it can be challenging to secure from tons of possible attack vectors. And in my experience, the weakest link is always the user.

  • Assembly sure, since it will differ from ISA to ISA. But C is still a "high" level language in the sense that you can write once run "anywhere". Also, more work to do something is expected since C is such a "bare" language to simplify. But again, it doesn't count as it not being as accessible to get new developers started, but it is and will be more cumbersome to work with (in the context of redis like software).

    So yeah, maybe it depends on how you would define accessible is. I think if it is defined as just "how easy it is to get started and understand how it works, and how to work with it", C and C++ is quite accessible with a good teacher/mentor. The teacher/mentor is important in C and C++ because unlike C# which has Microsoft as its main authoritative source and the big influencer in the language, C and C++ doesn't have those so the resource on learning it can vary wildly.