Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://dygraphs.com/dygraph-combined-dev.js"></script>
</head>
<body>
<div id="div_g1" style="width:600px; height:300px;"></div>
<center>
<input id='ylog' type="button" value="y log scale" onclick="setLogScale('y', true)">
@kberg
kberg / README.md
Last active August 29, 2015 14:21
Log Scales along the x and y axis.

This example demostrates log scale visualziation across the x and y axes.

Note that x axis log scales are not permitted when the x axis is a date.

from __future__ import division
from collections import Counter
from functools import reduce
from itertools import permutations
from statistics import stdev
decks = [
[+1, +1, +1, 0, 0, 0, 0, 0, -1, -1],
[+1, +1, +1, 0, 0, 0, 0, -1, -1],
[+1, +1, +1, 0, 0, 0, -1, -1],
@kberg
kberg / ares-notes.md
Last active September 22, 2020 03:24
konigsberg's TM development notes

Quick links:

Current PRs

Simple notes

When you run npm run start, it reads package.json, specifically 'scripts' So npm run start seems to launch the 'start' script there. It runs server.js, which is server.ts, and you can tell because at the bottom it logs stuff.

Running works with launch.json listed at the bottom. Remember to build first with Ctrl-Shift-B!