Skip to content

Instantly share code, notes, and snippets.

View siriniok's full-sized avatar
🏠
Working from home

Vladyslav Siriniok siriniok

🏠
Working from home
View GitHub Profile
@aqualungdesign
aqualungdesign / gist:4612606
Created January 23, 2013 20:19
iterm / oh-my-zsh -> rm move to .trash
#add script to .oh-my-zsh/lib/functions.zsh
function rm () {
local path
for path in "$@"; do
# ignore any arguments
if [[ "$path" = -* ]]; then :
else
local dst=${path##*/}
# append the time if necessary
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active August 2, 2026 09:25
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname