Skip to content

Instantly share code, notes, and snippets.

@cyclotimia
cyclotimia / addTwoElements
Last active June 25, 2020 17:00
Stepic Haskell course - Chapter 3. Lists
addTwoElements :: a -> a -> [a] -> [a]
addTwoElements x y z = x : y : z
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active July 17, 2024 15:03
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname