most of these require logout/restart to take effect
# Enable character repeat on keydown
defaults write -g ApplePressAndHoldEnabled -bool false
# Set a shorter Delay until key repeat
doctype html | |
/[if lt IE 7] | |
| <html class="ie6"> | |
/[if IE 7] | |
| <html class="ie7"> | |
/[if IE 8] | |
| <html class="ie8"> | |
/[if IE 9] | |
| <html class="ie9"> | |
| <!--[if (gte IE 9)|!(IE)]<!--> <html> <!--<![endif]--> |
#!/usr/bin/python | |
import argparse | |
import re | |
import logging | |
import os | |
import sys | |
if os.name == "nt": | |
import pbs as sh |
var get = Ember.get, set = Ember.set, computed = Ember.computed, defineProperty = Ember.defineProperty, observer = Ember.observer; | |
Ember.Select.reopen({ | |
optionDisabledPath: null | |
}); | |
Ember.SelectOption.reopen({ | |
attributeBindings: ['disabled'], | |
init: function() { |
#!/bin/bash | |
# This script is used by Icinga to post alerts into a Slack channel | |
# using the Incoming WebHooks integration. Create the channel, botname | |
# and integration first and then add this notification script in your | |
# Icinga configuration. | |
# | |
# All variables that start with NAGIOS_ are provided by Icinga as | |
# environment variables when an notification is generated. | |
# A list of the env variables is available here: |
[ | |
{ value: "CA-AB", label: "Alberta" }, | |
{ value: "CA-BC", label: "British Columbia" }, | |
{ value: "CA-MB", label: "Manitoba" }, | |
{ value: "CA-NB", label: "New Brunswick" }, | |
{ value: "CA-NL", label: "Newfoundland and Labrador" }, | |
{ value: "CA-NS", label: "Nova Scotia" }, | |
{ value: "CA-ON", label: "Ontario" }, | |
{ value: "CA-PE", label: "Prince Edward Island" }, | |
{ value: "CA-QC", label: "Quebec" }, |
# | |
# Proof of concept for a HAProxy maintenance mode | |
# | |
# | |
# Control the maintenance page during runtime using the stats socket: | |
# | |
# To put the whole site in maintenance mode (for all IPs): | |
# > add acl #0 0.0.0.0/0 | |
# | |
# To exclude your own ip, so you are able to test things out: |