Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head>
<title>Custom Circles</title>
<!--
For production (minified) code, use:
<script type="text/javascript" src="dygraph-combined.js"></script>
-->
<script type="text/javascript" src="http://dygraphs.com/dygraph-combined-dev.js"></script>
<script type="text/javascript" src="http://dygraphs.com/extras/shapes.js"></script>
@kberg
kberg / gist:8102aa43d713570551f9
Last active August 29, 2015 14:21
Script for updating files
for file in *html ; do
echo $file
sed -i .bak 's/\.\.\/dygraph-dev.js/http\:\/\/dygraphs.com\/dygraph-combined-dev\.js/' $file
sed -i .bak 's/\.\.\/src\/extras/http\:\/\/dygraphs.com\/extras/' $file
gist -f index.html $file | sed 's/gist.github.com/bl.ocks.org/' | sed 's/https/http/'
done
@kberg
kberg / index.html
Created May 26, 2015 15:51
Hello, world!
<!DOCTYPE html>
<script type="text/javascript" src="http://dygraphs.com/dygraph.js"></script>
<font size=-1>(Mouse over to highlight individual values. Click and drag to zoom. Double-click to zoom out.)</font><br/>
<table><tr><td>
<div id="demodiv"></div>
</td><td valign=top>
<div id="status" style="width:200px; font-size:0.8em; padding-top:5px;"></div>
</td>
</tr></table>
<script type="text/javascript">
@kberg
kberg / preconditions.epf
Created February 21, 2012 09:17
Add JDT Templates that set Guava Preconditions
# @title Add JDT templates that set Guava Preconditions
# @description Sets templates that surround expressions with Preconditions.check{NotNull,Argument,State}. Warning: this can replace any previously defined template so use with care.
# @task_type LASTMOD
#
# Written by Robert Konigsberg, 02-20-2012.
# See http://blatherberg.wordpress.com/2012/02/20/inserting-guava-preconditions-in-eclipse
#
file_export_version=3.0
/instance/org.eclipse.jdt.ui/org.eclipse.jdt.ui.text.custom_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates><template autoinsert\="false" context\="java" deleted\="false" description\="Surround expression with checkNotNull Precondition." enabled\="true" name\="checkNotNull (instance)">${\:import(com.google.common.base.Preconditions)}Preconditions.checkNotNull(${word_selection})</template><template autoinsert\="false" context\="java" deleted\="false" description\="Surround expression with checkNotNull Precondition (with static import)." enabled\="true" name\="checkNo