Skip to content

Instantly share code, notes, and snippets.

@mdang
mdang / RAILS_CHEATSHEET.md
Last active May 6, 2025 08:55
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 May 9, 2025 07:19
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 May 3, 2025 09:16
Capybara cheatsheet

Capybara Actions

# Anchor
click_link 'Save'

# Button
click_button 'awesome'

# Both above