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

help-circle





  • Apple isn’t any good for privacy. Just as Google, it’s a single big company that gets full control over your device. There are many examples of them exploiting it, by hashing your launched apps on Mac to check for malware, for example. Their systems are also known for being a lot more locked down than the rest, meaning getting rid of telemetry is not an easy task. Big companies are not interested in your privacy, they are interested in profit. And the profit they can get by building your profile is a lot more valuable for them than you as a user. That being said, the guy is right, but he is out of line.









  • rand() generates a number from 0 to a constant defined in stdlib, which usually corresponds to the architechture of your compiler. So, for 32 bit systems (assuming all the software in the line is 32 bit, too) it will be 2^31-1 = 2 147 483 647, as 1 bit in integers is reserved for negative numbers and 1 number is 0.

    Though, by design it is guaranteed to be at least 32767, which is a value for 16 bit integers.