This file contains hidden or 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 os | |
import shutil | |
import emoji | |
import time | |
CONVERTED_DIR = 'name_converted' | |
SOURCE_DIR = 'assets/svg' | |
class EmojiRenamer: | |
def __init__(self): |
This file contains hidden or 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
SendMode "Input" | |
PgUp::MouseClick "WheelUp",,, 5 | |
PgDn::MouseClick "WheelDown",,, 5 | |
Browser_Home::return | |
LWin & WheelUp::send "{Volume_Up}" | |
LWin & WheelDown::send "{Volume_Down}" |
This file contains hidden or 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
from os import path, listdir | |
from time import sleep | |
from subprocess import check_output, Popen, PIPE, CalledProcessError | |
import logging | |
logging.basicConfig( | |
level=logging.INFO, | |
format='[%(asctime)s][%(levelname)s] %(message)s', | |
datefmt='%m-%d %H:%M', | |
handlers=[logging.StreamHandler(), logging.FileHandler("backup.log")] |