This file contains 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
1 0 | |
2 0 | |
3 0 | |
4 3 | |
5 4 | |
6 5 | |
7 5 | |
8 7 | |
9 8 | |
10 9 |
This file contains 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
For an app I'm building for myself, I have to provide a privacy policy for | |
data retrieved from the API. | |
I will not release any data from the Uber API without explicit and clear | |
consent of the user. | |
This does not affect the user's statutory rights. The user is able to stop | |
using the service at any time, and can remove any data from the service | |
using the appropriate database management commands. |
This file contains 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
# Description: Boxstarter Script | |
# Author: Jess Frazelle <[email protected]> | |
# Last Updated: 2017-09-11 | |
# | |
# Install boxstarter: | |
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
# | |
# You might need to set: Set-ExecutionPolicy RemoteSigned | |
# | |
# Run this boxstarter by calling the following from an **elevated** command-prompt: |
This file contains 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
#!/bin/sh | |
## Requires openssl, nodejs, jq | |
pack() { | |
# Remove line breaks and spaces | |
echo "$1" | sed -e "s/[\r\n]\+//g" | sed -e "s/ //g" | |
} | |
generate_keys_and_token() { | |
local prefix=$1 |