• 0 Posts
  • 8 Comments
Joined 1 year ago
cake
Cake day: July 27th, 2023

help-circle
  • Sounds like a antitrust violation imo. (Not based in knowledge of laws). In the future I hope to work in a co-op, non-profit, foss or privacy oriented bussiness or whatever. Just something I believe is beneficial to our future and not detrimental. Don’t care if I lose potential wages or job security.

    Just the standard run of the mill tech company for a private owner idealizing infinite growth for investors and making software that tries taking advantage of the user or even required to use such? Not for me. (I don’t need perfection just want improvent)




  • Yes for all except youtube. I use frontends there. LBRY when feasible and there’s not a lot of content creators on PeerTube at least we got “The Linux Experiment”. PeerTube needs a monetization model imo (benefiting content creators and instance hosters). I wouldn’t mind paying a low fee for watching content for instance.





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