Skip to content

Instantly share code, notes, and snippets.

View davenquinn's full-sized avatar

Daven Quinn davenquinn

View GitHub Profile

Bug in CairoSVG: text on path with spaces

May 18, 2016

Text on path with spaces causes an abort trap. Replicated in 1.14, 1.15, and current HEAD (e825f59) Probably an upstream bug in cairo?

In head version:

> cairosvg -o test.pdf test. svg
@davenquinn
davenquinn / main.js
Created December 8, 2015 10:09
Modal mineralogy with d3-ternary
test
@davenquinn
davenquinn / crystal-knob.json
Created April 27, 2015 09:58
Ternary diagram for modal mineralogy of Crystal Knob xenoliths
{
"modes": [
{
"color": "#456AA0",
"id": "CK-2",
"modes": {
"al": 0.00015534519258002803,
"cpx": 0.124458200734799,
"ol": 0.6427568828251591,
"opx": 0.22787665802921236,
@davenquinn
davenquinn / README.md
Last active February 20, 2018 20:40
d3-ternary demo with soil types

This is a simple demo of the d3-ternary module for reusable ternary diagrams. It is an updated version of this one by Tom Pearson, showing new graticule, axis labeling, and resizing features.

@davenquinn
davenquinn / index.php
Created June 8, 2012 22:33
Load jQuery from Google CDN
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/jquery.min.js"></script>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>