Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| #!/bin/sh | |
| # rename-pictures.sh | |
| # Author: Justine Tunney <[email protected]> | |
| # License: Apache 2.0 | |
| # | |
| # This shell script can be used to ensure all the images in a folder | |
| # have good descriptive filenames that are written in English. It's | |
| # based on the Mistral 7b and LLaVA v1.5 models. | |
| # | |
| # For example, the following command: |
| from datetime import datetime | |
| from os import system | |
| import requests | |
| import json | |
| ## Please install ffmpeg before running this script and make sure it's in your PATH | |
| ## brew install ffmpeg | |
| ## Please install requests before running this script | |
| ## pip3 install requests |
Alternate title: How to Fix FrankenDebian's Monster.
https://wiki.debian.org/DontBreakDebian#Don.27t_make_a_FrankenDebian
Install x11docker
Run PDFEdit, e.g
| #!/usr/bin/env python3 | |
| # CodeIgniter pre-2.2 non-mcrypt Encrypt reverser. | |
| # Finds the key by partially-known plaintext attack. | |
| # Written by Ashe Connor. Placed in the public domain. | |
| import codecs | |
| import re | |
| import sys | |
| import time |
| /* | |
| A very simple program to send the toggle-keyboard event to matchbox-keyboard | |
| Requires a version of matchbox-keyboard running in daemon mode (-d), and | |
| must be a version of matchbox-keyboard that supports the toggle event. | |
| Currently the SVN version meets this requirement. | |
| Compiling: | |
| gcc matchbox-keyboard-toggler.c -o matchbox-keyboard-toggler -lX11 |