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!)
| call plug#begin("~/.config/nvim/plugged") | |
| Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
| Plug 'wakatime/vim-wakatime' | |
| Plug 'andweeb/presence.nvim' | |
| Plug 'artanikin/vim-synthwave84' | |
| Plug 'scrooloose/nerdtree' | |
| Plug 'Xuyuanp/nerdtree-git-plugin' | |
| Plug 'tiagofumo/vim-nerdtree-syntax-highlight' | |
| Plug 'christoomey/vim-tmux-navigator' |
| #!/bin/bash | |
| ( | |
| ABSPATH=$(readlink -f $0) | |
| ABSDIR=$(dirname $ABSPATH) | |
| echo "Download and install all necesarry things" | |
| sudo apt-get install -y curl g++ cmake ninja-build libx11-dev libxcursor-dev libxi-dev libgl1-mesa-dev libfontconfig1-dev | |
| curl -L -o skia.zip https://github.com/aseprite/skia/releases/download/m81-b607b32047/Skia-Linux-Release-x64.zip |
| from PIL import Image, ImageDraw, ImageFont | |
| import numpy | |
| level = 1 | |
| rank = 5 | |
| final_xp = 1000 | |
| xp = 400 | |
| user_name = "WiperR" | |
| discriminator = "#3131" |
| " Specify a directory for plugins | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
| Plug 'scrooloose/nerdtree' | |
| "Plug 'tsony-tsonev/nerdtree-git-plugin' | |
| Plug 'Xuyuanp/nerdtree-git-plugin' | |
| Plug 'tiagofumo/vim-nerdtree-syntax-highlight' | |
| Plug 'ryanoasis/vim-devicons' | |
| Plug 'airblade/vim-gitgutter' |
For a brief user-level introduction to CMake, watch C++ Weekly, Episode 78, Intro to CMake by Jason Turner. LLVM’s CMake Primer provides a good high-level introduction to the CMake syntax. Go read it now.
After that, watch Mathieu Ropert’s CppCon 2017 talk Using Modern CMake Patterns to Enforce a Good Modular Design (slides). It provides a thorough explanation of what modern CMake is and why it is so much better than “old school” CMake. The modular design ideas in this talk are based on the book [Large-Scale C++ Software Design](https://www.amazon.de/Large-Scale-Soft
| @commands.guild_only() | |
| # Command cannot be used in private messages. | |
| @commands.dm_only() | |
| # Command can only be used in private messages. | |
| @commands.is_owner() | |
| # Command can only be used by the bot owner. | |
| @commands.is_nsfw() |
# Ubuntu
sudo apt-get install gpa seahorse
# MacOS with https://brew.sh/
| #!/bin/bash | |
| # Detects Linux Distribution | |
| # | |
| # Most Distributions have lsb_release or use /etc/lsb_release | |
| # For those that do not we have some fallback cases | |
| OS=$(uname -s) | |
| VER=$(uname -r) |