gitextract_y8p6tgzy/ ├── .github/ │ └── workflows/ │ ├── build.yml │ └── jekyll-gh-pages.yml ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── CppCoreGuidelines.md ├── LICENSE ├── README.md ├── SECURITY.md ├── _config.yml ├── _includes/ │ ├── head.html │ └── sidebar.html ├── _layouts/ │ └── default.html ├── docs/ │ ├── dyn_array.md │ └── gsl-intro.md ├── index.html ├── params.json ├── public/ │ └── css/ │ ├── custom.css │ ├── hyde.css │ └── poole.css ├── scripts/ │ ├── Makefile │ ├── hunspell/ │ │ ├── en_US.aff │ │ ├── en_US.dic │ │ └── isocpp.dic │ ├── nodejs/ │ │ ├── package.json │ │ └── remark/ │ │ └── .remarkrc │ └── python/ │ ├── Makefile.in │ ├── cpplint.py │ ├── cpplint_wrap.py │ └── md-split.py └── talks/ └── README.md