Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
''' | |
A prove of concept for pickling / unpickling an asyncio.Task object | |
Limitations of this demo code: | |
- Requires Stackless Python 3.7, because this Python implementation can pickle coroutine objects. | |
- Uses the pure python task implementation asyncio.tasks._PyTask | |
Copyright (C) 2021 Anselm Kruis |
#!/bin/bash | |
# === INFO === | |
# ForceVPN | |
# Description: Force VPN tunnel for specific applications. | |
# If the VPN is down => blackhole the app network traffic. | |
# Better than a killswitch. IPv4. | |
VERSION="2.3.0" | |
# Author: KrisWebDev | |
# Requirements: Linux with kernel > 2.6.4 (released in 2008). |