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 / 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 \
@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",
# 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 / 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
@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 / 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 / markdown-tutorial.md
Created February 2, 2019 13:27
Markdown Basics Tutorial

What is Markdown?

Markdown is a formatting syntax that allows you to write in plain text in any editing program, but still format your document like you would with a word processor. It was created to convert plain text into HTML for publishing on the web and happens to be super easy to write and just as easy to read even without being converted.

Markdown ensures that a writer's intended formatting never gets lost. If you've ever labored on a Word document only to have its formatting scrambled when you sent it to be published to your website or when a colleague opened it in another program, you'll appreciate the simplicity and stability of Markdown.

While you can edit Markdown files in any text editor, there are are some, like iA Writer for Macs, that are specially built to make this easy way of writing even easier.

How do I write in Markdown?

Markdown is extremely simple. In fact, it's mostly plain text, so writing a paragraph would be the same as with any text editor

Advanced JavaScript Learning Resources

This is a list of advanced JavaScript learning resources from people who responded to this [Tweet][13] and this [Tweet][20].

  • [You Don't Know JS][3]

  • [Frontend Masters courses by Kyle Simpson][12]

  • [@mpjme][6]'s [YouTube videos][5]

"devDependencies": {
"eslint-config-airbnb": "^17.0.0",
"eslint-config-equimper": "*",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.10.0",
"prettier": "^1.14.3",
}