Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env python
"""
This apparently reproduces issue described at
https://github.com/kennethreitz/requests/issues/2887
Versions:
- Requests version: 2.9.1
- Bottle version: 0.12.9
- Waitress version: 0.8.10
"""
@suoto
suoto / create_hdlcc_project.py
Last active February 12, 2019 09:52
Search paths for RTL files and write vim-hdl project file
#!/usr/bin/env python3
import sys
import os
import os.path as p
import argparse
import re
import time
try:
@suoto
suoto / bash_shortcuts.md
Last active July 26, 2019 15:55
Bash shorcuts
Key Action
Ctrl + a Jump to the start of the line
Ctrl + b Move back a char
Ctrl + c Terminate the command
Ctrl + d Delete from under the cursor
Ctrl + e Jump to the end of the line
Ctrl + f Move forward a char
Ctrl + k Delete to EOL
Ctrl + l Clear the screen