Here is a description of `Finger Binary in Wikipedia`_.
Finger binary is a system for counting and displaying binary numbers on the
| #!/bin/sh | |
| # | |
| # ******************************************* | |
| # WARNING: this does *not* handle 3-way merges properly. | |
| # Anything modified on the local branch since the common base will get ignored. | |
| # | |
| # FOR ANYONE LANDING HERE: | |
| # This script is now updated as part of the git-whistles gem. | |
| # https://github.com/mezis/git-whistles | |
| # ******************************************* |
| /*----------------------------------------------------- | |
| 960 Grid System ~ Core CSS. | |
| Learn more ~ http://960.gs/ | |
| Licensed under GPL and MIT. | |
| -------------------------------------------------------*/ | |
| /* Grid Settings | |
| ---------------------------*/ | |
| // 12-column grid |
| import glob | |
| # declare types of commands | |
| C_ARITMETIC = object() | |
| C_PUSH = object() | |
| C_POP = object() | |
| C_LABEL = object() | |
| C_GOTO = object() | |
| C_IF = object() | |
| C_FUNCTION = object() |
| #!/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 |
| <?php | |
| // ere2pcre -- a drop-in replacement for ereg* functions | |
| // written by Kang Seonghoon <[email protected]>. | |
| // | |
| // 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") { |
| 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) |
Here is a description of `Finger Binary in Wikipedia`_.
Finger binary is a system for counting and displaying binary numbers on the
| /* 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;} |
| #include <assert.h> | |
| #include <stdarg.h> | |
| #include <stdbool.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <unistd.h> | |
| enum type { | |
| NIL, |
| from appscript import * | |
| import re, os | |
| from shutil import copy | |
| MY_PLAYLIST = u'walkman' | |
| DEST = '/Volumes/WALKMAN/MUSIC' | |
| iTunes = app('iTunes') | |
| playlist = None |