• 0 Posts
  • 11 Comments
Joined 2 years ago
cake
Cake day: July 10th, 2023

help-circle

  • Astroturfing is designed not to look like an ad. It’s supposed to look like grassroots support for a product. Legitimising it for the audience. Strategically, it’s effective. “Privacy market leader is bad for x, y and z, what do you think of competitor?”. It’s classic marketing of “here is problem, here is solution”. Just subtle.

    Most people here are probably off gmail or close to it. Best way to make inroads is work your way into a niche which Proton, Tuta, Mailbox did to great effect. As I say, I don’t trash the tried and tested options including rival products of Proton. This is email though, usually you want to put data in hands of companies you trust. Its the reason folk running from google, yahoo, outlook. Being careful and skeptical is good.









  • Most times overhead is less important than readability and maintainability of code. If someone cannot read your code, they’ll mess it up far worse.

    Optimisation is for bottlenecks. No point making code run in 0.01ms rather than 0.02 if it later hits at 0.7s bottleneck like file io or DB. For most things, readability is everything unless you’re developing operating systems or close to metal libraries. Many compilers will inline functions anyway so the only gain is increased suffering of colleagues and later bugs in production when it’s modified by someone else. Cognitive load is very important and why many static code analysis tools pick it up.