Skip to content

Instantly share code, notes, and snippets.

@mdang
mdang / RAILS_CHEATSHEET.md
Last active January 22, 2026 21:16
Ruby on Rails Cheatsheet

Ruby on Rails Cheatsheet

Architecture

Create a new application

Install the Rails gem if you haven't done so before

@cferdinandi
cferdinandi / terminal-cheat-sheet.txt
Last active February 14, 2026 08:49
Terminal Cheat Sheet
# Terminal Cheat Sheet
pwd # print working directory
ls # list files in directory
cd # change directory
~ # home directory
.. # up one directory
- # previous working directory
help # get help
-h # get help
@tomas-stefano
tomas-stefano / Capybara.md
Last active February 5, 2026 20:28
Capybara cheatsheet

Capybara Actions

# Anchor
click_link 'Save'

# Button
click_button 'awesome'

# Both above