Skip to content

Instantly share code, notes, and snippets.

View ixtli's full-sized avatar
🌹
Typing text into boxes.

Chris Galardi ixtli

🌹
Typing text into boxes.
View GitHub Profile
@ixtli
ixtli / rubiconcodec.py
Created October 3, 2012 04:59
A tool to aid in navigation of The Rubicon.
#!/usr/bin/python
# coding: utf-8
""" Rubicon Codec v.01 """
import sys;
off = u'░';
on = u'█';
@ixtli
ixtli / test.css
Created September 13, 2012 00:52
Circle vs Rect intersection volume in 2D
canvas {
background-color: rgba(0,0,0,.1);
}
@ixtli
ixtli / Makefile
Created June 27, 2012 05:39 — forked from mjc/Makefile
Example Q&D makefile. untested.
CFLAGS="-g -Wall"
DEPS="foo.o bar.o baz.o"
TARGET=progname
.PHONY: clean all
$(TARGET): $(DEPS)
$(CXX) -o $(TARGET) $(CFLAGS) $(CXXFLAGS) $(DEPS)
div#wrapper div.arrow {
top: 232px;
width: 100px;
height: 100px;
position: absolute;
overflow: hidden;
box-shadow: 0 16px 10px -17px rgba(0, 0, 0, 0.5);
}
div#wrapper div.arrow:after {