Skip to content

Instantly share code, notes, and snippets.

View abcdev's full-sized avatar

Rainer Killinger abcdev

  • ZZ9 Plural Z Alpha
View GitHub Profile
@abcdev
abcdev / Brewfile
Last active February 3, 2017 21:33
Always have a towel and a brewfile with you !
# abcdev brewfile
# last update 19.01.2017
tap 'caskroom/cask'
tap 'caskroom/fonts'
cask_args appdir: '/Applications'
# must-have packages
cask 'java'
@abcdev
abcdev / bootstrap.sh
Last active February 3, 2017 18:52
Jumpstarts a macOS based system. Only works when having a brewfile in the same directory.
#!/bin/bash
echo "Lets bootstrap -> install rust, homebrew and make use of a brewfile !"
command_exists () {
type "$1" &> /dev/null ;
}
if command_exists brew; then
brew update
brew doctor