gitextract_gfrnrc45/ ├── .editorconfig ├── .github/ │ └── ISSUE_TEMPLATE/ │ └── translation.md ├── .gitignore ├── 404.html ├── CNAME ├── Gemfile ├── README.md ├── _2019/ │ ├── automation.md │ ├── backups.md │ ├── command-line.md │ ├── course-overview.md │ ├── data-wrangling.md │ ├── dotfiles.md │ ├── editors.md │ ├── files/ │ │ ├── example-data.xml │ │ └── example.c │ ├── index.html │ ├── machine-introspection.md │ ├── os-customization.md │ ├── package-management.md │ ├── program-introspection.md │ ├── remote-machines.md │ ├── security.md │ ├── shell.md │ ├── version-control.md │ ├── virtual-machines.md │ └── web.md ├── _2020/ │ ├── command-line.md │ ├── course-shell.md │ ├── data-wrangling.md │ ├── debugging-profiling.md │ ├── editors-notes.txt │ ├── editors.md │ ├── files/ │ │ ├── example-data.xml │ │ └── vimrc │ ├── index.html │ ├── metaprogramming.md │ ├── potpourri.md │ ├── qa.md │ ├── security.md │ ├── shell-tools.md │ └── version-control.md ├── _config.yml ├── _includes/ │ ├── head.html │ ├── nav.html │ ├── scaled_image.html │ ├── scaled_video.html │ └── video.html ├── _layouts/ │ ├── default.html │ ├── lecture.html │ ├── page.html │ └── redirect.html ├── about.md ├── index.md ├── lectures.html ├── license.md ├── robots.txt └── static/ ├── css/ │ ├── main.css │ └── syntax.css └── files/ ├── logger.py ├── sorts.py └── subtitles/ └── 2020/ ├── command-line.sbv ├── debugging-profiling.sbv ├── qa.sbv └── shell-tools.sbv