Skip to content

Instantly share code, notes, and snippets.

View blunket's full-sized avatar

Andrew Siegman blunket

View GitHub Profile
@blunket
blunket / readme.txt
Created November 6, 2020 03:37
Sync (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@blunket
blunket / readme.txt
Created October 23, 2019 00:31
Sync (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@blunket
blunket / readme.txt
Created July 23, 2019 15:16
Sync (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@blunket
blunket / readme.txt
Created July 21, 2019 18:51
Sync (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@blunket
blunket / readme.txt
Created July 21, 2019 18:44
Sync (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@blunket
blunket / readme.txt
Created July 21, 2019 18:03
Sync (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@blunket
blunket / readme.txt
Created July 18, 2019 19:20
Sync (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@blunket
blunket / ToggleVintageCommand.py
Last active July 29, 2024 22:07
Sublime Text 3 - Toggle Vintage Mode Plugin
import sublime
class ToggleVintageCommand(sublime_plugin.TextCommand):
def run(self, edit):
settings = sublime.load_settings('Preferences.sublime-settings')
ignored = settings.get("ignored_packages")
if "Vintage" in ignored:
ignored.remove("Vintage")
else:
ignored.append("Vintage")