-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
122 lines (103 loc) · 4.43 KB
/
mkdocs.yml
File metadata and controls
122 lines (103 loc) · 4.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
site_name: Dev How To
theme:
name: material
palette:
accent: indigo
custom_dir: overrides
features:
- content.code.annotate
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.top
- navigation.indexes
extra_css:
- stylesheets/extra.css
markdown_extensions:
- meta
- attr_list
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
- toc:
permalink: true
baselevel: 1
separator: '-'
- admonition
- plantuml_markdown:
server: http://www.plantuml.com/plantuml
extra:
generator: false
social:
- icon: fontawesome/brands/gitlab
link: https://gitlab.com/fernandobasso
######################################################################
######################## Site navigation and pages ###################
######################################################################
nav:
- Home: index.md
- Command Line and Shell Scripting:
- Shell Redirection: shell/shell-redirection.md
- tar: shell/tar.md
- unzip: shell/unzip.md
- grep: shell/grep.md
- Useful SSH Commands: shell/ssh-useful-commands.md
- Git:
- Git Add: shell/git/git-add.md
- Programming Languages:
- TypeScript:
- programming-languages/typescript/index.md
- Union Types: programming-languages/typescript/union-types.md
- infer keyword: programming-languages/typescript/infer.md
- Functions: programming-languages/typescript/functions.md
- Ted Navard Advanced TypeScript (video notes):
- Intro: programming-languages/typescript/ted-neward-advanced-typescript/00-intro.md
- Type Compatibility: programming-languages/typescript/ted-neward-advanced-typescript/01-type-compatibility.md
- Simple and Compound Types: programming-languages/typescript/ted-neward-advanced-typescript/02-simple-compound-types.md
- Decorators: programming-languages/typescript/ted-neward-advanced-typescript/03-decorators.md
- Symbols: programming-languages/typescript/ted-neward-advanced-typescript/04-symbols.md
- Iterators: programming-languages/typescript/ted-neward-advanced-typescript/05-iterators.md
- Generators: programming-languages/typescript/ted-neward-advanced-typescript/06-generators.md
- Generics: programming-languages/typescript/ted-neward-advanced-typescript/07-generics.md
- Quizzes:
- programming-languages/typescript/quizzes/index.md
- Basic Types: programming-languages/typescript/quizzes/basic-types.md
- Composite Types: programming-languages/typescript/quizzes/composite-types.md
- Type Assertions: programming-languages/typescript/quizzes/type-assertions.md
- Functions: programming-languages/typescript/quizzes/functions.md
- Functional Programming:
- PureScript:
- Intro: functional-programming/purescript/intro.md
- REPL: functional-programming/purescript/repl.md
- Type Signatures: functional-programming/purescript/type-signatures.md
- Types:
- functional-programming/purescript/types/index.md
- Data Types: functional-programming/purescript/types/data-types.md
- Number Types: functional-programming/purescript/types/number-types.md
- Char and String Types: functional-programming/purescript/types/char-string-types.md
- Functions: functional-programming/purescript/functions.md
- Functions Explained:
- functional-programming/purescript/functions-explained/index.md
- const: functional-programming/purescript/functions-explained/const.md
- Algorithms and Data Structures:
- Exercism:
- Intro: algorithms-data-structures/exercism/index.md
- TypeScript:
- Two-Fer: algorithms-data-structures/exercism/typescript/two-fer.md
- Resistor Color Duo: algorithms-data-structures/exercism/typescript/resistor-color-duo.md
- Resistor Color Trio: algorithms-data-structures/exercism/typescript/resistor-color-trio.md
- Misc:
- Text Editors:
- Vim:
- Vim Useful Tips: misc/text-editors/vim/useful-tips.md
- Vim Gotchas: misc/text-editors/vim/gotchas.md
- CoC and LSP: misc/text-editors/vim/coc-lsp.md
- Linux:
- Xfce Power User Tips: misc/linux/xfce-power-tips.md
- PlantUML Diagrams:
- Sequence Diagrams: misc/plantuml-diagrams/sequence.md