Freelance dev. Tweets about AI, tech, React, and web dev. #buildinpublic *the best* ✌️ ChatGPT app for macOS: https://t.co/tFTqQyK19G
5 subscribers
Feb 13, 2023 • 5 tweets • 1 min read
Different ways of handling results of multiple promises in JavaScript:
Whenever the results of promises do not depend on each other, we can potentially speed things up by creating them concurrently.
For example, API calls can be sent in parallel by the browser (or other I/O-bound tasks)
📌 10 clever questions to ask in a job interview when you're asked:
"Do you have any questions for us?"
1. If you hire me today, how will you know a year from now that I was the right fit?
2. How do you see the company evolving over the next N years?
Oct 23, 2022 • 51 tweets • 11 min read
I've screenshotted 50+ VS Code Themes.
📌 Scroll through this thread, maybe you'll find a new favorite
Kanagawa
Oct 20, 2022 • 4 tweets • 2 min read
Create a Gradient Border in 3 Simple Steps 🎨 👇
Although there are ways to do this without the pseudo-elements, I found it pretty annoying to deal with border-radius.
So here's how to approach this if you want to have rounded corners:
Oct 19, 2022 • 5 tweets • 3 min read
Create Glass Effect With 2 Lines of CSS 🎨👇 1. Add backdrop-filter
- backdrop-filter: blur(14px)
2. Set background with opacity
- background-color: rgba(12, 30, 45, 0.7)
Optional: Add a semi-transparent border to highlight the edge.