This file contains 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
#domain-needed | |
bogus-priv | |
expand-hosts | |
addn-hosts=/var/lib/dnsmasq/hosts | |
# interfaces ... | |
interface=eth1 | |
# DCHP configs ... |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>XHR upload large file with slice</title> | |
<style> | |
#debug { | |
border: 3px dashed #ccc; | |
margin: 10px 0; | |
padding: 10px; |
This file contains 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 | |
from influxdb import InfluxDBClusterClient | |
influx_host = "127.0.0.1" | |
influx_port = 8086 | |
influx_user = "user" | |
influx_pass = "pass" | |
database = "example" |