VS Code: Change Cursor Color, Style & Animation
I think customizing the cursor can make your coding experience more enjoyable and efficient. That’s why in this post I’m going to show you how to customize the cursor in VS Code. We’ll be...
I think customizing the cursor can make your coding experience more enjoyable and efficient. That’s why in this post I’m going to show you how to customize the cursor in VS Code. We’ll be...
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...
Laravel provides two common methods for retrieving configuration data: env() and config(). While they may seem similar at first, there are important differences between them. In this post, we’ll explore the differences between env()...
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...
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...
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...
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...
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 to watch a video to supplement your reading? Check...
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...
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...