| Storage Tier | Storage Cost (monthly per Gigabyte) | Read Cost (per 1K requests + per Gigabyte read) | Write Cost (per 1K requests) |
|---|---|---|---|
| S3 Standard | $0.023 | $0.0004 + $0.0007 | $0.005 |
| S3 IA | $0.0125 | $0.001 + $0.01 | $0.01 |
| S3 IA One Zone | $0.01 | $0.001 + $0.01 | $0.01 |
| Glacier Standard | $0.004 | $0.05 + $0.01 | $0.05 |
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
| # colorize / verticalize ls | |
| alias ls='ls -G1' | |
| # cd shortcuts | |
| alias te='cd ~/projects/tempus-edge' | |
| alias tde='cd ~/projects/TempusDevEnvironment' | |
| alias hloom='cd ~/projects/Heirloom' | |
| alias ..='cd ..' |
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
| # k8s shortcuts | |
| alias kbaws='kubectl --kubeconfig ~/.kube/aws.secure.kubeconfig' | |
| alias kbmin='kubectl --kubeconfig ~/.kube/minikube.kubeconfig' | |
| # docker shortcuts | |
| alias drun='docker run -it --rm' | |
| alias drm='docker rm -f' | |
| alias drmi='docker rmi' | |
| alias dps="docker ps --format 'table {{.Names}}\t{{.Image}}\t{{.Ports}}' -a" |
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
| # git shortcuts | |
| alias branch='git branch' | |
| alias gs='git status' | |
| alias gcam='git commit -am' |
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
| # Golang setup | |
| export GOVERSION=$(brew list go | head -n 1 | cut -d '/' -f 6) | |
| export GOROOT=$(brew --prefix)/Cellar/go/${GOVERSION}/libexec | |
| export GOPATH="$HOME/go" | |
| export PATH=$PATH:$GOPATH/bin | |
| export GOPATH="$GOPATH:$(echo ~)/projects/tempus-edge/lib/go" | |
| export GOPATH="$GOPATH:$(echo ~)/projects/tempus-edge/applications/mqtt-client-go" | |
| export GOPATH="$GOPATH:$(echo ~)/projects/tempus-edge/protobuf-definitions/go-protobuf-output" |
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
| # pycache cleaner | |
| export PYTHONDONTWRITEBYTECODE=1 | |
| pyclean () { | |
| find . -regex '.*\(__pycache__\|\.py[co]\)' | xargs rm -rf | |
| } |
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
| # ssh shortcuts | |
| alias acerShell='ssh randy@192.168.1.9 -p 3141' | |
| alias awsIofogShell='ssh ubuntu@13.59.38.225' |
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
| { | |
| "New Component": { | |
| "prefix": "newComponent", | |
| "body": [ | |
| "import React, { Component } from 'react';", | |
| "", | |
| "import { withStyles } from '@material-ui/core/styles';", | |
| "", | |
| "const styles = {", | |
| "\t//customStyle: {", |
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
| # Shorten Bash Prompt | |
| PS1='$ ' | |
| # Env Vars | |
| export JAVA_HOME=$(/usr/libexec/java_home) | |
| export GREP_OPTIONS="--color=auto" | |
| # Init jenv | |
| if which jenv > /dev/null; then eval "$(jenv init -)"; fi |
This document explains the general workflow used at Hashmap for software projects on github.
Please feel free to reach out if you'd like me to change any of this.
First, let's discuss some git / github terms that are often confusing.
git-> a version control software. This software is what allows developers on different machines to collaborate on the same code base in a really efficient way.github-> github is a website that hosts git repositories. It has a ton of social / communication / PM features that make it a nice way to collaborate on software projects.
OlderNewer