Skip to content

Instantly share code, notes, and snippets.

View IliaSky's full-sized avatar

Ilia Yatchev IliaSky

View GitHub Profile
@IliaSky
IliaSky / test.css
Last active December 25, 2015 07:59
JavaScript HomeWork Markdown Test
body { font-family: Verdana, sans-serif; color: #eee; background-color: #333; }
h1,h2 { border-bottom: 1px solid #999; margin: 0.6em 0; }
br { font-size: 0.8em; }
#markdown { display: none; }
.result.passed { color: #0a0; }
.result.failed { color: #f66; }
@IliaSky
IliaSky / python_test_ouroboros_death_illustration.py
Created May 16, 2013 21:04
An example showing a test for the snake game - http://github.com/fmi/python-homework/tree/master/2013/06 - homework for a python course
from msvcrt import getch
import os
from solution import *
IMAGES = {'NoneType': '..', 'Food': 'FF',
'PythonHead': '@@', 'PythonPart': '##'}
@IliaSky
IliaSky / python-game.py
Last active December 17, 2015 06:09
A simple console game printer for a simple snake game - http://github.com/fmi/python-homework/tree/master/2013/06 - homework for a python course
from msvcrt import getch
import os
from solution_6 import *
IMAGES = {'NoneType': '..', 'Food': 'FF',
'PythonHead': '@@', 'PythonPart': '##'}