aCloudGuru membership - $250/yr. This includes all training courses as well as practice exams.
Cloud Practitioner Exam - $100, Associate Exams - $150, Professional & Specialty Exams - $300.
Total Estimated Cost for all 9 certifications: $2300
# Save this under your home directory's .gitconfig file | |
# $ ~/.gitconfig | |
[user] | |
name = blah | |
email = [email protected] | |
[core] | |
editor = subl -n -w |
Certification Prep: https://aws.amazon.com/certification/certification-prep/
Solutions Architect: https://aws.amazon.com/training/course-descriptions/architect/ https://aws.amazon.com/certification/certified-solutions-architect-associate/
Reading Materials:
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
A curated list of resources to prepare for the AWS Solutions Architect: Assoicate Certification. This document will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test(s) and many other resources.
Table of Contents:
I hereby claim:
- I am liginv on github.
- I am liginv (https://keybase.io/liginv) on keybase.
- I have a public key ASAQmwmoVEW0qFfVpItKz9-dIC9Ki1LanArwBo3AGKW7Xwo
To claim this, I am signing this object:
uwsgi_param QUERY_STRING $query_string; | |
uwsgi_param REQUEST_METHOD $request_method; | |
uwsgi_param CONTENT_TYPE $content_type; | |
uwsgi_param CONTENT_LENGTH $content_length; | |
uwsgi_param REQUEST_URI $request_uri; | |
uwsgi_param PATH_INFO $document_uri; | |
uwsgi_param DOCUMENT_ROOT $document_root; | |
uwsgi_param SERVER_PROTOCOL $server_protocol; | |
uwsgi_param REQUEST_SCHEME $scheme; |
# Update all pip packages within the environment | |
alias pipup='pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs sudo pip install -U' | |
alias pip3up='pip3 freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs sudo pip3 install -U' | |
# Tweaks | |
alias lm='ls -lah' | |
alias cls='clear' | |
alias pf='pip freeze' | |
alias pin='pip install' | |
alias cat='ccat' |
{ | |
"extensions": | |
[ | |
"js", | |
"vue" | |
] | |
} |
- http://stackoverflow.com/questions/804115 (
rebase
vsmerge
). - https://www.atlassian.com/git/tutorials/merging-vs-rebasing (
rebase
vsmerge
) - https://www.atlassian.com/git/tutorials/undoing-changes/ (
reset
vscheckout
vsrevert
) - http://stackoverflow.com/questions/2221658 (HEAD^ vs HEAD~) (See
git rev-parse
) - http://stackoverflow.com/questions/292357 (
pull
vsfetch
) - http://stackoverflow.com/questions/39651 (
stash
vsbranch
) - http://stackoverflow.com/questions/8358035 (
reset
vscheckout
vsrevert
) - http://stackoverflow.com/questions/5798930 (
git reset
vsgit rm --cached
)