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
| #!/bin/sh | |
| # October 3rd, 2019 | |
| # This will patch the wifi-wpa-setup file of the wpa_supplicant module to allow spaces in SSID's and Passwords. | |
| # While I don't think spaces in passwords will be an issue, I figured it couldn't hurt to add that in as well. | |
| # | |
| # The wpa_supplicant module KMFD's Mod Hub has now been updated with this fix. | |
| # - viral_dna (aka DNA64) | |
| sed -i '5,5d' /bin/wifi-wpa-setup |
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
| #!/bin/sh | |
| SSID="$1" | |
| if [ -z "$SSID" ]; then | |
| IFS= read -r -p "Enter your SSID (Spaces are allowed!): " SSID | |
| fi | |
| [ -z "$SSID" ] && exit 1 | |
| PASS="$2" | |
| if [ -z "$PASS" ]; then |
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
| ############################################### | |
| # TX SX OS unpacker - by hexkyz and naehrwert # | |
| ############################################### | |
| from Crypto.Cipher import AES | |
| from Crypto.Util import Counter | |
| import os | |
| import struct | |
| """ |
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
| ############################################### | |
| # TX SX Pro Custom Payload Packer - by CTCaer # | |
| ############################################### | |
| import struct | |
| import hashlib | |
| from os import unlink | |
| """ | |
| typedef struct boot_dat_hdr |
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
| ::************************************************************************* | |
| :: Filename: _make_list.bat | |
| :: Author : keejelo | |
| :: Version : 1.01 | |
| :: Descr. : Makes a list containing all games in gamefolder. | |
| :: Usage : Put the file into folder "hakchi2\games_snes" and then run it. | |
| ::************************************************************************* | |
| TITLE Working, please wait... | |
| ECHO OFF | |
| SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION |
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
| # Bulk Convert Tool for SNES Classic ROMS | |
| # | |
| # Uses my modified sfc2from.py script | |
| # https://gist.github.com/DNA64/5e79c6449785949f86744fa7dcb50ad7#file-sfc2sfrom-py | |
| # | |
| # Permission to use, copy, modify, and/or distribute this software for any | |
| # purpose with or without fee is hereby granted. | |
| # | |
| # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH | |
| # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
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 python | |
| # Permission to use, copy, modify, and/or distribute this software for any | |
| # purpose with or without fee is hereby granted. | |
| # | |
| # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH | |
| # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY | |
| # AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, | |
| # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM | |
| # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR |
NewerOlder