├── README.md ├── guide-find └── mouseless │ ├── Makefile │ ├── README.md │ ├── chapters │ └── README.md │ ├── fonts │ ├── Merriweather-Bold.ttf │ ├── Merriweather-Italic.ttf │ ├── Merriweather-Light.ttf │ └── Merriweather-Regular.ttf │ ├── headers │ ├── awesomebox.tex │ ├── footnotes.tex │ ├── inline_code.tex │ ├── lists.tex │ ├── packages.tex │ ├── quote.tex │ └── titles.tex │ ├── highlight │ ├── bash.xml │ └── pygments.theme │ ├── images │ ├── another_big_cover.jpg │ └── big_cover.jpg │ ├── metadata.yml │ ├── others │ ├── cover.tex │ └── empty-file │ ├── styles.css │ └── template │ ├── default.html │ └── default.latex ├── guide-fzf-git ├── fzf_git_branches.sh ├── fzf_git_commits.sh ├── fzf_git_files.sh └── git │ ├── fzf_1.sh │ ├── fzf_2.sh │ ├── fzf_3.sh │ ├── fzf_4.sh │ └── fzf_5.sh ├── guide-fzf ├── explorer.sh └── mouseless-book-behind-scene │ ├── Makefile │ ├── README.md │ ├── chapters │ └── README.md │ ├── fonts │ ├── Merriweather-Bold.ttf │ ├── Merriweather-Italic.ttf │ ├── Merriweather-Light.ttf │ └── Merriweather-Regular.ttf │ ├── headers │ ├── awesomebox.tex │ ├── footnotes.tex │ ├── inline_code.tex │ ├── lists.tex │ ├── packages.tex │ ├── quote.tex │ └── titles.tex │ ├── highlight │ ├── bash.xml │ └── pygments.theme │ ├── images │ └── big_cover.jpg │ ├── metadata.yml │ ├── others │ └── cover.tex │ ├── styles.css │ └── template │ ├── default.html │ └── default.latex ├── guide-grep ├── .randomignorefile ├── .rgignore ├── Makefile ├── README.md ├── chapters │ └── README.md ├── fonts │ ├── Merriweather-Bold.ttf │ ├── Merriweather-Italic.ttf │ ├── Merriweather-Light.ttf │ └── Merriweather-Regular.ttf ├── headers │ ├── awesomebox.tex │ ├── footnotes.tex │ ├── inline_code.tex │ ├── lists.tex │ ├── packages.tex │ ├── quote.tex │ └── titles.tex ├── highlight │ ├── bash.xml │ └── pygments.theme ├── images │ ├── another_big_cover.jpg │ └── big_cover.jpg ├── metadata.yml ├── mouseless │ ├── Makefile │ ├── README.md │ ├── chapters │ │ └── README.md │ ├── fonts │ │ ├── Merriweather-Bold.ttf │ │ ├── Merriweather-Italic.ttf │ │ ├── Merriweather-Light.ttf │ │ └── Merriweather-Regular.ttf │ ├── headers │ │ ├── awesomebox.tex │ │ ├── footnotes.tex │ │ ├── inline_code.tex │ │ ├── lists.tex │ │ ├── packages.tex │ │ ├── quote.tex │ │ └── titles.tex │ ├── highlight │ │ ├── bash.xml │ │ └── pygments.theme │ ├── images │ │ ├── another_big_cover.jpg │ │ └── big_cover.jpg │ ├── metadata.yml │ ├── others │ │ ├── cover.tex │ │ └── empty-file │ ├── styles.css │ └── template │ │ ├── default.html │ │ └── default.latex ├── others │ ├── cover.tex │ └── empty-file ├── styles.css └── template │ ├── default.html │ └── default.latex ├── guide-sed └── nginx.conf ├── neovim-treesitter ├── colors │ └── mycolorscheme.vim ├── example.lua ├── grammar.json ├── parser.c ├── parser │ └── lua.so ├── queries │ └── lua │ │ └── highlights.scm └── scanner.c ├── regular-expression-basics-vim-grep └── example.html └── vim-regular-expression-in-depth └── example.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/README.md -------------------------------------------------------------------------------- /guide-find/mouseless/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/Makefile -------------------------------------------------------------------------------- /guide-find/mouseless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/README.md -------------------------------------------------------------------------------- /guide-find/mouseless/chapters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/chapters/README.md -------------------------------------------------------------------------------- /guide-find/mouseless/fonts/Merriweather-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/fonts/Merriweather-Bold.ttf -------------------------------------------------------------------------------- /guide-find/mouseless/fonts/Merriweather-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/fonts/Merriweather-Italic.ttf -------------------------------------------------------------------------------- /guide-find/mouseless/fonts/Merriweather-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/fonts/Merriweather-Light.ttf -------------------------------------------------------------------------------- /guide-find/mouseless/fonts/Merriweather-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/fonts/Merriweather-Regular.ttf -------------------------------------------------------------------------------- /guide-find/mouseless/headers/awesomebox.tex: -------------------------------------------------------------------------------- 1 | \usepackage{awesomebox} 2 | -------------------------------------------------------------------------------- /guide-find/mouseless/headers/footnotes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/headers/footnotes.tex -------------------------------------------------------------------------------- /guide-find/mouseless/headers/inline_code.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/headers/inline_code.tex -------------------------------------------------------------------------------- /guide-find/mouseless/headers/lists.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/headers/lists.tex -------------------------------------------------------------------------------- /guide-find/mouseless/headers/packages.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/headers/packages.tex -------------------------------------------------------------------------------- /guide-find/mouseless/headers/quote.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/headers/quote.tex -------------------------------------------------------------------------------- /guide-find/mouseless/headers/titles.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/headers/titles.tex -------------------------------------------------------------------------------- /guide-find/mouseless/highlight/bash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/highlight/bash.xml -------------------------------------------------------------------------------- /guide-find/mouseless/highlight/pygments.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/highlight/pygments.theme -------------------------------------------------------------------------------- /guide-find/mouseless/images/another_big_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/images/another_big_cover.jpg -------------------------------------------------------------------------------- /guide-find/mouseless/images/big_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/images/big_cover.jpg -------------------------------------------------------------------------------- /guide-find/mouseless/metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/metadata.yml -------------------------------------------------------------------------------- /guide-find/mouseless/others/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/others/cover.tex -------------------------------------------------------------------------------- /guide-find/mouseless/others/empty-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /guide-find/mouseless/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/styles.css -------------------------------------------------------------------------------- /guide-find/mouseless/template/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/template/default.html -------------------------------------------------------------------------------- /guide-find/mouseless/template/default.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-find/mouseless/template/default.latex -------------------------------------------------------------------------------- /guide-fzf-git/fzf_git_branches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf-git/fzf_git_branches.sh -------------------------------------------------------------------------------- /guide-fzf-git/fzf_git_commits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf-git/fzf_git_commits.sh -------------------------------------------------------------------------------- /guide-fzf-git/fzf_git_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf-git/fzf_git_files.sh -------------------------------------------------------------------------------- /guide-fzf-git/git/fzf_1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf-git/git/fzf_1.sh -------------------------------------------------------------------------------- /guide-fzf-git/git/fzf_2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf-git/git/fzf_2.sh -------------------------------------------------------------------------------- /guide-fzf-git/git/fzf_3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf-git/git/fzf_3.sh -------------------------------------------------------------------------------- /guide-fzf-git/git/fzf_4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf-git/git/fzf_4.sh -------------------------------------------------------------------------------- /guide-fzf-git/git/fzf_5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf-git/git/fzf_5.sh -------------------------------------------------------------------------------- /guide-fzf/explorer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/explorer.sh -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/Makefile -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/README.md -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/chapters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/chapters/README.md -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/fonts/Merriweather-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/fonts/Merriweather-Bold.ttf -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/fonts/Merriweather-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/fonts/Merriweather-Italic.ttf -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/fonts/Merriweather-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/fonts/Merriweather-Light.ttf -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/fonts/Merriweather-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/fonts/Merriweather-Regular.ttf -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/headers/awesomebox.tex: -------------------------------------------------------------------------------- 1 | \usepackage{awesomebox} 2 | -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/headers/footnotes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/headers/footnotes.tex -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/headers/inline_code.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/headers/inline_code.tex -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/headers/lists.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/headers/lists.tex -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/headers/packages.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/headers/packages.tex -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/headers/quote.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/headers/quote.tex -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/headers/titles.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/headers/titles.tex -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/highlight/bash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/highlight/bash.xml -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/highlight/pygments.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/highlight/pygments.theme -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/images/big_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/images/big_cover.jpg -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/metadata.yml -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/others/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/others/cover.tex -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/styles.css -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/template/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/template/default.html -------------------------------------------------------------------------------- /guide-fzf/mouseless-book-behind-scene/template/default.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-fzf/mouseless-book-behind-scene/template/default.latex -------------------------------------------------------------------------------- /guide-grep/.randomignorefile: -------------------------------------------------------------------------------- 1 | styles.css 2 | -------------------------------------------------------------------------------- /guide-grep/.rgignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /guide-grep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/Makefile -------------------------------------------------------------------------------- /guide-grep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/README.md -------------------------------------------------------------------------------- /guide-grep/chapters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/chapters/README.md -------------------------------------------------------------------------------- /guide-grep/fonts/Merriweather-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/fonts/Merriweather-Bold.ttf -------------------------------------------------------------------------------- /guide-grep/fonts/Merriweather-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/fonts/Merriweather-Italic.ttf -------------------------------------------------------------------------------- /guide-grep/fonts/Merriweather-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/fonts/Merriweather-Light.ttf -------------------------------------------------------------------------------- /guide-grep/fonts/Merriweather-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/fonts/Merriweather-Regular.ttf -------------------------------------------------------------------------------- /guide-grep/headers/awesomebox.tex: -------------------------------------------------------------------------------- 1 | \usepackage{awesomebox} 2 | -------------------------------------------------------------------------------- /guide-grep/headers/footnotes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/headers/footnotes.tex -------------------------------------------------------------------------------- /guide-grep/headers/inline_code.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/headers/inline_code.tex -------------------------------------------------------------------------------- /guide-grep/headers/lists.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/headers/lists.tex -------------------------------------------------------------------------------- /guide-grep/headers/packages.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/headers/packages.tex -------------------------------------------------------------------------------- /guide-grep/headers/quote.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/headers/quote.tex -------------------------------------------------------------------------------- /guide-grep/headers/titles.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/headers/titles.tex -------------------------------------------------------------------------------- /guide-grep/highlight/bash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/highlight/bash.xml -------------------------------------------------------------------------------- /guide-grep/highlight/pygments.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/highlight/pygments.theme -------------------------------------------------------------------------------- /guide-grep/images/another_big_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/images/another_big_cover.jpg -------------------------------------------------------------------------------- /guide-grep/images/big_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/images/big_cover.jpg -------------------------------------------------------------------------------- /guide-grep/metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/metadata.yml -------------------------------------------------------------------------------- /guide-grep/mouseless/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/Makefile -------------------------------------------------------------------------------- /guide-grep/mouseless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/README.md -------------------------------------------------------------------------------- /guide-grep/mouseless/chapters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/chapters/README.md -------------------------------------------------------------------------------- /guide-grep/mouseless/fonts/Merriweather-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/fonts/Merriweather-Bold.ttf -------------------------------------------------------------------------------- /guide-grep/mouseless/fonts/Merriweather-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/fonts/Merriweather-Italic.ttf -------------------------------------------------------------------------------- /guide-grep/mouseless/fonts/Merriweather-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/fonts/Merriweather-Light.ttf -------------------------------------------------------------------------------- /guide-grep/mouseless/fonts/Merriweather-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/fonts/Merriweather-Regular.ttf -------------------------------------------------------------------------------- /guide-grep/mouseless/headers/awesomebox.tex: -------------------------------------------------------------------------------- 1 | \usepackage{awesomebox} 2 | -------------------------------------------------------------------------------- /guide-grep/mouseless/headers/footnotes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/headers/footnotes.tex -------------------------------------------------------------------------------- /guide-grep/mouseless/headers/inline_code.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/headers/inline_code.tex -------------------------------------------------------------------------------- /guide-grep/mouseless/headers/lists.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/headers/lists.tex -------------------------------------------------------------------------------- /guide-grep/mouseless/headers/packages.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/headers/packages.tex -------------------------------------------------------------------------------- /guide-grep/mouseless/headers/quote.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/headers/quote.tex -------------------------------------------------------------------------------- /guide-grep/mouseless/headers/titles.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/headers/titles.tex -------------------------------------------------------------------------------- /guide-grep/mouseless/highlight/bash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/highlight/bash.xml -------------------------------------------------------------------------------- /guide-grep/mouseless/highlight/pygments.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/highlight/pygments.theme -------------------------------------------------------------------------------- /guide-grep/mouseless/images/another_big_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/images/another_big_cover.jpg -------------------------------------------------------------------------------- /guide-grep/mouseless/images/big_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/images/big_cover.jpg -------------------------------------------------------------------------------- /guide-grep/mouseless/metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/metadata.yml -------------------------------------------------------------------------------- /guide-grep/mouseless/others/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/others/cover.tex -------------------------------------------------------------------------------- /guide-grep/mouseless/others/empty-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /guide-grep/mouseless/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/styles.css -------------------------------------------------------------------------------- /guide-grep/mouseless/template/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/template/default.html -------------------------------------------------------------------------------- /guide-grep/mouseless/template/default.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/mouseless/template/default.latex -------------------------------------------------------------------------------- /guide-grep/others/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/others/cover.tex -------------------------------------------------------------------------------- /guide-grep/others/empty-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /guide-grep/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/styles.css -------------------------------------------------------------------------------- /guide-grep/template/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/template/default.html -------------------------------------------------------------------------------- /guide-grep/template/default.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-grep/template/default.latex -------------------------------------------------------------------------------- /guide-sed/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/guide-sed/nginx.conf -------------------------------------------------------------------------------- /neovim-treesitter/colors/mycolorscheme.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/neovim-treesitter/colors/mycolorscheme.vim -------------------------------------------------------------------------------- /neovim-treesitter/example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/neovim-treesitter/example.lua -------------------------------------------------------------------------------- /neovim-treesitter/grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/neovim-treesitter/grammar.json -------------------------------------------------------------------------------- /neovim-treesitter/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/neovim-treesitter/parser.c -------------------------------------------------------------------------------- /neovim-treesitter/parser/lua.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/neovim-treesitter/parser/lua.so -------------------------------------------------------------------------------- /neovim-treesitter/queries/lua/highlights.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/neovim-treesitter/queries/lua/highlights.scm -------------------------------------------------------------------------------- /neovim-treesitter/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/neovim-treesitter/scanner.c -------------------------------------------------------------------------------- /regular-expression-basics-vim-grep/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/regular-expression-basics-vim-grep/example.html -------------------------------------------------------------------------------- /vim-regular-expression-in-depth/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phantas0s/the_valuable_dev_companion/HEAD/vim-regular-expression-in-depth/example.html --------------------------------------------------------------------------------