• 1 Post
  • 20 Comments
Joined 1 year ago
cake
Cake day: July 27th, 2023

help-circle
  • Well someones gotta go first. Nah, I’m kidding and I get it. I tried it myself with Snapchat and Discord and it was a very slow and tedious process. But I got it done. Migrated to SMS for the people that refused to adopt a new platform and since SMS is …quite bad it does get easier to convince once you’re there. Feel somewhat guilty for bothering people but I sure don’t miss the old platforms. Good riddance.







  • A “just works” distribution like Linux Mint is miles ahead compared to Windows and Tails OS is a step even further as it is only Live and routes everything through TOR.

    Linux is not hard to be honest. Your main concern in difficulty is third-party software support. (Creative cloud and office 365 does not work for instance.)

    If you want to try out any of these, just ask me if you need any help















  • Performance? Not really no. I believe C is slightly faster with Rust and C++ competing for second place. The benefit is safer code as Rust is built with performance and safety in mind. It highlights what potential errors can be found where making human error way less common. Instead of potential null errors types are wrapped in an option enumerator which ensures you know there can be a lack of a value. Expections are also enumerators done similarly with a result object so you know which functions may fail. Instead of using memory and potentially forgetting to free it we have the ownership system.