This file contains hidden or 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
#!/usr/bin/python | |
# coding: utf-8 | |
""" Rubicon Codec v.01 """ | |
import sys; | |
off = u'░'; | |
on = u'█'; |
This file contains hidden or 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
canvas { | |
background-color: rgba(0,0,0,.1); | |
} |
This file contains hidden or 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
CFLAGS="-g -Wall" | |
DEPS="foo.o bar.o baz.o" | |
TARGET=progname | |
.PHONY: clean all | |
$(TARGET): $(DEPS) | |
$(CXX) -o $(TARGET) $(CFLAGS) $(CXXFLAGS) $(DEPS) |
This file contains hidden or 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
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 { |
NewerOlder