It goes so far that district attorney from Slovakia, who is a member of the sect is going after Czech journalists who uncover them.
They have tool to generate videos on any esoteric/conspiracy topic with AI assistance.
Sadly I can't link much English sources.
- https://vsquare.org/disinformation-whitewashing-russia-allat...
- https://advanceddentalartsnyc.com/is-toothpaste-necessary/
- https://www.huffmansmilesdental.com/is-it-okay-to-brush-your...
You could opt to use style attributes directly within your HTML. Historically, we avoided this to maintain a separation of concerns, but it's puzzling why some prefer reintroducing similar methods. Is it just to save a few keystrokes? Using style attributes even seems more straightforward since it doesn't require translating code in your head.
I simply don't see the appeal.
- Pseudo-classes (e.g., :hover, :focus)
- Pseudo-elements (e.g., ::before, ::after)
- Media queries
- Keyframes and animations
And the DX in a larger project isn't great either.
On the other hand, this upcoming standard is a great addition for collocating styles https://developer.mozilla.org/en-US/docs/Web/CSS/@scope
You must have seen some huge React components with 20 different props or even more, and you'd need to think about memoizing those props to prevent a re-render, etc etc.
I've also been a web dev for over 20 years, and 10 years with React. I'd say that going back to native HTML APIs for handling stateful things like forms and form validation is a breeze, rather than writing components and endless abstractions. It's enough for the vast majority of the time.
I am an oponent of over-abstraction but components are very light abstraction and provide just sensible encapsulation and reusability.
Same.
During 2024 I evaluated multiple backend platforms/frameworks to get away from Node. Laravel is great and modern PHP (the language) is also surprisingly good but betting on PHP feels like betting on coal and the steam engine. The runtime and execution model are extremely outdated and resource hungry.
There are some efforts like FrankenPHP and Swole that package a PHP app to have a persistent execution model. But IMO unless PHP officially adopts this model this will always feel like a hack to me.
Plus native JavaScript+html is just so close to a complete solution these days. I don’t miss components at all. I just want better code organization.