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
| for %%f in (*.dds) do ( | |
| .\texconv.exe "%%f" -ft png | |
| ) | |
| @pause |
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 asyncio | |
| import hashlib | |
| import os | |
| import datetime as dt | |
| import configparser | |
| from shutil import copyfile | |
| import time | |
| import msvcrt | |
| import threading |
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 re | |
| import json | |
| import requests | |
| import math | |
| import os | |
| from multiprocessing import Pool | |
| requests.packages.urllib3.disable_warnings() | |
| #artist to download from |
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
| FOR %%i in (1, 1, 2) do ( | |
| FOR %%A in ( | |
| "WTabletServicePro.exe" | |
| "Wacom_Tablet.exe" | |
| "Wacom_TabletUser.exe" | |
| "Wacom_TouchUser.exe" | |
| ) DO taskkill /f /im %%A | |
| net stop "WTabletServicePro" | |
| net start "WTabletServicePro" | |
| ) |
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 re | |
| import random | |
| from collections import defaultdict | |
| #open a text file containing tumblr notes | |
| fp = open("notes.txt") | |
| #lists that contain the usernames of people who have liked, reblogged and said | |
| reblogged_leest=[] | |
| liked_leest=[] |
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 requests | |
| import os.path | |
| import json | |
| import re | |
| #URL for echo | |
| baseurl="https://echo360.org.au" | |
| #list of subject names with which to name folders | |
| subjectname=["COMP10001", "another_subject"] |
NewerOlder