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
(404-handler) { | |
handle_errors { | |
@404 { | |
expression {http.error.status_code} == 404 | |
} | |
handle @404 { | |
header Content-Type text/html | |
respond "<!DOCTYPE html><html lang='en'><head><title>404 Not Found</title></head><body><h1>404 Not Found</h1><p>The page you are looking for does not exist.</p></body></html>" 404 | |
} | |
} |
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
#!/bin/sh | |
sed -i 's:^deb :#deb :g' /etc/apt/sources.list.d/pve-enterprise.list | |
wget http://download.proxmox.com/debian/proxmox-release-bullseye.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg | |
echo '# pve-no-subscription repository provided by proxmox.com, not recommended for production use | |
deb http://download.proxmox.com/debian/pve bullseye pve-no-subscription | |
' > /etc/apt/sources.list.d/pve-no-subscription.list | |
apt update | |
#pveupgrade |
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
#!/bin/sh | |
if [ -z "$1" ]; then | |
echo "Usage: $0 <directory>" | |
exit 1 | |
fi | |
dir="$1" | |
if [ ! -d "$dir" ]; then |
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
await postmark.sendEmail({ | |
From: '[email protected]', | |
ReplyTo: `${req.body.xname} <${req.body.xemail}>`, | |
To: to, | |
Cc: '[email protected]', | |
Subject: `ryanburnette.com api submission to ${req.body.form} from ${req.body.xname}`, | |
HtmlBody: html, | |
TextBody: text, | |
MessageStream: 'outbound', | |
Headers: [ |
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
sudo apt-get update | |
sudo apt-get install --yes ca-certificates apt-transport-https wget | |
echo 'deb https://www.ui.com/downloads/unifi/debian stable ubiquiti' | sudo tee /etc/apt/sources.list.d/100-ubnt-unifi.list | |
sudo wget -O /etc/apt/trusted.gpg.d/unifi-repo.gpg https://dl.ui.com/unifi/unifi-repo.gpg | |
sudo apt update | |
sudo apt install --yes openjdk-8-jre-headless unifi | |
service unifi stop |
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
#!/bin/bash | |
set -u | |
sudo timedatectl set-timezone America/New_York |
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
Plugin 'ctrlpvim/ctrlp.vim.git' | |
let g:ctrlp_show_hidden = 1 | |
let g:ctrlp_custom_ignore = { 'dir': '\v[\/](\.git|node_modules|rubygems|\.sass-cache|\.vagrant|bower_components|build|tmp|vendor|public.built)$' } | |
set wildignore+=.DS_Store | |
set wildignore+=*/node_modules/* | |
set wildignore+=*/bower_components/* |
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 bash | |
hostname=`hostname` | |
emaildomain='' | |
alertemail='' | |
mailgunapikey='' | |
# max capacity % before getting capacity alert | |
maxCapacity=80 |
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
winrm i LCWipe http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/root/dcim/DCIM_LCService?SystemCreationClassName=DCIM_ComputerSystem+CreationClassName=DCIM_LCService+SystemName=DCIM:ComputerSystem+Name=DCIM:LCService -u:root -p:calvin -r:https://192.168.41.101/wsman -SkipCNcheck -SkipCAcheck -encoding:utf-8 -a:basic |
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
var _foo = 0; | |
async function foo() { | |
return new Promise(function (resolve) { | |
setTimeout(function () { | |
_foo++; | |
console.log(_foo); | |
resolve(_foo); | |
}, 1000); | |
}); | |
} |
NewerOlder