View POK3R-Default-v1_14.kbd.json
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
[ | |
{ | |
"name": "POK3R Default v1.14", | |
"author": "Vortex" | |
}, | |
[ | |
{ | |
"c": "#3c4041", | |
"t": "#aba18b", | |
"p": "DCS", |
View POK3R-Default.kbd.json
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
[ | |
{ | |
"name": "POK3R Default", | |
"author": "Vortex" | |
}, | |
[ | |
{ | |
"y": 1.5, | |
"c": "#3c4041", | |
"t": "#aba18b", |
View POK3R-Layer-2-Windows.kbd.json
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
[ | |
{ | |
"name": "POK3R Layer 2 Windows", | |
"author": "sublimal", | |
"switchMount": "cherry", | |
"switchBrand": "cherry", | |
"switchType": "MX1A-C1xx", | |
"plate": true | |
}, | |
[ |
View POK3R-Layer-3-OSX.kbd.json
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
[ | |
{ | |
"name": "POK3R Layer 3 OSX", | |
"author": "sublimal", | |
"switchMount": "cherry", | |
"switchBrand": "cherry", | |
"switchType": "MX1A-C1xx", | |
"plate": true | |
}, | |
[ |
View source_tfvars.sh
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 | |
# source: https://gist.github.com/atward/7a2eb1b4a78fbaebe585 | |
# here be dragons: this is as dangerous as it looks | |
## terraform variable defaults | |
# takes *.tf and assigns env=default (if any) | |
# - map not supported (obvious reasons) | |
# - Tested on Darwin sed(1) only | |
function source_tfdefaults() { | |
eval "$( |
View cloud-init_chef-zero.yaml
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
#cloud-init | |
# https://docs.chef.io/packages.html#enterprise-linux | |
# vendor chef-repo to /var/lib/chef with cookbooks in /var/lib/chef/cookbooks | |
yum_repos: | |
chef-stable: | |
name: chef-stable | |
baseurl: https://packages.chef.io/stable-yum/el/7/\$basearch/ | |
enabled: true | |
failovermethod: priority |
View cf-templater.yaml
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
# NOTE: there is a 4k CustomResource response limit, so keep all templates well under that | |
AWSTemplateFormatVersion: 2010-09-09 | |
Description: 'CloudFormation Templating Custom Resource' | |
Resources: | |
TemplateFunctionRole: | |
Type: AWS::IAM::Role | |
Properties: | |
AssumeRolePolicyDocument: | |
Version: 2012-10-17 |
View asg-suspend.yaml
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
AWSTemplateFormatVersion: 2010-09-09 | |
Description: 'Custom resource example - ASG suspend/resume' | |
Parameters: | |
Input: | |
Type: String | |
Description: Make ASG | |
Default: true | |
AllowedValues: [true, false] |
View custom-resource.yaml
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
AWSTemplateFormatVersion: 2010-09-09 | |
Description: 'Custom resource test' | |
Parameters: | |
Value: | |
Type: Number | |
Description: input a number | |
Default: 1 | |
Resources: |
View aws-console
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 python | |
import boto3 | |
import json | |
import sys | |
import urllib2 | |
import webbrowser | |
from urllib import urlencode |
OlderNewer