VS Code: Floating Window
Learn how to detach tabs into their own windows, customize your layout, and use a few handy commands to manage windows more efficiently.
Learn how to detach tabs into their own windows, customize your layout, and use a few handy commands to manage windows more efficiently.
Discover why Yarn no longer creates the node_modules directory and how the new approach boosts performance. Learn how to switch back if needed.
I use this approach to mark a database record as deleted in 99% of cases.
It’s a good practice to clear the npx cache occasionally as this helps prevent version conflicts and save disk space.
Let’s say you want to verify the order in which the content is displayed, or you want to test the accessibility of a page when… Read More »Disable All CSS on a Page with JavaScript
When you select an element in DevTools, you see the CSS rules that apply to it. But, these rules can also apply to other elements… Read More »Highlight All Elements that Match a given CSS Selector
Usually, when you want to switch branches, you use git checkout branch-name. But let’s say you’re working with two branches and want a quick way… Read More »Switch Between Two Git Branches – Quickest Way!
Do you know how many whitespace characters are hiding in your file? 🕵️♀️ Let’s find out! Go to View -> Appearance and check Render Whitespace. 🎥 Want… Read More »Show/Hide Whitespace Characters in VS Code
In this post, we’re going to find out what a typical HTML 5 boilerplate template looks like. If you don’t know what a boilerplate is,… Read More »Basic HTML Boilerplate Template for Any Project
If you go to a website and inspect its page source, you’ll notice this <!DOCTYPE html> declaration before the <html> element. In this post, you’re… Read More »DOCTYPE HTML: A Comprehensive Explanation