Skip to content

Instantly share code, notes, and snippets.

@hcliff
hcliff / post-mortem-template.md
Last active September 21, 2017 14:19 — forked from juliandunn/post-mortem-template.md
Post mortem template

2017-09-20 - Consumer app outage

Meeting waived: Henry Clifford

Incident Leader: Henry Clifford

Description

Beginning on 2017-09-20 the consumer api sent 500 (internal server error) codes to most consumer requests.

(ns app.ui.views
(:require
[crate.core :as crate]
[crate.form :as form])
(:use-macros
[crate.def-macros :only [defpartial]]))
(defpartial share-modal [content]
[:form#create-form.modal-body.form-horizontal
[:div.control-group
@hcliff
hcliff / gist:5247762
Last active December 15, 2015 10:39 — forked from anonymous/gist:5165248
<script type='text/javascript' id='spling-script'>
window.SPLING_URL = 'http://spling.com/app/user/DanceMoms/splingboards-widget/dancemoms';
</script>
<script type='text/javascript' src='//cdnjs.cloudflare.com/ajax/libs/jquery/1.7/jquery.min.js'></script>
<script type="text/javascript" src="http://spling.com/s/g/widget.js"></script>
<script type='text/javascript' id='spling-script'>
window.SPLING_URL = 'http://spling.com/app/user/DanceMoms/splingboards-widget/dancemoms';
</script>
<script type="text/javascript" src="http://spling.com/s/g/widget.js"></script>
class Example.Views.Table extends Backbone.View
template: JST['example/table']
initialize: ->
@collection.on 'add', @addOne
render: ->
@$el.html @template()
@addAll()
@
class Example.Views.Table extends Backbone.View
template: JST['example/table']
initialize: ->
_.bindAll @, 'addOne', 'addAll'
@collection.on 'add', @addOne
render: ->
@$el.html @template()
class Example.Views.Table extends Backbone.View
template: JST['example/table']
initialize: ->
_.bindAll @, 'addOne', 'addAll'
@collection.on 'add', @addOne
render: ->
@$el.html @template()