Skip to content

Instantly share code, notes, and snippets.

View Aldaviva's full-sized avatar
🆒
This user is COOL

Ben Hutchison Aldaviva

🆒
This user is COOL
View GitHub Profile
@Aldaviva
Aldaviva / gpg.md
Last active February 8, 2025 06:09
GPG and OpenPGP reference sheet

Create a new keypair

gpg --full-generate-key
gpg --list-secret-keys --keyid-format=long

Caution

For signing Git commits on GitHub, you must use the exact same email address to generate the GPG keypair that your GitHub account uses. Otherwise, your commit signatures will be invalid, and you will need to create another keypair with the correct email address.

Export keys

Export public key

@Aldaviva
Aldaviva / shell-prompts.md
Last active March 1, 2025 07:40
Shell prompt styles
@Aldaviva
Aldaviva / fiddler-declutter.js
Last active April 8, 2025 09:04
Hide useless Fiddler clutter that doesn't remember its visibility: Get Started and Fiddler Orchestra Beta tabs and Composer history pane
/*
* Features: Hide the Get Started tab, Fiddler Orchestra Beta tab, and Composer history pane, which don't remember their visibility across Fiddler restarts
* Installation: Add these members to the Handlers class in %USERPROFILE%\Documents\Fiddler2\Scripts\CustomRules.js
*/
class Handlers {
// If you already have an OnBoot() method, you'll want to combine it with this, or rename this and call it from yours.
static function OnBoot() {
var timer = new Timer();
timer.add_Tick(OnLateBoot);