The [MySQL Input Plugin][8] for Telegraf gathers data from a MySQL server.
For connections that are local to the MySQL server, use localhost
as your hostname:
#!/bin/sh | |
# digital-ocean user-data-file to convert debian into alpine | |
# doctl -v compute droplet create --image debian-11-x64 --region blr1 --size s-1vcpu-1gb-amd --enable-ipv6 --enable-private-networking --droplet-agent=false --ssh-keys 33324601 --user-data-file do-alpine.sh doblr1 | |
# ssh techops@<droplet-ip> | |
if [ "$(id -u)" -ne "0" ]; then | |
echo "do-alpine: script must be run as root" >&2 | |
exit 1 | |
fi |
This project is being formally deprecated (informally, it was a while ago) as of today due to various factors:
import 'dart:math'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter/rendering.dart'; | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override |
// Types for the result object with discriminated union | |
type Success<T> = { | |
data: T; | |
error: null; | |
}; | |
type Failure<E> = { | |
data: null; | |
error: E; | |
}; |
################################################################################ | |
# VC707 Constraints File | |
# Sorted (except for FMC, fuck FMC) and human readable | |
# Author: Mitchell Gu | |
################################################################################ | |
################################################################################ | |
# CLOCKS | |
################################################################################ |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>OP-XY MIDI Control</title> | |
</head> | |
<body> | |
<div id="status"></div> | |
<button onclick="opxy.start()">Start</button> | |
<button onclick="opxy.stop()">Stop</button> |