This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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)', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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: [] }}); | |
| }) |
NewerOlder