The default prefix is C-b. I'm going to assume that Ctrl-b is your prefix.
Session is a set of windows, plus a notion of which window is current.
DES(Unix) | |
Example: IvS7aeT4NzQPM | |
Used in Linux and other similar OS. | |
Length: 13 characters. | |
Description: The first two characters are the salt (random characters; in our example the salt is the string "Iv"), then there follows the actual hash. | |
Notes: [1] [2] | |
Domain Cached Credentials | |
Example: Admin:b474d48cdfc4974d86ef4d24904cdd91 | |
Used for caching passwords of Windows domain. |
curl --user-agent "Googlebot/2.1 (+http://www.google.com/bot.html)" -v $@ | |
# https://pypi.org/project/ImageHash/ | |
from os import path, mkdir, sep, remove | |
from sys import exit, argv | |
from PIL import Image | |
import numpy | |
from struct import error as StructError | |
# import scipy.fftpack |
import os | |
import sys | |
from sqlalchemy import Column, ForeignKey, Integer, String, UniqueConstraint, DateTime | |
from sqlalchemy.ext.declarative import declarative_base | |
from sqlalchemy import create_engine | |
from sqlalchemy.orm import sessionmaker, relationship, scoped_session | |
from sqlalchemy import event | |
Base = declarative_base() |
from pywinauto.application import Application | |
from pywinauto.timings import TimeoutError | |
from pywinauto.findbestmatch import MatchError | |
from bs4 import BeautifulSoup | |
import os | |
import time | |
import json | |
def get_soup(filepath): |
import calendar | |
import datetime | |
def usaweeknum(year, month, day): | |
"""North American week number for weeks beginning on a Sunday | |
Week 1 is week containing January 1 | |
Week 1 contains any days from the end of the previous year | |
For example, years 2011 and 2016 contain 53 weeks | |