Skip to content

Instantly share code, notes, and snippets.

View bhanujggandhi's full-sized avatar
🎯
Focusing

Bhanuj Gandhi bhanujggandhi

🎯
Focusing
View GitHub Profile
1. Clone the repository to the newly created server instance.
```sh
git clone <url-of-the-repo>
```
2. Install node.js (I prefer the nvm way to install node.js)
```sh
sudo apt install curl
curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash
source ~/.bashrc
@bhanujggandhi
bhanujggandhi / terminology.md
Last active August 13, 2020 17:45
Redux Learning

Terminology

Actions

An action is a plain JavaScript object which must have a type field. It can also have other information which can be stored in other field called payload.

const addTodoAction = {
  type: 'todos/todoAdded',
  payload: 'Buy milk'
}
@bhanujggandhi
bhanujggandhi / README-Template.md
Created July 27, 2020 13:55 — 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

@bhanujggandhi
bhanujggandhi / sampleREADME.md
Created July 27, 2020 13:46 — 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

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database