Skip to content

Instantly share code, notes, and snippets.

View bakhbk's full-sized avatar

Baha bakhbk

  • KR Digital
  • Armenia
  • 02:01 (UTC +03:00)
View GitHub Profile
@bakhbk
bakhbk / tmux-cheatsheet.markdown
Created May 3, 2024 19:09 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
void main() {
print(fact(5)); // 120
}
int fact(int x) {
if (x == 1) {
return 1;
} else {
return x * fact(x - 1);
}