Here is a description of `Finger Binary in Wikipedia`_.
Finger binary is a system for counting and displaying binary numbers on the
| ּ_בּ | |
| בּ_בּ | |
| טּ_טּ | |
| כּ‗כּ | |
| לּ_לּ | |
| מּ_מּ | |
| סּ_סּ | |
| תּ_תּ | |
| ٩(×̯×)۶ | |
| ٩(̾●̮̮̃̾•̃̾)۶ |
| " Vim syntax file | |
| " Language: HTML (version 5) | |
| " Maintainer: Rodrigo Machado <rcmachado@gmail.com> | |
| " URL: http://gist.github.com/256840 | |
| " Last Change: 2010 Aug 26 | |
| " License: Public domain | |
| " (but let me know if you liked it :) ) | |
| " | |
| " Note: This file just adds the new tags from HTML 5 | |
| " and don't replace default html.vim syntax file |
| *.pyc | |
| .*.swp | |
| MANIFEST |
| from appscript import * | |
| import re, os | |
| from shutil import copy | |
| MY_PLAYLIST = u'walkman' | |
| DEST = '/Volumes/WALKMAN/MUSIC' | |
| iTunes = app('iTunes') | |
| playlist = None |
| #include <assert.h> | |
| #include <stdarg.h> | |
| #include <stdbool.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <unistd.h> | |
| enum type { | |
| NIL, |
| /* The world's smallest Brainfuck interpreter in C, by Kang Seonghoon | |
| * http://j.mearie.org/post/1181041789/brainfuck-interpreter-in-2-lines-of-c */ | |
| s[99],*r=s,*d,c;main(a,b){char*v=1[d=b];for(;c=*v++%93;)for(b=c&2,b=c%7?a&&(c&17 | |
| ?c&1?(*r+=b-1):(r+=b-1):syscall(4-!b,b,r,1),0):v;b&&c|a**r;v=d)main(!c,&a);d=v;} |
Here is a description of `Finger Binary in Wikipedia`_.
Finger binary is a system for counting and displaying binary numbers on the
| class PrototypeStore(dict): | |
| def __setattr__(self, name, value): | |
| self[name] = value | |
| def __getattr__(self, name): | |
| return self[name] | |
| class PrototypeMeta(type): | |
| def __new__(metacls, cls_name, bases, attrs): | |
| cls = type.__new__(metacls, cls_name, bases, attrs) |
| <?php | |
| // ere2pcre -- a drop-in replacement for ereg* functions | |
| // written by Kang Seonghoon <public+ere2pcre@mearie.org>. | |
| // | |
| // this library is dedicated to the public domain. for the jurisdictions that | |
| // does not recognize the public domain, CC0 1.0 Universal Public Domain | |
| // Dedication applies. | |
| function _ere2pcre_escape($c) { | |
| if ($c == "\0") { |
| #!/usr/bin/env python | |
| import sys | |
| import types | |
| import operator | |
| class Runtime: | |
| def __init__(self, env={}, stack=[]): | |
| self.env = { | |
| # Primitive words, not an impressive base but it works |