Attaching additional notes to a Git commit
January 1, 2023 — When you commit a change in Git, you can add a message along with it. This message is essentially a note that you can add to the commit.
A blog on PHP, JavaScript, and more
January 1, 2023 — When you commit a change in Git, you can add a message along with it. This message is essentially a note that you can add to the commit.
December 29, 2022 — Stashing is a very useful feature in Git. It allows you to temporarily save your changes in a stash and then apply them later. This is very useful when you want to switch to another branch but don’t want to commit your changes yet. You can stash your changes and then apply them later.
December 27, 2022 — Anonymous components are a great way to create reusable components in Laravel. Essentially, you can create an anonymous component without creating an associated class. For example, you can do something like this.
December 22, 2022 — There are times when you may want to use SVG icons in your web application. For example, you may want to use SVG icons for your navigation menu or buttons.
December 20, 2022 — There are times when you may want to extract every array keys to variables of the same name. For example, you have an array like so.
December 18, 2022 — PHP 8.3 is the next major release of the PHP programming language. It is scheduled to be released sometime in 2023.
December 14, 2022 — As a developer on Linux, I use a lot of open-source tools to get the job done. In this article, I’ll be listing down all the fantastic open-source tools (not the obvious ones) I use as a developer on Linux.
December 7, 2022 — The way routes work in Laravel is that you define a route and then you define a controller action to handle the request.
December 6, 2022 — If you’re a web developer, you might have come across a situation where you need to take a full-size screenshot of a website. For instance, you might want to take a screenshot of a website to show it to your client or your team members.
December 4, 2022 — PHP 7 introduced a lot of new features to the language. One of them is the ability to declare the type of a function argument and the type of value that a function returns. This is called type declaration.