This file contains hidden or 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
date | with_nonicu | for_nonicu | with_icu_novent | for_icu_novent | with_icu_yesvent | for_icu_yesvent | |
---|---|---|---|---|---|---|---|
2021-07-12 12:00:00 | 0 | 1 | 0 | 1 | 4 | 3 | |
2021-07-13 12:00:00 | 0 | 4 | 0 | 1 | 4 | 3 | |
2021-07-14 12:00:00 | 0 | 4 | 0 | 3 | 4 | 3 | |
2021-07-15 12:00:00 | 0 | 3 | 0 | 3 | 5 | 4 | |
2021-07-16 12:00:00 | 0 | 2 | 0 | 4 | 5 | 4 | |
2021-07-17 12:00:00 | 0 | 2 | 0 | 4 | 3 | 4 | |
2021-07-18 12:00:00 | 0 | 3 | 0 | 4 | 3 | 5 | |
2021-07-19 12:00:00 | 0 | 3 | 0 | 5 | 5 | 5 | |
2021-07-20 12:00:00 | 0 | 3 | 0 | 4 | 4 | 6 |
This file contains hidden or 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
#!/usr/bin/env python | |
# | |
# The gist of it is: try to run a trivial spectrum-snarfing spectrum | |
# analyzer kind of thing. It will crash at some point pretty quickly | |
# on my B210. | |
# | |
# Sample run at the bottom | |
import time |
This file contains hidden or 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
<html> | |
<head> | |
<link href="css/page.css" rel="stylesheet" type="text/css"> | |
<title>TAI Picker</title> | |
<script> | |
function tai_offset_of(d) { | |
// d: Date object | |
// Returns the TAI offset at that time |
This file contains hidden or 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
#!/usr/bin/env python | |
# | |
# Usage: | |
# decide.py ==> yes/no, 50/50 | |
# decide.py 0.1 ==> gives a 10% chance of yes | |
# decide.py foo bar 3xbaz ==> gives a choice from foo bar baz baz baz | |
# | |
import sys | |
import random |