What went well
7 |-
8 |
- 9 | Monitoring quickly alerted us to high rate (reaching ~100%) of HTTP 500s 10 | 11 |
- 12 | Rapidly distributed updated Shakespeare corpus to all clusters 13 | 14 |
├── .gitignore ├── _layouts ├── homepage.html ├── page.html ├── post.html ├── postmortem.html └── default.html ├── Gemfile ├── _includes ├── explain.html ├── likable.html ├── backy.html ├── firebase-comment-template.html ├── preferred-theme.html ├── dark-theme.html ├── date.html ├── footer.html ├── change-splash.html ├── 3-box.html ├── firebase-comment-form-template.html ├── nav.html └── firebase-comments.ext ├── _data └── navigation.yml ├── assets ├── print.css ├── sw.js ├── parse-explanations.js ├── kb-style.css ├── kb-dark-style.css └── assetslocalforage.min.js ├── index.md ├── _plugins └── tags │ └── napolean.rb ├── kibibit-bulma.gemspec ├── .csscomb.json ├── LICENSE.txt ├── postmortems-explained.md ├── README.md ├── sw.js ├── about.md ├── localforage.min.js └── assetslocalforage.min.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | .sass-cache 4 | _site 5 | Gemfile.lock 6 | -------------------------------------------------------------------------------- /_layouts/homepage.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | source "https://rubygems.org" 4 | gemspec 5 | -------------------------------------------------------------------------------- /_includes/explain.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/likable.html: -------------------------------------------------------------------------------- 1 |
10 | {{ page.title | default: 'MISSING TITLE' }}{% if page.incident %} (incident #{{ page.incident }}){% endif %}
7 | 12 | {% if page.date %} 13 |{{ page.date }}
14 | {% endif %} 15 | {{ content }} 16 | -------------------------------------------------------------------------------- /kibibit-bulma.gemspec: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | Gem::Specification.new do |spec| 4 | spec.name = "kibibit-bulma" 5 | spec.version = "0.1.0" 6 | spec.authors = ["Neil Kalman"] 7 | spec.email = ["Neilkalman@gmail.com"] 8 | 9 | spec.summary = "A simple markdown theme based on bulma.io" 10 | spec.homepage = "http://kibibit.io" 11 | spec.license = "MIT" 12 | 13 | spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|LICENSE|README)!i) } 14 | 15 | spec.add_runtime_dependency "jekyll", "~> 3.8" 16 | 17 | spec.add_development_dependency "bundler", "~> 1.16" 18 | spec.add_development_dependency "rake", "~> 12.0" 19 | end 20 | -------------------------------------------------------------------------------- /.csscomb.json: -------------------------------------------------------------------------------- 1 | { 2 | "remove-empty-rulesets": true, 3 | "always-semicolon": true, 4 | "color-case": "upper", 5 | "block-indent": " ", 6 | "color-shorthand": false, 7 | "element-case": "lower", 8 | "eof-newline": true, 9 | "leading-zero": true, 10 | "quotes": "double", 11 | "sort-order-fallback": "abc", 12 | "space-before-colon": "", 13 | "space-after-colon": " ", 14 | "space-before-combinator": " ", 15 | "space-after-combinator": " ", 16 | "space-between-declarations": "\n", 17 | "space-before-opening-brace": " ", 18 | "space-after-opening-brace": "\n", 19 | "space-after-selector-delimiter": "\n", 20 | "space-before-selector-delimiter": "", 21 | "space-before-closing-brace": "\n", 22 | "strip-spaces": true, 23 | "tab-size": true, 24 | "unitless-zero": true, 25 | "vendor-prefix-align": true 26 | } 27 | -------------------------------------------------------------------------------- /_includes/change-splash.html: -------------------------------------------------------------------------------- 1 |