Put the secondary sidebar of VS Code to good use
February 8, 2023 — The secondary sidebar of VS Code is a very handy feature. It allows you to quickly access the most important commands and features of VS Code.
February 8, 2023 — The secondary sidebar of VS Code is a very handy feature. It allows you to quickly access the most important commands and features of VS Code.
February 6, 2023 — Perhaps the most confusing or talked about topic in the React world is state management. And one of the most common questions that I see is why an updated state value in React can’t be accessed immediately.
February 5, 2023 — Here’s a quick tip on how to cycle through recent files in VS Code without using the arrow keys. This is a very handy tip if you’re using a keyboard without arrow keys.
January 26, 2023 — If you’re a seasoned PHP developer, you must have come across the need to merge two or more arrays in PHP. And the bona fide way to do this is by using the array_merge()
function.
January 22, 2023 — Laravel comes with handy little utilities when you want to increment or decrement the value of a column in a database table.
January 19, 2023 — In HTML, if you have a long word that doesn’t fit into the container, it will overflow the container and will break the layout. So, to avoid this, there are two ways to safely break a long word in HTML.
January 17, 2023 — We all know that GitHub Copilot is a code completion tool that can help you write code faster. But did you know that it can also help you make your existing code more readable?
January 12, 2023 — Sometimes, it’s useful to quickly copy over the command that you executed recently in your terminal when you want to share it with someone.
January 11, 2023 — Laravel gives you a lot of flexibility when it comes to working with Eloquent models. You can easily customize the way you want to work with your models.
January 10, 2023 — In this post, I’ll show you how to upgrade your PHP code to use PHP 8.2 features using Rector. I have written articles about how to upgrade to PHP 8 and PHP 8.1 previously.