Custom recipe to get OS X 10.11 El Capitan running from scratch with useful applications and Node.js Developer environment. I use this gist to keep track of the important software and steps required to have a functioning system after fresh install.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| #stolen and modified from the reddit post about the raspbeery pi tweeting at comcast | |
| #run this every 10 minutes (or w/e) with cron: | |
| #"crontab -e" | |
| #*/10 * * * * /home/pi/lolbandwidth.py | |
| import os | |
| import sys | |
| import csv | |
| import datetime | |
| import time |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * UUID class | |
| * | |
| * The following class generates VALID RFC 4122 COMPLIANT | |
| * Universally Unique IDentifiers (UUID) version 3, 4 and 5. | |
| * | |
| * UUIDs generated validates using OSSP UUID Tool, and output | |
| * for named-based UUIDs are exactly the same. This is a pure | |
| * PHP implementation. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| . | |
| ├── assets | |
| │ ├── images | |
| │ ├── sass/less/stylus/css | |
| ├── lib | |
| │ ├── actions | |
| │ ├── components | |
| │ │ ├── __tests__ | |
| │ │ │ └── Avatar.test.jsx | |
| │ │ └── Avatar.jsx |