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 json | |
| import os | |
| import shutil | |
| ## Credit for finding this solution go to: | |
| ## https://steamcommunity.com/groups/SteamClientBeta/discussions/0/601916204203051690/ | |
| ## https://steamcommunity.com/groups/SteamClientBeta/discussions/5/601917463282777291/#c601917691382761871 | |
| def fix_timeline_file(filepath): | |
| try: |
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 | |
| cd /d F:\Games\"Game Tools"\Hitman3\Peacock | |
| start .\nodedist\node.exe chunk0.js | |
| cd /d J:\SteamLibrary\steamapps\common\"HITMAN 3"\Retail | |
| HITMAN3.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
| # This part checks for internet connectivity before proceeding | |
| function WaitForInternetConnection { | |
| $isConnected = $false | |
| while (-not $isConnected) { | |
| try { | |
| Write-Output "Trying to connect..." | |
| Test-Connection -ComputerName "google.com" -Count 1 -ErrorAction Stop | |
| $isConnected = $true | |
| Write-Output "Connection successful." | |
| } catch { |
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 subprocess import check_output | |
| f=[] | |
| import os | |
| for file in os.listdir("save"): | |
| f.append(os.path.join("save", file)) | |
| for file in f: | |
| tID = str(check_output("hactoolnet.exe -t save "+file, shell=True))[170:186] |
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
| ############################################################################################################ | |
| # | |
| # General Setting | |
| # | |
| ############################################################################################################ | |
| - general: MTK_PLATFORM_CFG | |
| info: | |
| - config_version: V2.1.0 | |
| platform: MT6853 | |
| project: k6853v1_64_6360 |
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
| rd %temp% /s /q | |
| md %temp% | |
| del C:\Users\James\Desktop\*.* /s /q | |
| spicetify backup apply | |
| npm audit fix --force | |
| cd /d F:\Documents\Programming\Python\WinGvcci\ | |
| F:\Documents\Programming\Python\WinGvcci\WinGvcci.py |
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 os,glob,random | |
| from shutil import copyfile | |
| # Garnet's automated shitpost machine for Persona 5 Scramble | |
| ## Drop webms and mp4s in the input folder that gets created upon running this once. | |
| ## run it and put it in the romfs folder | |
| ### NOTE!!! There are two MP4s, used for the phones UI, so try to find two vertical videos, or a bunch, who cares | |
| try: | |
| os.makedirs("random/pd/videos") |
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 io | |
| offset0 = 0x4000 | |
| offset1 = 0x5000 | |
| offset2 = 0x740000 | |
| offset3 = 0xD2F000 | |
| offset4 = 0x146A000 | |
| outpt = open("logo_new_mi9t.img", "wb") |
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, names, random | |
| headers = { | |
| 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0', | |
| 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8', | |
| 'Accept-Language': 'en-US,en;q=0.5', | |
| 'Content-Type': 'application/x-www-form-urlencoded', | |
| 'Origin': 'http://clubaaa.xyz', | |
| 'DNT': '1', | |
| 'Connection': 'keep-alive', |
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 | |
| id = 1 | |
| while id < 1000: | |
| headers = { | |
| 'authority': 'smashstages.com', | |
| 'upgrade-insecure-requests': '1', | |
| 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36', | |
| 'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3', |
NewerOlder