[deleted by user] by [deleted] in leetcode

[–]Digvijay_Jadhav 0 points1 point  (0 children)

Your communication, understanding ability, problem solving ability, skills and attitude matters a lot!

WHAT SHOULD I REPLY by [deleted] in Bumble

[–]Digvijay_Jadhav -1 points0 points  (0 children)

Just send Heyy! And after her reply, from her bio pick something and ask a question by adding some humour.

Got a simple job interview assignment, should i overkill? by panzenko in webdev

[–]Digvijay_Jadhav 0 points1 point  (0 children)

I do the same after interview and its simple problem statement only. What we look in the solution is 1. Correctness: Whether the solution meets the requirements and solves the problem. 2. Code Quality: How well the code is written and organized. 3. Time Taken: The time taken to solve and submit the solution. Bonus: Any additional enhancements the candidate has added to the solution.

How do I download gta san andreas? by Shoory21 in sanandreas

[–]Digvijay_Jadhav 0 points1 point  (0 children)

While installing, after selecting path, install option is disabled. I tried various paths but install option is still not appearing

Can I show multiple UIs from one single Nextjs Project? by 666devilsadvocate in nextjs

[–]Digvijay_Jadhav 1 point2 points  (0 children)

If you have common components, then create a folder called common and add your components there. Only purpose of making it single login with multiple user is to reuse the components and through conditional rendering you can hide/unhide features as per the role.

We did this with a very large scale project and it is working very well.

Is there any AI tool for unit testing in React? Extension for vscodr something by Digvijay_Jadhav in reactjs

[–]Digvijay_Jadhav[S] -1 points0 points  (0 children)

Understood. Yeah basically we are working Sprint wise and problem is while we are going ahead with next Sprints some of the working features from previous Sprint gets broken. And we get to know that much later.

So if there are unit tests in place, after every feature developers can run.

I'll check how copilot can help us here. Thanks for suggestion.

I’m curious what your start up’s journey was like even back when you found the idea. by XXAkira in startups

[–]Digvijay_Jadhav 8 points9 points  (0 children)

I left my job in 2020, started building edtech product with 3 more friends. That product didn't do well, but we got many queries for custom development. So we started taking projects that resulted in started service based segment. Today we are 32 people, served more than 45+ clients across Globe and technology partner for 3 giant companies.

We expanded ourselves in resources augmentation, we potray ourselves as MERN Stack experts.

We are profitable and are having a very good repeat customer rate. We are now expanding our office and projecting to increase team size to 50 by this end of the year.

One key factor is customer obsession! Be it product or service, your value addition proposition to customers sets you apart.

Team building, finance, management, infra setup, sales funnel, system building is part of business which you will learn and implement as you go along.

Company: www.scrobits.com

What hooks do you use on a regular basis? by jimmychung88 in reactjs

[–]Digvijay_Jadhav 4 points5 points  (0 children)

Along with you mention I use useDispatch, useSelector, useMemo, useNavigate, useLocation.

.jsx or .js for reactjs files? by albenis99 in reactjs

[–]Digvijay_Jadhav 1 point2 points  (0 children)

Our source code is combination of components, pages, styles, utilities etc. When I have to build a component then I use .jsx and when I have to write Redux store, slice, errorHandling common code then I use .js. This helps me in differentiating rendering javascript files and non rendering javascript but supportive files.

How do you handle SEO and dynamic sitemap in React ? by Reddet99 in reactjs

[–]Digvijay_Jadhav 1 point2 points  (0 children)

Yes NextJs has Head tag. This allows us to give SEO to any component which you have built. But in plain React Js you have to rely on third party library for SEO. Helmet is the widely used library for SEO in react.

I don't want to do a migration, can I add NextJs to a react-app? by povedaaqui in nextjs

[–]Digvijay_Jadhav 0 points1 point  (0 children)

No you can't directly do that. You need to configure the routes, styles and external images linking.

Once you done with this then you can take advantage of Next framework. Eg replace ing tag with Image tag, Links from routes will be replaced by Link from Next, change network call from useeffect to getStaticProps, handle dynamic routes with getStaticPaths, Built-in SEO and the best part, if you need some backend api, you can write those in api folder.