Skip to content

Instantly share code, notes, and snippets.

View joews's full-sized avatar

Joe Whitfield-Seed joews

View GitHub Profile
@joews
joews / styles.less
Created May 7, 2014 11:55
My Atom stylesheet
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed.
*
* If you are unfamiliar with LESS, you can read more about it here:
* http://www.lesscss.org
*/
@joews
joews / gist:de5bc4da913899b31636
Created May 28, 2014 11:33
jQuery plugin to select contents of a contenteditable element
// Select text of a content editable
// http://stackoverflow.com/a/6150060/2806996
// Example usage: $('[contenteditable]:first').selectText()
$.fn.selectText = function() {
var range = document.createRange();
range.selectNodeContents(this[0]);
var sel = window.getSelection();
sel.removeAllRanges();
sel.addRange(range);
@joews
joews / index.html
Created June 7, 2014 16:22
d3 multi-series scatter plot with series and data point transitions
<!DOCTYPE html>
<html>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
function randomInt(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
@joews
joews / dabblet.css
Created June 13, 2014 09:23
Untitled
**
* The first commented line is your dabblet’s title
*/
.wrapper {
position: relative;
}
.line {
position: absolute;
height: 1px;
@joews
joews / d3-bring-to-front.js
Created June 13, 2014 10:49
D3.js bring to front
// Credit Christopher Chiche & Clemens Tolboom
// - http://stackoverflow.com/a/14426477/2806996
d3.selection.prototype.moveToFront = function() {
return this.each(function(){
this.parentNode.appendChild(this);
});
};
d3.selection.prototype.moveToBack = function() {
return this.each(function() {
@joews
joews / index.html
Created June 20, 2014 18:59
d3 gist boilerplate
<!DOCTYPE html>
<html>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
function randomInt(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
@joews
joews / index.html
Created July 24, 2014 13:55
D3 opacity tween vs CSS transform
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
html, body {
height: 100%;
}
@joews
joews / backbone-inflight.js
Created August 15, 2014 09:24
Make Backbone Collections and Models aware of their current sync state
// Patch Backbone Model and Collection to have awareness
// of current sync state.
// Adds an isLoading method and _inFlight count property.
// Fires before:sync and after:sync events.
// Based on http://tbranyen.com/post/how-to-indicate-backbone-fetch-progress
!function() {
function onSyncEnd() {
-- this._inFlight;
this.trigger("after:sync", this);
}
@joews
joews / index.html
Created September 1, 2014 19:29
Demonstrate slow paint in Chrome 39.0.2141.0 canary vs 37.0.2062.94
<!DOCTYPE html>
<html>
<head>
<style>
svg {
}
rect {
fill-opacity: 0.5;
@joews
joews / chart.js
Created September 5, 2014 11:30
c3.js categorical bar chart with colour per category
var colorScale = d3.scale.category10();
var chart = c3.generate({
bindto: '#bar-chart',
data: {
x: 'x',
columns: [
['x', 'apple', 'banana'],
['count', 191, 238],
],