-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- RetroArch: update webretro - ability to change keybinds - take and download screenshots - recover saves and states from lost or renamed roms - shaders added to bundle - disable webcam usage for gameboy - Flash: update ruffle * added: - warfare1917 (kinglalu) - warfare1944 (kinglalu) - HTML5 games: finally correctly named in list.html * removed: - krunker - linuxvm * modified: - replaced breakout with codeincomplete breakout - replaced snake with google snake - replaced tetris with twitchtetris - factoryballsforever is no longer iframed - run3 is no longer iframed - fixed pushback * added: - a dark room - ascii space (js13k) - black hole square (js13k) - captain callisto (js13k) - chrome dino - edge not found (js13k) - ninja vs evilcorp (js13k) - packabunchas (js13k) - pac-man - particle clicker - q1k3 (js13k) - shuttledeck (js13k) - space garden (js13k) - space huggers (js13k) - the maze of space goblins (js13k) - trimps also added a special script that I use in crawling HTML5 games
- Loading branch information
1 parent
a7f3cba
commit c641a1b
Showing
951 changed files
with
253,402 additions
and
2,829 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# script used for crawling pages | ||
# use the network tab in chrome devtools, clear it before loading the game, and when all assets have finished being requested, press the Export HAR button (looks like download) | ||
# then, use this script like so (this is an example): python3 dehar.py example.com.har outputdirectory/ | ||
|
||
import os, sys, subprocess | ||
|
||
banned = [] #[".php", ".asp"] | ||
|
||
infile = sys.argv[1] | ||
outdir = sys.argv[2] | ||
|
||
input = open(infile, "r").read().splitlines() | ||
|
||
lis2 = [] | ||
for x in input: | ||
if ('"url"' in x) and not(any(i in x for i in banned)): | ||
lis2.append(x.split('"')[3].split("?")[0]) | ||
|
||
lis2 = list(dict.fromkeys(lis2)) | ||
|
||
open("./wgettemp.txt", "w").write("\n".join(lis2)) | ||
subprocess.call("wget -x -i ./wgettemp.txt -P %s" % outdir, shell=True) | ||
os.remove("./wgettemp.txt") |
Binary file not shown.
Binary file not shown.
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
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.