You have installed GPG, then tried to perform a git commit and suddenly you see this error message after it 😰
error: gpg failed to sign the data
fatal: failed to write commit object
Understand the error (important to solve it later!)
| # Basic commands | |
| :Git [args] # does what you'd expect | |
| all of your `~/.gitconfig` aliases are available. | |
| :Git! [args] # same as before, dumping output to a tmp file | |
| Moving inside a repo. |
https://www.nerdfonts.com/font-downloads
The following solution thanks to @hackerzgz & @snacky101 will install all nerd fonts;
brew tap homebrew/cask-fonts
brew search '/font-.*-nerd-font/' | awk '{ print $1 }' | xargs -I{} brew install --cask {} || true| { | |
| "schema_version": "v1", | |
| "name_for_model": "twilio", | |
| "name_for_human": "Twilio Plugin", | |
| "description_for_model": "Plugin for integrating the Twilio API to send SMS messages and make phone calls. Use it whenever a user wants to send a text message or make a call using their Twilio account.", | |
| "description_for_human": "Send text messages and make phone calls with Twilio.", | |
| "auth": { | |
| "type": "user_http", | |
| "authorization_type": "basic" | |
| }, |
| #!/usr/bin/env python3 | |
| """ | |
| Feature audit script to generate CSV comparison of Aptos and Movement features for testnet and mainnet | |
| This Python script provides the same functionality as the comprehensive feature comparison shell script | |
| """ | |
| import urllib.request | |
| import urllib.error | |
| import json |