https://drive.google.com/drive/folders/1Q5jkFwNu7evM31jlDHKofOq4jxXQDoG9?usp=sharing
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 pathlib import Path | |
found_folders = set() | |
def check_flac_files(folder: Path): | |
# Iterate through all files in the folder | |
for flac_file in folder.rglob("*.*"): | |
if flac_file.is_file(): | |
try: | |
# Open the file and check the beginning of the content |
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 pathlib import Path | |
import re | |
song_folder = ( | |
input("Paste your osu song folder here (Default: AppData/Local/osu!/Songs): ") | |
or r"C:\Users\USER\AppData\Local\osu!\Songs" | |
) | |
song_folder = Path(song_folder) | |
output = "" |
JP | Romaji | English |
---|---|---|
I don't wanna be trapped in the past | - | - |
I don't wanna feel dead inside | - | - |
I don't wanna be trapped in the past | - | - |
I'll never get anything back | - | - |
底無し淵を逆さま沈んでく深く | sokonashi fuchi wo sakasama shizundeku fukaku | Upside down in a bottomless abyss, sinking deeper and deeper |
縄梯子はNobody knows | nawabashigo wa Nobody knows | Nobody knows about the rope ladder |
あからさまなDead inside | akarasama na Dead inside | Plainly dead inside |
影無き闇を手探りで深く深く | kagenaki yami wo tesaguri de fukaku fukaku | Fumbling deep and deep in the shadowless darkness |
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 vpk | |
from pathlib import Path | |
import subprocess | |
# Paste the path to your workshop folder here | |
workshop_folder = ( | |
"F:/SteamLibrary/steamapps/common/Left 4 Dead 2/left4dead2/addons/workshop" | |
) | |
# Paste the file path to the file that has a consistency error here |
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 pathlib import Path | |
import time | |
songs_folder = Path("C:/Users/USER/AppData/Local/osu!/Songs") | |
downloads_folder = Path("C:/Users/USER/Downloads/") | |
while True: | |
file_count = 0 | |
for file in downloads_folder.glob("*.osz"): | |
file.rename(songs_folder / file.name) |
JP | Romaji | EN |
---|---|---|
むずかしいことばかりだ | muzukashii koto bakari da | "It's been nothing but difficult things lately" |
おんなじことを考えてる | onnaji koto wo kangaeteru |
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
const fromDate = new Date("2023-08-05T00:00:00Z"); | |
const toDate = new Date("2023-10-31T00:00:00Z"); | |
function incrementDay(date) { | |
const year = date.getFullYear(); | |
const month = date.getMonth(); | |
const day = date.getDate() + 1; | |
const newDate = new Date(Date.UTC(year, month, day)); | |
return newDate; | |
} |