Skip to content

Instantly share code, notes, and snippets.

View vnigam1985's full-sized avatar

Vishal Nigam vnigam1985

View GitHub Profile
@vnigam1985
vnigam1985 / flightplan-deploy.md
Created April 19, 2017 01:28 — forked from learncodeacademy/flightplan-deploy.md
Deploy Node.js Apps with Flightplan

##Setup your server (this would ideally be done with automated provisioning)

  • add a deploy user with password-less ssh see this gist
  • install forever npm install -g forever

##Install flightplan

  • npm install -g flightplan
  • in your project folder npm install flightplan --save-dev
  • create a flightplan.js file
@vnigam1985
vnigam1985 / README.md
Created May 22, 2018 14:07 — 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.

OP: @leonardofed founder @ plainflow.


@vnigam1985
vnigam1985 / LinkedInAutocoment.js
Created March 21, 2019 14:28 — forked from techguybiswa/LinkedInAutocoment.js
Automatically reply to ALL your LinkedIn Comments
var listOfCommentBox = document.getElementsByTagName("article");
//get the array list of all the div-s that has the comments
let extractedListOfFirstComment = [];
// store the author details of the comment
let listOfDiv = [];
//store the div-s of the comment
let count =0;
function generateComment(name,index) {