I hereby claim:
- I am Sanqui on github.
- I am sanqui (https://keybase.io/sanqui) on keybase.
- I have a public key whose fingerprint is 1228 DF20 EE44 31F7 C932 FA02 C431 F762 0475 722A
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| all: game.gb | |
| game.o: game.asm | |
| rgbasm -o game.o game.asm | |
| game.gb: game.o | |
| rgblink -n game.sym -m $*.map -o $@ $< | |
| rgbfix -jv -i XXXX -k XX -l 0x33 -m 0x01 -p 0 -r 0 -t game $@ | |
| clean: |
| // how the hell do I do this | |
| function script() { | |
| this.turn_player() // instant action, so it's cool | |
| this.speak("Hello!") // blocking - must wait for user input | |
| answer = this.ask("Are you feeling well?") // uh oh... | |
| if (answer) { // runtime condition | |
| this.speak("That's nice!") //welp. | |
| } | |
| else { |
| decompress_quit: | |
| jmp goodbye | |
| decompress_ret: | |
| jmp decompress_done | |
| decompress: | |
| xor acc | |
| ldc | |
| be #$ff, decompress_quit |
| __module_name__ = "twitchautoban" | |
| __module_version__ = "0.1.0" | |
| __module_description__ = "bans twitch spambots lol" | |
| import xchat | |
| import os | |
| import re | |
| print "twitchautoban loaded!" |
| types: | |
| - type: &grass | |
| name: "Grass" | |
| advantages: [] | |
| moves: | |
| - move: &vinewhip | |
| power: 40 | |
| type: *grass | |
| pokemon: |
| colors = { black= {0, 0, 0}, red= {255, 0, 0}, white= {255, 255, 255}, green={0, 127, 0}, | |
| yellow={255,255,0}, purple={255,50,255}} | |
| denjuunames = { | |
| [0x0] = "Tsunonasu", | |
| [0x1] = "Kochia", | |
| [0x2] = "Oshe", | |
| [0x3] = "Keshi", | |
| [0x4] = "Crypto", | |
| [0x5] = "Monstera", |
| #!/bin/pypy | |
| alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
| from sys import argv | |
| text = argv[1] | |
| file = open(argv[2], 'rb') |
| #!/bin/python | |
| # encoding: utf-8 | |
| import random | |
| # DIMENSIONS MUST BE ODD! | |
| WIDTH = 17 | |
| HEIGHT = 17 | |
| SQUARE = 14 |
| -- | |
| -- βββββββββββββββββββββββββββββββ | |
| -- βββββββββββββββββββββββββββββββ | |
| -- βββββββββββββββββββββββββββββββ | |
| -- | |
| -- | |
| -- Fair warning: this code is about as bad as the things it does to games. | |
| -- GBA support experimental and frankly quite boring. | |