group console logs in JavaScript

Group console.logs in JavaScript

If you find yourself trying to group multiple console.log() like this: Then allow me to show you a better alternative. You can use console.group() to mark the start of the group and console.groupEnd() to...

VS Code pets extension

Play with Pets in VS Code

Do you think back to the good ol’ days when it was snowing on your desktop or when random sheep would run and jump around Counter-Strike, Warcraft III, and Vice City icons? Let’s bring...

vs code compact folders

VS Code Compact Folders

If you have single-child folders, VS Code will automatically compact them. Which is not always what we want. In this post, you’re going to find out how to change the display of single-child folders...

Navigate Browser's DevTools faster using Commands

Navigate DevTools Faster Using Commands

If you work extensively with DevTools and want to increase your efficiency, I have good news! In this guide, we will look at how to navigate faster through the browser’s DevTools using Commands. To...

remove ads with devtools

Remove Annoying Page Elements with DevTools

Let’s get rid of popups and annoying stuff on websites using your browser’s DevTools. Press F12 to open the DevTools. Press CTRL + SHIFT + C. Select your favorite annoying element and press Backspace...

vscode sort json documents and keys

Sort JSON Documents & Keys in VS Code

If you’re working with JSON documents, you may want to clean them up and sort all the object keys alphabetically. This can make the files more readable and consistent, but it can also improve...

swap characters and words in terminal

Swap Characters & Words in Terminal

Let’s learn how to quickly fix typos by swapping characters and words in the terminal. Swap characters Let’s take this command with a typo for example: ehco hey You can use CTRL + T...