| JP | Romaji | EN |
|---|---|---|
| むずかしいことばかりだ | muzukashii koto bakari da | "It's been nothing but difficult things lately" |
| おんなじことを考えてる | onnaji koto wo kangaeteru |
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 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 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 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) |
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
| 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; | |
| } |
NewerOlder