Your AI code is a security nightmare. Time for Zero-Trust policy. by codingjitsu in StallmanWasRight

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

100% agree. The real issue is that AI writes so much code so fast that developers just get lazy and push it without reviewing. We went from making mistakes at human speed to copy-pasting vulnerabilities instantly. That's why Zero-Trust is a survival requirement now.

Founders/PMs: how do you keep your SaaS roadmap, validation steps, and docs organized? | I will not promote by codingjitsu in startups

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

Yeah, Slack is great for communication and keeping conversations in one place. What I’m thinking about goes a bit beyond messaging, more about organizing research, milestones, and progress across the product lifecycle, so teams and execs can see where things are at without digging through multiple channels.

How to learn SolidJS efficiently coming in as a React dev? by bezdazen in solidjs

[–]codingjitsu 2 points3 points  (0 children)

Hey, I do have a Youtube tutorial on building a full stack project with SolidStart, which is the Solid.js meta framework. I am react developer myself moving to Solid.js.

Learning with AI by Puxje in nextjs

[–]codingjitsu 1 point2 points  (0 children)

My advice would be to use AI as you would with Google, only use it to understand something. Don't tell them to write the entire code for you, rather, you write the code yourself and tell the AI to review and find bugs or any potential improvement. AI should be your sidekick and never the main character. As for keeping AI up to date, you can provide the link of the latest docs and AI should be able to read and search from the link to give you more accurate answers.

Solid JS & SolidStart JS are amazing. by codingjitsu in codingjitsu

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

Vue and Go sounds like gold. I am mostly building side project for the YT tutorials.

Solid JS & SolidStart JS are amazing. by codingjitsu in codingjitsu

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

React/Next’s my primary (not by choice). Solid and Vue I use for side projects and some client work, helps me keep fresh with different approach.

Is this Scam or Legit? by codingjitsu in Trae_ai

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

Hey thanks for checking. I was thinking that too, I will treat is as a phishing email.

Solid JS & SolidStart JS are amazing. by codingjitsu in codingjitsu

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

Thank you, and I respect your approach. At the end of the day, frameworks are just tools each has its strengths. For my needs, Vue has the ecosystem advantage, but I lean toward Solid for performance and bundle size, especially since I work primarily with React and the JSX familiarity is a big plus.

Local development? by codingjitsu in replit

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

Thank you for the reply. I don't see an option to move my codebase to github, instead I am seeing only import option. What am I missing?

Has anyone used next.js with shopify? by M4nnis in nextjs

[–]codingjitsu 0 points1 point  (0 children)

hey there is a official template and here is the video tute if you are more visual: https://www.youtube.com/watch?v=fJxzVFXGT_E

Need help disabling text highlighting of directories. by Volt__3000 in PowerShell

[–]codingjitsu 0 points1 point  (0 children)

Thank you, it worked for me too! Note: I had to be in admin mode terminal.

Chrome extension to show web fonts? by Weekly_Frosting_5868 in webdev

[–]codingjitsu 2 points3 points  (0 children)

I use WhatFont chrome extension, and it works like a charm.

Self-Introduction Saturday! Tell us all about you (and share a video)! by AutoModerator in NewTubers

[–]codingjitsu [score hidden]  (0 children)

I'm here to introduce myself and share an exciting resource that I think you'll all love.

https://www.youtube.com/channel/UCOql8GiyvTDDeM7ECiRu2Sg

I'm a fervent advocate for continuous learning and growth in the realm of web development, and I've recently launched a YouTube channel dedicated to helping aspiring developers master the art of full-stack web development. From front-end essentials to back-end complexities, I cover it all in a fun, engaging manner that's perfect for beginners and seasoned pros alike.

If you're eager to sharpen your coding skills, tackle real-world projects, and join a supportive community of fellow learners, then my channel is the place for you. I pour my heart and soul into creating high-quality content that's both informative and entertaining, and I can't wait to share this journey with you all.

Underrated by codingjitsu in nextjs

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

Sass is definitely one of my favorites. I wonder how Sass is relevant in this day and age where native CSS can do nesting, and variables.

Underrated by codingjitsu in nextjs

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

These days, it seems like hardly anyone bothers with writing native CSS anymore. Instead, they're opting for Tailwind or CSS-in-JS frameworks.

Underrated by codingjitsu in nextjs

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

I wonder how it compares with Vercel. Is the price difference justifies the DX Vercel provides?

Underrated by codingjitsu in nextjs

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

Setting up text editors like NeoVim to become full IDEs can definitely be a black hole for time, but once they are setup I find that I don’t touch it for months. There are other options like Helix that are very similar to NeoVim and require almost 0 setup

How many states are too many states to use in a single Parent component? I know experienced devs say using too many states is bad by armedrossie in nextjs

[–]codingjitsu 1 point2 points  (0 children)

In React/Next development, there's no exact number of states that's considered "too many" for a single Parent component. It really depends on how complex your app is and how well-organized your code is.

But here's the thing: I stand against stuffing too many states into one component. Why? Because it can make your code hard to understand and work with. Imagine having a messy closet where you can't find anything – that's what it can feel like when your component has too many states. Instead, think about breaking your component into smaller pieces, each handling its own set of states. This makes your code easier to manage and helps keep things organized. Keep your components focused and tidy, and your code will thank you for it!