Skip to content

Instantly share code, notes, and snippets.

View steadystatic's full-sized avatar

Mike Wabst steadystatic

View GitHub Profile
@steadystatic
steadystatic / macos-install-docker.sh
Last active April 26, 2018 18:41
Install Docker on macOS 10.13.4
#!/bin/bash
## Get Homebrew for Mac ( https://brew.sh ), if you already have 'brew' feel free to skip...
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
## Default driver for Docker, can be changed later
brew cask install virtualbox
## Docker cli friends
brew install docker docker-machine docker-compose boot2docker
@steadystatic
steadystatic / osx-10.11-setup.md
Created April 25, 2018 22:18 — forked from kevinelliott/osx-10.11-setup.md
Mac OS X 10.11 El Capitan Setup

Mac OS X 10.11 El Capitan

Custom recipe to get OS X 10.11 El Capitan running from scratch, setup applications and developer environment. This is very similar (and currently mostly the same) as my 10.10 Yosemite setup recipe (as found on this gist https://gist.github.com/kevinelliott/0726211d17020a6abc1f). Note that I expect this to change significantly as I install El Capitan several times.

I use this gist to keep track of the important software and steps required to have a functioning system after a semi-annual fresh install. On average, I reinstall each computer from scratch every 6 months, and I do not perform upgrades between distros.

This keeps the system performing at top speeds, clean of trojans, spyware, and ensures that I maintain good organizational practices for my content and backups. I highly recommend this.

You are encouraged to fork this and modify it to your heart's content to match your own needs.

@steadystatic
steadystatic / PowerShell Customization.md
Created April 14, 2018 14:39 — forked from jchandra74/PowerShell Customization.md
PowerShell, Cmder / ConEmu, Posh-Git, Oh-My-Posh, Powerline Customization

Pimping Up Your PowerShell & Cmder with Posh-Git, Oh-My-Posh, & Powerline Fonts

Backstory (TLDR)

I work as a full-stack developer at work. We are a Windows & Azure shop, so we are using Windows as our development platform, hence this customization.

For my console needs, I am using Cmder which is based on ConEmu with PowerShell as my shell of choice.

Yes, yes, I know nowadays you can use the Linux subsystem on Windows 10 which allow you to run Ubuntu on Windows. If you are looking for customization of the Ubuntu bash shell, check out this article by Scott Hanselman.

@steadystatic
steadystatic / wp_config.php
Created April 12, 2018 17:25 — forked from butlerblog/wp_config.php
Configure WordPress wp_mail function to send through SMTP server http://b.utler.co/Y3
<?php
/*
* Set the following constants in wp-config.php
* These should be added somewhere BEFORE the
* constant ABSPATH is defined.
*/
define( 'SMTP_USER', '[email protected]' ); // Username to use for SMTP authentication
define( 'SMTP_PASS', 'smtp password' ); // Password to use for SMTP authentication
@steadystatic
steadystatic / functions.php
Created April 12, 2018 17:20 — forked from butlerblog/functions.php
SMTP using wp-config.php for settings
<?php // Don't use this line.
/**
* This function will connect wp_mail to your authenticated
* SMTP server. This improves reliability of wp_mail, and
* avoids many potential problems.
*
* Values are constants set in wp-config.php
*/
add_action( 'phpmailer_init', 'send_smtp_email' );
[
{
"Id": "01eb084de8f2adabd3e987e3f5f1e5f26f0a0219ce248630536392d07e1e9d8f",
"Created": "2018-04-10T15:59:20.716250394Z",
"Path": "/.r/r",
"Args": [
"/traefik"
],
"State": {
"Status": "running",
@steadystatic
steadystatic / cloud-config.yml
Created April 6, 2018 06:51 — forked from socketwiz/cloud-config.yml
CoreOS cloud-config for DigitalOcean with iptables firewall
#cloud-config
coreos:
etcd2:
# generate a new token for each unique cluster from https://discovery.etcd.io/new?size=3
# specify the initial size of your cluster with ?size=X
discovery: https://discovery.etcd.io/<token>
# multi-region and multi-cloud deployments need to use $public_ipv4
advertise-client-urls: http://$private_ipv4:2379,http://$private_ipv4:4001
initial-advertise-peer-urls: http://$private_ipv4:2380
@steadystatic
steadystatic / install-intellij.sh
Created January 26, 2018 22:00
How to install Intellij Community Edition with homebrew-cask
$ brew cask install caskroom/cask/intellij-idea-ce
@steadystatic
steadystatic / amazon-only-imgs.js
Last active April 14, 2016 16:28
Quick Little Amazon Picker (hides everything but product images)
//Paste into your URL bar in Chrome, remove this comment line (make sure you keep the "javascript:" bit, it might get stripped):
javascript: var imgList = document.querySelectorAll('.s-access-image'); document.querySelector('body').innerHTML = ''; for (i=0; i < imgList.length; i++) {document.querySelector('body').innerHTML += imgList[i].outerHTML.replace('src', 'onclick="this.parentNode.removeChild(this)" src');}
@steadystatic
steadystatic / log-notify.sh
Created March 14, 2016 22:38
Monitor JBoss
#!/bin/sh
#Script requires 'md5' and 'terminal-notifier' to be installed
JBOSS_LOG=/usr/local/opt/jboss-eap-6.4/standalone/log/server.log
#Monitors JBoss logfile for keyword, notifies
while x=0;
fileHash=$(md5 $JBOSS_LOG | cut -d "=" -f2)
sleep 1