Skip to content

Instantly share code, notes, and snippets.

View Norgg's full-sized avatar
🏳️‍🌈

Norgg Norgg

🏳️‍🌈
View GitHub Profile
@Norgg
Norgg / readme.txt
Created June 26, 2021 16:56
Spacething (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@Norgg
Norgg / readme.txt
Created May 6, 2021 15:42
Spacething (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@Norgg
Norgg / readme.txt
Created April 11, 2021 03:17
Spacething (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@Norgg
Norgg / readme.txt
Created April 11, 2021 02:45
the gods await me (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@Norgg
Norgg / readme.txt
Created April 10, 2021 18:55
the gods await me (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@Norgg
Norgg / game.txt
Created June 29, 2018 21:18
flickgame
{"canvasIndex":0,"gameLink":"www.flickgame.org/layers_beta.html","canvasses":[[2246,"1",1,"9",523,"1",1,"9",1319,"1",1,"9",459,"1",1,"9",667,"1",1,"9",1099,"1",1,"9",72,"1",1,"9",1354,"1",1,"9",100,"1",1,"9",432,"1",1,"9",617,"1",1,"9",58,"1",1,"9",467,"1",1,"9",547,"1",1,"9",742,"1",1,"9",749,"1",1,"9",382,"1",1,"9",1584,"1",1,"9",87,"1",1,"9",376,"1",1,"9",493,"1",1,"9",359,"1",1,"9",718,"1",1,"9",13,"1",1,"9",288,"1",1,"9",559,"1",1,"9",488,"1",1,"9",73,"1",1,"9",674,"1",1,"9",78,"1",1,"9",397,"1",2,"9",415,"1",2,"9",1531,"1"],[8100,"0",12,"2",186,"0",17,"2",180,"0",22,"2",177,"0",24,"2",175,"0",27,"2",172,"0",29,"2",171,"0",29,"2",170,"0",31,"2",169,"0",13,"2",1,"4",18,"2",168,"0",13,"2",5,"4",15,"2",166,"0",13,"2",7,"4",1,"2",2,"4",11,"2",166,"0",12,"2",11,"4",12,"2",165,"0",12,"2",11,"4",12,"2",165,"0",12,"2",10,"4",13,"2",164,"0",13,"2",9,"4",15,"2",163,"0",13,"2",9,"4",16,"2",162,"0",13,"2",12,"4",13,"2",162,"0",13,"2",12,"4",13,"2",162,"0",14,"2",8,"4",16,"2",162,"0",15,"2",2,"4",21,"2",162,"0",14,"2
@Norgg
Norgg / game.txt
Created June 29, 2018 21:18
flickgame
{"canvasIndex":9,"gameLink":"www.flickgame.org/layers_beta.html","canvasses":[[2246,"1",1,"9",523,"1",1,"9",1319,"1",1,"9",459,"1",1,"9",667,"1",1,"9",1099,"1",1,"9",72,"1",1,"9",1354,"1",1,"9",100,"1",1,"9",432,"1",1,"9",617,"1",1,"9",58,"1",1,"9",467,"1",1,"9",547,"1",1,"9",742,"1",1,"9",749,"1",1,"9",382,"1",1,"9",1584,"1",1,"9",87,"1",1,"9",376,"1",1,"9",493,"1",1,"9",359,"1",1,"9",718,"1",1,"9",13,"1",1,"9",288,"1",1,"9",559,"1",1,"9",488,"1",1,"9",73,"1",1,"9",674,"1",1,"9",78,"1",1,"9",397,"1",2,"9",415,"1",2,"9",1531,"1"],[8100,"0",12,"2",186,"0",17,"2",180,"0",22,"2",177,"0",24,"2",175,"0",27,"2",172,"0",29,"2",171,"0",29,"2",170,"0",31,"2",169,"0",13,"2",1,"4",18,"2",168,"0",13,"2",5,"4",15,"2",166,"0",13,"2",7,"4",1,"2",2,"4",11,"2",166,"0",12,"2",11,"4",12,"2",165,"0",12,"2",11,"4",12,"2",165,"0",12,"2",10,"4",13,"2",164,"0",13,"2",9,"4",15,"2",163,"0",13,"2",9,"4",16,"2",162,"0",13,"2",12,"4",13,"2",162,"0",13,"2",12,"4",13,"2",162,"0",14,"2",8,"4",16,"2",162,"0",15,"2",2,"4",21,"2",162,"0",14,"2
@Norgg
Norgg / keybase.md
Created January 6, 2015 19:58
Keybase verification

Keybase proof

I hereby claim:

  • I am Norgg on github.
  • I am norgg (https://keybase.io/norgg) on keybase.
  • I have a public key whose fingerprint is 7FAB 2D11 3288 DB86 7C4D 7009 41E6 E087 6599 68DE

To claim this, I am signing this object:

@Norgg
Norgg / purb
Last active December 17, 2015 13:19
#Less cheaty
""and puts("ruby");exit;print("python")
#More cheaty
print("python")or puts("\rruby ")
@Norgg
Norgg / fizzbuzz.pyrb
Last active December 17, 2015 13:19
FizzBuzz in python and ruby
def end():pass; end
def p(s):pass;print(s); end
def out(s):pass; p(s); [] and p("\n"); end
def fizz(i):pass; fizzbuzz(i); i<100 and fizz(i+1); end
def fizzbuzz(i):pass; i % 15 == 0 and out("FizzBuzz"); i % 15 > 0 and i % 3 == 0 and out("Fizz"); i % 15 > 0 and i % 5 == 0 and out("Buzz"); i % 3 > 0 and i % 5 > 0 and out(i); end