Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!
openssl genrsa -des3 -out rootCA.key 4096| Author | Quote | |
|---|---|---|
| Thomas Edison | Genius is one percent inspiration and ninety-nine percent perspiration. | |
| Yogi Berra | You can observe a lot just by watching. | |
| Abraham Lincoln | A house divided against itself cannot stand. | |
| Johann Wolfgang von Goethe | Difficulties increase the nearer we get to the goal. | |
| Byron Pulsifer | Fate is in your hands and no one elses | |
| Lao Tzu | Be the chief but never the lord. | |
| Carl Sandburg | Nothing happens unless first we dream. | |
| Aristotle | Well begun is half done. | |
| Yogi Berra | Life is a learning experience, only if you learn. |
| package xsync | |
| import ( | |
| "sync" | |
| ) | |
| type mutexItem struct { | |
| mu sync.Mutex | |
| counter int64 | |
| } |
| // Package multilock provide A simple method to lock base on a holder | |
| package multilock | |
| import ( | |
| "errors" | |
| "sync" | |
| ) | |
| type refCounter struct { | |
| counter int |
| " 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' |
| { | |
| "suggest.noselect": false, | |
| "coc.preferences.formatOnSaveFiletypes": [ | |
| "javascript", | |
| "typescript", | |
| "typescriptreact", | |
| "json", | |
| "javascriptreact", | |
| "typescript.tsx", | |
| "graphql" |
| class Solution: | |
| def minPartitions(self, used: [int], total: [int]) -> int: | |
| res = sum(used) | |
| total.sort(reverse=True) | |
| for i, v in enumerate(total): | |
| res -= v | |
| if res <= 0: | |
| return i+1 |
| {"lastUpload":"2020-01-24T11:11:44.391Z","extensionVersion":"v3.4.3"} |