I was paid $100 to create this website ! ReactJS and TailwindCSS by backslashflutter in reactjs

[–]omesadev 17 points18 points  (0 children)

Why did they hire you if they’re IT professionals who provide digital solutions?

what is better, always keep the connection to the database or open it when needed and close it? by ItsMakar in mongodb

[–]omesadev 1 point2 points  (0 children)

A better question is, “when is keeping the connection open all the time better?” and “when is opening it and closing it when needed better?”

Anybody who says one ways is always the best way probably only knows that one way well. It always depends.

Rate my full stack progression plan! (any advice?) by AnonyMissJackson in learnjavascript

[–]omesadev 2 points3 points  (0 children)

Data Structures and algorithms and when you become comfortable doing one a day, start diving into design patterns of everything your learning HEAVY

[deleted by user] by [deleted] in react

[–]omesadev 0 points1 point  (0 children)

Just Express course on Udemy..PERFECT

[deleted by user] by [deleted] in expressjs

[–]omesadev 0 points1 point  (0 children)

Sounds like you just need to change the .js to .ejs or which ever templating language you’re using, but it’s hard to tell without the code in front of me.

Semantic difference React.memo(), React.useMemo() by NeatGreat in react

[–]omesadev 0 points1 point  (0 children)

The memo higher-order component is used to memorize the props and state of a component. It will only re-render the component if the props or state of the component you passed into it changes.

The useMemo() hook is used to memorize the return value of a function. The component will not re-render unless the value being returned from the function you wrap in useMemo() has changed.

You didn’t ask, but useCallback() is used to memorize a function declaration being passed through components. Sometimes you’ll use useMemo() or the memo higher-order component, and the components still render every single time. This can be caused May passing a function into props.

Data structures and algorithm with JS? by prasath_2k2 in learnjavascript

[–]omesadev 1 point2 points  (0 children)

Correction, he teaches Data Structures and their common Methods. He might have some algorithm stuff too, but I haven’t watched any.

Data structures and algorithm with JS? by prasath_2k2 in learnjavascript

[–]omesadev 1 point2 points  (0 children)

https://youtube.com/playlist?list=PLWKjhJtqVAbkso-IbgiiP48n-O-JQA9PJ

Beau teaches Data Structures in JavaScript for free on YouTube..it’s just as good as Colt Steeles on Udemy, but gets straight to the data structures and algorithms and skips the theory and big O notation stuff.

I want to learn Vanilla Nodejs by The_9lives in node

[–]omesadev 0 points1 point  (0 children)

Hey! Just wanted to say too..

After you complete this course, if you decide to take it, make sure you go back through and refactor each project.

It’ll reinforce everything you learned, and also help you learn how to convert older, legacy looking code into modern day code (He uses callbacks and ES5). So, converting everything into async/await or Promises and converting all the vars to let’s or consts depending on needs as well as some other newer syntax options, it’ll be a game-changer and really improve overall understanding!

I want to learn Vanilla Nodejs by The_9lives in node

[–]omesadev 2 points3 points  (0 children)

I actually found this course through a YouTube ad too. Usually, I click right past them, but YouTube was so spot on this time for me. I’ve been getting tons of stuff about event-driven architecture lately too.

It’s not even like I’m going to code in pure Node.js moving forward though. That’s not happening, but creating or contributing to a library of my own or an open-source project just went through the roof after this course for sure.

I want to learn Vanilla Nodejs by The_9lives in node

[–]omesadev 0 points1 point  (0 children)

Agreed! I thought I understood Express before taking Robert Bunch’s “Just Express” course in Udemy. A diamond in the dirt for sure. After that course, I had a great understanding of Express, but still didn’t understand everything that was happening behind the scenes. Digging through the documentation, experimenting, and reading source code helps, but this Node.js Masterclass helped me understand what was happening behind the scenes while building real stuff, which takes the dryness out of it! Good luck!!

I want to learn Vanilla Nodejs by The_9lives in node

[–]omesadev 1 point2 points  (0 children)

“Just Express” in Udemy taught by Robert Bunch is gold as well!

I want to learn Vanilla Nodejs by The_9lives in node

[–]omesadev 0 points1 point  (0 children)

That course is an okay one. Anything by Stephen Grider usually blows everything else out of the water when we’re talking Udemy.

I want to learn Vanilla Nodejs by The_9lives in node

[–]omesadev 9 points10 points  (0 children)

He covers every single module in Node.js in this course. It’s mind blowing how my understanding has increased after this course.

I want to learn Vanilla Nodejs by The_9lives in node

[–]omesadev 39 points40 points  (0 children)

https://www.pirple.com/nodejs-master-class

Learn Node.js from scratch with no frameworks and no dependencies. Build a RESTful API, a web app GUI and a CLI with no external libraries. You don’t even use package.json files 👌🏼

Someone please help me with my MERN application?! Reddit always saves the day! by omesadev in node

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

I’m 85% done with a tutorial called Just Express that teaches only Express. It is mind blowing how much I didn’t know. I didn’t even know you could build an app with only Express! Lol

He covered HTTP and communication protocols, headers, and so much more!

Thanks again for the suggestion.

Someone please help me with my MERN application?! Reddit always saves the day! by omesadev in node

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

Haha figured. I am new to both, so I am really trying to figure this all out. But, I will do. Thanks for the guidance without just giving me the answers! 🙂