- https://medium.com/making-instapaper/instapaper-outage-cause-recovery-3c32a7e9cc5f#.8wd4ufmw5
- https://blogs.dropbox.com/tech/2014/01/outage-post-mortem/
- https://groups.google.com/forum/#!topic/google-appengine/p2QKJ0OSLc8
- https://about.gitlab.com/2017/02/10/postmortem-of-database-outage-of-january-31/
- https://blog.cloudflare.com/todays-outage-post-mortem-82515/
- https://github.com/blog/1759-dns-outage-post-mortem
- https://blog.travis-ci.com/2017-02-07-jan-31-macos-outage-postmortem
- http://stackstatus.net/post/147710624694/outage-postmortem-july-20-2016
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### | |
### Shell script to download Oracle JDK / JRE / Java binaries from Oracle website using terminal / command / shell prompt using wget. | |
### You can download all the binaries one-shot by just giving the BASE_URL. | |
### Script might be useful if you need Oracle JDK on Amazon EC2 env. | |
### Script is updated for every JDK release. | |
### Features:- | |
# 1. Resumes a broken / interrupted [previous] download, if any. | |
# 2. Renames the file to a proper name with including platform info. |
Chrome 上で reveal.js で作成したスライドを pdf 化する手順メモ
- URL に ?print-pdf を追加する
- CMD + P で印刷ダイアログを表示し、出力先を pdf に設定
- 出力
出力された pdf を確認し、リンクが表示されていないなど表示がおかしい場合は以下の事を試す(ここからが本題)
reveal.js/out.html の document.write している行をコメントアウトし、css/print/pdf.css を直接追加。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
##Setup | |
TODAY=`date +\%Y\%m\%d` | |
INSTANCE_NAME="set your instance name" | |
LOG="path to your log file" | |
EBS_VOLUME="set your ebs id" | |
EC2_REGION=ap-northeast-1 | |
EBS_GENERATION=5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
#LOG | |
#--- | |
#Log sequence number 248 2222568315 | |
#Log flushed up to 248 2222533410 | |
#Last checkpoint at 248 1843690869 | |
# | |
use strict; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from deployment.cuisine import * | |
from fabric.api import * | |
from fabric.context_managers import * | |
from fabric.utils import puts | |
from fabric.colors import red, green | |
import simplejson | |
import os |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id":"dbauser", | |
"uid":506, | |
"comment":"DBA User", | |
"shell":"/bin/bash", | |
"groups": [ | |
"sysadm", | |
"dba" | |
], | |
"ssh_key": "XXXXXXXXXX" |