Skip to content

Instantly share code, notes, and snippets.

View clavearnel's full-sized avatar

Arnel Clave clavearnel

View GitHub Profile
@clavearnel
clavearnel / sql-mongo_comparison.md
Created September 12, 2017 09:35 — forked from aponxi/sql-mongo_comparison.md
MongoDb Cheat Sheets

SQL to MongoDB Mapping Chart

SQL to MongoDB Mapping Chart

In addition to the charts that follow, you might want to consider the Frequently Asked Questions section for a selection of common questions about MongoDB.

Executables

The following table presents the MySQL/Oracle executables and the corresponding MongoDB executables.

@clavearnel
clavearnel / gist:67534e6f38a001a64945b8cde7b1253f
Created September 26, 2017 04:11 — forked from kwk/gist:1167959
How to install NodeJS and NPM on a host without internet access and without compile tools
# On build host (has internet access): Download and install NodeJS and NPM
wget http://nodejs.org/dist/node-v0.4.10.tar.gz
tar xvzf node-v0.4.10.tar.gz
cd node-v0.4.11
./configure
make
sudo make install
wget http://npmjs.org/install.sh
sudo sh ./install.sh