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
export ZSH="/Users/viacheslav/.oh-my-zsh" | |
# Go development | |
export GOPATH="${HOME}/.go" | |
export GOROOT="$(brew --prefix golang)/libexec" | |
export PATH="$PATH:${GOPATH}/bin:${GOROOT}/bin" | |
test -d "${GOPATH}" || mkdir "${GOPATH}" | |
test -d "${GOPATH}/src/github.com" || mkdir -p "${GOPATH}/src/github.com" | |
eval $(thefuck --alias) |
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
{ | |
"workbench.colorTheme": "One Dark Pro", | |
"workbench.iconTheme": "file-icons", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.statusBar.visible": false, | |
"workbench.editor.enablePreview": false, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"workbench.editor.closeOnFileDelete": true, | |
"workbench.editor.highlightModifiedTabs": true, | |
"workbench.list.automaticKeyboardNavigation": false, |
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
SELECT | |
HighlightID as ID, | |
COALESCE(Title, '') AS BookName, | |
COALESCE(Authors, '') AS Authors, | |
json_extract(Highlight, '$.text') AS Highlight, | |
BookID, | |
TimeEdit | |
FROM | |
Books | |
INNER JOIN ( |
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
ncdu |
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
👋👋👋 |
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
// 10 | |
Bomb.diffuse(Bomb.key) | |
// 9 | |
Bomb.diffuse() | |
Bomb.diffuse() | |
Bomb.diffuse() | |
Bomb.diffuse() | |
Bomb.diffuse() |
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
:root | |
{ | |
--font-size-normal: 19px; | |
--font-size-code: 15px; | |
--font-size-side-dock: 15px; | |
--font-size-side-dock-title: 18px; | |
--font-size-status-bar: 12px; | |
--font-size-h1: 38px; | |
--font-size-h2: 30px; | |
--font-size-h3: 24px; |