This file contains 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/env python | |
def parse_file(path): | |
parent = [None] | |
prevobj = None | |
prevlev = -1 | |
objs = [] | |
with open(path) as f: | |
for line in f: | |
""" fill object infos """ |
This file contains 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 Grab HB keys | |
// @namespace org.chloetigre.perso | |
// @description Grab game keys from a humble bundle page | |
// @include https://www.humblebundle.com/home/keys | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
var hbkeys = { | |
}; |