Skip to content
View jeswinsimon's full-sized avatar

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 Loading

  1. awesome-made-by-indians Public

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

    125 11

  2. game-of-life Public

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

    JavaScript

  3. exercism-javascript Public

    My Exercism Javascript solutions

    JavaScript 1

  4. Drop all collections in a MongoDB Da...
    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...
    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...
    1
    #!/bin/bash
    2
    TARGET="<deployment-location>"
    3
    GIT_DIR="<repo-location>"
    4
    BRANCH="master"
    5