Update: versions of Chrome after Chrome 61 use a new format for offline storage. Draknek wrote a correct version here: https://gist.github.com/Draknek/1719f7d01e43f233836e8b2abe6b2ae8
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
Play this game by pasting the script in http://www.puzzlescript.net/editor.html |
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
nohup /Applications/Utilities/System\ Information.app/Contents/MacOS/System\ Information -AppleLanguages '(Japanese)'& |
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
title Random Shortest Path | |
author Dennis Au | |
background_color Green | |
run_rules_on_level_start | |
======== | |
OBJECTS | |
======== | |
Background . | |
White |
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
title Two Players | |
author Chris Pickel | |
homepage www.puzzlescript.net | |
======== | |
OBJECTS | |
======== | |
Background | |
Green |
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
FROM ubuntu:18.04 AS build | |
RUN apt-get update \ | |
&& apt-get install -y \ | |
bison \ | |
cmake \ | |
curl \ | |
flex \ | |
git \ | |
libboost-all-dev \ |
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
title Color Test | |
author Chris Pickel | |
======== | |
OBJECTS | |
======== | |
Green Player G | |
Green |
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
2004-05-22 scenarios Colliseum | |
2004-05-22 scenarios Ascender | |
2004-05-09 scenarios Elejees Decision-Alpha | |
2004-01-24 scenarios Pirates | |
2004-01-11 guides Extreme Speeds Ares Guide | |
2003-12-08 scenarios Endurance 1.0 | |
2003-12-03 scenarios Catharan Crusades v1.0 | |
2003-11-28 scenarios Malamar (This plug allows you…) | |
2003-11-27 scenarios Former Single Player Levels 1.1 | |
2003-10-31 scenarios Humans Revenge Part 1 |
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
def make_alpha(image): | |
image = image.to_rgba() | |
# Find the brightest pixel in the image. | |
brightest = 0 | |
for y in range(image.bounds.height): | |
for x in range(image.bounds.width): | |
p = image.get(x, y) | |
brightest = max(max(brightest, p.r), max(p.g, p.b)) |
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
title Tour de Four | |
author Chris Pickel | |
homepage sfiera.net | |
again_interval 0.08 | |
background_color #222 | |
======== | |
OBJECTS | |
======== |