Skip to content

Instantly share code, notes, and snippets.

View liginv's full-sized avatar
🎯
Get Set Code

Ligin Vellakkad liginv

🎯
Get Set Code
View GitHub Profile
@liginv
liginv / .gitconfig
Created May 30, 2019 07:58
My gitconfig
# Save this under your home directory's .gitconfig file
# $ ~/.gitconfig
[user]
name = blah
email = [email protected]
[core]
editor = subl -n -w
@liginv
liginv / aws-9-in-2019.md
Created May 11, 2019 15:49 — forked from curtismckee/aws-12-in-2021.md
Outline for getting all 9 AWS Certifications in 2019

AWS 9 in 2019

aws-certs

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

  1. Cloud Practitioner
  2. Developer Associate
@liginv
liginv / README.md
Created May 11, 2019 15:47 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


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.


AWS Solutions Architect - Associate

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:

Keybase proof

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:

@liginv
liginv / uwsgi_params
Created May 7, 2018 05:19
serving uWSGI distribution through nginx. Copy it to the project directory.
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;
@liginv
liginv / .aliases
Last active May 11, 2019 15:08
My personal zsh terminal config
# 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'
@liginv
liginv / JavaScript (Babel).sublime-settings
Last active May 11, 2019 15:14
Sublime Text 3 personal Configs.
{
"extensions":
[
"js",
"vue"
]
}