Skip to content

Instantly share code, notes, and snippets.

View bergerjac's full-sized avatar

Jake Berger bergerjac

View GitHub Profile
@bergerjac
bergerjac / Doc.md
Last active February 14, 2017 08:05 — forked from cyio/evernote-link.user.js
Evernote Web in-app note link
-- example --
web: https://www.evernote.com/shard/s12/nl/u2u2u2u2/44444444-3333-2222-1111-000000000/
app: evernote:///view/u2u2u2u2/s12/44444444-3333-2222-1111-000000000/44444444-3333-2222-1111-000000000/
	
-- format --
web: https://[service]/shard/[shardId]/nl/[userId]/[noteGuid]/
app: evernote:///view/[userId]/[shardId]/[noteGuid]/[noteGuid]/

-- spaced --
@bergerjac
bergerjac / capybara_cheat_sheet.rb
Last active August 29, 2015 14:15 — forked from zhengjia/capybara cheat sheet
capybara cheat sheet
# debugging
save_and_open_page
puts page.body
puts find("#id").native
puts first("#id .class element").native
# navigating
visit('/projects')
visit(post_comments_path(post))