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
# https://www.reddit.com/r/sysadmin/comments/66hitj/chrome_58_https_decryption_proxy_issues/ | |
defaults write com.google.Chrome EnableCommonNameFallbackForLocalAnchors -bool true |
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/bash | |
# Install Cask | |
#brew tap caskroom/cask | |
#brew tap caskroom/versions | |
# Install packages | |
apps=( | |
openvpn-connect | |
alfred |
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/bash | |
# Installs Homebrew and some of the common dependencies needed/desired for software development | |
# Ask for the administrator password upfront | |
sudo -v | |
# Check for Homebrew and install it if missing | |
if test ! $(which brew) | |
then |
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
[user] | |
name = Urban Cetinski | |
email = [email protected] | |
signingkey = AE328DDD | |
[core] | |
excludesfile = /Users/Urban/.gitignore_global | |
autocrlf = input | |
pager = less -F -X | |
[push] | |
default = nothing |