| R2 Data Storage | Cost |
|---|---|
| All storage / Month | $0.015 per GB |
| Service | Description | SQL Support | Use Case |
|---|---|---|---|
| RDS | Postgres, MySQL, etc. | Full | Small-medium web apps |
| Aurora | Serverless databases | Full | Serverless apps |
| Redshift | Data warehouse | Full | OLAP, Petabytes of data, analytics |
| DynamoDB | NoSQL database | Some - PartiSQL | Ecommerce, building fast |
| Keyspaces | Managed Cassandra (key value) | Some - CQL | Messaging |
| Neptune | Graph database | Some - openCypher |
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
| CREATE USER 'root2'@'127.0.0.1' IDENTIFIED BY 'root'; | |
| GRANT ALL PRIVILEGES ON *.* TO 'root2'@'127.0.0.1' WITH GRANT OPTION; | |
| FLUSH PRIVILEGES; |
I hereby claim:
- I am everettberry on github.
- I am retttx (https://keybase.io/retttx) on keybase.
- I have a public key ASCCw_sQswFSSz6sqfRDlsAFWtCIxf24DkUcExFrvpbmNgo
To claim this, I am signing this object:
Two global python packages are all that is really necessary:
sudo apt-get install python-pip
sudo pip install virtualenvStart virtualenv (used Python3 in this case):
virtualenv <my env> --python=/usr/bin/python3
source <my env>/bin/activatesudo apt-get install python-software-properties
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java7-installer
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
| sshfs: | |
| 1. brew install sshfs | |
| 2. sudo /bin/cp -RfX /usr/local/opt/osxfuse/Library/Filesystems/osxfusefs.fs /Library/Filesystems | |
| 3. sudo chmod +s /Library/Filesystems/osxfusefs.fs/Support/load_osxfusefs | |
| 3. sshfs <username>@<hostname>:/path/to/directory <your directory> | |
| macvim: | |
| 1. Download tar file | |
| 2. make install the file | |
| 3. mv /Users/<username>/Downloads/macvim-snapshot-73/src/MacVim/mvim ~/.rvm/bin |