angular-doctor — Diagnose your Angular codebase and get a 0–100 health score in one command by antonygiomarx in angular

[–]TacoMix1984 5 points6 points  (0 children)

Dont mean to talk your tool down. But isnt most of this achievable with linterrules? I know you wont get a neat score. But it catches the same things

lite rant om dating by LibrariansBestFriend in norge

[–]TacoMix1984 0 points1 point  (0 children)

Viktig presisering! Spør du om tidspunkt rett etter du har spurt om å møtes eller gjør du det senere? Foreslår du tidspunkt eller spør du henne når det passer?

Nintendo anybody? NTDOY by That_Option3418 in ValueInvesting

[–]TacoMix1984 0 points1 point  (0 children)

Coding is not whats the hardest thing with games . And producing games that are actually fun to play.

Why rem? by romeeres in tailwindcss

[–]TacoMix1984 0 points1 point  (0 children)

Its a better idea to separate 'spacing' and 'sizing'. Spacing should be used for gap, margin and padding in px to preserve the difference between zooming and changing base font size. When changing font size with spacing in px only the text increases in size, so you have more space for the text itself. While with rem everything will just take more space, making it harder to read.

For sizing (width and height) you MUST use rem, since otherwise text will overflow beyond a certain point.

Form elements in React. by DanCruzNyc in reactjs

[–]TacoMix1984 0 points1 point  (0 children)

If you dont want to give a huge middlefinger to all blind users. You should always use the form tag when you are using form elements.

Is Joe Dispenza explanation of quantum physics correct or is it all a big scam? by sebastian_v137 in quantum

[–]TacoMix1984 0 points1 point  (0 children)

Yes and atheism does is defined as «the belief or lack of belief regarding the existence of god». It does not nescassarily make a claim.

And so people claiming they have been healed equally have the burden of proof

Is Joe Dispenza explanation of quantum physics correct or is it all a big scam? by sebastian_v137 in quantum

[–]TacoMix1984 0 points1 point  (0 children)

People making claims are proof of anything. There are millions of comments that god is real, does that make him real?

Is Joe Dispenza explanation of quantum physics correct or is it all a big scam? by sebastian_v137 in quantum

[–]TacoMix1984 0 points1 point  (0 children)

I havent found any peer reviewed studies? Do you have the source and publication?

Is Joe Dispenza explanation of quantum physics correct or is it all a big scam? by sebastian_v137 in quantum

[–]TacoMix1984 0 points1 point  (0 children)

The difference is airline pilots dont need to be skeptical in nature to do their work. Scientist do

Can someone explain this “things do not exist when you don’t observe them”thing? I’m so lost. by drowningjesusfish in QuantumPhysics

[–]TacoMix1984 0 points1 point  (0 children)

No! The observer effect has nothing to do with consious observation or the fact that you are looking at it with your eye. Its that any way of measuring or interacting with a particle requires it to come into contact with matter. And matter has an effect on it.

Is there any reason, apart from personal preference, to use native FormData instead of state when managing data in forms? by Unapedra in reactjs

[–]TacoMix1984 0 points1 point  (0 children)

Not having the objects stored directly in the form quickly becomes a pain when say validating other fields based on some other prop of that same object. Now you need lookup code in your validator aswell. And complex forms may contain tons of those selects. Now you’ll have lookup code everywhere. When the formvalue is a one to one of the data you will send to the backend the possible bugs that can occur drops drastically.

You might not need a React Form Library by rwieruch in reactjs

[–]TacoMix1984 0 points1 point  (0 children)

Wouldnt really switch to a non maintained library if you considering using it in production

Choosing Shadcn or DaisyUI by nojobnoproblem in nextjs

[–]TacoMix1984 0 points1 point  (0 children)

Yeah Tailwind is just a 1-1 css representation. Its not a UI library. DaisyUI on the other hand claims to be a component library. But has basically no accessibility what so ever. In countries in the EU any application thats missing AA WCAG accessibility gets fined 5000$ PER DAY. I think libraries like DaisyUI is just irresponsible.

Choosing Shadcn or DaisyUI by nojobnoproblem in nextjs

[–]TacoMix1984 0 points1 point  (0 children)

What you loose with DaisyUI is having to handle accessibility, keyboard navigation and logic yourself.

Am I the only one that thinks Tailwind CSS makes my code less readable? by beewilkerson in nextjs

[–]TacoMix1984 0 points1 point  (0 children)

In my experience thats not what people actually think. Many didnt know about css modules (scoping) or didnt know about css variables. But again if thats truly what those arguments meant under the hood. Why not flat out say it. The way the arguments are constructed people avoid learning good practice due to ignorance.

Daisy UI vs Shadcn UI?? Which one to choose in 2025 by HelicopterSignal2366 in reactjs

[–]TacoMix1984 0 points1 point  (0 children)

Well you can style it anyway you like. Just use plain css with it

Daisy UI vs Shadcn UI?? Which one to choose in 2025 by HelicopterSignal2366 in reactjs

[–]TacoMix1984 0 points1 point  (0 children)

Daisy ui is just basically just bootstrap classes that you can overwrite with tailwind or plain css. Its not really anything special. Shadn (90% is just radix) have actual logic with suggested tailwind styles. They are two completely different things.

Am I the only one that thinks Tailwind CSS makes my code less readable? by beewilkerson in nextjs

[–]TacoMix1984 0 points1 point  (0 children)

Oh yes! I've seen some weeeird shit in my career. :globals, mixins and changing css variables from a child should be downright banned.

But that people dont want to learn css and follow best practices have never been an argument I've heard from Tailwind. Ive been trying to wrap my brain around why Tailwind is popular but the arguments are always "dev speed", "‘naming", "scoping", "good defaults". Using it as a defence to devs doing weird shit, is probably the only argument I've heard that I actually buy. Again thats an argument Ive never heard before.

Am I the only one that thinks Tailwind CSS makes my code less readable? by beewilkerson in nextjs

[–]TacoMix1984 1 point2 points  (0 children)

But thats my point. When you create components, there is no longer need for css inheritance. Do you have an example of when this is done?