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

help-circle





  • Pay with Monero, set up a VPN, buy a phone specifically for the service. I doubt you can get any more anonymous than that. Cellular networks are by default monitored by governments, there is nothing a provider can do about it. But encrypting the traffic and getting a new phone should make that type of monitoring relatively useless. And if you never give your identity to the provider, they simply can’t know who you are.




  • There is no single person responsible for Cyrillic script. It is mostly believed to be created by mixing and changing Greek and Glagolic scripts by the scholars of Preslav Literary School, which was indeed in Bulgaria. After a while, Peter the Great changed it a lot. And then Stalin stomped out almost all the deviations in the usage of the script.

    The last part is mostly why it is considered Russian. A lot of languages suffered because of Moscow just forcing them to use the version of Cyrillic that Russians were using.










  • It’s more or less similar to Reddit in terms of posting, voting and subscribing. The main power is indeed federation, meaning nobody needs huge servers to keep the network online. As long as instances don’t blacklist each other, you can freely view posts from foreign instances, subscribe to communities there and comment, all with an account on your home instance.

    There are some gimmicks, like on Reddit you could just write

    /r/subreddit
    

    to send someone to a sub, but here you’ll have to do

    !community@instance
    

    to specify the right place, e.g. !meta@programming.dev, but it’s nothing too crazy.


  • 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.