Nope, JS is “You think you are nerd”.
Also, why React is there? It’s a lib not a language
Nope, JS is “You think you are nerd”.
Also, why React is there? It’s a lib not a language
While trade war isn’t good for anyone US is clear looser here since China’s export to US (as of 2023 stats) is only 15% from its overall export. They can sell more other countries to smoothen impact. Meanwhile who gonna buy US stuff? “Best friend“ Russia with total GPD of less than California?
I 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.
And this is how your city’s traffic, pollution, petrol expenses, stress, respiratory disease infections go up coz some CEO feels power forcing others to do something unnecessary just because they can
What you expecting called natural sorting. Mac employed natural sorting back in 90s. What you get is legitimate Alphabetical sorting which used by Linux and Windows. Natural sorting parses tokens in the string and compares them. Alphabetical sorting compares two strings by comparing individual characters at same index (position). Alphabetical sorting is quite common as it simpler to implement (or rather harder to screw up) and yields predictable results
One of many libraries for Python which implements natural sorting https://github.com/SethMMorton/natsort
95% exaggeration. Here is reality:
Edit: typos
Better explain why pedestrian crossings are stretched so much instead of being on shortest trajectory to other side
Please, can you give an example of such code snippets? I’m wondering what people consider reusable in different projects.
weekend = dayOfWeek > 5
Half of it is fragile CEO ego reply
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 , 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.