I hereby claim:
- I am blofeldthefish on github.
- I am stuartknight (https://keybase.io/stuartknight) on keybase.
- I have a public key ASBi9mYHHd81p-Y8alVlPYxZ88VqTXAB_ZiT8vV46OZejwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#Requires -Version 3.0 | |
# Configure a Windows host for remote management with Ansible | |
# ----------------------------------------------------------- | |
# | |
# This script checks the current WinRM (PS Remoting) configuration and makes | |
# the necessary changes to allow Ansible to connect, authenticate and | |
# execute PowerShell commands. | |
# | |
# All events are logged to the Windows EventLog, useful for unattended runs. |
Also see: AWS CLI Setup
#!/bin/bash | |
# Script to permanently remove files/folders from your git history. To use | |
# it, cd to your repository's root and then run the script with a list of paths | |
# you want to delete, e.g., git-delete-history path1 path2 | |
set -o errexit | |
if [ $# -eq 0 ]; then | |
echo "Usage: $0 file1 file2" | |
echo " or: $0 path1 path2" |
#!/usr/bin/python | |
# most credit to the original: https://gist.github.com/brandond/6b4d22eaefbd66895f230f68f27ee586 | |
# additional credit to some modification: https://gist.github.com/danpritts/1089d878a76b14393478a7476476f97b | |
# Uncomment to RUN FOR REAL!! | |
#DEBUG = False | |
# Tag snapshots based on their associated AMI and volumes based on attached instance. | |
# format: | |
# (AMI:db5|db5) /dev/sda1 (1/4) |
#!/bin/sh | |
apt-get -y install git bc | |
git clone https://github.com/letsencrypt/letsencrypt /opt/letsencrypt | |
mkdir /etc/letsencrypt |
version: '3' | |
services: | |
bitbucket: | |
image: "atlassian/bitbucket-server:5.0" | |
container_name: bitbucket | |
restart: always | |
ports: | |
- "7990:7990" | |
- "7999:7999" | |
environment: |
<# | |
Replace-RDGatewayCertificate.ps1 | |
Version 1.0.1 -- fixed my bad grammar | |
by Colin Cogle <[email protected]> | |
This program is free software: you can redistribute it and/or modify it under the terms | |
of the GNU General Public License as published by the Free Software Foundation, either | |
version 3 of the License. This program is distributed in the hope that it will be useful, | |
but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | |
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
# Copyright (c) 2014-2015 Peter Koppstein (pkoppstein at gmail dot com) 2015.05.02 | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: | |
# | |
# The above copyright notice and this permission notice shall be included in |