View vtuber.py
This file contains 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 PIL import Image | |
import aubio | |
import pygame | |
import pyaudio | |
import numpy as np | |
import glob | |
PATH = "happyboy1" | |
METHOD = "default" | |
PERIOD_SIZE_IN_FRAME = 2048 // 2 |
View binance.py
This file contains 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
''' | |
binance.py | |
To add crypto values add them to the <watchlist> dictionary: | |
"ZECBNB": { | |
"a": "ZEC", | |
"b": "BNB", | |
# Price coin | |
"pc": [2, 4] |
View PomodoroWin.py
This file contains 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 time, winsound, os | |
def clear(): | |
os.system("cls||clear") | |
def playTone(frequency, duration, repeat): | |
for _ in range(repeat): | |
winsound.Beep(frequency, duration) | |
def work(duration = 1200, text = "-"): |
View PNGtoJPG.py
This file contains 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 | |
from PIL import Image | |
Image.MAX_IMAGE_PIXELS = None | |
def convert(folder_path, delete_old = True): | |
for root, dirs, files in os.walk(folder_path): | |
print(root) | |
for filename in files: | |
if ".png" in filename: |
View MPA-QR.py
This file contains 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 PySimpleGUI as sg | |
import qrcode | |
text = sg.PopupGetText("Telefonnummer / BoxID", "12345678 / box12345") | |
amount = sg.PopupGetText("Automatisk Beløb", "0") | |
text = text.lower() | |
text = text.replace(" ", "") | |
text = text.replace("box", "") | |
text = text.strip() |
View TwitchBot.rb
This file contains 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
# bot.rb | |
require 'socket' | |
require 'logger' | |
# Create logger | |
log = Logger.new("log.txt") | |
# Required Info | |
PASS = "oauth:xxxxxxxxxxxxxxxxxxxxxxxxxxxxx" # "oauth:YourOauthToken" https://twitchapps.com/tmi/ <--- REQUIRED <--- REQUIRED | |
NICK = "botname" # Name of bot <--- REQUIRED <--- REQUIRED |
View Overhaul.bat
This file contains 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
REM ( ------------ )) | |
REM (( Created By PhantomScripts )) | |
REM ( ------------ )) | |
:Configuration | |
@echo off | |
color 0A | |
mode 1000 | |
REM // If folder "Files" exists say nothing ELSE create folder "Files" |
View WebDownloader.py
This file contains 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
# Made by Tearzz / PhantomScripts | |
import pafy, pip, time | |
print(" WebDownloader ") | |
print("----------------------") | |
print(" By PhantomScripts ") | |
print("\n") | |
# Variables | |
option = 1 |
View ScriptMaker.bat
This file contains 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
REM ( ------------ )) | |
REM (( Created By PhantomScripts )) | |
REM ( ------------ )) | |
:Configuration | |
@echo off | |
color 0A | |
mode 1000 | |
REM // Main Menu <--------- START |