Skip to content

Instantly share code, notes, and snippets.

View ajmarkow's full-sized avatar

AJ Markow ajmarkow

View GitHub Profile
@jhell85
jhell85 / web-app-boiler-plate.md
Last active September 9, 2020 16:06
This is a basic boiler plate outline for setting up a basic web application and getting a project started quickly

Start with a repository set up like:

root directory{app name}
|_ __tests__
    |_ {app name}.test.js
|_ src
    |_ index.html
    |_ main.js
    |_ styles.css
    |_ {app name}.js
@mlanett
mlanett / rails http status codes
Last active May 23, 2024 11:36
HTTP status code symbols for Rails
HTTP status code symbols for Rails
Thanks to Cody Fauser for this list of HTTP responce codes and their Ruby on Rails symbol mappings.
Status Code Symbol
1xx Informational
100 :continue
101 :switching_protocols
102 :processing
@tomas-stefano
tomas-stefano / Capybara.md
Last active May 21, 2024 02:09
Capybara cheatsheet

Capybara Actions

# Anchor
click_link 'Save'

# Button
click_button 'awesome'

# Both above