Skip to content

Instantly share code, notes, and snippets.

View Mozartted's full-sized avatar
💭
building stuff

Moz Mozartted

💭
building stuff
View GitHub Profile
@Mozartted
Mozartted / How-to-Release-an-Electron-App-on-the-Mac-App-Store.md
Created September 4, 2024 16:08 — forked from steve981cr/How-to-Release-an-Electron-App-on-the-Mac-App-Store.md
Step by step instructions on how to release an Electron app on the Mac App Store. Uses Electron-builder to package the app.
@Mozartted
Mozartted / hero.ts
Created April 20, 2019 11:03 — forked from brennanMKE/hero.ts
Example of Mongoose with TypeScript and MongoDb
import * as mongoose from 'mongoose';
export let Schema = mongoose.Schema;
export let ObjectId = mongoose.Schema.Types.ObjectId;
export let Mixed = mongoose.Schema.Types.Mixed;
export interface IHeroModel extends mongoose.Document {
name: string;
power: string;