Skip to content

Instantly share code, notes, and snippets.

View mhnpd's full-sized avatar
👨‍💻
Working

Mohan Upadhyay mhnpd

👨‍💻
Working
View GitHub Profile
@mhnpd
mhnpd / sampleREADME.md
Created February 2, 2019 13:18 — forked from FrancesCoronel/sampleREADME.md
A sample README for all your GitHub projects.

FVCproductions

INSERT GRAPHIC HERE (include hyperlink in image)

Repository Title Goes Here

Subtitle or Short Description Goes Here

@mhnpd
mhnpd / README-Template.md
Created February 2, 2019 13:15 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@mhnpd
mhnpd / Docker installation script
Last active April 1, 2018 10:50
Script to install docker on linux os.
#!/bin/sh
# Official script is at docker official site. You can download from there or use this one.
set -e
# This script is meant for quick & easy install via:
# $ curl -fsSL get.docker.com -o get-docker.sh
# $ sh get-docker.sh
#
# For test builds (ie. release candidates):
# $ curl -fsSL test.docker.com -o test-docker.sh
# Docker setup in ubuntu and configuration in manually.
# Docker installation script is on my Docker-installation-withscript gist.
# First remove any older version or configuration of Docker in local machine. i.e. your targeted device.
sudo apt-get remove docker docker-engine docker-ce docker.io
sudo apt-get update
@mhnpd
mhnpd / setting .json
Last active March 20, 2018 04:39
Visual Studio Code user setting for JavaScript base development
// Place your settings in this file to overwrite the default settings
{
"editor.formatOnPaste": true,
"editor.acceptSuggestionOnEnter": "off",
"editor.fontSize": 14,
"editor.insertSpaces": false,
"editor.renderWhitespace": "all",
"editor.scrollBeyondLastLine": false,
"editor.tabSize": 2,
"editor.wordWrap": "on",
@mhnpd
mhnpd / setup-elementary.sh
Created December 10, 2017 10:14 — forked from IronistM/setup-elementary.sh
Things to do after installing elementary OS Loki 0.4
#Start with a dist upgrade
sudo apt dist-upgrade
# Get chrome
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i ./google-chrome*.deb
sudo apt-get install -f
# dev (php, docker, git, node, bower, electron, composer)
sudo apt install -y \