Skip to content

Commit f346f70

Browse files
committed
AWS talk
1 parent 514025a commit f346f70

File tree

11 files changed

+2135
-0
lines changed

11 files changed

+2135
-0
lines changed

docs/talks/aws/cmu.png

16.9 KB
Loading

docs/talks/aws/covidcast_indicators.svg

Lines changed: 1 addition & 0 deletions
Loading

docs/talks/aws/covidcast_overview.svg

Lines changed: 1 addition & 0 deletions
Loading

docs/talks/aws/delphi.png

19.8 KB
Loading

docs/talks/aws/demo-extended.rda

15.8 MB
Binary file not shown.

docs/talks/aws/ecosystem.png

383 KB
Loading

docs/talks/aws/script.html

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<script>
2+
(function () {
3+
function initializeCodeFolding(showAll) {
4+
Array.from(
5+
document.querySelectorAll(
6+
"pre.r, pre.python, pre.bash, pre.sql, pre.cpp, pre.stan, pre.julia, pre.foldable"
7+
)
8+
).forEach((elem) => {
9+
const wrapper = document.createElement("details");
10+
wrapper.classList.add("code-wrapper");
11+
wrapper.style.outline = "none";
12+
wrapper.open = showAll || false;
13+
elem.parentElement.replaceChild(wrapper, elem);
14+
const summary = document.createElement("summary");
15+
summary.style.outline = "none";
16+
summary.style.cursor = "pointer";
17+
summary.innerText = "Code";
18+
wrapper.appendChild(summary);
19+
wrapper.appendChild(elem);
20+
wrapper.addEventListener('click', function(e) {
21+
// stop going to next slide
22+
e.stopPropagation();
23+
});
24+
});
25+
}
26+
// use the jquery construct on purpose such that it will run after the CMU jquery handler
27+
$(document).ready(function () {
28+
initializeCodeFolding(false);
29+
});
30+
})();
31+
32+
</script>

docs/talks/aws/severity_pyramid.svg

Lines changed: 1 addition & 0 deletions
Loading

docs/talks/aws/style.css

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
2+
color: #247 !important;
3+
}
4+
5+
pre {
6+
font-weight: normal !important;
7+
border-color: #247 !important;
8+
background-color: #f8f8f8 !important;
9+
}
10+
11+
code {
12+
background-color: #f8f8f8 !important;
13+
font-family: "Lucida Console", Monaco, monospace;
14+
}
15+
16+
a {
17+
color: #800080 !important;
18+
border-bottom: 1px solid #800080;
19+
}
20+
21+
pre a {
22+
border: none;
23+
}
24+
25+
a:hover {
26+
color: #800080 !important;
27+
border-bottom: none !important;
28+
text-decoration: none !important;
29+
}
30+
31+
body {
32+
background-color: #ffffff !important;
33+
}

0 commit comments

Comments
 (0)