Skip to content

Instantly share code, notes, and snippets.

View fr1sk's full-sized avatar
🤔

Marko Jovanovic fr1sk

🤔
  • Belgrade, Serbia
View GitHub Profile
@fr1sk
fr1sk / pick-type-problem.ts
Created September 14, 2022 14:09
pick-type-problem
class TestDto {
@ApiProperty({ type: String, required: true })
@IsString()
@IsDefined()
id: string;
@ApiProperty({ type: String, required: true })
@IsString()
@IsDefined()
testId: string;
@fr1sk
fr1sk / TmuxCheatSheet.md
Last active March 29, 2019 14:00
Cheat Sheet of helpful Tmux commands

Tmux panes

CTRL-b, " - Split window horizontally (i.e. split and add a pane below).

CTRL-b, % - Split window vertically (i.e. split and add a pane to the right).

CTRL-b, UpArrow - Move to the pane above (I prefer to rebind this to CTRL-b, k to be similar to Vim).

CTRL-b, DownArrow - Move to the pane below (I prefer to rebind this to CTRL-b, j to be similar to Vim).