til

Today I Learned: collection of notes, tips and tricks and stuff I learn from day to day working with computers and technology as an open source contributor and product manager

View project on GitHub

Stop brew from calling home

brew on OSX by default sends anonymous usage data, this is okay, but your local security policy might not approve of this, luckily this can be disabled.

You can do it by invocation/session?

export HOMEBREW_NO_ANALYTICS=1

Or you can disable it completely:

brew analytics off

References