When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:
main {
max-width: 38rem;
padding: 2rem;
margin: auto;
}This is a simple Tailwind plugin to expose all of Tailwind's colors, including any custom ones, as custom css properties on the :root element.
There are a couple of main reasons this is helpful:
See the Tailwind Plugins for more info on plugins.
Based on this blogpost.
To sign Git commits, you need a gpg key. GPG stands for GNU Privacy Guard and is the de facto implementation of the OpenPGP message format. PGP stands for ‘Pretty Good Privacy’ and is a standard to sign and encrypt messages.
Install with Homebrew:
$ brew install gpgBefore we look at some common commands, I just want to note a few keyboard commands that are very helpful:
Up Arrow: Will show your last commandDown Arrow: Will show your next commandTab: Will auto-complete your commandCtrl + L: Will clear the screen| <?xml version="1.0" encoding="utf-8"?> | |
| <!-- | |
| # Pretty Feed | |
| Styles an RSS/Atom feed, making it friendly for humans viewers, and adds a link | |
| to aboutfeeds.com for new user onboarding. See it in action: | |
| https://interconnected.org/home/feed |
This guide walks you through installing GPG on macOS, managing keys, creating a new ECC key with Curve25519, and integrating with GitHub for secure commit signing. Let’s dive in! 💡
Install GPG using Homebrew:
brew install gnupg