Skip to content

Instantly share code, notes, and snippets.

View crazzyguti's full-sized avatar

Gultekin Ahmed crazzyguti

View GitHub Profile
@crazzyguti
crazzyguti / README.md
Created May 31, 2019 16:35 — forked from straker/README.md
Basic Snake HTML Game

Basic Snake HTML Game

Snake is a fun game to make as it doesn't require a lot of code (less than 100 lines with all comments removed). This is a basic implementation of the snake game, but it's missing a few things intentionally and they're left as further exploration for the reader.

Further Exploration

@crazzyguti
crazzyguti / dabblet.css
Last active September 10, 2018 18:05 — forked from chriscoyier/dabblet.css
Checkbox Hack
/* Checkbox Hack */
input[type=checkbox] {
position: absolute;
top: -9999px;
left: -9999px;
}
label {
-webkit-appearance: push-button;
-moz-appearance: button;