Content :
If you want to use Bitwarden CLI for ssh have a look at: How to use use Bitwarden CLI for SSH-Keys in macOS
Wirtten and tested on macOS Ventura
To allow Touch ID on your Mac to authenticate you for sudo access instead of a password you need to do the following.
I think most of us realize that macOS isn't a Linux OS, but what that also means is that instead of shipping with the GNU flavor of command line tools, it ships with the FreeBSD flavor. As such, writing shell scripts which can work across both platforms can sometimes be challenging.
Homebrew can be used to install the GNU versions of tools onto your Mac, but they are all prefixed with "g" by default.
All commands have been installed with the prefix "g". If you need to use these commands with their normal names, you can add a "gnubin" directory to your PATH from your bashrc.
| colors: | |
| # Default colors | |
| primary: | |
| background: '0x1e2127' | |
| foreground: '0xabb2bf' | |
| # Bright and dim foreground colors | |
| # | |
| # The dimmed foreground color is calculated automatically if it is not present. |
| /** | |
| * Load media uploader on pages with our custom metabox | |
| */ | |
| jQuery(document).ready(function($){ | |
| 'use strict'; | |
| // Instantiates the variable that holds the media library frame. | |
| var metaImageFrame; |
| #!/usr/bin/perl | |
| BEGIN { | |
| if ($^O eq "MSWin32") | |
| { | |
| require Win32; Win32::->import(); | |
| require Win32::API; Win32::API::->import(); | |
| require Win32::TieRegistry; Win32::TieRegistry::->import(); | |
| } | |
| } | |
| use List::Util 'first'; |
A quick how-to installation for secure S/MIME installation for a Gmail account on macOS. This certificate can be used to simultaneously encrypt and sign emails.
- Create a unique revocation passphrase in a password manager—long, random, unique.
- Browse to Comodo and request a free, secure email certificate:
- Enter your name, email address, and specify the maximum 2048 bit length
- Enter your revocation passphrase in case your private key is ever stolen or compromised
| ############################################################################ | |
| # # | |
| # ------- Useful Docker Aliases -------- # | |
| # # | |
| # # Installation : # | |
| # copy/paste these lines into your .bashrc or .zshrc file or just # | |
| # type the following in your current shell to try it out: # | |
| # wget -O - https://gist.githubusercontent.com/jgrodziski/9ed4a17709baad10dbcd4530b60dfcbb/raw/d84ef1741c59e7ab07fb055a70df1830584c6c18/docker-aliases.sh | bash | |
| # # | |
| # # Usage: # |