gitextract_e4plvajh/ ├── .dockerignore ├── .github/ │ └── workflows/ │ ├── tests-macos.yml │ └── tests-ubuntu.yml ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── bin/ │ ├── app.py │ ├── clean_cache.py │ ├── release.py │ └── srv.py ├── doc/ │ ├── README-ja.md │ └── standalone.md ├── docker-compose.debug.yml ├── docker-compose.yml ├── etc/ │ └── config.yaml ├── lib/ │ ├── adapter/ │ │ ├── __init__.py │ │ ├── adapter.py │ │ ├── cheat_cheat.py │ │ ├── cheat_sheets.py │ │ ├── cmd.py │ │ ├── common.py │ │ ├── git_adapter.py │ │ ├── internal.py │ │ ├── latenz.py │ │ ├── learnxiny.py │ │ ├── question.py │ │ ├── rosetta.py │ │ ├── tldr.py │ │ └── upstream.py │ ├── buttons.py │ ├── cache.py │ ├── cheat_wrapper.py │ ├── cheat_wrapper_test.py │ ├── config.py │ ├── fetch.py │ ├── fmt/ │ │ ├── __init__.py │ │ ├── comments.py │ │ ├── internal.py │ │ └── markdown.py │ ├── frontend/ │ │ ├── __init__.py │ │ ├── ansi.py │ │ └── html.py │ ├── globals.py │ ├── languages_data.py │ ├── limits.py │ ├── options.py │ ├── panela/ │ │ ├── colors.json │ │ ├── colors.py │ │ └── panela_colors.py │ ├── post.py │ ├── postprocessing.py │ ├── routing.py │ ├── search.py │ ├── standalone.py │ └── stateful_queries.py ├── requirements.txt ├── share/ │ ├── adapters/ │ │ ├── chmod.grc │ │ ├── chmod.sh │ │ ├── oeis.sh │ │ └── rfc.sh │ ├── ansi2html.sh │ ├── bash_completion.txt │ ├── cht.sh.txt │ ├── emacs-ivy.txt │ ├── emacs.txt │ ├── firstpage-v1.txt │ ├── firstpage-v2.pnl │ ├── firstpage-v2.txt │ ├── fish.txt │ ├── help.txt │ ├── intro.txt │ ├── post.txt │ ├── scripts/ │ │ ├── cacheCleanup.go │ │ └── remove-from-cache.sh │ ├── static/ │ │ ├── 1.html │ │ ├── malformed-response.html │ │ ├── opensearch.xml │ │ └── style.css │ ├── styles-demo.txt │ ├── vim/ │ │ └── .vimrc │ ├── vim.txt │ └── zsh.txt └── tests/ ├── README.md ├── results/ │ ├── 1 │ ├── 10 │ ├── 11 │ ├── 12 │ ├── 13 │ ├── 14 │ ├── 15 │ ├── 16 │ ├── 17 │ ├── 18 │ ├── 19 │ ├── 2 │ ├── 20 │ ├── 21 │ ├── 22 │ ├── 23 │ ├── 24 │ ├── 25 │ ├── 3 │ ├── 4 │ ├── 5 │ ├── 6 │ ├── 7 │ ├── 8 │ └── 9 ├── run-tests.sh └── tests.txt