Skip to content

Instantly share code, notes, and snippets.

View sangqle's full-sized avatar
🦖
Always do the right things. 🚀 🔥 ❤️

Sang Le sangqle

🦖
Always do the right things. 🚀 🔥 ❤️
  • Ho Chi Minh City, Vietnam
  • 01:36 (UTC +07:00)
View GitHub Profile
@sangqle
sangqle / tmux-cheatsheet.markdown
Created May 19, 2021 15:08 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
import { Document, model, Model, Schema, Mongoose } from 'mongoose'
import User from '../../user/models/user'
import Job from '../../jobs/models/job'
var JobStorageSchema: Schema = new Schema({
name: {
type: String
},
_idUser: {
type: Schema.Types.ObjectId,
required: true,