This file contains 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
" v1.0 | |
"Misc | |
highlight LineTooLong cterm=bold ctermfg=white ctermbg=red guibg=LightYellow | |
match LineTooLong /\%>80v.\+/ | |
"Keymaps | |
cmap w!! w !sudo tee % >/dev/null | |
nmap <silent> ,/ :nohlsearch<CR> | |
nnoremap <F2> :set invpaste paste?<CR> |
This file contains 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 ( | |
"context" | |
"flag" | |
"fmt" | |
"net/http" | |
"os" | |
"os/signal" | |
"syscall" |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/vega.js"></script> | |
</head> | |
<body> |
This file contains 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
a.1 = a | |
a.0 = 0 | |
a+1 = 1 | |
a+0 = a | |
a^1 = ā | |
a^0 = a | |
~-a = a-1 | |
-a = ~a+1 // Two's complement |
This file contains 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
{ | |
"homebrew":["mongodb", "git"], | |
"homebrew-cask": ["google-chrome", "google-drive"], | |
"mas": [] | |
} |