gitextract___umaoih/ ├── .github/ │ ├── CONTRIBUTING.md │ ├── CONTRIBUTION_TEMPLATE.md │ ├── ISSUE_TEMPLATE.md │ └── workflows/ │ ├── links.yml │ └── test.yml ├── .gitignore ├── .markdownlint.json ├── ANALYTICS_SETUP.md ├── LICENSE ├── Makefile ├── README.md ├── docs/ │ ├── apps/ │ │ ├── index.md │ │ ├── octave.md │ │ └── settings.md │ ├── bash-completion.md │ ├── contributors.md │ ├── cpp.md │ ├── docker/ │ │ ├── index.md │ │ ├── tips-and-tricks.md │ │ └── useful-commands.md │ ├── emacs.md │ ├── git/ │ │ ├── gitignore.md │ │ └── index.md │ ├── go.md │ ├── heroku.md │ ├── homebrew/ │ │ ├── cask.md │ │ ├── index.md │ │ └── usage.md │ ├── intro.md │ ├── iterm/ │ │ ├── ack.md │ │ ├── fzf.md │ │ ├── index.md │ │ ├── tree.md │ │ └── zsh.md │ ├── java/ │ │ ├── index.md │ │ └── sdkman.md │ ├── jetbrains-ides.md │ ├── latex.md │ ├── mysql.md │ ├── nodejs.md │ ├── postgresql.md │ ├── python/ │ │ ├── index.md │ │ ├── ipython.md │ │ ├── numpy.md │ │ ├── pip.md │ │ └── virtualenv.md │ ├── references.md │ ├── ruby/ │ │ ├── index.md │ │ └── rubygems.md │ ├── rust.md │ ├── scala.md │ ├── security.md │ ├── sublime-text/ │ │ ├── index.md │ │ ├── packages.md │ │ ├── plugins.md │ │ ├── preferences.md │ │ └── sublime-linter.md │ ├── system-preferences.md │ ├── vagrant.md │ ├── vim.md │ ├── visual-studio-code.md │ └── xcode.md ├── docusaurus.config.ts ├── package.json ├── scripts/ │ ├── generate_contributors.js │ └── publish_docusaurus.sh ├── sidebars.ts ├── src/ │ ├── components/ │ │ └── HomepageFeatures/ │ │ ├── index.tsx │ │ └── styles.module.css │ ├── css/ │ │ └── custom.css │ └── pages/ │ └── index.module.css ├── static/ │ └── .nojekyll └── tsconfig.json