See the repository status
git status
Add all files to staging
| #!/bin/bash | |
| #-------------------------# | |
| # Set up OpenDNS in macOS # | |
| #-------------------------# | |
| # Set OpenDNS nameservers. | |
| echo "Setting up OpenDNS." | |
| networksetup -setdnsservers Wi-Fi 208.67.220.220 208.67.222.222; |
| <?php | |
| /** | |
| * Class ConcurrentEventReport | |
| * | |
| * Accepts a two-column CSV file containing a list of events in terms of "start" and "end" times. | |
| * Outputs a new CSV file with the distribution of concurrent events across the range of time by minute. | |
| */ | |
| class ConcurrentEventReport | |
| { |
| #!/bin/bash | |
| # Backup a directory using the current date. | |
| # First argument: the path of the directory to back up. | |
| # Second argument: the path of the directory to store the archive into. | |
| # Creates a filename like <DIRECTORY>_<DATE>.tar.gz | |
| if [ -z $1 ] || [ -z $2 ]; then | |
| echo "Enter a source directory and a destination directory." | |
| exit 1 |
| 9.33 MB | |
| 5.67 MB | |
| 4.53 MB | |
| 365 B | |
| 942.1 MB | |
| 3.47 KB | |
| 7 GB | |
| 2.78 KB | |
| 8.8 GB | |
| 4.5 GB |
| 4.9 MB | |
| 5.72 MB | |
| 7.3 GB | |
| 4.6 KB | |
| 3.7 GB | |
| 2.35 KB | |
| 4.81 MB | |
| 6.3 MB | |
| 6.8 MB | |
| 1.52 KB |
| #!/usr/bin/php | |
| <?php | |
| /** | |
| * Build a spreadsheet of info about a project's required libraries via Packagist. | |
| * | |
| * @author Chris Ullyott <contact@chrisullyott.com> | |
| */ | |
| class PackageSheet |