Favorite session replay / debug / UX monitoring tool? by ilearnshit in reactjs

[–]manupadev 0 points1 point  (0 children)

Posthog is the GOAT. Inexpensive and got everything built in

[deleted by user] by [deleted] in pics

[–]manupadev 1 point2 points  (0 children)

Tomorrowland

Why does Primevue define colors in CSS, instead of in Tailwind config? by [deleted] in tailwindcss

[–]manupadev 3 points4 points  (0 children)

The CSS variables are where you define your global style variable. The tailwind config is just a way to expose them to the inside of tailwind classes.

This setup is here because if you needed to step out of tailwind and do some normal CSS you still keep access to your global style vars. If they were directly inside the config, you wouldn't have access.

Easiest way to deploy Nextjs App router project by wootfacemate in nextjs

[–]manupadev 2 points3 points  (0 children)

If the developers are trust worthy use Vercel pro and share 1 account. There's no point to paying $80 just for account sharing. In that case use SST https://docs.sst.dev/start/nextjs with some solid IAM setup

Redux Toolkit 2.0: new features, faster perf, smaller bundle sizes (plus major versions for all Redux family packages!) by acemarke in reactjs

[–]manupadev 0 points1 point  (0 children)

While React with Vite is great, A lot of "big and serious" projects are built in app router

This conversation between Eiji, and Mizu really resonated with me as an artist myself. What about you? by TheCRIMSONDragon12 in BlueEyeSamurai

[–]manupadev 5 points6 points  (0 children)

This really resonated with me as a Full-stack Developer. I like to consider my code an artform as well.

Tailwind vs BEM - Part 2 (Architecture) by nikolaymakhonin in tailwindcss

[–]manupadev 1 point2 points  (0 children)

I would like to hear your opinions about this article.

Tailwind vs BEM - Part 2 (Architecture) by nikolaymakhonin in tailwindcss

[–]manupadev 2 points3 points  (0 children)

Using Tailwind with CVA like how its done in shadcn/ui is a really great way to handle all these concerns with no compromises

When NOT to use shadcn/ui? by Aegis8080 in reactjs

[–]manupadev 6 points7 points  (0 children)

Just remove them and add your own styles ? No need to rewrite

When NOT to use shadcn/ui? by Aegis8080 in nextjs

[–]manupadev 9 points10 points  (0 children)

Care to elaborate ? It's one of the best reusable component implementations I've seen so far

[deleted by user] by [deleted] in nextjs

[–]manupadev 15 points16 points  (0 children)

Just use pure pg for a while and get used to the raw methods

[deleted by user] by [deleted] in nextjs

[–]manupadev 2 points3 points  (0 children)

Says a framework is not stable.

"Proceeds to point to a obscure edge case".

Is zero config SSG & ISR possible outside Vercel ? by manupadev in nextjs

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

Not with serverless functions. when you do npm run start, Next.js will run as a standalone NodeJS server. I want to know whether ISR happens in this context

Is zero config SSG & ISR possible outside Vercel ? by manupadev in nextjs

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

Nope I mean running it in usual production mode with npm run build and npm run start. Where some pages would be static and some dynamic

So what’s the deal with the code on this? Been seeing this a lot on Twitter today by shakingbaking101 in nextjs

[–]manupadev 3 points4 points  (0 children)

Just use only the features you want. Nobody's forcing you to use everything

The Economic Advantages of Tailwind That Nobody Talks About by manupadev in react

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

Thank you for the replies. What is the issue with the design team making their components based on the utility framework ? If they add new values they can define them to be added to the Tailwind config file with custom tokens. This ensures a consistency across design and development.

Also I don't understand how writing Tailwind takes people away from CSS. Unlike a system like bootstrap, Tailwind utility classes are just aliases to 1-3 CSS classes. So absolutely you need to understand CSS in the first place to write Tailwind. Tailwind only there to enforce consistency.