Compare commits

...

4 Commits

Author SHA1 Message Date
Andrea Blankenstijn b9670266c6 wip ideas graphwip ideas graphwip ideas graphwip ideas graphwip ideas
graphwip ideas graphwip ideas graphwip ideas graphwip ideas graph
2022-07-20 20:48:11 +02:00
Andrea Blankenstijn c07dbf8b8f wip ideas for power user league 2022-07-20 20:03:06 +02:00
Andrea Blankenstijn 5a8371c447 Merge branch 'master' of git.disroot.org:soratobuneko/notes into mac42 2022-07-20 17:49:15 +02:00
Andrea Blankenstijn 3b0728eb96 macos info command 2022-07-11 15:29:28 +02:00
2 changed files with 74 additions and 0 deletions

View File

@ -0,0 +1,72 @@
digraph G {
layout=fdp
graph [colorscheme=accent4, style=rounded]
edge [arrowhead=vee]
node [fillcolor=white, style=filled]
subgraph clusterBasics {
graph [label="Basics"]
subgraph clusterShell {
graph [bgcolor=1, label="Shell Basics"]
subgraph clusterShellTools {
label="Tools"
{"grep" "sed" "tmux" "find" "regular expressions"}
}
subgraph clusterShellUsage {
graph [label=Basics]
{"Command History" Shortcuts Autocompletion Environment
Configuration}
}
}
subgraph clusterDev {
graph [bgcolor=2, label="Development tools"]
{ Make "C/C++ compiler" }
subgraph clusterGit {
graph [label="Git"]
{"merge conflicts" branches remotes}
}
}
subgraph clusterVim {
graph [bgcolor=3, label="Vanilla Vim/Neovim"]
{Mouvements, Modes, Commands, Shortcuts, Configuration}
}
subgraph clusterLinux {
graph [bgcolor=4, label=Linux]
Standards -> {FHS XDG}
}
}
subgraph clusterAdvanced {
subgraph clusterAdvancedShell {
graph [bgcolor=1, label="Shell Advanced"]
{"flow control" functions "…"}
}
subgraph clusterAdvancedDev {
graph [bgcolor=2, label="Advanced development tools"]
subgraph CodeTools {
graph [label="Code Tools"]
{"static analysis" "linting" "debugging"}
}
subgraph clusterAdvancedGit {
graph [label=Git]
{"git-lfs" "cherry-pick" "hunks"}
}
}
subgraph clusterAdvancedVim {
graph [bgcolor=3, label="Advanced Vim/Neovim"]
vimplugins [label=Plugins]
vimplugins -> { "Code Completion" "Linting" "Git integration"
"Refactoring" "Debugger integration" "…" "Write your own plugin!"}
}
}
root [label="From n00b to power user", shape=diamond, center=true]
root -> clusterBasics
clusterBasics -> clusterAdvanced
}

2
macos/commands.md Normal file
View File

@ -0,0 +1,2 @@
system_profiler command Show Apple hardware and software configuration.
sw_vers command Show Mac OS X operating system version.