Skip to content

Instantly share code, notes, and snippets.

View dankessler's full-sized avatar

Dan Kessler dankessler

View GitHub Profile
@dankessler
dankessler / # git-annex - 2020-01-24_01-55-50.txt
Created January 24, 2020 02:04
git-annex on Ubuntu 18.04.3 LTS - Homebrew build logs
Homebrew build logs for git-annex on Ubuntu 18.04.3 LTS
Build date: 2020-01-24 01:55:50
@dankessler
dankessler / # git-annex - 2020-01-24_00-45-35.txt
Created January 24, 2020 01:04
git-annex on Ubuntu 18.04.3 LTS - Homebrew build logs
Homebrew build logs for git-annex on Ubuntu 18.04.3 LTS
Build date: 2020-01-24 00:45:35
@dankessler
dankessler / .block
Created April 27, 2016 19:41 — forked from mbostock/.block
Hierarchical Edge Bundling
license: gpl-3.0
function sortindex(array){
var ind = [];
for (var i = 0; i < array.length; i++){
ind.push([array[i],i]);
}
ind.sort(function(left,right){
return left[0] < right[0] ? -1 : 1;
});
var indices = [];