Skip to content

Instantly share code, notes, and snippets.

View cscheib's full-sized avatar

Chris Scheib cscheib

View GitHub Profile
@marktheunissen
marktheunissen / pedantically_commented_playbook.yml
Last active June 5, 2024 22:16 — forked from phred/pedantically_commented_playbook.yml
Insanely complete Ansible playbook, showing off all the options
This playbook has been removed as it is now very outdated.
---
puppet_enterprise::profile::puppetdb::listen_address: '0.0.0.0'
puppet_enterprise::profile::amq::broker::heap_mb: '96'
puppet_enterprise::profile::master::java_args:
Xmx: '256m'
Xms: '64m'
puppet_enterprise::profile::puppetdb::java_args:
Xmx: '128m'
Xms: '64m'
puppet_enterprise::profile::console::java_args:
@kshep
kshep / gist:9516430cfc02ce8766be
Last active November 9, 2015 19:56
Sensu Redis Transport Setup
1) Add /etc/sensu/conf.d/transport.json on both your server and all client:
{
"transport": {
"name": "redis"
}
}
2) Restart server and client.
@zvecr
zvecr / pill_flash.sh
Last active April 6, 2021 16:58
Utility script to flash a bluepill with the STM32duino bootloader and test QMK firmware
#!/bin/bash
function error()
{
local RED='\033[0;31m'
local NC='\033[0m' # No Color
echo -e "${RED}$1${NC}"
}
function info()