In your command-line run the following commands:
brew doctorbrew update
In your command-line run the following commands:
brew doctorbrew update| import collections | |
| class DictProxy(collections.Mapping): | |
| """ | |
| A proxy for a dictionary that allows attribute access to underlying keys. | |
| You may pass a custom ``wrapper`` to override the logic for wrapping | |
| various custom types. | |
| """ |
| #!/bin/bash | |
| ###################################################################### | |
| #This is an example of using getopts in Bash. It also contains some | |
| #other bits of code I find useful. | |
| #Author: Linerd | |
| #Website: http://tuxtweaks.com/ | |
| #Copyright 2014 | |
| #License: Creative Commons Attribution-ShareAlike 4.0 | |
| #http://creativecommons.org/licenses/by-sa/4.0/legalcode |
| """ | |
| Two things are wrong with Django's default `SECRET_KEY` system: | |
| 1. It is not random but pseudo-random | |
| 2. It saves and displays the SECRET_KEY in `settings.py` | |
| This snippet | |
| 1. uses `SystemRandom()` instead to generate a random key | |
| 2. saves a local `secret.txt` |
| # Put this in your ~/.gitconfig or ~/.config/git/config | |
| # Windows users: "~" is your profile's home directory, e.g. C:\Users\<YourName> | |
| [user] | |
| name = Your Full Name | |
| email = [email protected] | |
| [color] | |
| # Enable colors in color-supporting terminals | |
| ui = auto | |
| [alias] | |
| # List available aliases |