Skip to content

Instantly share code, notes, and snippets.

View habdams's full-sized avatar
💭
Keeping an open mind

Adetunji Ojekunle(TeeJay) habdams

💭
Keeping an open mind
View GitHub Profile
@umr55766
umr55766 / how to install virtualenv in ubuntu 16 . 04.md
Last active April 16, 2023 15:13 — forked from Geoyi/install virtualenv ubuntu 16.04.md
How to install virtual environment on ubuntu 16.04

How to install virtualenv:

Install pip first

sudo apt-get install python3-pip

Then install virtualenv using pip3

sudo pip3 install virtualenv 
@subfuzion
subfuzion / mongoose-cheatsheet.md
Created February 26, 2014 19:03
mongoose cheatsheet

Definitely not comprehensive. This is meant to be a basic memory aid with links to get more details. I'll add to it over time.

Install

$ npm install mongoose --save

Connect

const mongoose = require('mongoose');