datalad-course/html/uke_wrapup.html

177 lines
6.8 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">
<!-- Edit me start! -->
<title>This is where your title goes</title>
<meta name="description" content=" This is where you put a short description ">
<meta name="author" content=" Your Name ">
<!-- Edit me end! -->
<link rel="stylesheet" href="../reveal.js/dist/reset.css">
<link rel="stylesheet" href="../reveal.js/dist/reveal.css">
<link rel="stylesheet" href="../reveal.js/dist/theme/beige.css">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="../reveal.js/plugin/highlight/monokai.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<section>
<h1>You made it!</h1>
<img src="https://media.giphy.com/media/hrQbn1Ss9ALlGHkwx9/giphy.gif" height="600">
</section>
<section>
<h2>Time for questions</h2>
<li>Any questions to the workshop, or DataLad in general?</li>
<li>Any concrete use cases you want to discuss?</li>
</section>
<section>
<h2>What have we done today?</h2>
<ul style="font-size:30px">
<li class="fragment fade-in">
We all lost another 0.1 diopters of vision because we stared at
small terminals for a day
</li>
</li>
<li class="fragment fade-in">
If you're not used to working with a terminal, changes are high
that you'll dream of one tonight. (sorry)
</li>
<li class="fragment fade-in">
If DataLad would be cake, then we would have had so much of it
that we would be diabetic
</li>
<li class="fragment fade-in">
The workshop was intensive. We hope that we were able to
show you a good selection of things that DataLad can do, and also
how we use DataLad day-to-day in our science
</li>
<li class="fragment fade-in">
Beyond DataLad, we've also touched a range of other useful tools and
concepts.
</li>
<ul class="fragment fade-in">
<li>Version control concepts</li>
<li>Collaborative workflows</li>
<li>Places to store or share your data, and how to do it in practice</li>
<li>Different types of provenance and ways to computational reproducibility</li>
<li>...</li>
</ul>
</ul>
</section>
<section>
<section data-transition="None">
<h2>Why use DataLad?</h2>
<ul>
<li class="fragment fade-in">Mistakes are not forever anymore: Easy version control, regardless of file size</li>
<li class="fragment fade-in">Who needs short-term memory when you can have run-records?</li>
<li class="fragment fade-in">Disk-usage magic: Have access to more data than your hard drive has space</li>
<li class="fragment fade-in">Collaboration and updating mechanisms: Alice shares her data with Bob. Alice fixes a mistake and pushes the fix.
Bob says "datalad update" and gets her changes. And vice-versa.</li>
<li class="fragment fade-in">Transparency: Shared datasets keep their history. No need to track down a former student,
ask their project what was done.</li>
</ul>
</section>
<section>
<h2>If that's your current status...</h2>
<img src="../pics/toomuch.jpg">
<br>
aaaaaahhhhhh I the weekend...
<div class="fragment fade-in">Then that's okay</div>
</section>
<section>
<h2>A few take home messages</h2>
<ul style="font-size:30px">
<li>
There are many tools that make RDM and science in general easier,
more transparent, and more reproducible. DataLad is one of them
</li>
<li>
DataLad is a flexible and extendable tool, and can be combined with
much that you may be using anyways.
</li>
<li>
If much of what we talked about is new for you: No start will be
perfect. Things are hard to do. But: There is documentation and a
community for help.
</li>
<li>
If you want to get started with DataLad:</li>
<ul>
<li> Take small steps</li>
<li> Take your time</li>
<li>Use whatever feature is useful for you</li>
</ul>
<li>
If you need help, have a question, feedback, or a feature request,
then get in touch :) We are happy to hear about it, either at
<a href="https://github.com/datalad-handbook/book/" target="_blank">the DataLad Handbook</a> or at
<a href="https://github.com/datalad/datalad/" target="_blank">DataLad</a>.
<strong>Your feature requests can make a huge impact</strong>.
</li>
<li>Join the <strong>weekly office hour</strong> to chat with developers. Find it by joining
<a href="https://matrix.to/#/!NaMjKIhMXhSicFdxAj:matrix.org?via=matrix.waite.eu&via=matrix.org&via=inm7.de" target="_blank">
our Matrix chat room</a> </li>
<li>
Help us improve this workshop with your feedback (we will send a feedback form via mail)
</li>
</ul>
</section>
</section>
</div>
</div>
<script src="../reveal.js/dist/reveal.js"></script>
<script src="../reveal.js/plugin/notes/notes.js"></script>
<script src="../reveal.js/plugin/markdown/markdown.js"></script>
<script src="../reveal.js/plugin/highlight/highlight.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
// The "normal" size of the presentation, aspect ratio will be preserved
// when the presentation is scaled to fit different resolutions. Can be
// specified using percentage units.
width: 1280,
height: 960,
// Factor of the display size that should remain empty around the content
margin: 0.3,
// Bounds for smallest/largest possible scale to apply to content
minScale: 0.2,
maxScale: 1.0,
controls: true,
progress: true,
history: true,
center: true,
slideNumber: 'c',
pdfSeparateFragments: false,
pdfMaxPagesPerSlide: 1,
pdfPageHeightOffset: -1,
transition: 'slide', // none/fade/slide/convex/concave/zoom
// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
});
</script>
</body>
</html>