Skip to content

Instantly share code, notes, and snippets.

View budmc29's full-sized avatar

Teodor (Mugurel) Chirica budmc29

View GitHub Profile
@budmc29
budmc29 / README.md
Created October 23, 2017 21:57 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet

Ruby Association Certified Ruby Examination Silver Sample Questions

Q1. Which of the following have true values in Ruby? (Choose two.)

  • (a) ""
  • (b) 0
  • (c) false
  • (d) nil

@budmc29
budmc29 / tmux-cheatsheet.markdown
Created December 27, 2015 23:02 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@budmc29
budmc29 / capybara cheat sheet
Last active September 18, 2015 13:29 — forked from zhengjia/capybara cheat sheet
capybara cheat sheet
=Navigating=
visit('/projects')
visit(post_comments_path(post))
=Clicking links and buttons=
click_link('id-of-link')
click_link('Link Text')
click_button('Save')
click('Link Text') # Click either a link or a button
click('Button Value')