Based on hours of fiddling and trying everything I could find and can think of. This is the config which worked for me.
# ruby
export PATH=/Users/jan/.rbenv/shims:$PATH
export optflags="-Wno-error=implicit-function-declaration"Based on hours of fiddling and trying everything I could find and can think of. This is the config which worked for me.
# ruby
export PATH=/Users/jan/.rbenv/shims:$PATH
export optflags="-Wno-error=implicit-function-declaration"| #!/bin/bash | |
| # source: https://stackoverflow.com/questions/22675725/find-unused-npm-packages-in-package-json/ | |
| DIRNAME=${1:-.} | |
| cd $DIRNAME | |
| FILES=$(mktemp) | |
| PACKAGES=$(mktemp) | |
| # use fd | |
| # https://github.com/sharkdp/fd |
| #!/usr/bin/env bash | |
| # Upate your hosts file - Jan Sroka <github@jansroka.com> | |
| set -o errexit # abort on nonzero exitstatus | |
| set -o nounset # abort on unbound variable | |
| set -o pipefail # don't hide errors within pipes | |
| # comment this out to remove debug output | |
| set -x | |
| # Ask for sudo password upfront |
| #!/bin/bash | |
| # This file is based on: | |
| #======================================================================== | |
| # FILE: set_default_apps.sh | |
| # DESCRIPTION: Changes default apps for extensions | |
| # AUTHOR: Scott Granneman (RSG), scott@chainsawonatireswing.com | |
| # COMPANY: Chainsaw on a Tire Swing (http://ChainsawOnATireSwing.com) | |
| # VERSION: 0.1 | |
| # CREATED: 09/17/2012 21:44:01 CDT |
| #!/usr/bin/env bash | |
| # Probably unnecessary double work, but this works nicely for me | |
| brew doctor | |
| brew update | |
| brew upgrade | |
| brew upgrade --cask | |
| brew outdated --cask | grep -v arq | xargs brew reinstall --cask --force | |
| brew cleanup | |
| brew cleanup |