This article is factual yet also rage-bait. Suspending accounts is something he’s doing now. Contacting employers of people working at car companies and investment firms is something he did five years ago. The article does not say he is contacting the employer of accounts he is suspending now; they leave you to infer that by placing both facts in the same headline but separate paragraphs.
No love for Musk, avoid Twitter, etc.
The reactivity of Svelte leaves a lot to be desired. The only difference between a computed property and a mutable property is
let x =
and$: x =
, both of which are declared in the same top-level scope and doesn’t provide much to distinguish them. The lack of reactivity on arrays and objects is a major foot-gun by default. The number of places they say “this looks weird, but don’t worry it’ll soon become second nature” in the docs shows that they acknowledge it’s bad design to create code that is misleading or goes against the grain/standard for what behavior developers should expect (makes it confusing to work with and then use anything else, or vice versa).The
#await
template directive is interesting; I’m not sure I agree it should be handled in the template instead of the script but if combined it would remove some boilerplateloading = true/false
anderror = 'message'
variables from script scope.