Aug 21, 2026
Save Time with Emmet in VS Code
Instead of typing this:
<ul>
<li class="item"></li>
<li class="item"></li>
<li class="item"></li>
</ul>You can just type:
ul>li.item*3…then press Tab → Boom! Expanded instantly.
Emmet works with HTML, JSX, and even CSS. Once you get used to it, you’ll never go back to writing markup the slow way.
OTHER POSTS
Use npm scripts to Simplify Daily Tasks
Running long terminal commands over and over? Automate them with simple npm scripts in your package.json.
Read more →Learn Faster with Browser DevTools Tricks
Your browser is more powerful than you think. Chrome/Edge/Firefox DevTools can save you tons of time debugging and experimenting directly in the browser.
Read more →Fix "Email in this signature doesn't match the committer email" on GitHub
Pushed a signed GPG commit only to get a warning that the signature is unverified because of an email mismatch? Here is how to sync your GPG identity with Git.
Read more →How to Set Up Verified GPG Commit Signing on GitHub
Tired of seeing the "Unverified" badge on your GitHub commits? Setting up a GPG key signs your commits cryptographically, proving to your team (and future employers) that the code actually came from you.
Read more →