Love making games and programming languages.
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
-- spacy adventure | |
-- by @egordorichev | |
-- | |
-- main callbacks | |
-- | |
cartdata("ld39") | |
t=1 | |
dmg=5 |
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
pico-8 cartridge // http://www.pico-8.com | |
version 16 | |
__lua__ | |
-- main | |
-- todo | |
-- music | |
-- sfx | |
-- fx |
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
pico-8 cartridge // http://www.pico-8.com | |
version 16 | |
__lua__ | |
-- corrupted space | |
-- by @egordorichev | |
cartdata("ldjam42") | |
menuitem(1,"restart lvl",function() | |
if(state==menu) return |
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
package org.rexcellentgames.burningknight.entity.level.rooms; | |
import com.badlogic.gdx.math.Vector2; | |
import org.rexcellentgames.burningknight.Dungeon; | |
import org.rexcellentgames.burningknight.entity.level.Level; | |
import org.rexcellentgames.burningknight.entity.level.Terrain; | |
import org.rexcellentgames.burningknight.entity.level.entities.Entrance; | |
import org.rexcellentgames.burningknight.entity.level.painters.Painter; | |
import org.rexcellentgames.burningknight.entity.level.rooms.regular.RegularRoom; | |
import org.rexcellentgames.burningknight.entity.level.save.LevelSave; |
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
#!/bin/bash | |
PASSED=$1 | |
if [ -d "${PASSED}" ] | |
then ls -l $PASSED; | |
elif [ -f "${PASSED}" ] | |
then cat $PASSED; | |
else echo "Confused barking sound"; | |
exit 1 |
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
static SDL_Color palette[] = { | |
{ 0, 0, 0, 255 }, | |
{ 29, 43, 83, 255 }, | |
{ 126, 37, 83, 255 }, | |
{ 0, 135, 81, 255 }, | |
{ 171, 82, 54, 255 }, | |
{ 95, 87, 79, 255 }, | |
{ 194, 195, 199, 255 }, | |
{ 255, 241, 232, 255 }, | |
{ 255, 0, 77, 255 }, |
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
static SDL_Color palette[] = { | |
{ 0, 0, 0, 255 }, | |
{ 29, 43, 83, 255 }, | |
{ 126, 37, 83, 255 }, | |
{ 0, 135, 81, 255 }, | |
{ 171, 82, 54, 255 }, | |
{ 95, 87, 79, 255 }, | |
{ 194, 195, 199, 255 }, | |
{ 255, 241, 232, 255 }, |
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
# Requires python3.6 | |
from pattern.en import parse | |
from pattern.web import Twitter | |
from gingerit.gingerit import GingerIt | |
from better_profanity import profanity | |
import json | |
import string | |
import re |
Game & Fullstack developer
Portfolio: egordorichev.github.io Blog: rexcellentgames.com