(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| from pyPdf import PdfFileWriter, PdfFileReader | |
| import StringIO | |
| from reportlab.pdfgen import canvas | |
| from reportlab.lib.pagesizes import letter | |
| packet = StringIO.StringIO() | |
| # create a new PDF with Reportlab | |
| can = canvas.Canvas(packet, pagesize=letter) | |
| can.drawString(100,100, "Hello world") | |
| can.save() | 
| from md5 import md5 | |
| # header from 401 response on REGISTER | |
| # Authorization: Digest username="883140776410950", realm="gw_youmagic", algorithm=MD5, uri="sip:GW_Youmagic", nonce="1476157437:0a1418a40f8ee1c9a55f1587ab931c14", response="3ff479ccc24874f66aae45dac889d099" | |
| login = '883140776410950' | |
| uri = 'sip:GW_Youmagic' | |
| nonce = '1476157437:0a1418a40f8ee1c9a55f1587ab931c14' | |
| realm = 'gw_youmagic' | |
| password = '----------' |