View index.html
| <!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; |
View index.html
| <!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; |
View index.html
| <!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; |
View d3-scatter.js
| (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(); |
View commit-wrapper.sh
| # Written by Jonathan Balsano <jrbalsano@gmail.com> | |
| # Example usage: ./commit-wrapper.sh "Jonathan Balsano" "jrbalsano@gmail.com" 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" |
View tputlines.sh
| #!/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 |
View calendar.css
| .post-content .gce-page-grid .gce-calendar { | |
| color: #B8E0FF !important; | |
| border-color: #B8E0FF !important; | |
| } | |
| gce-list-event div span { | |
| color: #48A0DF !important; | |
| } |