I hereby claim:
- I am mtak on github.
- I am mtak (https://keybase.io/mtak) on keybase.
- I have a public key whose fingerprint is 6059 9686 E351 C6AB 93BC FB20 B3A6 4441 6954 90BB
To claim this, I am signing this object:
#!/bin/bash | |
exec >run_speedtest.log 2>&1 | |
PATH=/home/mtak/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | |
graphite_server=dom2.int.mtak.nl | |
graphite_port=2003 | |
speedtest=$(/home/mtak/bin/speedtest -f json -u bps) |
mtak@rubiks:~/dev/vault-ui-bugfix(root-to..)$ ./run-docker-compose-dev | |
------------- yarn install ------------- | |
yarn install v1.3.2 | |
[1/4] Resolving packages... | |
success Already up-to-date. | |
Done in 0.51s. | |
------------- docker-compose up -d ------------- | |
Creating network "vaultuibugfix_default" with the default driver | |
Creating vaultuibugfix_vault_1 | |
Creating vaultuibugfix_webpack_1 |
I hereby claim:
To claim this, I am signing this object:
/* | |
* This sketch polls an LDR to watch for pulses | |
* of a digital power meter. | |
* Blog post at: http://mtak.nl/it/esp8266-based-power-meter-in-kibana/ | |
* | |
*/ | |
#include <Arduino.h> | |
#include <ESP8266WiFi.h> | |
#include <PubSubClient.h> |
# Simple systemd startup script for the Ubiquiti UniFi controller software | |
# | |
# Copy this file to /lib/systemd/system/unifi.service | |
# Edit the path to the ace.jar | |
# Reload systemd with: | |
# $ systemctl daemon-reload | |
# Start the service at system boot: | |
# $ systemctl enable unifi | |
# Start the service with | |
# $ systemctl start unifi |
#!/bin/sh | |
# set hostname | |
echo <%= hostname %> > /etc/hostname | |
/etc/init.d/hostname.sh | |
# Set up networking | |
cat > /etc/network/interfaces << EOF | |
# The loopback network interface | |
auto lo |
#!/usr/bin/perl -w | |
use strict; | |
use Data::Dumper; | |
use IO::Socket::INET; | |
use POSIX; | |
my $carbon_host = "10.100.0.61"; | |
my $carbon_port = "2003"; |
#include <stdio.h> | |
#include <sys/ipc.h> | |
#include <sys/shm.h> | |
#include <sys/stat.h> | |
int main () | |
{ | |
int segment_id; | |
char bogus; |
# Terminal options | |
shopt -s histappend | |
shopt -s cdspell | |
#PROMPT_COMMAND='history -a' | |
HISTFILESIZE=5000 | |
HISTCONTROL=ignoredups | |
TERM=xterm | |
export PROMPT_COMMAND HISTFILESIZE HISTCONTROL TERM | |
# Aliases |