- 0 Posts
- 6 Comments
It’s not like I’m deciding on customer’s IT policy
I’m doing cloud migration now and one of assumptions is that two regions in Americas is enough for resilience. I’m in danger
Nope, JS is “You think you are nerd”.
Also, why React is there? It’s a lib not a language
Lysergid@lemmy.mlto Memes@lemmy.ml•All communities in one single community, but without putting them into one single community0·4 months agoI feel like people are complaining about wrong thing. At least for me it’s not a problem that there are different communities. To me problem is same posts. What would be great is to have same posts merged into one post with comments from all its duplicates. This way communities are independent, lemmings don’t get to scroll same copy-pasta and discussion of same thing is visible cross communities/instances. Question is how we define “same” is it carbon copy of post, or same content only? Alternative titles can be shown if content is same but not title.
Don’t know about tailwind but I used styled-components and not going back to vanilla css. CSS seems to be designed to be used with HTML, which did make sense back when it was created. Modern web is 99% JS and components composition which does not work well with Vanilla CSS in terms of class name uniqueness, specificity. Also it easy to dumb shit with CSS, like, I worked in the project where we had a lot of legacy global CSS. We had like dozen CSS styles which were adding margin to <label/>, <p> and so on. I mean no classes, just globally. I’ve been forced to add ‘all: unset’ to basically all my new components just to avoid changing global styles and breaking something else. Do not recommend.