├── Makefile ├── README.md ├── docs ├── de │ └── index.html ├── downloads │ ├── visidata-cheat-sheet.de.A4.pdf │ ├── visidata-cheat-sheet.de.letter.pdf │ ├── visidata-cheat-sheet.en.A4.pdf │ ├── visidata-cheat-sheet.en.letter.pdf │ ├── visidata-cheat-sheet.es.A4.pdf │ ├── visidata-cheat-sheet.es.letter.pdf │ ├── visidata-cheat-sheet.it.A4.pdf │ └── visidata-cheat-sheet.it.letter.pdf ├── en │ └── index.html ├── es │ └── index.html ├── index.html └── it │ └── index.html ├── input ├── cheat-sheet.yaml ├── metadata.yaml └── template.html ├── requirements.txt └── scripts ├── build.py └── uniquekeys.py /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/README.md -------------------------------------------------------------------------------- /docs/de/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/docs/de/index.html -------------------------------------------------------------------------------- /docs/downloads/visidata-cheat-sheet.de.A4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/docs/downloads/visidata-cheat-sheet.de.A4.pdf -------------------------------------------------------------------------------- /docs/downloads/visidata-cheat-sheet.de.letter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/docs/downloads/visidata-cheat-sheet.de.letter.pdf -------------------------------------------------------------------------------- /docs/downloads/visidata-cheat-sheet.en.A4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/docs/downloads/visidata-cheat-sheet.en.A4.pdf -------------------------------------------------------------------------------- /docs/downloads/visidata-cheat-sheet.en.letter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/docs/downloads/visidata-cheat-sheet.en.letter.pdf -------------------------------------------------------------------------------- /docs/downloads/visidata-cheat-sheet.es.A4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/docs/downloads/visidata-cheat-sheet.es.A4.pdf -------------------------------------------------------------------------------- /docs/downloads/visidata-cheat-sheet.es.letter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/docs/downloads/visidata-cheat-sheet.es.letter.pdf -------------------------------------------------------------------------------- /docs/downloads/visidata-cheat-sheet.it.A4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/docs/downloads/visidata-cheat-sheet.it.A4.pdf -------------------------------------------------------------------------------- /docs/downloads/visidata-cheat-sheet.it.letter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/docs/downloads/visidata-cheat-sheet.it.letter.pdf -------------------------------------------------------------------------------- /docs/en/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/docs/en/index.html -------------------------------------------------------------------------------- /docs/es/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/docs/es/index.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/it/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/docs/it/index.html -------------------------------------------------------------------------------- /input/cheat-sheet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/input/cheat-sheet.yaml -------------------------------------------------------------------------------- /input/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/input/metadata.yaml -------------------------------------------------------------------------------- /input/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/input/template.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML==5.4.1 2 | Jinja2==3.0.1 3 | -------------------------------------------------------------------------------- /scripts/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/scripts/build.py -------------------------------------------------------------------------------- /scripts/uniquekeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvine/visidata-cheat-sheet/HEAD/scripts/uniquekeys.py --------------------------------------------------------------------------------