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 | |
| import json | |
| """ | |
| nidlist.txt: | |
| 0xF183726E _vshSblAimgrGetConsoleId | |
| 0xF1B7B34C sceBbmcTurnOn | |
| 0xF1C4D466 sceBtStopInquiry | |
| ... |
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 | |
| import requests | |
| import re | |
| from bs4 import BeautifulSoup | |
| def dicadd(dic, dic_add): |
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
| # Makeshift RE'ing base file creator. The code is really messy, don't expect it to be robust. | |
| import re | |
| asm = 'E:/Programmation/PSP/Reverse engineering/threadman - 660/threadman.s' | |
| proto = ['E:/Programmation/PSP/Reverse engineering/threadman - 660/pspthreadman.h','E:/Programmation/PSP/Reverse engineering/threadman - 660/pspthreadman_kernel.h'] | |
| protos = {} | |
| def protoBase(): | |
| global protos |
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
| # NoPicAds: remove new line character from files | |
| # https://github.com/legnaleurc/nopicads/ | |
| import glob | |
| for fileName in glob.glob("src/sites/*/*.js"): | |
| with open(fileName, "r", encoding='utf-8') as file: | |
| lines = file.readlines() | |
| # If last line is empty |
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
| ;#NoTrayIcon | |
| #include <WinHttp.au3> | |
| #include <String.au3> | |
| #include <array.au3> | |
| $mirrorsUrl = "http://cygwin.com/mirrors.lst" | |
| $aMirrorsUrl = StringSplit($mirrorsUrl, "/", 2) | |
| $mirrorsHost = $aMirrorsUrl[2] | |
| $mirrorsFile = $aMirrorsUrl[3] |
NewerOlder