This file contains 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
#define F_CPU 20000000 | |
#include <avr/io.h> | |
#include <avr/interrupt.h> | |
#include <util/delay.h> | |
#include <stdio.h> | |
#include <math.h> | |
/* | |
----------------------- | |
Self-Balancing Unicycle |
This file contains 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
/* | |
This header declares structures and interfaces for manipulating finite automata, | |
both deterministic and nondeterministic. | |
The code is written in a portable subset of C++11. The only C++11 features used | |
are std::unordered_map and std::unordered_set, which easily can be replaced with | |
the (less-efficient) C++03 equivalents: std::map and std::set. | |
*/ | |
#ifndef FINITE_AUTOMATON_H |
This file contains 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 -O | |
################################################################################ | |
################################################################################ | |
# | |
# State-Based Text Merging Algorithm | |
# For 6.033 Design Project 2 | |
# TA: Katherine Fang | |
# 9 May 2012 | |
# |
This file contains 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
.container{width:100%;max-width:1210px;padding-left:20px;padding-right:20px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin-left:auto;margin-right:auto}.row{*zoom:1}.row:before,.row:after{display:table;content:""}.row:after{clear:both}@media(max-width:767px){.row:after{clear:none}}.span1{float:left;*zoom:1}.span1:before,.span1:after{display:table;content:""}.span1:after{clear:both}@media(max-width:767px){.span1{margin-top:inherit;margin-bottom:inherit;float:none}.span1:first-child{margin-top:0}.span1:last-child{margin-bottom:0}.span1:after{clear:none}}.span2{float:left;*zoom:1}.span2:before,.span2:after{display:table;content:""}.span2:after{clear:both}@media(max-width:767px){.span2{margin-top:inherit;margin-bottom:inherit;float:none}.span2:first-child{margin-top:0}.span2:last-child{margin-bottom:0}.span2:after{clear:none}}.span3{float:left;*zoom:1}.span3:before,.span3:after{display:table;content:""}.span3:after{clear:both}@media(max-width:767px){.span3{margin-top:inherit; |
This file contains 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 -O | |
from collections import defaultdict | |
from random import random, choice | |
from string import ascii_lowercase | |
from subprocess import Popen, PIPE | |
from time import time, sleep | |
# get a list of words with only ASCII characters | |
words = [w.strip().lower() for w in open("/usr/share/dict/words").readlines()] | |
words = [w for w in words if all([c in ascii_lowercase for c in w])] |
This file contains 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 -O | |
# partition A[p:r] in place about x, and return the final position of the pivot | |
def partition(A, p, r, x): | |
# find the index of the pivot | |
i = -1 | |
for j in range(p, r): | |
if A[j] == x: | |
i = j | |
break |
This file contains 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 -O | |
import base64, getpass, hashlib | |
domain = raw_input('Domain: ').strip().lower() | |
key = getpass.getpass('Key: ') | |
bits = domain + '/' + key | |
for i in range(2 ** 16): | |
bits = hashlib.sha256(bits).digest() | |
password = base64.b64encode(bits)[:16] |
This file contains 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
-- Usage: | |
-- $ ./elementizer esther | |
-- Es Th Er | |
import Data.Char (isLetter, toLower) | |
import Data.Function.Memoize (memoFix) | |
import Data.List (intercalate, isPrefixOf) | |
import System.Environment (getArgs) | |
elements = [ "H" , "He" , "Li" , "Be" , "B" , "C" , "N" , "O" , "F" |
This file contains 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
1 subgoal | |
w, x, y, z : category | |
oMap : w -> x | |
fMap : forall x0 y : w, arrow w x0 y -> arrow x (oMap x0) (oMap y) | |
fIdent : forall x0 : w, fMap x0 x0 (id w) = id x | |
fComp : forall (x0 y z : w) (f : arrow w x0 y) (g : arrow w y z), | |
compose x (fMap y z g) (fMap x0 y f) = fMap x0 z (compose w g f) | |
oMap0 : x -> y | |
fMap0 : forall x0 y0 : x, arrow x x0 y0 -> arrow y (oMap0 x0) (oMap0 y0) | |
fIdent0 : forall x0 : x, fMap0 x0 x0 (id x) = id y |
This file contains 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
// In the lambda calculus, an expression must be one of the following: | |
// 1) function(x) { return expression; } | |
// 2) expression(expression) | |
// 3) x | |
// Pairs | |
const pair = function(x) { | |
return function(y) { | |
return function(f) { |
OlderNewer