Skip to content

Instantly share code, notes, and snippets.

View VinozzZ's full-sized avatar
🍉

Yingrong Zhao VinozzZ

🍉
  • @honeycomb.io
View GitHub Profile
@VinozzZ
VinozzZ / tmux-cheatsheet.markdown
Created May 24, 2021 20:48 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@VinozzZ
VinozzZ / iterm2.md
Last active November 16, 2020 14:09 — forked from squarism/iterm2.md
iterm2 cheatsheet

Tabs and Windows

Function Shortcut
New Tab + T
Close Tab or Window + W (same as many mac apps)
Go to Tab + Number Key (ie: ⌘2 is 2nd tab)
Go to Split Pane by Direction + Option + Arrow Key
Cycle iTerm Windows + backtick (true of all mac apps and works with desktops/mission control)
### Keybase proof
I hereby claim:
* I am vinozzz on github.
* I am vinozzz (https://keybase.io/vinozzz) on keybase.
* I have a public key ASCWNjDGzE7g8pNITLyT7pfcexhssSWSXzFKF2BCWyESeAo
To claim this, I am signing this object:
@VinozzZ
VinozzZ / react-components-cli.txt
Last active November 3, 2017 13:08
CLI create react components and services
#!/usr/bin/env node
var Promise = require("bluebird");
var fs = Promise.promisifyAll(require("fs"));
var directoryDict = {
c: "templates/componentWithoutReducer",
cr: "templates/componentWithReducer",
s: "templates/service"
};
var pathInput = "";