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
set ai | |
set complete=.,t,w | |
set hlsearch | |
set incsearch | |
set laststatus=2 | |
set modelines=5 | |
set path=.,** | |
set ruler | |
set scrolloff=3 | |
set splitbelow |
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
# ERC20 | |
## Spec | |
- https://eips.ethereum.org/EIPS/eip-20 | |
## Implementation | |
- https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol | |
- https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol | |
## API |
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
{ | |
"variables": { | |
"ssh_user": "root", | |
"ssh_pass": "T@c0_Bu3n0" | |
}, | |
"builders": [ | |
{ |
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
How to map Control-Z key in Mac OS X to zoom a window to max size | |
$ defaults write NSGlobalDomain NSUserKeyEquivalents '{"Zoom" = "@^Z"; "Zoom Window" = "@^Z"; }' |
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
diff --git a/pkg/volume/fc/fc_util.go b/pkg/volume/fc/fc_util.go | |
index 3da5396..1b22450 100644 | |
--- a/pkg/volume/fc/fc_util.go | |
+++ b/pkg/volume/fc/fc_util.go | |
@@ -127,53 +127,65 @@ func (util *FCUtil) MakeGlobalPDName(fc fcDisk) string { | |
return makePDNameInternal(fc.plugin.host, fc.wwns, fc.lun) | |
} | |
-func searchDisk(wwns []string, lun string, io ioHandler) (string, string) { | |
- disk := "" |
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
https://github.com/kubernetes/kubernetes/pull/32778 | |
https://github.com/kubernetes/kubernetes/pull/32459/files | |
https://github.com/kubernetes/kubernetes/pull/31251 |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Ansi 0 Color</key> | |
<dict> | |
<key>Alpha Component</key> | |
<real>1</real> | |
<key>Blue Component</key> | |
<real>0.15445239841938019</real> |
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
" vim: set ts=4 sts=4 sw=4 et: | |
set background=dark | |
highlight clear | |
if exists("syntax_on") | |
syntax reset | |
endif | |
let g:colors_name = "azwhite2" | |
hi Comment ctermfg=darkgrey |
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
if v:progname =~? "evim" | |
finish | |
endif | |
set nocompatible | |
set backspace=indent,eol,start | |
set ai | |
set complete=.,t,w |
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
install | |
lang en_US.UTF-8 | |
keyboard us | |
timezone UTC --isUtc | |
auth --useshadow --enablemd5 | |
services --enabled=NetworkManager,sshd | |
eula --agreed | |
ignoredisk --only-use=sda | |
reboot |
NewerOlder