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 re | |
from mutagen import easyid3 | |
path = '/Users/name/Downloads/Book' | |
def compf(s: str) -> int: | |
num = next(re.finditer(r"\d+_\d+", s)).group() | |
track, disc = [int(i) for i in num.split('_')] |
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 multiprocessing | |
import os | |
import threading | |
import time | |
import webview | |
def get_current_url(): |
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
sudo su | |
yum check-update || yum update | |
curl -fsSL get.docker.com -o get-docker.sh && sh get-docker.sh | |
systemctl start docker |
OlderNewer