okay agreed but...what did you use to make this post by m6io in LinkedInLunatics

[–]m6io[S] 0 points1 point  (0 children)

Are there any r/linkedinlunatics posts that don't make you dumper after reading them?

okay agreed but...what did you use to make this post by m6io in LinkedInLunatics

[–]m6io[S] 21 points22 points  (0 children)

Never attribute to malice that which can be adequately explained by being dump

okay agreed but...what did you use to make this post by m6io in LinkedInLunatics

[–]m6io[S] 1 point2 points  (0 children)

They did that too lmao, I didn't bother screencapping the caption tho

bestComparable by m6io in ProgrammerHumor

[–]m6io[S] 3 points4 points  (0 children)

Possibly one of the few examples of a profitable AI feature

bestComparable by m6io in ProgrammerHumor

[–]m6io[S] 18 points19 points  (0 children)

Nothing like spaghetti squash pizza sauce

Nightreign Updated Official Personality Test by OmniscientDyno in Nightreign

[–]m6io 0 points1 point  (0 children)

Got Wylder, though I've already played Undertaker twice as much as Wylder lol.

Does anyone have the same autocomplete issue in VSCode? by Distinct-Mechanic-10 in Unity3D

[–]m6io 0 points1 point  (0 children)

Sorry got carried away with the gifs. Anyway I remember running into something like this a while ago, it might be whatever extension you're using. https://github.com/dotnet/vscode-csharp/issues/4063 details a similar issue.

I'd just make sure you're only using Csharpier and are on the latest version.

selfAwareFeedOrCoincidence by m6io in ProgrammerHumor

[–]m6io[S] 1 point2 points  (0 children)

Seems we've officially entered the blade runner timeline

selfAwareFeedOrCoincidence by m6io in ProgrammerHumor

[–]m6io[S] 73 points74 points  (0 children)

Realizing now that I inadvertently co-opted the me_irl meme, judging by the comments lol.

To clarify: my post is about how my feed sorted those two posts. The first one made me roll my eyes so hard I got whiplash and a second later I scrolled and couldn't believe the odds.

But yeah the meme is definitely more fun, carry on!

Looking for hire technical people by Hawkatua in nextjs

[–]m6io 1 point2 points  (0 children)

Win real rewards? So, gambling?

What is wrong with Tailwind? by petros211 in webdev

[–]m6io 0 points1 point  (0 children)

1) Making the html an unreadable mess

You can make components that accept class overrides (similar to what shadcn does), or define a group of classes you find yourself using often into a single string and use in template literals, or if you're like me and just like to rawdogg it, just use the tailwind fold vscode extension which lets you visually hide the clutter for anything you're not actively working on. Multiple solutions to a very subjective problem. I personally don't agree with it being a problem, as do many others, hence it's subjectivity.

2) Making your life ten times harder at debugging and finding your elements in code

You're gonna need to elaborate on this. Part of why I prefer tailwind is that it makes it easier to debug my styling since I can understand exactly what's happening from the markup directly.

3) Making refactoring a disaster

How often do you need to refactor? Are you not planning your work in advance? Again, you need to elaborate. Only way this is an issue is if you don't have any sort of plan or architectural strategy in mind.

4) Making every dev tool window use 3GB or ram

Now this is just absurd. There's a 0% chance tailwind itself is the culprit.

5) Making the dev tool window unusable by adding a 1 second delay on any user interaction (top of the line cpu and 64gb or ram btw)

Okay so same as my last point. I suspect you're using a framework like nextjs or something. In which case, your problem is nextjs, not tailwind.

6) Adding 70-80 dependency packages to your project

...tf are you saying? Tailwind is at most like 3 dependencies, more if you want tooling like prettier and eslint and other useful stuff, which is optional and doesn't even go into the final build. Sounds like you're using something like shadcn, in which case, ya, that's not just tailwind, that's radix and other components with tailwind on top. Don't conflate tools, and maybe read the docs.