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
# | |
# Comic Chat fixer MITM proxy: fixes Comic Chat to (sort of) work with modern | |
# IRC servers. Tested with Microsoft Chat 2.5 on Windows XP, 8 and 10 | |
# | |
# This is a fork by ave with additional fixes and python3 support | |
# Alongside some other QoL features like color nicks being displayed in chat | |
# https://gist.github.com/aveao/f6d40f41a424b1d9a54c9aba39742b76 | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by |
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/bash | |
# This is a script to convert encrypted amiibos to a format that can be used by chamtool and be recognized by switch | |
# bash amiibo.sh key_retail.bin ~/myownamiibodumps/tomnook.bin 04BA1234123412 | |
# chamtool.py -p /dev/ttyACM0 -u /tmp/out.bin | |
# This is a fork of https://gist.github.com/gretel/dd80c854e22c2afd20f5aebc62015096 | |
#requirements: | |
#sha1sum (part of coreutils) | |
#xxd (part of vim) | |
#hexdump |
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 # | |
# Forked by AveSatanas to add argparse # | |
############################################### | |
import struct | |
import hashlib | |
import argparse | |
parser = argparse.ArgumentParser() |
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
Result: 1 | |
Items { | |
TemplateId: "BADGE_BATTLE_ATTACK_WON" | |
Badge { | |
BadgeType: BADGE_BATTLE_ATTACK_WON | |
BadgeRanks: 4 | |
Targets: "\nd\350\007" | |
} | |
} | |
Items { |
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
// ==UserScript== | |
// @name Steam Quick Queue | |
// @namespace https://gist.github.com/ardaozkal/47ecb805c1ed284c9e02bb86d68ee9d4/ | |
// @version 6 | |
// @description Discover the Steam queue three times to get the sale cards | |
// @include *://store.steampowered.com/explore/ | |
// @grant none | |
// @run-at document-idle | |
// @require https://gist.github.com/xPaw/73f8ae2031b4e528abf7/raw | |
// @copyright 2015+, xPaw; 2016+, Nuno Cunha (original wrapper); 2016+ Arda Özkal (this wrapper) |