Skip to content

Instantly share code, notes, and snippets.

@olssonm
olssonm / macos-disable-resize
Last active June 8, 2024 18:02
Disable resizing of the macOS dock
defaults write com.apple.dock size-immutable -bool true; killall Dock
@bryanwoods
bryanwoods / rvm-install-193.sh
Created June 6, 2012 20:47
Installing Ruby 1.9.3 with RVM
bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)
source ~/.bash_login
rvm install 1.9.3
rvm use 1.9.3 --default