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 / git-remote-mirror
Last active September 10, 2016 08:28
Add a remote mirror on a network drive from a local Git repository (*nix)
If you use Git on you development machine, it's good to keep a remote backup in case your dev machine fails.
Step 1: Create the empty bare repo on your network drive(backup folder).
so you first have to clone it: in the original repo do:
$ git clone --bare /path/of/the/exsisting/repo
This will copy your repository data to the network folder.
Step 2: In the version controlled folder, add a new remote.

Git Cheat Sheet

Commands

Getting Started

git init

or

git clone url

@liginv
liginv / gulpfile.js
Created March 11, 2017 08:06 — forked from mlouro/gulpfile.js
gulpfile.js with browserify, jshint, libsass, browserSync for livereload, image optimization and system notifications on errors
'use strict';
var gulp = require('gulp');
var gutil = require('gulp-util');
var del = require('del');
var uglify = require('gulp-uglify');
var gulpif = require('gulp-if');
var exec = require('child_process').exec;
var notify = require('gulp-notify');
@liginv
liginv / JavaScript (Babel).sublime-settings
Last active May 11, 2019 15:14
Sublime Text 3 personal Configs.
{
"extensions":
[
"js",
"vue"
]
}
@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 / 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;

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:

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:

@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.