• 0 Posts
  • 12 Comments
Joined 1 year ago
cake
Cake day: July 2nd, 2023

help-circle

  • These are confirmed and identified casualties using 3rd party evidence. From the source you linked,

    However, these figures represent only a partial account and do not reflect the full extent of the casualties. […] This week, CIA Director William Burns penned a column in Foreign Affairs estimating the total losses of the Russian army—killed and wounded—at 315,000. At first glance, this figure might seem significantly different from our own count, but in reality, it’s not, and we regard Burns’ estimate as close to the truth.

    The reality is that we will not know for a long time the true numbers, but this 43k is the absolute minimum number of dead Russian combatants.










  • Email is a collection of different protocols: SMTP, IMAP, POP are all different protocols that serve different purposes. Oversimplifying a bit, but - SMTP is used to exchange messages between mail servers. IMAP and POP are used to synchronize mail between a mail server and a mail client.

    In other words, they absolutely can shut down IMAP and POP but still send/receive for gmail.com addresses. The main reason reason they wouldn’t do this is that their larger clients on Google Workspace need that functionality, but it’s the type of thing you might imagine them taking away from the unpaid version of Gmail to nudge companies over to Workspace.



  • They are most useful during local development. It’s useful to have project-scoped config that your app interacts with in a manner identical to how it works in prod.

    Generally you don’t commit to version control because you want to keep secrets out of there. However, it can be sometimes useful to hold non-sensitive config that you may want to commit but also to customize on prod. For instance like NODE_ENV, so you’re not building multiple mechanisms for configuring your code. But this is less useful and generally solved with a sample config that is copied to the .env file that is never pushed to VC.