Add graph with Study Topics
This commit is contained in:
11
Makefile
Normal file
11
Makefile
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
NPM ?= `which npm`
|
||||||
|
MERMAID ?= `which mmdc`
|
||||||
|
RESOURCES_PATH ?= `pwd`/resources
|
||||||
|
|
||||||
|
.PHONY: build
|
||||||
|
build:
|
||||||
|
@$(MERMAID) -i $(RESOURCES_PATH)/topic-graph.mmd -o $(RESOURCES_PATH)/topic-graph.png
|
||||||
|
|
||||||
|
.PHONY: setup
|
||||||
|
setup:
|
||||||
|
@$(NPM) install -g mermaid.cli
|
||||||
@@ -1,9 +1,12 @@
|
|||||||
# 📚 Studies
|
# 📚 Studies
|
||||||
> Index for my study topics
|
> Index for my study topics
|
||||||
|
|
||||||
## 💻
|
<img src="resources/topic-graph.png" width="100%">
|
||||||
|
|
||||||
### Programming Languages
|
|
||||||
|
|
||||||
|
* Site Reliability Engineering
|
||||||
|
* Software Engineering
|
||||||
|
* Programming Languages
|
||||||
|
* Functional Programming Languages
|
||||||
* [Haskell From First Principles](https://github.com/marceloboeira/hffp)
|
* [Haskell From First Principles](https://github.com/marceloboeira/hffp)
|
||||||
|
* Systems Programming Languages
|
||||||
* [The Rust Programming Language](https://github.com/marceloboeira/trpl)
|
* [The Rust Programming Language](https://github.com/marceloboeira/trpl)
|
||||||
|
|||||||
14
resources/topic-graph.mmd
Normal file
14
resources/topic-graph.mmd
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
graph TD
|
||||||
|
SRE[Site Reliability Engineering]
|
||||||
|
|
||||||
|
SRE --> SW[Software Engineering]
|
||||||
|
SW --> PL[Programming Languages]
|
||||||
|
PL --> SysPL[Systems Programming Languages]
|
||||||
|
SysPL --> Rust
|
||||||
|
SysPL --> Go
|
||||||
|
PL --> ScrPL[Script Programming Languages]
|
||||||
|
ScrPL --> Ruby
|
||||||
|
ScrPL --> Python
|
||||||
|
PL --> FunPL[Functional Programming Languages]
|
||||||
|
FunPL --> Haskell
|
||||||
|
FunPL --> Lisp
|
||||||
BIN
resources/topic-graph.png
Normal file
BIN
resources/topic-graph.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 32 KiB |
Reference in New Issue
Block a user