This file contains 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
osascript -e 'id of app "Adobe After Effects CC 2020"' | |
osascript -e 'id of app "Adobe After Effects CC 2019"' | |
mdfind -onlyin /Applications kMDItemCFBundleIdentifier=='com.adobe.AfterEffects' |
This file contains 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 Blogpost = new Schema({ | |
story: 'String', | |
comments: [{type: ObjectId, ref:'comment', unique: true}] | |
}); | |
var Comment = new Schema({ | |
comment: 'String', | |
upvotes: [{type: ObjectId, ref:'user', unique: true}] | |
}); |