Skip to content
View jeswinsimon's full-sized avatar
Block or Report

Block or report jeswinsimon

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
jeswinsimon/README.md

Hi, I am Jeswin!

Pinned

  1. awesome-made-by-indians awesome-made-by-indians Public

    🇮🇳 An awesome list for the best projects that were made and mainly contributed by Indian developers

    119 10

  2. game-of-life game-of-life Public

    James Conway's Game of Life implemented using p5.js

    JavaScript

  3. exercism-javascript exercism-javascript Public

    My Exercism Javascript solutions

    JavaScript 1

  4. Drop all collections in a MongoDB Da... Drop all collections in a MongoDB Database
    1
    var dbName = 'DatabaseName';
    2
    db.getSiblingDB(dbName).getCollectionNames().forEach(function(collName) {
    3
      if (!collName.startsWith("system.")) {
    4
        db[collName].drop();
    5
        print('Dropped Collection: ' + collName);   
  5. post-receive Git hook for building a... post-receive Git hook for building and serving React application
    1
    #!/bin/bash
    2
    TARGET="<target-location>"
    3
    DEPLOY="<deployment-location>"
    4
    GIT_DIR="<repo-location>"
    5
    BRANCH="master"
  6. post-receive hook for deploying a No... post-receive hook for deploying a Node PM2 app to server
    1
    #!/bin/bash
    2
    TARGET="<deployment-location>"
    3
    GIT_DIR="<repo-location>"
    4
    BRANCH="master"
    5