Action | Command |
---|---|
Move to next chat | Ctrl + Tab |
Move to next chat | Ctrl + PageDown |
Move to next chat | Alt + Arrow Down |
Move to previous chat | Ctrl + Shift + Tab |
Move to previous chat | Ctrl + PageUp |
Move to previous chat | Alt + Arrow Up |
Go to Previous Folder | Ctrl + Shift + Arrow Up |
Go to Next Folder | Ctrl + Shift + Arrow Down |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import base64 | |
from cryptography.hazmat.backends import default_backend | |
from cryptography.hazmat.primitives.asymmetric import rsa | |
from cryptography.hazmat.primitives import serialization | |
from cryptography.hazmat.primitives import hashes | |
from cryptography.hazmat.primitives.asymmetric import padding | |
def utf8(s: bytes): | |
return str(s, 'utf-8') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker logs nginx 2>&1 | grep "127." | |
# ref: http://stackoverflow.com/questions/34724980/finding-a-string-in-docker-logs-of-container |