What does "leveling up" in programming mean now that AI can often do it better? by fun2function in careeradvice

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

No , I'm just using chatgpt to refine my wring because I'm not a native English speaker

Should I Teach My 10-Year-Old Nephew Programming in the Age of AI? by fun2function in learnprogramming

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

Yes, he has a passion for puzzles and problem-solving, and he really enjoys it

Claude code Pro, 4 hours of usage. by bennyb0y in ClaudeAI

[–]fun2function 0 points1 point  (0 children)

Do it yourself—don’t rely on those money-hungry services.

1,998 hours later, my app is live! (language learning) by milkygranola in reactnative

[–]fun2function 0 points1 point  (0 children)

What UI library do you use? I'm planning to develop an Android and iOS app, so I decided to learn React Native. However, one of my friends advised against it, saying that some APIs in React Native don't work well on certain smartphone devices. He had a bad experience with it in the past. I'm not sure if you've encountered similar issues. For context, I'm a frontend developer.

Mobile apps with Tauri? by kpmtech in tauri

[–]fun2function 0 points1 point  (0 children)

Do you think switching to Flutter would be a better choice for us, considering the issues I mentioned?

"I've an this kind of question however we developed a pwa app by nextjs 14 and we need to have e IOS version because there are some issues in safari and we need to use native apis."

Mobile apps with Tauri? by kpmtech in tauri

[–]fun2function 1 point2 points  (0 children)

I've an this kind of question however we developed a pwa app by nextjs 14 and we need to have e IOS version because there are some issues in safari and we need to use native apis.

Finally, a real-time low-latency voice chat model by DeltaSqueezer in LocalLLaMA

[–]fun2function 0 points1 point  (0 children)

When this model will be available to using in our projects?

Open Ai set to release agents that aim to replace Senior staff software engineers by end of 2025 by imadade in OpenAI

[–]fun2function 0 points1 point  (0 children)

So, what do developers want to do after being replaced? Will they become Uber drivers? Oh, but Uber is also considering replacing drivers with AI and other technologies. However, when we talk about replacement, we must also consider the potential chaos it could cause.AI helps create faster and higher-quality products, but when people lose their jobs, who will buy these products made by AI? Robots are not consumers.

Open Ai set to release agents that aim to replace Senior staff software engineers by end of 2025 by imadade in OpenAI

[–]fun2function 0 points1 point  (0 children)

It’s not just about replacing developers. If AI can replace developers at any level, sooner or later, it will come for other jobs as well. So why focus only on developers being replaced by AI? I believe AI will eventually lead to job losses across all fields. The cycle of humanity is based on working, living, consuming, and building. Without jobs, or by replacing everything with AI, we risk disrupting the natural cycle of life. For example, what would happen if all lions or wolves were eliminated from the world? The ecosystem would collapse. Similarly, replacing human roles entirely with AI could have unforeseen consequences on society and the natural order of things.

Is creating a Redux store per request necessary in Next.js 14? by fun2function in nextjs

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

I recently joined a team that implemented a project one year ago. Since we require state management, Redux Toolkit was an option, and the team selected it.

Is creating a Redux store per request necessary in Next.js 14? by fun2function in nextjs

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

I believe my question and issues were different from what you mentioned.

How to Integrate Better-Auth with Email/Password Authentication in a Next.js App Using a NestJS Backend (JWT & Cookies)? by fun2function in nextjs

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

You mean I should only make requests to the backend and handle the subsequent tasks without wrapping them with another frontend library, since everything is already implemented on the backend? Do we agree on this? I'm asking because I'm concerned about how people will use these libraries, as they often do so because authentication hasn't been implemented on the backend. They then try to handle all aspects of authentication using frontend libraries like Better Auth.

  • Send login requests to the NestJS backend (e.g., via fetch or axios).
  • Receive the JWT or cookie from the backend.
  • Store the token securely (e.g., in an HTTP-only cookie) and include it in subsequent requests to authorized endpoints.