├── Brewfile ├── Brewfile.lock.json ├── README.md ├── checklist.md ├── com.googlecode.iterm2.plist ├── dotfiles ├── agignore ├── ctags ├── gemrc ├── gitcommit ├── gitconfig ├── gitignore ├── profile ├── profile.d │ ├── backup │ ├── bash │ ├── bosh │ ├── brew │ ├── direnv │ ├── dns │ ├── docker │ ├── erlang │ ├── gcloud │ ├── git │ ├── github │ ├── go │ ├── gpg │ ├── homebrew │ ├── http │ ├── kubernetes │ ├── make │ ├── path │ ├── prompt │ ├── pw │ ├── ruby │ ├── speedtest │ ├── ssh │ ├── ssl │ ├── terminal │ ├── vim │ ├── xmlto │ └── youtube ├── tigrc └── vimrc ├── go └── packages │ ├── github.com~akavel~up │ ├── github.com~alecthomas~gometalinter │ ├── github.com~fatih~motion │ ├── github.com~jstemmer~gotags │ ├── github.com~kisielk~errcheck │ ├── github.com~klauspost~asmfmt~cmd~asmfmt │ ├── github.com~luan~flytags │ ├── github.com~nsf~gocode │ ├── github.com~onsi~ginkgo~ginkgo │ ├── github.com~onsi~gomega │ ├── github.com~onsi~prolific │ ├── github.com~rakyll~boom │ ├── github.com~rogpeppe~godef │ ├── github.com~tools~godep │ ├── github.com~zmb3~gogetdoc │ ├── golang.org~x~lint~golint │ ├── golang.org~x~tools~cmd~godoc │ ├── golang.org~x~tools~cmd~goimports │ ├── golang.org~x~tools~cmd~gorename │ └── golang.org~x~tools~cmd~guru ├── gruvbox-dark.itermcolors ├── ideas.md ├── libconfig ├── a_user_link_dotfiles ├── homebrew_00_upgrade_or_install ├── homebrew_10_bundle ├── homebrew_dnsmasq ├── homebrew_go ├── homebrew_vundle ├── osx_airdrop_all_macs ├── osx_chrome_use_system_print ├── osx_corners_bottom_right_screensaver ├── osx_disable_autocorrect ├── osx_disable_smart_quotes_and_dashes ├── osx_disable_timemachine_snapshots ├── osx_disable_warnings_when_changing_file_extension ├── osx_diskutility_debug_mode ├── osx_do_not_create_ds_store_on_network_volumes ├── osx_dock_auto_hide ├── osx_dock_grid_view_highlight_hover_effect ├── osx_dock_icon_size ├── osx_dock_minimize_window_effect ├── osx_dock_spring_load_all ├── osx_empty_trash_without_warning ├── osx_enable_auto_softwareupdate ├── osx_enable_spotlight ├── osx_enable_spring_loading_dirs ├── osx_enable_tab_in_dialogs ├── osx_external_displays ├── osx_fast_keys ├── osx_finder_home_default ├── osx_no_open_app_confirmation ├── osx_open_folders_in_new_windows ├── osx_quicker_window_resize ├── osx_screencapture ├── osx_screensaver_password ├── osx_search_current_dir_by_default ├── osx_set_hostname ├── osx_show_icons_on_desktop ├── osx_show_library ├── osx_sleep ├── osx_standby_delay ├── osx_tap_to_click ├── osx_timemachine_disable_new_disks_prompt ├── osx_use_list_view_in_all_finder_windows ├── osx_zoom_with_ctrl_scroll └── z_source_shell_profile └── setup /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/Brewfile -------------------------------------------------------------------------------- /Brewfile.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/Brewfile.lock.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/README.md -------------------------------------------------------------------------------- /checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/checklist.md -------------------------------------------------------------------------------- /com.googlecode.iterm2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/com.googlecode.iterm2.plist -------------------------------------------------------------------------------- /dotfiles/agignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .git 3 | tmp 4 | bundle 5 | vendor 6 | node_modules 7 | *.sock 8 | *.beam 9 | logs 10 | -------------------------------------------------------------------------------- /dotfiles/ctags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/ctags -------------------------------------------------------------------------------- /dotfiles/gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/gemrc -------------------------------------------------------------------------------- /dotfiles/gitcommit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/gitcommit -------------------------------------------------------------------------------- /dotfiles/gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/gitconfig -------------------------------------------------------------------------------- /dotfiles/gitignore: -------------------------------------------------------------------------------- 1 | *un~ 2 | .DS_Store 3 | .bundle 4 | .vagrant 5 | tmp 6 | /tags$ 7 | -------------------------------------------------------------------------------- /dotfiles/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile -------------------------------------------------------------------------------- /dotfiles/profile.d/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/backup -------------------------------------------------------------------------------- /dotfiles/profile.d/bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/bash -------------------------------------------------------------------------------- /dotfiles/profile.d/bosh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | alias b="bosh" 4 | -------------------------------------------------------------------------------- /dotfiles/profile.d/brew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/brew -------------------------------------------------------------------------------- /dotfiles/profile.d/direnv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/direnv -------------------------------------------------------------------------------- /dotfiles/profile.d/dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/dns -------------------------------------------------------------------------------- /dotfiles/profile.d/docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/docker -------------------------------------------------------------------------------- /dotfiles/profile.d/erlang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/erlang -------------------------------------------------------------------------------- /dotfiles/profile.d/gcloud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/gcloud -------------------------------------------------------------------------------- /dotfiles/profile.d/git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/git -------------------------------------------------------------------------------- /dotfiles/profile.d/github: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/github -------------------------------------------------------------------------------- /dotfiles/profile.d/go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/go -------------------------------------------------------------------------------- /dotfiles/profile.d/gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/gpg -------------------------------------------------------------------------------- /dotfiles/profile.d/homebrew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/homebrew -------------------------------------------------------------------------------- /dotfiles/profile.d/http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/http -------------------------------------------------------------------------------- /dotfiles/profile.d/kubernetes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/kubernetes -------------------------------------------------------------------------------- /dotfiles/profile.d/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/make -------------------------------------------------------------------------------- /dotfiles/profile.d/path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/path -------------------------------------------------------------------------------- /dotfiles/profile.d/prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/prompt -------------------------------------------------------------------------------- /dotfiles/profile.d/pw: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | pw() { 4 | sf-pwgen -l 20 -c 10 "$@" 5 | } 6 | -------------------------------------------------------------------------------- /dotfiles/profile.d/ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/ruby -------------------------------------------------------------------------------- /dotfiles/profile.d/speedtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/speedtest -------------------------------------------------------------------------------- /dotfiles/profile.d/ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/ssh -------------------------------------------------------------------------------- /dotfiles/profile.d/ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/ssl -------------------------------------------------------------------------------- /dotfiles/profile.d/terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/terminal -------------------------------------------------------------------------------- /dotfiles/profile.d/vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/vim -------------------------------------------------------------------------------- /dotfiles/profile.d/xmlto: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # xmlto fix for building rabbitmq docs 4 | export XML_CATALOG_FILES=/usr/local/etc/xml/catalog 5 | -------------------------------------------------------------------------------- /dotfiles/profile.d/youtube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/profile.d/youtube -------------------------------------------------------------------------------- /dotfiles/tigrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/tigrc -------------------------------------------------------------------------------- /dotfiles/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/dotfiles/vimrc -------------------------------------------------------------------------------- /go/packages/github.com~akavel~up: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/packages/github.com~alecthomas~gometalinter: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/packages/github.com~fatih~motion: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/packages/github.com~jstemmer~gotags: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/packages/github.com~kisielk~errcheck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/packages/github.com~klauspost~asmfmt~cmd~asmfmt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/packages/github.com~luan~flytags: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/packages/github.com~nsf~gocode: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/packages/github.com~onsi~ginkgo~ginkgo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/packages/github.com~onsi~gomega: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/packages/github.com~onsi~prolific: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/packages/github.com~rakyll~boom: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/packages/github.com~rogpeppe~godef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/packages/github.com~tools~godep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/packages/github.com~zmb3~gogetdoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/packages/golang.org~x~lint~golint: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/packages/golang.org~x~tools~cmd~godoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/packages/golang.org~x~tools~cmd~goimports: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/packages/golang.org~x~tools~cmd~gorename: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/packages/golang.org~x~tools~cmd~guru: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gruvbox-dark.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/gruvbox-dark.itermcolors -------------------------------------------------------------------------------- /ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/ideas.md -------------------------------------------------------------------------------- /libconfig/a_user_link_dotfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/a_user_link_dotfiles -------------------------------------------------------------------------------- /libconfig/homebrew_00_upgrade_or_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/homebrew_00_upgrade_or_install -------------------------------------------------------------------------------- /libconfig/homebrew_10_bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/homebrew_10_bundle -------------------------------------------------------------------------------- /libconfig/homebrew_dnsmasq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/homebrew_dnsmasq -------------------------------------------------------------------------------- /libconfig/homebrew_go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/homebrew_go -------------------------------------------------------------------------------- /libconfig/homebrew_vundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/homebrew_vundle -------------------------------------------------------------------------------- /libconfig/osx_airdrop_all_macs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_airdrop_all_macs -------------------------------------------------------------------------------- /libconfig/osx_chrome_use_system_print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_chrome_use_system_print -------------------------------------------------------------------------------- /libconfig/osx_corners_bottom_right_screensaver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_corners_bottom_right_screensaver -------------------------------------------------------------------------------- /libconfig/osx_disable_autocorrect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_disable_autocorrect -------------------------------------------------------------------------------- /libconfig/osx_disable_smart_quotes_and_dashes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_disable_smart_quotes_and_dashes -------------------------------------------------------------------------------- /libconfig/osx_disable_timemachine_snapshots: -------------------------------------------------------------------------------- 1 | sudo tmutil disable 2 | -------------------------------------------------------------------------------- /libconfig/osx_disable_warnings_when_changing_file_extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_disable_warnings_when_changing_file_extension -------------------------------------------------------------------------------- /libconfig/osx_diskutility_debug_mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_diskutility_debug_mode -------------------------------------------------------------------------------- /libconfig/osx_do_not_create_ds_store_on_network_volumes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_do_not_create_ds_store_on_network_volumes -------------------------------------------------------------------------------- /libconfig/osx_dock_auto_hide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_dock_auto_hide -------------------------------------------------------------------------------- /libconfig/osx_dock_grid_view_highlight_hover_effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_dock_grid_view_highlight_hover_effect -------------------------------------------------------------------------------- /libconfig/osx_dock_icon_size: -------------------------------------------------------------------------------- 1 | defaults write com.apple.dock tilesize -int 64 2 | -------------------------------------------------------------------------------- /libconfig/osx_dock_minimize_window_effect: -------------------------------------------------------------------------------- 1 | defaults write com.apple.dock mineffect -string "scale" 2 | -------------------------------------------------------------------------------- /libconfig/osx_dock_spring_load_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_dock_spring_load_all -------------------------------------------------------------------------------- /libconfig/osx_empty_trash_without_warning: -------------------------------------------------------------------------------- 1 | defaults write com.apple.finder WarnOnEmptyTrash -bool false 2 | -------------------------------------------------------------------------------- /libconfig/osx_enable_auto_softwareupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_enable_auto_softwareupdate -------------------------------------------------------------------------------- /libconfig/osx_enable_spotlight: -------------------------------------------------------------------------------- 1 | sudo mdutil -a -i on 2 | -------------------------------------------------------------------------------- /libconfig/osx_enable_spring_loading_dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_enable_spring_loading_dirs -------------------------------------------------------------------------------- /libconfig/osx_enable_tab_in_dialogs: -------------------------------------------------------------------------------- 1 | defaults write NSGlobalDomain AppleKeyboardUIMode -int 3 2 | -------------------------------------------------------------------------------- /libconfig/osx_external_displays: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_external_displays -------------------------------------------------------------------------------- /libconfig/osx_fast_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_fast_keys -------------------------------------------------------------------------------- /libconfig/osx_finder_home_default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_finder_home_default -------------------------------------------------------------------------------- /libconfig/osx_no_open_app_confirmation: -------------------------------------------------------------------------------- 1 | defaults write com.apple.LaunchServices LSQuarantine -bool false 2 | -------------------------------------------------------------------------------- /libconfig/osx_open_folders_in_new_windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_open_folders_in_new_windows -------------------------------------------------------------------------------- /libconfig/osx_quicker_window_resize: -------------------------------------------------------------------------------- 1 | defaults write NSGlobalDomain NSWindowResizeTime -float 0.001 2 | -------------------------------------------------------------------------------- /libconfig/osx_screencapture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_screencapture -------------------------------------------------------------------------------- /libconfig/osx_screensaver_password: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_screensaver_password -------------------------------------------------------------------------------- /libconfig/osx_search_current_dir_by_default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_search_current_dir_by_default -------------------------------------------------------------------------------- /libconfig/osx_set_hostname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_set_hostname -------------------------------------------------------------------------------- /libconfig/osx_show_icons_on_desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_show_icons_on_desktop -------------------------------------------------------------------------------- /libconfig/osx_show_library: -------------------------------------------------------------------------------- 1 | chflags nohidden "${HOME}/Library" 2 | -------------------------------------------------------------------------------- /libconfig/osx_sleep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_sleep -------------------------------------------------------------------------------- /libconfig/osx_standby_delay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_standby_delay -------------------------------------------------------------------------------- /libconfig/osx_tap_to_click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_tap_to_click -------------------------------------------------------------------------------- /libconfig/osx_timemachine_disable_new_disks_prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_timemachine_disable_new_disks_prompt -------------------------------------------------------------------------------- /libconfig/osx_use_list_view_in_all_finder_windows: -------------------------------------------------------------------------------- 1 | defaults write com.apple.finder FXPreferredViewStyle -string "Nlsv" 2 | -------------------------------------------------------------------------------- /libconfig/osx_zoom_with_ctrl_scroll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/osx_zoom_with_ctrl_scroll -------------------------------------------------------------------------------- /libconfig/z_source_shell_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/libconfig/z_source_shell_profile -------------------------------------------------------------------------------- /setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhard/setup/HEAD/setup --------------------------------------------------------------------------------