Skip to content

Instantly share code, notes, and snippets.

@myun2
myun2 / pilot.html
Last active February 25, 2018 09:05
<!DOCTYPE html><html><head><title>Pilot</title>
<link href="pilot.css" rel="stylesheet" type="text/css">
<style type="text/css">
* { margin: 0; padding: 0; }
body {
/*font-family: -apple-system, BlinkMacSystemFont,*/
font-family: "Helvetica Neue", "Segoe UI", sans-serif;
letter-spacing: 0.01em;
background-color: #170f0f;
@myun2
myun2 / denim.css
Last active February 14, 2018 19:43
* { margin: 0; padding: 0; }
body {
font-family: -apple-system, BlinkMacSystemFont,
"Helvetica Neue", "Segoe UI", sans-serif;
letter-spacing: 0.01em;
background-color: #fefefe;
}
header { background-color: #080808; }
header.fixed { position: fixed; width: 100%; }
class @MeaveCss
constructor: () ->
@content = ''
add: (selector, prop, value) ->
@content += selector + "{" + prop + ":" + value + "}"
render: () ->
@content
FROM centos:6
# Update packages
RUN yum update -y && yum upgrade -y
# Install packages
RUN yum install -y gcc gcc-g++ git
# Install RVM
RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB
@myun2
myun2 / famspec.md
Last active September 25, 2017 12:29
@myun2
myun2 / matrix_raincode.sh
Last active July 5, 2017 09:18 — forked from khakimov/gist:3558086
Matrix Effect in you terminal
echo -e "\e[1;40m"
clear
while :; do
echo $LINES $COLUMNS $(( $RANDOM % $COLUMNS)) $(( $RANDOM % 72 ))
sleep 0.05
done | awk '{ letters="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789@#$%^&*()"; c=$4; letter=substr(letters,c,1);a[$3]=0;for (x in a) {o=a[x];a[x]=a[x]+1; printf "\033[%s;%sH\033[2;32m%s",o,x,letter; printf "\033[%s;%sH\033[1;37m%s\033[0;0H",a[x],x,letter;if (a[x] >= $1) { a[x]=0; } }}'
RGB<T> = Tuple<T,T,T>
RGBA<T> = Tuple<T,T,T,T>
XY<T> = Tuple<T,T>
XYZ<T> = Tuple<T,T,T>
Vector<T>
We couldn’t find that file to show.
@myun2
myun2 / .gitignore
Last active May 18, 2017 11:25
diamond.c
diamond