Skip to content

Instantly share code, notes, and snippets.

View pwigle's full-sized avatar

Petter Wigle pwigle

  • Pragmatic Brain AB
  • Stockholm, Sweden
View GitHub Profile
@pwigle
pwigle / mac_tricks
Created May 6, 2019 07:27
Mac tricks
# Turn off power chime
defaults write com.apple.PowerChime ChimeOnNoHardware -bool true
killall PowerChime
@pwigle
pwigle / bumpme
Created September 12, 2016 13:13
foo
@pwigle
pwigle / gist:3755710
Created September 20, 2012 12:52
Watch number of unicorn workers
watch -n 0.2 "ps aux | grep 'R' | grep unicorn_rails | grep -v grep | wc -l"
@pwigle
pwigle / init.el
Created June 26, 2012 10:59
My init file for emacs
(push "/usr/local/bin" exec-path)
(add-to-list 'load-path "~/.emacs.d")
;;(add-to-list 'load-path "~/.emacs.d/themes")
(setq initial-frame-alist
'((top . 1) (left . 1) (width . 160) (height . 40)))
(setq make-backup-files nil)
(setq auto-save-default nil)
(setq-default tab-width 2)