Navigation:
- Rotate - MMB-drag
- Pan - Shift-MMB-drag
- Zoom - Wheel or Ctrl-MMB-drag
Numpad navigation:
javascript:(function(){ var s=location.href.replace(/[^A-Za-z]/g,'');var url='http://translate.google.com/translate_tts?ie=UTF-8&tl=it&q='+s; console.log(url); var a=document.createElement('audio');a.setAttribute('src',url);a.play();}()) |
import datetime | |
import dateutil.parser | |
import optparse | |
from Queue import Queue | |
import tempodb | |
from threading import Thread | |
class Worker(Thread): | |
"""Thread executing tasks from a given tasks queue""" | |
def __init__(self, tasks): |
# Script to export TempoDB data. | |
# Relies on TempoDB python client v1.0: https://github.com/tempodb/tempodb-python/tree/v1.0 | |
import datetime | |
import os | |
import re | |
import json | |
import uuid | |
from tempodb.client import Client |
import dateutil.parser | |
import optparse | |
from Queue import Queue | |
from tempodb.client import Client | |
from tempodb.protocol import DataPoint | |
from threading import Thread | |
class Worker(Thread): | |
"""Thread executing tasks from a given tasks queue""" |
import base64 | |
import argparse | |
import httplib | |
import os | |
import sys | |
import time | |
# run 'python event-replay.py -h' to see usage. | |
# set default environment info here if you don't want to put it on the command |
int numSends; // counter to count number of sends to Cloud | |
void setup() { | |
// put your setup code here, to run once: | |
SerialCloud.begin(115200); | |
SerialUSB.begin(9600); | |
SerialUSB.println("Hello Cloud example has started..."); | |
numSends = 0; // count number of sends | |
} |
'use strict'; | |
const fs = require('fs'); | |
const files = process.argv.slice(2); | |
function transformRow(row, headers) { | |
let outObj = {}; | |
for (let i=0; i<headers.length; i++) { | |
outObj[headers[i]] = row[i]; | |
} |
<!doctype html> | |
<html> | |
<head> | |
<title>Apiary test</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<style> | |
body { margin: 0; } | |
.header, |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="content-type" content="text/html;charset=utf-8" /> | |
<title>Chicago Justice Project - Data portal</title> | |
<link href="http://data.chicagojustice.org/site.css" rel="stylesheet" type="text/css" /> | |
<link type="text/css" href="http://data.chicagojustice.org/css/custom-theme/jquery-ui-1.8.15.custom.css" rel="Stylesheet" /> | |
<script type="text/javascript" src="http://data.chicagojustice.org/js/jquery-1.6.2.min.js"></script> | |
<script type="text/javascript" src="http://data.chicagojustice.org/js/jquery-ui-1.8.15.custom.min.js"></script> |