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
| #!/usr/bin/env python3 | |
| """ | |
| Digimon Story Cyber Sleuth Save Converter | |
| ========================================== | |
| Automatically converts Digimon Story Cyber Sleuth save files from Nintendo Switch | |
| format to PC format, making them compatible with the Steam/PC version of the game. | |
| Requirements: | |
| ------------- |
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
| """ | |
| python3 download_missing_episodes.py --sonarr-url http://host:port --api-key api_key --dry-run | |
| ------------------------------------------------------------------------------------------------------------------------- | |
| usage: download_missing_episodes.py [-h] [--dry-run] --sonarr-url SONARR_URL --api-key API_KEY [--process-some-missing] [--process-all-missing] | |
| [--log-level {DEBUG,INFO,WARNING,ERROR}] | |
| Sonarr Season Pack Downloader | |
| options: |
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
| @echo off | |
| taskkill /F /IM LeagueClient.exe | |
| taskkill /F /IM "League of Legends.exe" | |
| taskkill /F /IM RiotClientServices.exe | |
| taskkill /F /IM RiotClientUx.exe | |
| taskkill /F /IM RiotClientUxRender.exe | |
| echo League of Legends has been terminated. | |
| 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
| # Install: | |
| # https://github.com/m1guelpf/auto-subtitle | |
| # pip install git+https://github.com/m1guelpf/auto-subtitle.git tqdm | |
| # Move .mkv to the folder where this script is. Then run: | |
| # sub_videos.py | |
| import datetime | |
| from glob import glob | |
| from pathlib import Path | |
| import subprocess |
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
| # This script needs: | |
| # A Android with root (strongly recommended) to auto accept ADB connection using PC keys | |
| # ADB.exe on PC - it comes with android studio | |
| # Droidcam on PC | |
| # How to auto accept adb connection using PC keys: | |
| # https://stackoverflow.com/questions/30178911/how-to-authorize-and-accept-adb-rsa-key-with-broken-touch-screen-on-android | |
| $AdbPath = "C:\Users\gioma\AppData\Local\Android\sdk\platform-tools\adb.exe" | |
| $DroidCamPath = "C:\Program Files (x86)\DroidCam\" | |
| $DroidCamExe = $DroidCamPath + "DroidCamApp.exe" |
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
| #include "otpch.h" | |
| #include "protocolreplay.h" | |
| #include "outputmessage.h" | |
| #include "configmanager.h" | |
| #include "game.h" | |
| #include "ban.h" | |
| #include "scheduler.h" |
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 os | |
| import sys | |
| from shutil import copyfile | |
| def try_to_copy_file(src, dest): | |
| try: | |
| copyfile(src, dest) | |
| return True | |
| except: |