This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script> | |
const margin = { top: 20, right: 20, bottom: 40, left: 40 }; | |
const height = 400 - margin.top - margin.bottom; | |
const width = 960 - margin.left - margin.right; | |
let colorToData = {}; | |
let timer, startTime, selectedDatum; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<style> | |
svg { | |
pointer-events: none; | |
} | |
</style> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script> | |
const margin = { top: 20, right: 20, bottom: 40, left: 40 }; | |
const height = 400 - margin.top - margin.bottom; | |
const width = 960 - margin.left - margin.right; | |
let timer, startTime; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script> | |
const height = 400; | |
const width = 960; | |
let timer, startTime; | |
function showTimeSince(startTime) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script> | |
var height = 500; | |
var width = 960; | |
var timer, startTime; | |
var startTime; | |
var BATCH_SIZE = 100; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script> | |
var height = 500; | |
var width = 960; | |
var timer, startTime; | |
var startTime; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script> | |
var height = 500; | |
var width = 960; | |
var timer, startTime; | |
var startTime; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
$(document).ready(function() { | |
var d3data; | |
var dydata; | |
$('button.points').on('click', function() { | |
var i = 0; | |
var points = parseInt($('input.points').val(), 10); | |
var maxValue = 10000; | |
var curTime = new Date().getTime(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Written by Jonathan Balsano <[email protected]> | |
# Example usage: ./commit-wrapper.sh "Jonathan Balsano" "[email protected]" master topic_branch "Bug 999 - Unwrapped Commits" | |
if [ -z "$1" ] || [ -z "$2" ] || [ -z "$3" ] || [ -z "$4" ] || [ -z "$5" ]; then | |
echo "usage: ./commit-wrapper.sh <author> <cla_email> <excl_oldest> <newest> <prepend_bug>" | |
exit 1 | |
fi | |
export AUTHOR="$1" | |
export CLA_EMAIL="$2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#Example 1 - Overwrite a line with a longer line | |
echo "This is a line\c" | |
sleep .5 | |
echo "\rThis is another line, overwriting the last one." | |
#Example 2 - Overwrite a line with a shorter line | |
echo "This is a much longer line than the one we're about to write\c" | |
sleep .5 |
NewerOlder