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
tap "aws/tap" | |
tap "homebrew/bundle" | |
tap "homebrew/cask" | |
tap "homebrew/cask-fonts" | |
tap "homebrew/cask-versions" | |
tap "homebrew/core" | |
tap "wallix/awless" | |
tap "wata727/tflint" | |
brew "amazon-ecs-cli" | |
brew "ansible" |
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/sh | |
# Saves screen grab to mp4 on device until you escape script -> pull mp4 from device and delete remote copy -> convert mp4 to gif and delete mp4 | |
# Setup (OSX): | |
# This script requires ffmpeg and adb in your $PATH, installation steps are up to you, but these are pretty simple: | |
# Install Brew if you haven't already via: /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# brew install android-platform-tools; brew install ffmpeg | |
# wget https://gist.github.com/mbeacom/afcee5b866945a14a41e321569c2242b/raw/d1328b57efba71d2b6c8cc89810622a1cefa185c/androidgif.sh | |
# chmod a+x androidgif.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
sudo apt-get update && \ | |
sudo apt-get install ntp && \ | |
sudo sed -i 's/ubuntu.pool.ntp.org/north-america.pool.ntp.org/g' /etc/ntp.conf && \ | |
sudo service ntp restart | |
# One-liner | |
# sudo apt-get update; sudo apt-get install ntp; sudo sed -i 's/ubuntu.pool.ntp.org/north-america.pool.ntp.org/g' /etc/ntp.conf; sudo service ntp restart |
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
require 'formula' | |
class FlexSdk < Formula | |
url 'http://fpdownload.adobe.com/pub/flex/sdk/builds/flex4.6/flex_sdk_4.6.0.23201B.zip' | |
sha256 '622b63f29de44600ff8d4231174a70fcb3085812c0e146a42e91877ca8b46798' | |
homepage 'http://opensource.adobe.com/' | |
version 'v4.6.0.23201' | |
def install |
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/sh | |
# Some things taken from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' | |
green='\033[0;32m' |