For educational reasons I've decided to create my own CA. Here is what I learned.
Lets get some context first.
var request = require('request-promise'); | |
var co = require('co'); | |
var fs = require('fs'); | |
var cheerio = require('cheerio'); | |
var dateFormat = require('dateformat'); | |
var usernames = ['jd615645', 'jayhung97724']; | |
var fcc_info = []; |
#!/bin/bash | |
if [ "$1" = "-h" -o "$1" = "--help" -o -z "$1" ]; then cat <<EOF | |
appify v3.0.1 for Mac OS X - http://mths.be/appify | |
Creates the simplest possible Mac app from a shell script. | |
Appify takes a shell script as its first argument: | |
`basename "$0"` my-script.sh |