Skip to content

Instantly share code, notes, and snippets.

@urbanc
urbanc / chrome
Created May 23, 2017 08:04
Chrome 58 displays an untrusted warning for certs
# https://www.reddit.com/r/sysadmin/comments/66hitj/chrome_58_https_decryption_proxy_issues/
defaults write com.google.Chrome EnableCommonNameFallbackForLocalAnchors -bool true
@urbanc
urbanc / brew-cask_list.txt
Last active May 7, 2024 11:15
brew-cask install packages list
#!/bin/bash
# Install Cask
#brew tap caskroom/cask
#brew tap caskroom/versions
# Install packages
apps=(
openvpn-connect
alfred
@urbanc
urbanc / brew_list.txt
Last active May 7, 2024 11:28
brew install packages list
#!/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
@urbanc
urbanc / .gitconfig
Last active February 3, 2017 10:17
gitconfig
[user]
name = Urban Cetinski
email = urban.cetinski@gmail.com
signingkey = AE328DDD
[core]
excludesfile = /Users/Urban/.gitignore_global
autocrlf = input
pager = less -F -X
[push]
default = nothing