Website/slides/talks/2018-8-MimirDemo/index.html
2018-12-19 17:07:19 -05:00

114 lines
3.9 KiB
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>reveal.js</title>
<link rel="stylesheet" href="../../reveal.js-3.7.0/css/reveal.css">
<link rel="stylesheet" href="../../reveal.js-3.7.0/css/theme/black.css">
<link rel="stylesheet" href="style.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="../../reveal.js-3.7.0/lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? '../../reveal.js-3.7.0/css/print/pdf.css' : '../../reveal.js-3.7.0/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal"><div class="slides">
<section>
<img src="vizier.svg" width="400px"/>
<h3>Beyond ETL</h3>
</section>
<section>
<section>
<h3>Analytics as a Service</h3>
<svg data-src="Data_Cycle.svg" height="500px" />
<attribution>Images from <a href="https://openclipart.org/">OpenClipArt</a></attribution>
</section>
<section>
<h3>What your client gives you</h3>
<h3></h3>
<h3>What you expect</h3>
</section>
</section>
<section>
<section>
<h3>Discovering the Problem</h3>
<dl>
<div class="fragment">
<dt>In Production</dt>
<dd>... ooops!</dd>
</div>
<div class="fragment" style="margin-top: 30px;">
<dt>When Receiving Data</dt>
<dd>
<ul>
<li>Database Constraints</li>
<li><a href="https://pydata.org/nyc2018/schedule/presentation/38/" style="color: inherit;">Unit Tests</a></li>
<li class="fragment"><a href="https://quickbooks-engineering.intuit.com/taming-data-quality-with-circuit-breakers-dbe550d3ca78" style="color: inherit; text-decoration: underline;">"Circuit Breakers"</a></li>
</ul>
</dd>
</div>
</dl>
</section>
<section>
<h3>Testing your<br/>data is a must!</h3>
</section>
<section>
<p style="margin-top: 50px;">If you're not already testing, <span style="color: #deaa87">Vizier</span> can help</p>
<p class="fragment" style="margin-top: 50px;">If you're already testing, you're at the head of the pack!</p>
<p class="fragment" style="margin-top: 50px;">... but what do you do when a test fails?</p>
</section>
<section>
<h1>Demo</h1>
</section>
</section>
</div></div>
<script src="../../reveal.js-3.7.0/lib/js/head.min.js"></script>
<script src="../../reveal.js-3.7.0/js/reveal.js"></script>
<script>
var debug = true
// More info about config & dependencies:
// - https://github.com/hakimel/reveal.js#configuration
// - https://github.com/hakimel/reveal.js#dependencies
Reveal.initialize({
history: debug,
dependencies: [
{ src: '../../reveal.js-3.7.0/plugin/svginline/data-src-svg.js' },
{ src: '../../reveal.js-3.7.0/plugin/markdown/marked.js' },
{ src: '../../reveal.js-3.7.0/plugin/markdown/markdown.js' },
{ src: '../../reveal.js-3.7.0/plugin/notes/notes.js', async: true },
{ src: '../../reveal.js-3.7.0/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
]
});
if(debug){
document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1"></' + 'script>')
}
</script>
<script>
</script>
</body>
</html>