Skip to content

Instantly share code, notes, and snippets.

View JoshTheWanderer's full-sized avatar

Josh Rose JoshTheWanderer

View GitHub Profile
@JoshTheWanderer
JoshTheWanderer / development-services-pricing.csv
Last active June 7, 2018 17:15
Development Services Pricing
Service Cost per month (from)
Github $25 then $9 per user
Codacy $15 per user
Travis CI $69
Snyk (see note) $499
@JoshTheWanderer
JoshTheWanderer / .eslint.json
Created November 15, 2016 13:59
A rough linting boilerplate
{
"extends": "airbnb",
"plugins": [
"react"
],
"env": {
"es6": true
},
"parserOptions": {
"ecmaVersion": 6,
@JoshTheWanderer
JoshTheWanderer / view-transitions.coffee
Last active August 29, 2015 13:56
Marionette view transtions
# Hide the element, then fade in. defer prevents choppiness
onRender ->
@$el.hide()
_.defer _.bind @transitionIn, @
transitionIn: ->
@$el.slideDown()
# Override backbone remove method, then call it once we've finished the transition
remove: ->