├── .gitignore ├── .python-version ├── .readthedocs.yaml ├── Makefile ├── android ├── index.rst └── nexus6p.rst ├── ansible ├── background.rst ├── block.rst ├── cheatsheet.rst ├── conditionals.rst ├── configuration.rst ├── facts.rst ├── galaxy.rst ├── hostpatterns.rst ├── index.rst ├── inventory.rst ├── invoking.rst ├── loops.rst ├── playbook.rst ├── role.rst ├── secrets.rst ├── synchronize.rst ├── tags.rst ├── task.rst ├── variables.rst └── vault_yaml.rst ├── aws ├── index.rst ├── s3.rst └── subaccounts.rst ├── beancount.rst ├── bgdev.sh ├── booting.rst ├── bootstrap.rst ├── browser_extensions.rst ├── cheat_dash_feed.xml ├── conf.py ├── cookiecutter.rst ├── debian.rst ├── debian_repo.rst ├── denon.rst ├── diet.rst ├── django ├── admin.rst ├── apps.rst ├── celery.rst ├── celery_starting.rst ├── compressor.rst ├── data.rst ├── database.rst ├── ddt.rst ├── django_celery_beat.rst ├── dokku.rst ├── dokku_admin.rst ├── dokku_files.rst ├── dokku_postgres.rst ├── dokku_ssl.rst ├── drf_blog_post.rst ├── drf_serializers.rst ├── dump_export.rst ├── eb.rst ├── email.rst ├── fabric.rst ├── filter.rst ├── forms.rst ├── home.rst ├── index.rst ├── jinja.rst ├── logging.rst ├── login.rst ├── middleware.rst ├── migrations.rst ├── nginx.rst ├── permissions.rst ├── pycharm.rst ├── queries.rst ├── security.rst ├── sentry.rst ├── settings.rst ├── static_files.rst ├── templates.rst ├── test.rst ├── translation.rst ├── urls.rst └── vue.rst ├── docker.rst ├── elasticsearch ├── analysis.rst ├── index.rst ├── indices.rst └── mappings.rst ├── elixir.rst ├── esp2866.rst ├── freebsd ├── index.rst ├── jails.rst └── packages.rst ├── git.rst ├── gitolite.rst ├── go ├── database.rst ├── index.rst ├── restclient.rst └── webserver.rst ├── google.rst ├── gulp.rst ├── haproxy.rst ├── haskell.rst ├── i3.rst ├── index.rst ├── ipv6.rst ├── javascript ├── builtins.rst ├── dom.rst ├── events.rst ├── index.rst ├── nvm_and_npm.rst ├── promises.rst └── syntax.rst ├── jira.rst ├── kobo.rst ├── kubernetes ├── aws.rst ├── dashboard.rst ├── digital_ocean.rst ├── docker_registry.rst ├── gke.rst ├── helm.rst ├── index.rst ├── kubectl.rst ├── microk8s.rst └── minikube.rst ├── linux.rst ├── lirc.rst ├── logitech_harmony ├── devices.rst └── index.rst ├── lvm.rst ├── lxde.rst ├── mercurial.rst ├── mikrotik_openwrt.rst ├── mpd.rst ├── mysql.rst ├── netgear_wndr_3800.rst ├── nginx.rst ├── nixos ├── index.rst ├── nix_lang.rst └── zfs_install.rst ├── openssl.rst ├── openwrt.rst ├── org-mode.rst ├── postfix.rst ├── postgres.rst ├── python ├── async.rst ├── asyncio.rst ├── beautifulsoup.rst ├── devenv.rst ├── devpi.rst ├── fixing_style.rst ├── gitpython.rst ├── index.rst ├── mock.rst ├── packaging.rst ├── pip.rst ├── pipenv.rst ├── piptools.rst ├── pyenv.rst ├── six.rst ├── timezones.rst ├── timezones_blogpost.rst ├── tox.rst ├── versions.rst ├── virtualenv.rst └── xml.rst ├── raspberrypi ├── index.rst └── usbdrive.rst ├── release.rst ├── requirements.in ├── requirements.txt ├── restic.rst ├── roku.rst ├── rst.rst ├── rsync.rst ├── salt.rst ├── shell.rst ├── socat.rst ├── sonos.rst ├── sphinx-cheatsheet-back-full.png ├── sphinx-cheatsheet-front-full.png ├── sso_login1.msc ├── sso_login1.png ├── sso_login1_inline.png ├── sso_login2.msc ├── sso_login2.png ├── sso_login2_inline.png ├── sso_magic.rst ├── systemd.rst ├── tasmota.rst ├── tmux.rst ├── travisci.rst ├── ubuntu.rst ├── unifi.rst ├── video.rst ├── virtualbox.rst ├── vue.rst ├── walkthroughs ├── index.rst └── legacy2.rst ├── x11.rst ├── yaml.rst └── zfs.rst /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.10.4 2 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/Makefile -------------------------------------------------------------------------------- /android/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/android/index.rst -------------------------------------------------------------------------------- /android/nexus6p.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/android/nexus6p.rst -------------------------------------------------------------------------------- /ansible/background.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/background.rst -------------------------------------------------------------------------------- /ansible/block.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/block.rst -------------------------------------------------------------------------------- /ansible/cheatsheet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/cheatsheet.rst -------------------------------------------------------------------------------- /ansible/conditionals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/conditionals.rst -------------------------------------------------------------------------------- /ansible/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/configuration.rst -------------------------------------------------------------------------------- /ansible/facts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/facts.rst -------------------------------------------------------------------------------- /ansible/galaxy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/galaxy.rst -------------------------------------------------------------------------------- /ansible/hostpatterns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/hostpatterns.rst -------------------------------------------------------------------------------- /ansible/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/index.rst -------------------------------------------------------------------------------- /ansible/inventory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/inventory.rst -------------------------------------------------------------------------------- /ansible/invoking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/invoking.rst -------------------------------------------------------------------------------- /ansible/loops.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/loops.rst -------------------------------------------------------------------------------- /ansible/playbook.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/playbook.rst -------------------------------------------------------------------------------- /ansible/role.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/role.rst -------------------------------------------------------------------------------- /ansible/secrets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/secrets.rst -------------------------------------------------------------------------------- /ansible/synchronize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/synchronize.rst -------------------------------------------------------------------------------- /ansible/tags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/tags.rst -------------------------------------------------------------------------------- /ansible/task.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/task.rst -------------------------------------------------------------------------------- /ansible/variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/variables.rst -------------------------------------------------------------------------------- /ansible/vault_yaml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ansible/vault_yaml.rst -------------------------------------------------------------------------------- /aws/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/aws/index.rst -------------------------------------------------------------------------------- /aws/s3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/aws/s3.rst -------------------------------------------------------------------------------- /aws/subaccounts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/aws/subaccounts.rst -------------------------------------------------------------------------------- /beancount.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/beancount.rst -------------------------------------------------------------------------------- /bgdev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/bgdev.sh -------------------------------------------------------------------------------- /booting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/booting.rst -------------------------------------------------------------------------------- /bootstrap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/bootstrap.rst -------------------------------------------------------------------------------- /browser_extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/browser_extensions.rst -------------------------------------------------------------------------------- /cheat_dash_feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/cheat_dash_feed.xml -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/conf.py -------------------------------------------------------------------------------- /cookiecutter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/cookiecutter.rst -------------------------------------------------------------------------------- /debian.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/debian.rst -------------------------------------------------------------------------------- /debian_repo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/debian_repo.rst -------------------------------------------------------------------------------- /denon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/denon.rst -------------------------------------------------------------------------------- /diet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/diet.rst -------------------------------------------------------------------------------- /django/admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/admin.rst -------------------------------------------------------------------------------- /django/apps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/apps.rst -------------------------------------------------------------------------------- /django/celery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/celery.rst -------------------------------------------------------------------------------- /django/celery_starting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/celery_starting.rst -------------------------------------------------------------------------------- /django/compressor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/compressor.rst -------------------------------------------------------------------------------- /django/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/data.rst -------------------------------------------------------------------------------- /django/database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/database.rst -------------------------------------------------------------------------------- /django/ddt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/ddt.rst -------------------------------------------------------------------------------- /django/django_celery_beat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/django_celery_beat.rst -------------------------------------------------------------------------------- /django/dokku.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/dokku.rst -------------------------------------------------------------------------------- /django/dokku_admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/dokku_admin.rst -------------------------------------------------------------------------------- /django/dokku_files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/dokku_files.rst -------------------------------------------------------------------------------- /django/dokku_postgres.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/dokku_postgres.rst -------------------------------------------------------------------------------- /django/dokku_ssl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/dokku_ssl.rst -------------------------------------------------------------------------------- /django/drf_blog_post.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/drf_blog_post.rst -------------------------------------------------------------------------------- /django/drf_serializers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/drf_serializers.rst -------------------------------------------------------------------------------- /django/dump_export.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/dump_export.rst -------------------------------------------------------------------------------- /django/eb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/eb.rst -------------------------------------------------------------------------------- /django/email.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/email.rst -------------------------------------------------------------------------------- /django/fabric.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/fabric.rst -------------------------------------------------------------------------------- /django/filter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/filter.rst -------------------------------------------------------------------------------- /django/forms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/forms.rst -------------------------------------------------------------------------------- /django/home.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/home.rst -------------------------------------------------------------------------------- /django/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/index.rst -------------------------------------------------------------------------------- /django/jinja.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/jinja.rst -------------------------------------------------------------------------------- /django/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/logging.rst -------------------------------------------------------------------------------- /django/login.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/login.rst -------------------------------------------------------------------------------- /django/middleware.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/middleware.rst -------------------------------------------------------------------------------- /django/migrations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/migrations.rst -------------------------------------------------------------------------------- /django/nginx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/nginx.rst -------------------------------------------------------------------------------- /django/permissions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/permissions.rst -------------------------------------------------------------------------------- /django/pycharm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/pycharm.rst -------------------------------------------------------------------------------- /django/queries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/queries.rst -------------------------------------------------------------------------------- /django/security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/security.rst -------------------------------------------------------------------------------- /django/sentry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/sentry.rst -------------------------------------------------------------------------------- /django/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/settings.rst -------------------------------------------------------------------------------- /django/static_files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/static_files.rst -------------------------------------------------------------------------------- /django/templates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/templates.rst -------------------------------------------------------------------------------- /django/test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/test.rst -------------------------------------------------------------------------------- /django/translation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/translation.rst -------------------------------------------------------------------------------- /django/urls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/urls.rst -------------------------------------------------------------------------------- /django/vue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/django/vue.rst -------------------------------------------------------------------------------- /docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/docker.rst -------------------------------------------------------------------------------- /elasticsearch/analysis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/elasticsearch/analysis.rst -------------------------------------------------------------------------------- /elasticsearch/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/elasticsearch/index.rst -------------------------------------------------------------------------------- /elasticsearch/indices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/elasticsearch/indices.rst -------------------------------------------------------------------------------- /elasticsearch/mappings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/elasticsearch/mappings.rst -------------------------------------------------------------------------------- /elixir.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/elixir.rst -------------------------------------------------------------------------------- /esp2866.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/esp2866.rst -------------------------------------------------------------------------------- /freebsd/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/freebsd/index.rst -------------------------------------------------------------------------------- /freebsd/jails.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/freebsd/jails.rst -------------------------------------------------------------------------------- /freebsd/packages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/freebsd/packages.rst -------------------------------------------------------------------------------- /git.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/git.rst -------------------------------------------------------------------------------- /gitolite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/gitolite.rst -------------------------------------------------------------------------------- /go/database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/go/database.rst -------------------------------------------------------------------------------- /go/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/go/index.rst -------------------------------------------------------------------------------- /go/restclient.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/go/restclient.rst -------------------------------------------------------------------------------- /go/webserver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/go/webserver.rst -------------------------------------------------------------------------------- /google.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/google.rst -------------------------------------------------------------------------------- /gulp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/gulp.rst -------------------------------------------------------------------------------- /haproxy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/haproxy.rst -------------------------------------------------------------------------------- /haskell.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/haskell.rst -------------------------------------------------------------------------------- /i3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/i3.rst -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/index.rst -------------------------------------------------------------------------------- /ipv6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ipv6.rst -------------------------------------------------------------------------------- /javascript/builtins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/javascript/builtins.rst -------------------------------------------------------------------------------- /javascript/dom.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/javascript/dom.rst -------------------------------------------------------------------------------- /javascript/events.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/javascript/events.rst -------------------------------------------------------------------------------- /javascript/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/javascript/index.rst -------------------------------------------------------------------------------- /javascript/nvm_and_npm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/javascript/nvm_and_npm.rst -------------------------------------------------------------------------------- /javascript/promises.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/javascript/promises.rst -------------------------------------------------------------------------------- /javascript/syntax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/javascript/syntax.rst -------------------------------------------------------------------------------- /jira.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/jira.rst -------------------------------------------------------------------------------- /kobo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/kobo.rst -------------------------------------------------------------------------------- /kubernetes/aws.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/kubernetes/aws.rst -------------------------------------------------------------------------------- /kubernetes/dashboard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/kubernetes/dashboard.rst -------------------------------------------------------------------------------- /kubernetes/digital_ocean.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/kubernetes/digital_ocean.rst -------------------------------------------------------------------------------- /kubernetes/docker_registry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/kubernetes/docker_registry.rst -------------------------------------------------------------------------------- /kubernetes/gke.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/kubernetes/gke.rst -------------------------------------------------------------------------------- /kubernetes/helm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/kubernetes/helm.rst -------------------------------------------------------------------------------- /kubernetes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/kubernetes/index.rst -------------------------------------------------------------------------------- /kubernetes/kubectl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/kubernetes/kubectl.rst -------------------------------------------------------------------------------- /kubernetes/microk8s.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/kubernetes/microk8s.rst -------------------------------------------------------------------------------- /kubernetes/minikube.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/kubernetes/minikube.rst -------------------------------------------------------------------------------- /linux.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/linux.rst -------------------------------------------------------------------------------- /lirc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/lirc.rst -------------------------------------------------------------------------------- /logitech_harmony/devices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/logitech_harmony/devices.rst -------------------------------------------------------------------------------- /logitech_harmony/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/logitech_harmony/index.rst -------------------------------------------------------------------------------- /lvm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/lvm.rst -------------------------------------------------------------------------------- /lxde.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/lxde.rst -------------------------------------------------------------------------------- /mercurial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/mercurial.rst -------------------------------------------------------------------------------- /mikrotik_openwrt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/mikrotik_openwrt.rst -------------------------------------------------------------------------------- /mpd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/mpd.rst -------------------------------------------------------------------------------- /mysql.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/mysql.rst -------------------------------------------------------------------------------- /netgear_wndr_3800.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/netgear_wndr_3800.rst -------------------------------------------------------------------------------- /nginx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/nginx.rst -------------------------------------------------------------------------------- /nixos/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/nixos/index.rst -------------------------------------------------------------------------------- /nixos/nix_lang.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/nixos/nix_lang.rst -------------------------------------------------------------------------------- /nixos/zfs_install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/nixos/zfs_install.rst -------------------------------------------------------------------------------- /openssl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/openssl.rst -------------------------------------------------------------------------------- /openwrt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/openwrt.rst -------------------------------------------------------------------------------- /org-mode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/org-mode.rst -------------------------------------------------------------------------------- /postfix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/postfix.rst -------------------------------------------------------------------------------- /postgres.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/postgres.rst -------------------------------------------------------------------------------- /python/async.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/async.rst -------------------------------------------------------------------------------- /python/asyncio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/asyncio.rst -------------------------------------------------------------------------------- /python/beautifulsoup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/beautifulsoup.rst -------------------------------------------------------------------------------- /python/devenv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/devenv.rst -------------------------------------------------------------------------------- /python/devpi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/devpi.rst -------------------------------------------------------------------------------- /python/fixing_style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/fixing_style.rst -------------------------------------------------------------------------------- /python/gitpython.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/gitpython.rst -------------------------------------------------------------------------------- /python/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/index.rst -------------------------------------------------------------------------------- /python/mock.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/mock.rst -------------------------------------------------------------------------------- /python/packaging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/packaging.rst -------------------------------------------------------------------------------- /python/pip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/pip.rst -------------------------------------------------------------------------------- /python/pipenv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/pipenv.rst -------------------------------------------------------------------------------- /python/piptools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/piptools.rst -------------------------------------------------------------------------------- /python/pyenv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/pyenv.rst -------------------------------------------------------------------------------- /python/six.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/six.rst -------------------------------------------------------------------------------- /python/timezones.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/timezones.rst -------------------------------------------------------------------------------- /python/timezones_blogpost.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/timezones_blogpost.rst -------------------------------------------------------------------------------- /python/tox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/tox.rst -------------------------------------------------------------------------------- /python/versions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/versions.rst -------------------------------------------------------------------------------- /python/virtualenv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/virtualenv.rst -------------------------------------------------------------------------------- /python/xml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/python/xml.rst -------------------------------------------------------------------------------- /raspberrypi/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/raspberrypi/index.rst -------------------------------------------------------------------------------- /raspberrypi/usbdrive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/raspberrypi/usbdrive.rst -------------------------------------------------------------------------------- /release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/release.rst -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- 1 | alabaster 2 | Sphinx 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/requirements.txt -------------------------------------------------------------------------------- /restic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/restic.rst -------------------------------------------------------------------------------- /roku.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/roku.rst -------------------------------------------------------------------------------- /rst.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/rst.rst -------------------------------------------------------------------------------- /rsync.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/rsync.rst -------------------------------------------------------------------------------- /salt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/salt.rst -------------------------------------------------------------------------------- /shell.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/shell.rst -------------------------------------------------------------------------------- /socat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/socat.rst -------------------------------------------------------------------------------- /sonos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/sonos.rst -------------------------------------------------------------------------------- /sphinx-cheatsheet-back-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/sphinx-cheatsheet-back-full.png -------------------------------------------------------------------------------- /sphinx-cheatsheet-front-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/sphinx-cheatsheet-front-full.png -------------------------------------------------------------------------------- /sso_login1.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/sso_login1.msc -------------------------------------------------------------------------------- /sso_login1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/sso_login1.png -------------------------------------------------------------------------------- /sso_login1_inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/sso_login1_inline.png -------------------------------------------------------------------------------- /sso_login2.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/sso_login2.msc -------------------------------------------------------------------------------- /sso_login2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/sso_login2.png -------------------------------------------------------------------------------- /sso_login2_inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/sso_login2_inline.png -------------------------------------------------------------------------------- /sso_magic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/sso_magic.rst -------------------------------------------------------------------------------- /systemd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/systemd.rst -------------------------------------------------------------------------------- /tasmota.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/tasmota.rst -------------------------------------------------------------------------------- /tmux.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/tmux.rst -------------------------------------------------------------------------------- /travisci.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/travisci.rst -------------------------------------------------------------------------------- /ubuntu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/ubuntu.rst -------------------------------------------------------------------------------- /unifi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/unifi.rst -------------------------------------------------------------------------------- /video.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/video.rst -------------------------------------------------------------------------------- /virtualbox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/virtualbox.rst -------------------------------------------------------------------------------- /vue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/vue.rst -------------------------------------------------------------------------------- /walkthroughs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/walkthroughs/index.rst -------------------------------------------------------------------------------- /walkthroughs/legacy2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/walkthroughs/legacy2.rst -------------------------------------------------------------------------------- /x11.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/x11.rst -------------------------------------------------------------------------------- /yaml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/yaml.rst -------------------------------------------------------------------------------- /zfs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poirier/cheat/HEAD/zfs.rst --------------------------------------------------------------------------------