Skip to content

Instantly share code, notes, and snippets.

@stujo
stujo / duck_tracker.md
Created June 15, 2015 15:11
Message from PM @ Duck Tracker

Hey!

We need a system to track our ducks

  • At any given time we need to know which ducks are in the air

  • We have radar sensors to detect when a duck takes off or lands

Thanks Paula Manager

@clintel
clintel / gist:1155906
Created August 19, 2011 02:40
Fenced code in bullet lists with GitHub-flavoured MarkDown??

Fenced code blocks inside ordered and unordered lists

  1. This is a numbered list.

  2. I'm going to include a fenced code block as part of this bullet:

    Code
    More Code
    
@zhengjia
zhengjia / capybara cheat sheet
Created June 7, 2010 01:35
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')