Handmade Git Commands
Handmake your Git commands at home Long story short, you can extend Git’s functionality by creating your own custom commands! It’s simpler than you think. Here are 3 steps: Create an executable binary to do the things you want your git command to do. This could be a shell script, or a program in any language. Name it git-<command-name>. For example, if you want a command called git cleanup-branches, you’d name your script git-cleanup-branches. Put it in your $PATH and make it executable (chmod +x /path/to/your/script). Now you can use your new Git power via: ...
React ≠ Magic
Under the Hood of React: Why It Feels Like Magic (But Isn’t) Why this Blog Back in school days starting with web development was fairly simple — HTML formed the structure, CSS was all beautiful decorations (and some movements), and JS brought logic and life to the site. But, as any dev would have it, I encountered React. And oh boy, it seemed magical — yes, almost like you now know the language of elves and can now craft spectacular Elden sites. ...