Skip to content

Instantly share code, notes, and snippets.

View harlantwood's full-sized avatar
💭
☀️

Harlan T Wood harlantwood

💭
☀️
View GitHub Profile
@harlantwood
harlantwood / An-Introduction-to-the-Gene-Keys-by-Richard-Rudd.md
Last active February 19, 2018 14:24
An Introduction to the Gene Keys by Richard Rudd

Despite their relative accessibility, the Gene Keys in their highest form are an advanced teaching specifically designed for this second group, the Synarchy. The Synarchy are the co-creators of the Synthesis. They are an early constellation of human beings ready to take the next great human evolutionary leap into the higher frequencies of the Siddhis. There are keys within the Gene Keys themselves that describe this community of human beings in more depth, but in a nutshell, the Synarchy is the genetic landing ground for an extremely high frequency group incarnation. The Synarchy points to a higher form of organizational intelligence that operates across all human gene pools.

To enter the spirit of the Synarchy you have to be ready to surrender your sense of your individual self to a higher communal Self. This sacrifice transforms a community into a state of communion — a single mind and heart that functions and thrives through multiple highly differentiated states of human genius.

The Synarchy is also a

@harlantwood
harlantwood / x.coffee
Created April 17, 2013 06:41
Why JS programmers hate Coffee
colors = (tag.toLowerCase() for tag in node.tags when tag.toLowerCase() in COLORS)
@harlantwood
harlantwood / Content-Addressable-Graph-Format.md
Last active December 15, 2015 16:38
A Content Addressable Graph Format

A Content Addressable Graph Format

This document describes by example a filesystem store for content-addressable graph data, using binary blobs natively, with a human-readable layer that can be generated from the blobs.

The purpose is permanence. As opposed to opaque binary formats, this format can be understood by a determined human reader or data archeologist, and can easily be read and written by existing and future software packages.

@harlantwood
harlantwood / base64url-encoding.txt
Created March 30, 2013 08:50
The "URL and Filename safe" Base 64 Alphabet ("base64url")
The "URL and Filename safe" Base 64 Alphabet ("base64url")
from http://tools.ietf.org/html/rfc4648#section-5
Value Encoding Value Encoding Value Encoding Value Encoding
0 A 17 R 34 i 51 z
1 B 18 S 35 j 52 0
2 C 19 T 36 k 53 1
3 D 20 U 37 l 54 2
4 E 21 V 38 m 55 3
5 F 22 W 39 n 56 4
@harlantwood
harlantwood / Build the Collaborative Internet.md
Last active December 15, 2015 01:09
Build the Collaborative Internet

We aspire to enable a broad ecosystem of applications that operate across boundaries of data type and locale. These applications will likely be cloud based and draw from our personal clouds as well as data sources all across the internet.

In order to accomplish this we need to build certain infrastructure-level tools and protocols that will support the development of distributed applications, such as trust networks, fork-based collaboration, and annotation. We also need to provide users with streamlined ways to navigate the myriad data pathways that become available to them.

Core principles of the distributed cloud ecosystem

  • Massively distributed data & functionality
  • Unix design principles - atomic units of functionality
  • Data interoperability
ruby -e 'system("heroku create z#{29.times.map{ (("a".."z").to_a + ("0".."9").to_a).sample }.join}")'
source 'http://rubygems.org'
gem 'sinatra'
@harlantwood
harlantwood / README.md
Created February 22, 2013 00:40 — forked from mbostock/.block

The tree layout implements the Reingold-Tilford algorithm for efficient, tidy arrangement of layered nodes. The depth of nodes is computed by distance from the root, leading to a ragged appearance. Cartesian orientations are also supported. Implementation based on work by Jeff Heer and Jason Davies using Buchheim et al.'s linear-time variant of the Reingold-Tilford algorithm. Data shows the Flare class hierarchy, also courtesy Jeff Heer.

@harlantwood
harlantwood / 64^64.md
Last active December 13, 2015 21:08
URIs using SHA-384 based content addresses. Since the 2^384 address space is equivalent to 64^64, we therefore use URI-safe base 64 encoding, 64 characters in length.
http://nodemap.org/lFPMNCeO8thvatFzF3cNboAMFhImxVgPeCVpcKkeO_tXemKuc9wzasUVxvxYUDRg
http://nodemap.org/a8SKRhNfjYIRuyAoKkoRKUsv0tm-z-4-_-_vnPsMD4sakn-SN-bjsNxn7pkzZ86c
http://nodemap.org/9djZv8sKCpQeS2HaQbvCmJ9VF8AgSarCANEYKQ5FMUW4tliVRGLjYxqkq3WdYnqV
root = exports ? this
root.collections_viz = (json_path) ->
d3.json json_path, (data) ->
width = 600
height = 600
format = d3.format(",d")
pack = d3.layout.pack()
.size([ width - 4, height - 4 ])