Skip to content

Instantly share code, notes, and snippets.

View flxw's full-sized avatar

Felix Wolff flxw

View GitHub Profile
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 12.5,
// font family with optional fallbacks
fontFamily: '"Meslo LG S for Powerline"',
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
cursorColor: 'rgba(248,28,229,0.8)',
var conn = new Mongo(),
exercises
db = conn.getDB("educatopiadev")
exercises = db.exercises.find()
exercises.forEach(function (exercise) {
db.exercises.update({_id: exercise._id}, { $set: { revisions: [] }});
})