Skip to content

Instantly share code, notes, and snippets.

View e3matheus's full-sized avatar

Elías Matheus e3matheus

View GitHub Profile
@igmarin
igmarin / guess_game.rb
Last active August 29, 2015 14:12
This a Guess Game in Ruby just for fun and taking the Chap1 in Head First Ruby as a reference :)
class GuessGame
GUESS = 10
def initialize(player_name)
@player_name = player_name
@number = generate_number
@attempts = 1
play
end
def try_to_guess
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active July 4, 2024 17:58
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname