Skip to content

Instantly share code, notes, and snippets.

View DionMS8's full-sized avatar
♠️
Grinding

Dion Singh DionMS8

♠️
Grinding
View GitHub Profile
@bradtraversy
bradtraversy / mongodb_cheat_sheet.md
Last active April 28, 2024 19:51
MongoDB Cheat Sheet

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

@sjcotto
sjcotto / qrCode.js
Created May 5, 2016 20:07
Generate QR Code and save to mongodb
var json = {
email : "santiago@konacloud.io",
name : "Santiago Cotto"
};
var qr = require('qr-image');
var mongoose = require('mongoose');
var image = qr.imageSync(JSON.stringify(json), { type: 'png', size : 10 });
var Grid = require('gridfs');