Skip to content

Instantly share code, notes, and snippets.

View harlantwood's full-sized avatar
💭
☀️

Harlan T Wood harlantwood

💭
☀️
View GitHub Profile
@harlantwood
harlantwood / index.html
Created January 26, 2012 10:11
Sidebar from http://emergentbydesign.com/ by Venessa Miemis -- links to the enlightened next net. Rendered version here: http://bl.ocks.org/d/1682082/
<h1>links to the enlightened next net</h1>
<i>Sidebar from <a href="http://emergentbydesign.com/">emergentbydesign.com</a> by Venessa Miemis</i>
<li id="linkcat-54175866" class="widget widget_links"><h2 class="widgettitle">Emergence Collective</h2>
<ul class='xoxo blogroll'>
<li><a href="http://k21st.wordpress.com/" title="a coherent view of the current state of science, technology, art and philosophy" target="_blank">21st Century Knowledge</a></li>
<li><a href="http://www.accelerationwatch.com/index.html" target="_blank">Acceleration Watch (John M Smart)</a></li>
<li><a href="https://twitter.com/#!/proteuskor" target="_blank">Adam Scislowicz</a></li>
<li><a href="http://www.alchemyofchange.net/t/" target="_blank">Alchemy of Change (Gideon Rosenblatt)</a></li>
<li><a href="http://allisasis.info/" target="_blank">allisasis (Glistening Deepwater)</a></li>
@harlantwood
harlantwood / INNOCENCE.md
Created September 14, 2013 13:08
INNOCENCE
# Usage:
# npm install coffee-script
# coffee promises_example_jquery.coffee
#
_ = require 'underscore'
$ = require 'jquery'
natural = require 'natural'
log = require './log.coffee'
@harlantwood
harlantwood / subdomain.rb
Last active December 18, 2015 13:39
Random subdomain segment generation
#!/usr/bin/env ruby
require 'securerandom'
MAX_SUBDOMAIN_SEGMENT_SIZE = 63
key = SecureRandom.base64 MAX_SUBDOMAIN_SEGMENT_SIZE*2
key.gsub!(/\W/, '').downcase!
key = key[0...MAX_SUBDOMAIN_SEGMENT_SIZE]
puts key
@harlantwood
harlantwood / My Raspbian Setup on Rasberry Pi.md
Last active December 17, 2015 21:49
My Raspbian Setup on Rasberry Pi
@harlantwood
harlantwood / My Arch Linux Setup on Rasberry Pi.md
Last active December 17, 2015 18:19
My Arch Linux Setup on Rasberry Pi

The gargoyles from Snow Crash have arrived.  Soon the mere mortals will be seen as the Amish are today, driving horse and buggy on Pennsylvania back roads.

@harlantwood
harlantwood / An Open Source Budget for an Autonomous Distributed Web.md
Last active December 17, 2015 09:39
An Open Source Budget for an Autonomous Distributed Web

Moved to

@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.