• 0 Posts
  • 107 Comments
Joined 3 years ago
cake
Cake day: August 2nd, 2023

help-circle




  • I’ve had the play store install, remove, and modify installed applications without so much as a hint they were doing it, the “Play Store” does what would be considered “sideloading” applications (i. e. a third party app managing your applications from a location other than the package manager), feeding an apk to a package manager would just be “installing” an application like it always has been.

    By co-opting the term to be something bad, they are trying to make it seem like they are the only safe source for applications (even though the Google-managed stores have just as much malware as WinMX did 20+ years ago).



  • That good angle could be a bit more straight, I was always taught it should be straight and for initial contact to be with the first two knuckles. That image looks like its a bit tilted upward and could hurt their wrist.

    Just my two cents, I haven’t done martial arts in 20+ years and the Army loved to roll around on the ground more than punch.









  • In a normal byte format it wouldn’t help, the byte standard breaks off bits into 8 bit chunks and calls them bytes (I’m not trying to explain basics, just putting it there for background), little-endian excels at using the least number of bits to express larger numbers in a stream. If you wanted to send any number from 0-255 you only need 1 byte, for 256-512 you need two bytes (or 16 bits), in little-endian it can be represented in just 9 bits, or up to 1024 in 10 bits, etc.

    Doesn’t matter for much to many people, but when the number gets big enough you can save a lot of bandwidth.