Do you give it to create it alone or strat it manually and after this the baseline you start to prompt?
Do you give it to create it alone or strat it manually and after this the baseline you start to prompt?
Which IDE is that?
Which IDE is that?
Workflows?
How do you keep your brain from stopping learning?
Workflows?
How do you keep your brain from stopping learning?
Maybe it not important anymore?
Maybe it not important anymore?
Want to discuss it more? Would like to chat about it!
Want to discuss it more? Would like to chat about it!
In some sense, the DX is no longer in the code — it’s in Claude!
In some sense, the DX is no longer in the code — it’s in Claude!
Can you describe a bit the beginning of the process?
Did you describe the stack? The folder structure? How does that looked like?
Can you describe a bit the beginning of the process?
Did you describe the stack? The folder structure? How does that looked like?
I’ve found it hard to stay involves and verify the output. Compared to Cursor, Claude feels much more vibe coding.. what do you feel?
I’ve found it hard to stay involves and verify the output. Compared to Cursor, Claude feels much more vibe coding.. what do you feel?
Form my experience it harder to be involved during the development versus Cursor..
Form my experience it harder to be involved during the development versus Cursor..
Bummer, styled components was such a great tool!
Bummer, styled components was such a great tool!
Would like to hear your thoughts!
Would like to hear your thoughts!
'use client' → browser’s JS
Import me on the server where you need more than just HTML.
'use server' → server JS called via HTTP
Import me on the client where you want to trigger that HTTP call.
'use client' → browser’s JS
Import me on the server where you need more than just HTML.
'use server' → server JS called via HTTP
Import me on the client where you want to trigger that HTTP call.
It's about reducing the amount of work, and get client/server API out of the box.
It's about reducing the amount of work, and get client/server API out of the box.
I know I want to call specific server-side code — so instead of creating an API endpoint and calling it with fetch, I just add 'use server', and the bundler handles it for me.
I know I want to call specific server-side code — so instead of creating an API endpoint and calling it with fetch, I just add 'use server', and the bundler handles it for me.
Meaning: "I can't run this code on the server, so when you get to the client — use me there."
Meaning: "I can't run this code on the server, so when you get to the client — use me there."
Want to add interactivity or behaviors to that?
Just add modules that can or should be executed on the client, right where you need them.
It's to continue the same flow!
Want to add interactivity or behaviors to that?
Just add modules that can or should be executed on the client, right where you need them.
It's to continue the same flow!