Notes to Self

Alex Sokolsky's Notes on Computers and Programming

Python Programming

Development

Frameworks

To look further:

External resources

One-liners

URL-decode CLI

echo -n "%21%20" | python3 -c "import sys; from urllib.parse import unquote; print(unquote(sys.stdin.read()));"