I hereby claim:
- I am jkoelker on github.
- I am jkoelker (https://keybase.io/jkoelker) on keybase.
- I have a public key whose fingerprint is 1511 6539 988B DF4A 67E5 BF93 D474 80BB 0C9D BDA6
To claim this, I am signing this object:
{ | |
"Version": "2012-10-17", | |
"Statement": [{ | |
"Effect": "Allow", | |
"Action": [ | |
"ec2:DescribeImages", | |
"ec2:DescribeSubnets", | |
"ec2:RequestSpotInstances", | |
"ec2:TerminateInstances", | |
"ec2:DescribeInstanceStatus", |
#!/usr/bin/env python3 | |
import argparse | |
import itertools | |
import maya | |
import icalendar | |
SEQUENCE = ('Total Body Cardio Fix', |
$r = (Get-NetRoute | Where {$_.DestinationPrefix -eq '0.0.0.0/0'}) | |
New-NetRoute -DestinationPrefix 169.254.169.254/32 -InterfaceIndex $r.ifIndex -NextHop $r.NextHop |
<powershell> [87/513] | |
Set-ExecutionPolicy Unrestricted | |
net user Administrator '{{ win_admin_password }}' | |
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex | |
choco install -y jre8 git | |
winrm quickconfig -q | |
winrm set winrm/config/winrs '@{MaxMemoryPerShellMB="2048"}' | |
winrm set winrm/config '@{MaxTimeoutms="1800000"}' | |
winrm set winrm/config/service '@{AllowUnencrypted="true"}' | |
winrm set winrm/config/service/auth '@{Basic="true"}' |
#!/bin/sh | |
# | |
# libinput by default will disable the touchpad while a key is pressed. | |
# to disable this, run `xinput` to list the inputs. find the name of your | |
# touchpad (mine is 'Microsoft Surface Keyboard Touchpad'). | |
# | |
# Disable the setting 'Disable While Typing Enabled' | |
# `xinput --set-prop 'Microsoft Surface Keyboard Touchpad' \ | |
# 'libinput Disable While Typing Enabled' 0` | |
# |
/*Message Background*/ .Bk, .Bu { | |
background: #111 !important; | |
} | |
/*Message Background*/ .Bk { | |
background: #111 !important; | |
} | |
.kQ .Bk .G2 { | |
background: #111 !important; |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import netaddr | |
import socket | |
import subprocess | |
import tempfile | |
ASN_QUERY = '-i origin -T route %s\r\n' |
I hereby claim:
To claim this, I am signing this object:
# -*- coding: utf-8 -*- | |
import MySQLdb as mdb | |
import MySQLdb.cursors | |
import datetime | |
from flask import Flask, render_template | |
from flask.ext.sqlalchemy import SQLAlchemy | |
import sqlalchemy as sa |
#!/usr/bin/env python | |
import re | |
import sys | |
# NOTE(jkoelker) Yea its regex, I hate it too | |
pattern = re.compile(r' '.join([r'(?P<host>.*?)', | |
r'-(?P<unknown>.*?)-', | |
r'(?P<date>.*?)', | |
r'"(?P<method>.*?)', |