Skip to content

Instantly share code, notes, and snippets.

View damons's full-sized avatar

Damon Sicore damons

View GitHub Profile
@damons
damons / index.html
Created May 22, 2019 00:09
Web Terminal
<!-- web-interactive-terminal -->
<!-- https://github.com/mattConn/web-interactive-terminal -->
<body>
<div id="web-terminal-ctn">
<div id="web-terminal"></div>
<form id="web-terminal-form">
<input id="web-terminal-input" type="text" placeholder="$" autocomplete="off" autofocus />
<input type="submit" />
</form>
</div>
@damons
damons / golden-ratio-with-css-grid-layout.markdown
Created June 27, 2018 18:43
Golden ratio with CSS Grid Layout

Keybase proof

I hereby claim:

  • I am damons on github.
  • I am sicore (https://keybase.io/sicore) on keybase.
  • I have a public key ASADrC5oMznvHkEet_owyPWThK7dsOnm1i-oJrFtvXMZ8go

To claim this, I am signing this object:

@damons
damons / counter.markdown
Created February 25, 2018 03:32
Counter
@damons
damons / spider.pl
Created August 6, 2017 21:36 — forked from JosephLenton/spider.pl
prolog text adventure game
/* SPIDER -- a sample adventure game, by David Matuszek.
Consult this file and issue the command: start. */
:- dynamic at/2, i_am_at/1, alive/1. /* Needed by SWI-Prolog. */
:- retractall(at(_, _)), retractall(i_am_at(_)), retractall(alive(_)).
/* This defines my current location. */
i_am_at(meadow).