- wipe down tables
- remove cups and other kitchenware
- wipe surfaces of public screens (TVs, pairing monitors)
- tidy up cords at the front of each classroom
- water plants according to schedule
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=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') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# original | |
def shoot | |
if cranky? || laying? | |
"NO!" | |
else | |
@tired += 1 | |
"Twang!!!" | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" A minimal vimrc for new vim users to start with. | |
" | |
" Referenced here: http://www.benorenstein.com/blog/your-first-vimrc-should-be-nearly-empty/ | |
" Original Author: Bram Moolenaar <[email protected]> | |
" Made more minimal by: Ben Orenstein | |
" Last change: 2012 Jan 20 | |
" | |
" To use it, copy it to | |
" for Unix and OS/2: ~/.vimrc |
In this project you'll build a URL shortener service.
This version is a little bit different than what we do in Module 2 these days:
- You can use Rails and ActiveRecord instead of Sinatra and Sequel
- We're skipping authentication and authorization: We won't be implementing the idea of registered users
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Uncomment lines with `# =>` at the end, | |
# Predict the result. | |
# To see if your prediction is correct, run it with: | |
# vim: `\n` , NOT `\b` (if your leader is not `\`, then use that leader instead) | |
# atom: `command + option + n`, NOT `b` | |
# ===== Toplevel methods are defined where? ===== | |
def rawr! | |
"#{self} says: rawr!" |