$ pacman -S percona-server-clients percona-server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| This is the c configuration file for the keymap | |
| Copyright 2012 Jun Wako <wakojun@gmail.com> | |
| Copyright 2015 Jack Humbert | |
| This program is free software: you can redistribute it and/or modify | |
| it under the terms of the GNU General Public License as published by | |
| the Free Software Foundation, either version 2 of the License, or | |
| (at your option) any later version. | |
| This program is distributed in the hope that it will be useful, | |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name KeyBR Colemak-DH | |
| // @namespace http://tampermonkey.net/ | |
| // @version v1.1 | |
| // @description Switch Colemak layout in keybr.com to Colemak DH | |
| // @author https://github.com/Zyst | |
| // @match https://www.keybr.com/ | |
| // @icon https://www.google.com/s2/favicons?domain=keybr.com | |
| // @grant none | |
| // @contributors https://github.com/hilarycheng |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Uses Nerd Font symbols, won't appear on GitHub! I use CaskaydiaCove NF. | |
| [aws] | |
| symbol = " " | |
| [battery] | |
| full_symbol = " " | |
| charging_symbol = " " | |
| discharging_symbol = " " | |
| [[battery.display]] |
Here we create the master key. We want only Certify capability: we use the master key only to create the subkeys, Sign - Encrypt - Authenticate capabilities will be assigned to the subkeys.
Run the following command to start the master key generation process. Select the set your own capabilities creation process (type 8)
▶ gpg --full-generate-key --expert
gpg (GnuPG) 2.2.9; Copyright (C) 2018 Free Software Foundation, Inc.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "encoding/json" | |
| "fmt" | |
| "reflect" | |
| ) | |
| type Something interface{} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| syntax on " enable syntax highlighting | |
| set background=dark " we like it dark! | |
| try | colorscheme gruvbox | catch | endtry " use this awesome theme if possible | |
| highlight Pmenu ctermbg=black guibg=black | " fix popup color so it's easier to read | |
| filetype plugin on " load plugins based on file type | |
| filetype indent on " load indent settings based on file type | |
| set shiftwidth=2 " number of spaces to use for indenting | |
| set softtabstop=2 " number of spaces to use when inserting a tab | |
| set tabstop=2 " show tabs as 2 spaces | |
| set expandtab " convert tabs into spaces |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "net/http" | |
| "os" | |
| "bytes" | |
| "path" | |
| "path/filepath" | |
| "mime/multipart" | |
| "io" |