Skip to content

Instantly share code, notes, and snippets.

View jessepinho's full-sized avatar

Jesse Pinho jessepinho

View GitHub Profile
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active May 3, 2024 19:09
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@pixelmatrix
pixelmatrix / Rakefile
Created July 22, 2010 19:34
Creating a prompt in a Rake Task
require "rake"
task :say_hi do
puts "What's your name?"
name = $stdin.gets.chomp
puts "Hi #{name}!"
end