Skip to content

Instantly share code, notes, and snippets.

View jrideout's full-sized avatar

Jacob Rideout jrideout

View GitHub Profile
@jrideout
jrideout / gist:2870320
Created June 4, 2012 19:27
synfigstudio gdb backtrace
$ gdb synfigstudio
GNU gdb 6.3.50-20050815 (Apple version gdb-1708) (Mon Aug 15 16:03:10 UTC 2011)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "x86_64-apple-darwin"...Reading symbols for shared libraries .............................. done
(gdb) run
@jrideout
jrideout / README.md
Created November 14, 2012 22:41 — forked from jasondavies/.block
Parallel Coordinates

This parallel coordinates visualization of cars from the ‘70s and ‘80s demonstrates one of D3 2.5.0’s new interactive features: the brush component. By clicking and dragging along any axis, you can specify a filter for that dimension. The brush component is also used in the updated scatterplot matrix example.

dc.dataTable2 = function(parent, chartGroup) {
var LABEL_CSS_CLASS = "dc-table-label";
var ROW_CSS_CLASS = "dc-table-row";
var COLUMN_CSS_CLASS = "dc-table-column";
var GROUP_CSS_CLASS = "dc-table-group";
var _chart = dc.baseChart({});
var _size = 25;
var _columns = [];
<!doctype html>
<html lang="en">
<head>
<title>Code coverage report for dc.js/dc.js</title>
<meta charset="utf-8">
<link rel="stylesheet" href="prettify.css">
<style>
body, html {
@jrideout
jrideout / buildDocs.js
Created September 24, 2013 03:17
MD API parser tools
var esprima = require('esprima'),
escodegen = require('escodegen');
var api = {};
var insert = function (str, fragments) {
var i, fragment, pos;
// Sort in descending order since a fragment needs to be
// inserted from the last one, to prevent offsetting the others.
@jrideout
jrideout / index.html
Last active December 23, 2015 23:29 — forked from jsundram/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<title>dc.js multi-line chart attempt</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="http://nickqizhu.github.io/dc.js/css/dc.css"/>
<link rel="stylesheet" type="text/css" href="http://nickqizhu.github.io/dc.js/css/bootstrap.min.css"/>
@jrideout
jrideout / README.md
Last active December 24, 2015 16:19
DC Iris Demo

DC Iris Demo

A demo of dc.js exploring the standard Iris data set and using PCA from node-sylvester and pretty histogram binning from histogram-pretty.

@jrideout
jrideout / README.md
Last active December 26, 2015 06:59
Streaming CSV Reader test

Streaming CSV Reader test

@jrideout
jrideout / README.md
Created October 29, 2013 19:11 — forked from mbostock/.block

A quick visual reference to every ColorBrewer scale; colors by Cynthia Brewer. Available in CSS and JS format. Click on a palette to log the constituent colors in hexadecimal RGB to the console.