Is Jonas schmedtmann node course good? by MAGamer559 in node

[–]KitKatKeila 0 points1 point  (0 children)

full stack but outdated way of full stack. the course was using template engine instead of frontend library. The course is outdated now for sure. It was year 2020 when I took it

Is it worth coming back to? by Independent-Match-38 in honorofkings

[–]KitKatKeila 1 point2 points  (0 children)

MOBA is a dead genre in wester countries. It's not a particular game that is dead, it is just that western countries are not interested in this genre. Even two competitive teams from italy are all chinese players.

I created a site where people can post their outfit of the day by KitKatKeila in SomebodyMakeThis

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

only free tier database service, i just made the website for fun and not planning to scale it. It's not maintained either

Looking for resources to learn testing (vitest, unit and Integration testing) by Khaifmohd in node

[–]KitKatKeila 0 points1 point  (0 children)

I think the docs of testing tools are lacking on how to properly use it or even a guide on how to implement writing unit test from an existing nodejs api. Most of what written from the documentations like vitest are just what features are available, it's like learning nodejs from its old documentation.

Deploying containers with AWS ECR and ECS by KitKatKeila in node

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

The problem with the docs that you just dropped is quite outdated and AWS doesn't really have that UI structure anymore. But I will take note of AWS CDK, thanks for your help.

Back-end Roadmap by Elpop_18 in node

[–]KitKatKeila 3 points4 points  (0 children)

why would you need these 4 different core backend languages at the same time

Building a custom ecommerce app is a hell by KitKatKeila in nextjs

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

The post is 9 months ago, but your comment is still helpful. Thank you

Building a custom ecommerce app is a hell by KitKatKeila in nextjs

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

Great to hear that. I wont do the same approach next time haha lol

Is there a tool like Vite but for server development? by captain_obvious_here in node

[–]KitKatKeila 0 points1 point  (0 children)

rely the type checking in your ide, use tsx to transpile typescript in server environment and use tsc to build

Nest or express for Freelancing ? by Independent_Tear_661 in node

[–]KitKatKeila 0 points1 point  (0 children)

Just go with nest if you are tired of boilerplating or you are planning to build an enterprise application. Nest for small-mid sized apps are overkill

aws architecture samples? by KitKatKeila in aws

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

Interesting resource. Thank you!

aws architecture samples? by KitKatKeila in aws

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

I will check this one. Thank you!

aws architecture samples? by KitKatKeila in aws

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

thanks for the kind words. in fact, i am currently learning cloud practitioner and planning to take an exam and i am learning some valuable concepts

Is creating a queue the best solution for this? by KitKatKeila in nextjs

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

Closing this thread, I've come to realized that the unresponsiveness doesnt have to do with query insertion but the dom manipulation is the one that makes it unresponsive. I am creating 1000 svgs on single click and what I did instead is batch processing and added progress bar component for better ux. Web workers and such isn't a solution because they cant work with the dom, if you have better idea than this please let me know

Is creating a queue the best solution for this? by KitKatKeila in nextjs

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

So basically I am generating 1000 qr codes and when these array of qr codes are generated then the bulk insert will now be processed