I hereby claim:
- I am fuzzy on github.
- I am fuzzyoni (https://keybase.io/fuzzyoni) on keybase.
- I have a public key ASDbCi6Ql9dCX55peTJPnWDtROfp28awlehEcP25o2tsnQo
To claim this, I am signing this object:
#!/bin/sh | |
KBPW_IS_USER=0 | |
KBPW_TEAMNAME= | |
KBPW_NAMESPACE="kbpw" | |
test -z "$(which jq 2>/dev/null)" && ( | |
printf "\033[1;31mERROR\033[0m: This scripts depends on jq being installed." | |
exit 1 | |
) |
allow.chflags; # allow setuid inside the jail | |
allow.mount; # allow mounting filesystems | |
allow.mount.devfs; | |
allow.mount.fdescfs; | |
allow.mount.fusefs; | |
allow.mount.nullfs; | |
allow.mount.procfs; | |
allow.mount.linprocfs; | |
allow.mount.linsysfs; | |
allow.mount.tmpfs; |
#!/bin/sh -e | |
clr="\033[0m" | |
pad=" " | |
spad=" " | |
setbg() { | |
echo "\033[1;${1};${2}m" | |
} |
I hereby claim:
To claim this, I am signing this object:
// Copyright (c) 2019 Mike 'Fuzzy' Partin | |
// Usage of this source code is governed by the 3 clause BSD License | |
// that can be found in the LICENSE.md file | |
module main | |
// link in the libc for network sockets. This is only temporary until the vlib bugs get ironed out | |
import os |
// Copyright (c) 2019 Mike 'Fuzzy' Partin | |
// Copyright (c) 2019 Neal Zerby | |
// Usage of this source code is governed by the 3 clause BSD License | |
// that can be found in the LICENSE.md file | |
module main | |
import sync | |
import time |
#!/usr/bin/env python2 | |
import sys | |
class Line(object): | |
average = 0 | |
minimum = 0 | |
maximum = 0 | |
host = None |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ | |
REBUILDING X86/AMD64 DOCKER IMAGES FOR AN ARM | |
SWARM. | |
Mike 'Fuzzy' Partin | |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ | |
Table of Contents | |
───────────────── |
% include('header.tpl') | |
<div id="main"> | |
<div class="header"> | |
<h1>Salt Event Bus Viewer</h1> | |
</div> | |
<br /> | |
<center> | |
<a href="#" onclick="startEventsWorker();">Start</a> - | |
<a href="#" onclick="stopEventWorker();">Stop</a><br /> |
/* | |
Events worker | |
*/ | |
var salt_events; | |
function startEventsWorker() { | |
if (typeof(Worker) !== "undefined") { | |
if (typeof(salt_events) == "undefined") { | |
salt_events = new Worker("/goat/events.js"); | |
} |