Opens profile photo
Follow
Maxim Orlov
@_maximization
Web Dev & Teacher πŸ‘¨πŸΌβ€πŸ’» πŸ‘¨πŸΌβ€πŸ« Helping JavaScript & Node.js devs level up their skills πŸš€ Practical Async/Await out now! πŸ‘‰ bit.ly/3SRPSIT
maximorlov.comJoined January 2015

Maxim Orlov’s Tweets

You should now have plenty of inspiration for your next Node.js portfolio project. You have no excuse to procrastinate any longer. Choose one of these APIs and an idea that seems fun to you and go build something awesome. 🌟
1
Show this thread
The type of project you decide to build doesn't matter as much as you think it does What truly matters is getting practice under your belt, and every hour you spend fretting about making the right choice is a lost hour you could've spent coding instead!
1
Show this thread
The Movie Database API 🍿 What can you build with it? - A "Where Can I Stream It?" app that lets the user know where to watch a particular movie or TV show - A movie library where users keep track of movies and TV shows watched, together with a wishlist
1
Show this thread
Are you stuck in deciding what project you should build next? Here are 7 awesome free APIs you can use in your next project to practice your Node.js skills and impress recruiters
1
1
Show this thread
Over the last two weeks I built a project with and another with Nuxt was faster to develop in but it had bugs, and nuxt-auth is terrible Next.js has a smooth DX and the fast live reload is FAST. It's less opinionated so you need to do more work upfront
1
3
First project is a Passwordless Login app. You'll have to write a backend that allows a user to login by clicking on a link sent to their email address You'll have to implement email delivery, persistent storage, authentication and secure tokens. Feeling up to the challenge?
Image
1
1
Show this thread
I'm using all of the above tools to create a collection of backend projects for devs who want to build a portfolio and work on their backend skills Each project comes with a completed frontend so you don't have to fiddle with html & css, and can focus on the server code instead!
1
1
Show this thread
API documentation is to backend developers, what design files are to frontend developers. If a frontend developer strives to create pixel-perfect UI, a backend developer tries to implement a "data-perfect" server. (Yes, I just made that word up 🀣)
1
Been using to quickly mock a backend API, it's amazing! You just write the name of the endpoint and what it should respond with (status + body), then press play to start the server ▢️ It also has logs so you can inspect the requests coming in from the client ✨
Image
9
Upgraded to macOS Ventura, it's pretty sweet. The new system preferences are much better. Changed the default background because it was hurting my eyes. Anyone got tips for how to use Stage Manager? I'd like to have different workflows (coding, writing, designing)
What do you need most help with in your journey to getting a web development job?
  • Interview Preparation
    100%
  • Code Review
    0%
  • Study Plan
    0%
  • Career Strategy
    0%
3 votesFinal results
Refined the pitch for Practical Async/Await course in preparation for Black Friday/Cyber Monday later this month. Does it resonate? Any suggestions?
Image
Image
Image
Which creator(s) should I partner with to create a Black Friday/Cyber Monday promotion bundle? Preferably folks who serve a similar audience: JavaScript/Node.js Devs
It always bugged me with ESLint that I had to fix syntax errors first before I'd get linting errors to show up Rome's error recovery feature seems to solve that. Nice !
Quote Tweet
Announcing Rome v10 β€” the first stable release of our linter and formatter for JavaScript and TypeScript rome.tools/blog/2022/11/0
Show this thread
1
Only just now realized that the back button in Finder is actually a go-back-in-history button instead of go-one-folder-up πŸ€―πŸ™ˆ Makes so much sense. All the times I had to manually navigate back to previous folders..
1
By now you're familiar with the scenarios where Promise.then() syntax falls short and how async/await empowers you to write clean asynchronous code Use this knowledge to write better JavaScript code and progress in your development career Full article πŸ‘‡
2
Show this thread
#3 - Conditional asynchronous tasks Last reason to use async/await over Promise.then() syntax is when you have async tasks inside an if statement It's tricky to handle this nicely with Promise.then() and you'll soon find yourself in a "promise hell"
Image
1
Show this thread