-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
737 lines (672 loc) · 32.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
<!DOCTYPE html>
<html>
<head>
<title>Research Software Engineering und Digital Humanities. Reflexion, Kartierung, Organisation.</title>
<!-- meta information -->
<meta name="author" content="Stephan Druskat, Alexander Czmiel, Torsten Schrade" />
<meta charset="utf-8" />
<meta name="viewport" content="width=1024" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- favicons -->
<link rel="shortcut icon" href="resources/img/favicon.png" />
<link rel="apple-touch-icon" href="resources/img/apple-touch-icon.png" />
<!-- CSS reset and grid -->
<link href="vendor/normalize/normalize-4.1.1.css" rel="stylesheet" />
<link href="vendor/skeleton/skeleton-2.0.4.css" rel="stylesheet" />
<!-- fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700,600,600italic,400italic,700italic,800,800italic&subset=latin,latin-ext" rel="stylesheet" type="text/css" />
<!-- styles for included libraries -->
<!-- chartist -->
<link rel="stylesheet" href="vendor/chartist/chartist.min-0.9.7.css" />
<!-- codemirror -->
<link rel="stylesheet" href="vendor/codemirror/lib/codemirror.css" />
<!-- highlight -->
<link rel="stylesheet" href="vendor/highlight/styles/default.css" />
<link rel="stylesheet" href="resources/css/hljs.linenumbering.css" />
<!-- magnific popup -->
<link rel="stylesheet" href="vendor/magnific-popup/magnific-popup-1.1.0.css" />
<!-- standard presentation styles -->
<link href="resources/css/style.css" rel="stylesheet" />
<!-- custom presentation styles -->
<link href="resources/css/custom.css" rel="stylesheet" />
<!-- js needed in head -->
<!-- greuler -->
<script src="vendor/d3/d3-3.5.6.js"></script>
<script src="vendor/cola/cola.v3.min.js"></script>
<script src="vendor/greuler/greuler-0.5.5.min.js"></script>
<!-- html5 dataset shim for IE -->
<script src="vendor/impress/html5-dataset.js" type="text/javascript"></script>
</head>
<body>
<div class="fallback-message">
<p>
Your browser <strong>doesn't support the features required</strong> by impress.mod.js,
so you are presented with a simplified version of this presentation.
</p>
<p>
For the best experience please use the latest <strong>Chrome</strong>, <strong>Safari</strong>
or <strong>Firefox</strong> browser.
</p>
</div>
<div id="impress">
<div class="step">
<h4 class="down-25"><strong>27.02.2018</strong> | <a href="http://dhd2018.uni-koeln.de/">DHd Konferenz 2018</a></h4>
<h1>Research Software Engineering und Digital Humanities</h1>
<h2 class="red">Reflexion, Kartierung, Organisation</h2>
<h4>
<strong>Slides:</strong>
<a href="http://dh-rse.github.io/dhd-workshop-2018-presentation" title="View the presentation online">
http://dh-rse.github.io/dhd-workshop-2018-presentation
</a>
</h4>
<h5>
<strong><a href="http://www.bbaw.de/die-akademie/mitarbeiter/czmiel">Alexander Czmiel</a>,
<a href="https://orcid.org/0000-0003-4925-7248">Stephan Druskat</a>,
<a href="http://orcid.org/0000-0002-0953-2818">Torsten Schrade</a></strong> |
<img src="resources/img/Twitter_bird_logo_2012.svg" alt="Twitter" class="twitter-icon" />
<a href="https://twitter.com/dh_rse" title="DH RSE on Twitter">@dh_rse</a> |
<img src="resources/img/Octicons-mark-github.svg" alt="Twitter" class="gh-icon" />
<a href="https://github.com/dh-rse" title="DH RSE on GitHub">@dh-rse</a> |
<a href="https://creativecommons.org/licenses/by/4.0/">CC-BY 4.0</a>
</h5>
<h5 class="up-25">
unter Mitarbeit von <a href="https://orcid.org/0000-0001-5770-1404">Julia Dolhoff</a>
und <a href="https://orcid.org/0000-0003-2470-4590">Patrick Toschka</a>
</h5>
</div>
<div class="step">
<h2>Zeitplan</h2>
<h3 class="red up-25">Überblick über das Workshop-Programm</h3>
<div class="row">
<div class="twelve columns">
<h4><strong>Plenarsession (09:00 - 10:15 Uhr)</strong></h4>
<ul class="medium">
<li><strong>09:00 - 09:30</strong> Begrüßung, Impuls, Kartierung</li>
<li><strong>09:30 - 10:00</strong> Keynote von Stephan Janosch (de-RSE)</li>
<li><strong>10:00 - 10:15</strong> Methodisches: Breakout Groups und Speed Blogs</li>
</ul>
<h4><strong>Arbeitssessions (10:15 - 11:45 Uhr)</strong></h4>
<ul class="medium">
<li><strong>10:15 - 11:00</strong> Breakout Groups I</li>
<li><strong>11:00 - 11:15</strong> Pause</li>
<li><strong>11:15 - 11:45</strong> Breakout Groups II</li>
</ul>
<h4><strong>Wrap-Up des Workshops (11:45 - 12:30 Uhr)</strong></h4>
<ul class="medium">
<li>Zusammenführung, weitere Schritte, Mitgliedschaft in der AG</li>
</ul>
</div>
</div>
</div>
<div class="step">
<h2 class="down-25">Warum eine AG DH-RSE?</h2>
<h3 class="red up-25">Beispiel: Wordcloud der vergebenen Topics der DHd 2018</h3>
<div class="row down-50">
<div class="six columns box" style="height: 600px;">
<img src="resources/img/dhd2018cloud.png" alt="Wordcloud der vergebenen Topics der DHd 2018" />
<p class="x-small" style="position: absolute; bottom: 0;">
Quelle: Ulrike Henny-Krahmer, Patrick Sahle, Einreichungen zur DHd 2018, URL:
<a href="http://dhd-blog.org/?p=9001">http://dhd-blog.org/?p=9001</a>
</p>
</div>
<div class="six columns">
<ul class="small line-height-one-two-five">
<li class="substep">Software ist ein integraler Bestandteil digitaler Forschungsaktivitäten</li>
<li class="substep">Qualitativ hochwertige und nachhaltige Software spielt in den DH immer noch eine untergeordnete Rolle</li>
<li class="substep">Die akademischen Karrieremöglichkeiten von DH SoftwareentwicklerInnen müssen gestärkt werden</li>
<li class="substep">
Wir brauchen ein Forum zum Austausch über
<ul>
<li class="substep">Entwicklungsstandards</li>
<li class="substep">Software Best Practices</li>
<li class="substep">Coding Guidelines</li>
<li class="substep">Dokumentationsmethoden</li>
<li class="substep">Nachhaltigkeit</li>
<li class="substep">Wissenschaftliche Qualifikation und Attribution</li>
<li class="substep">Kompetenzerwerb und -steigerung</li>
<li class="substep">u.v.m</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<div class="step">
<h1 class="red">01</h1>
<h2 class="line-height-one-five">
Kartierung
</h2>
<h4>Ergebnisse und Auswertungen der Umfrage zum Workshop <br/><em>45 Teilnahmen aus 105 Anmeldungen</em></h4>
</div>
<div class="step">
<h2>Ausbildung und Arbeit</h2>
<h3 class="red up-25">Studienfach - Abschluss - Arbeitsort</h3>
<div class="row">
<div class="ten columns box" style="height: 600px;">
<a href="resources/svg/discipline_degree_institution.svg">
<img src="resources/svg/discipline_degree_institution.svg" alt="Fach - Abschluss - Arbeitsort" />
</a>
</div>
</div>
</div>
<div class="step">
<h2 class="up-50">Ausbildung und Arbeit</h2>
<h3 class="red up-25">Studienfach - Jobtitel - Arbeitsfelder</h3>
<div class="row up-75">
<div class="ten columns box" style="height: 650px;">
<a href="resources/svg/discipline_jobtitle_work_areas.svg">
<img src="resources/svg/discipline_jobtitle_work_areas.svg" alt="Fach - Abschluss - Arbeitsort" />
</a>
</div>
</div>
</div>
<div class="step">
<h2>Ausbildung und Arbeit</h2>
<h3 class="red up-25">Geschlecht - Alter - Abschluss - Arbeitsort</h3>
<div class="row up-25">
<div class="ten columns box" style="height: 600px;">
<a href="resources/svg/gender_age_degree_institution.svg">
<img src="resources/svg/gender_age_degree_institution.svg" alt="Geschlecht - Alter - Abschluss - Arbeitsort" />
</a>
</div>
</div>
</div>
<div class="step">
<h2 class="down-75">Ausbildung und Arbeit</h2>
<h3 class="red up-25">Stellenumfang - Befristung - Arbeitsort - Berufsbezeichnung - Tarif</h3>
<div class="row down-25">
<div class="twelfe columns box" style="height: 600px;">
<a href="resources/svg/full_halftime_parttime_institution_jobtitle_tarif.svg">
<img src="resources/svg/full_halftime_parttime_institution_jobtitle_tarif.svg" alt="Stellenumfang - Befristung - Arbeitsort - Berufsbezeichnung - Tarif" />
</a>
</div>
</div>
</div>
<div class="step">
<h2 class="down-75">Softwareentwicklung</h2>
<h3 class="red up-25 after-50">Verhältnis von Entwicklungstätigkeiten zu Projektmanagement</h3>
<div class="row">
<div class="nine columns box" style="height: 650px;">
<a href="resources/svg/development_projectmanagement.svg">
<img src="resources/svg/development_projectmanagement.svg" alt="Entwicklung - Projektmanagement" />
</a>
</div>
</div>
</div>
<div class="step">
<h2 class="down-75">Softwareentwicklung</h2>
<h3 class="red up-25 after-50">Verhältnis von Entwicklungstätigkeiten zu Forschung</h3>
<div class="row">
<div class="nine columns box" style="height: 650px;">
<a href="resources/svg/development_research.svg">
<img src="resources/svg/development_research.svg" alt="Entwicklung - Forschung" />
</a>
</div>
</div>
</div>
<div class="step">
<h2 class="down-75">Softwareentwicklung</h2>
<h3 class="red up-25 after-50">Verhältnis von Entwicklungstätigkeiten zu Lehre</h3>
<div class="row">
<div class="nine columns box" style="height: 650px;">
<a href="resources/svg/development_teaching.svg">
<img src="resources/svg/development_teaching.svg" alt="Entwicklung - Lehre" />
</a>
</div>
</div>
</div>
<div class="step">
<h2>Softwareentwicklung</h2>
<h3 class="red up-25 after-50">Entwicklungstätigkeiten in der Arbeits- und/oder der Freizeit</h3>
<div class="row">
<div class="six columns">
<div class="ct-container">
<div class="ct-chart ct-octave worktime_dev"></div>
</div>
<p class="x-small centered">
Softwareentwicklung in der Arbeitszeit
</p>
</div>
<div class="six columns">
<div class="ct-container">
<div class="ct-chart ct-octave sparetime_dev"></div>
</div>
<p class="x-small centered">
Softwareentwicklung in der Freizeit
</p>
</div>
</div>
</div>
<div class="step">
<h2 class="down-75">Softwareentwicklung</h2>
<h3 class="red up-25">Kompetenzerwerb - Erfahrung - Professionalität</h3>
<div class="row down-25">
<div class="ten columns box" style="height: 600px;">
<a href="resources/svg/learning_experience_professionality.svg">
<img src="resources/svg/learning_experience_professionality.svg" alt="Kompetenzerwerb - Erfahrung - Professionalität" />
</a>
</div>
</div>
</div>
<div class="step">
<h2>Softwareentwicklung</h2>
<h3 class="red up-25 after-50">Programmiersprachen</h3>
<div class="row up-25">
<div class="twelve columns">
<div class="ct-container">
<div class="ct-chart ct-minor-seventh programming_languages"></div>
</div>
</div>
</div>
</div>
<div class="step">
<h2 class="down-25">Softwareentwicklung</h2>
<h3 class="red up-25 after-50">Programmiersprachen und Lebensalter</h3>
<div class="row up-25">
<div class="twelve columns">
<div class="ct-container">
<div class="ct-chart ct-minor-seventh programming_languages_age"></div>
</div>
<ul class="legend x-small">
<li class="age_18_24">18-24 Jahre</li>
<li class="age_25_34">25-35 Jahre</li>
<li class="age_35_44">36-44 Jahre</li>
<li class="age_45_54">45-54 Jahre</li>
<li class="age_55_64">55-64 Jahre</li>
</ul>
</div>
</div>
</div>
<div class="step">
<h2 class="up-100">Softwareentwicklung</h2>
<h3 class="red up-25">Verwendete Software</h3>
<div class="row" style="margin-top: -135px;">
<div class="ten columns box" style="height: 600px;">
<a href="resources/svg/software.svg">
<img src="resources/svg/software.svg" alt="Software" />
</a>
</div>
</div>
</div>
<div class="step">
<h2 class="down-25">Softwareentwicklung</h2>
<h3 class="red up-25">Unterscheidet sich DH-Software und wenn ja, wie?</h3>
<h5 class="substep"><strong>Nein (11x)</strong></h5>
<ul class="small">
<li class="substep">Höchstens in den Anwendungszwecken und vielleicht noch auf der Usability-Ebene</li>
</ul>
<h5 class="substep"><strong>Ja (15x)</strong></h5>
<ul class="small">
<li class="substep">Das wäre jetzt ein ganzer Aufsatz... Ein zentraler Unterschied: Laborsoftware und Software im Zusammenhang mit komplexen technischen Geräten</li>
<li class="substep">Sie eröffnet einen (didaktisch geprägten!) Einblick in Methoden/Parameter und den jederzeitigen Rückgriff auf die Quelldaten</li>
<li class="substep">Software muss mit "unscharfen" Daten agieren können, Software muss interpretative Ergebnissfindung nachvollziehbar und transparent machen, Software muss große Nachhaltigkeit / Zukunftsfähigkeit aufweisen</li>
<li class="substep">Kaum strukturierte Spezifikation und Datenmodelle. Anforderungen ändern sich ständig, zu umfangreiche Aufgaben und zu wenig Softwarenetwickler_innen</li>
<li class="substep">Unprofessioneller</li>
<li class="substep">Wenig intuitive User Experience; kompliziertes Deployment</li>
<li class="substep">Ist nicht in Fortran...</li>
<li class="substep">Sehr starker Domänenbezug, teils sehr spezialisiert und nicht generalisierbar</li>
<li class="substep">GUI-intensiver, Hang zur Customisierung im Gegensatz zu Standardlösungen</li>
<li class="substep">Muss die Anforderungen mehrerer Disziplinen erfüllen</li>
<li class="substep">Es gibt Gemeinsamkeiten und Unterschiede. Um sie zu definieren, muss man zunächst die Kriterien festlegen und dann die konkreten Beispiele betrachten</li>
</ul>
</div>
<div class="step">
<h2 class="down-25">Softwareentwicklung</h2>
<h3 class="red up-25 after-50">Häufigste Datenformate</h3>
<div class="row up-25">
<div class="twelve columns">
<div class="ct-container">
<div class="ct-chart ct-major-eleventh data_formats"></div>
</div>
</div>
</div>
</div>
<div class="step">
<h2 class="down-25">Softwareentwicklung</h2>
<h3 class="red up-25">Unterscheiden sich Datenformate in den DH und wenn ja, wie?</h3>
<h5 class="substep"><strong>Nein (4x)</strong></h5>
<h5 class="substep"><strong>Ja (21x)</strong></h5>
<ul class="small">
<li class="substep">Heterogenität (5)</li>
<li class="substep">Mehrdeutigkeit (3)</li>
<li class="substep">Unstrukturiert (2)</li>
<li class="substep">Komplex</li>
<li class="substep">Willkürliche Struktur</li>
<li class="substep">Weniger standardkonform (4)</li>
<li class="substep">Semantik/Relationen zwischen den Daten (2)</li>
<li class="substep">Kleinere Quantität (3)</li>
<li class="substep">Dynamisch</li>
<li class="substep">Ja, unterschiedliche Schwerpunkte; es gibt aber auch viele Transfers.</li>
<li class="substep">Einzelne Datenpunkte sind oft von herausragender Bedeutung, was sich aber oft nur hermeneutischen Analysen erschließt.</li>
<li class="substep">Ja, ihre Erhaltung ist zentraler. Sie sind nicht beliebiger Satz sondern Gut.</li>
</ul>
</div>
<div class="step">
<h2 class="down-25">Softwareentwicklung</h2>
<h3 class="red up-25 after-50">Nachhaltigkeit & Qualität</h3>
<div class="row up-25">
<div class="six columns">
<div class="ct-container">
<div class="ct-chart ct-octave dev_project"></div>
</div>
<p class="x-small centered">
Anzahl Entwickler_innen / Projekt
</p>
</div>
<div class="six columns">
<div class="ct-container">
<div class="ct-chart ct-octave transfer_plan"></div>
</div>
<p class="x-small centered">
Existenz eines Übergabeplans
</p>
</div>
</div>
<div class="row">
<div class="six columns">
<div class="ct-container">
<div class="ct-chart ct-octave test_workflows"></div>
</div>
<p class="x-small centered">
Wer testet die Software?
</p>
</div>
<div class="six columns">
<div class="ct-container">
<div class="ct-chart ct-octave software_quality"></div>
</div>
<p class="x-small centered">
Software-Qualität im Vergleich zu anderen Disziplinen
</p>
</div>
</div>
</div>
<div class="step">
<h2 class="down-25">Softwareentwicklung</h2>
<h3 class="red up-25 after-50">Status & Ansehen in den DH</h3>
<div class="row">
<div class="six columns">
<div class="ct-container">
<div class="ct-chart ct-octave software_status"></div>
</div>
<p class="x-small centered down-25">
Bedeutung/Status von Software in den DH
</p>
</div>
<div class="six columns">
<div class="ct-container">
<div class="ct-chart ct-octave software_prestige"></div>
</div>
<p class="x-small centered down-25">
Ansehen von Software(entwickler_innen) in den DH
</p>
</div>
</div>
</div>
<div class="step">
<h2 class="down-25">Softwareentwicklung</h2>
<h3 class="red up-25 after-50">Wiss. Attribution/Credit für die Entwicklungsleistung</h3>
<div class="row">
<div class="six columns">
<div class="ct-container">
<div class="ct-chart ct-octave contribution_research_result"></div>
</div>
<p class="x-small centered">
Beitrag zum Forschungsergebnis
</p>
</div>
<div class="six columns">
<div class="ct-container">
<div class="ct-chart ct-octave name_in_publication"></div>
</div>
<p class="x-small centered">
Namentliche Nennung in Publikation
</p>
</div>
</div>
<div class="row">
<div class="six columns">
<div class="ct-container">
<div class="ct-chart ct-octave conference_presentation"></div>
</div>
<p class="x-small centered">
Präsentation auf Konferenzen
</p>
</div>
<div class="six columns">
<div class="ct-container">
<div class="ct-chart ct-octave doi_for_software"></div>
</div>
<p class="x-small centered">
DOI-Verwendung für die Software
</p>
</div>
</div>
</div>
<div class="step">
<h2 class="down-50">Zufriedenheit und Karriere</h2>
<h3 class="red up-25 after-50">Job, Karriere, Beförderung, Arbeitsmarkt</h3>
<div class="row up-25">
<div class="six columns">
<div class="ct-container">
<div class="ct-chart ct-octave job_satisfaction"></div>
</div>
<p class="x-small centered">
Zufriedenheit mit der aktuellen (Job)Position
</p>
</div>
<div class="six columns">
<div class="ct-container">
<div class="ct-chart ct-octave career_satisfaction"></div>
</div>
<p class="x-small centered">
Zufriedenheit mit der eigenen Karriere
</p>
</div>
</div>
<div class="row down-25">
<div class="six columns">
<div class="ct-container">
<div class="ct-chart ct-octave probability_promotion"></div>
</div>
<p class="x-small centered">
Wahrscheinlichkeit einer Beförderung
</p>
</div>
<div class="six columns">
<div class="ct-container">
<div class="ct-chart ct-octave market_value"></div>
</div>
<p class="x-small centered">
Kompetenzen sind auf dem Arbeitsmarkt gefragt
</p>
</div>
</div>
</div>
<div class="step">
<div class="row down-50">
<div class="twelve columns box" style="height: 700px;">
<a href="https://dh-tech.github.io">
<img src="resources/img/dhtech.png" alt="DHTech" />
</a>
</div>
</div>
</div>
<div class="step">
<h2>Keynote</h2>
<h3 class="red up-25">Stephan Janosch, de-RSE</h3>
<div class="row">
<div class="twelve columns">
<h1>Bessere Software, Bessere Forschung</h1>
</div>
</div>
</div>
<div class="step">
<h1 class="red">02</h1>
<h2 class="line-height-one-five">
Reflexion
</h2>
<h4>Arbeit in <em>Break Out Groups</em></h4>
</div>
<div class="step">
<h2 class="down-25">Break Out Groups</h2>
<h3 class="red up-25">Themen und Nummern</h3>
<div class="row bogs">
<div class="four columns bog">
<h4>01</h4>
<p class="topic">Softwarenachhaltigkeit in den DH</p>
</div>
<div class="four columns bog">
<h4>02</h4>
<p class="topic">Institutionelle Kulturen und Workflows</p>
</div>
<div class="four columns bog">
<h4>03</h4>
<p class="topic">Softwareentwicklung in den DH</p>
</div>
</div>
<div class="row">
<div class="four columns bog">
<h4>04</h4>
<p class="topic">Was kann die AG DH-RSE leisten? </p>
</div>
<div class="four columns bog">
<h4>05</h4>
<p class="topic">Ausbildung, Training, Software Carpentry</p>
</div>
<div class="four columns bog">
<h4>06</h4>
<p class="topic">Best Practices der wiss. Softwareentwicklung</p>
</div>
</div>
<div class="row">
<div class="four columns bog">
<h4>07</h4>
<p class="topic">Übergreifende Infrastrukturen</p>
</div>
<div class="four columns bog">
<h4>08</h4>
<p class="topic">AG DH-RSE: Struktur, Infrastruktur, Workflows</p>
</div>
<div class="four columns bog">
<h4>09</h4>
<p class="topic">RSEs: Situation, Anerkennung, Karriere</p>
</div>
</div>
<div class="row">
<div class="four columns bog">
<h4>10</h4>
<p class="topic">Softwaredokumentation Stellenwert und Praxis</p>
</div>
<div class="four columns bog">
<h4>11</h4>
<p class="topic">Softwareentwicklung als wiss. Leistung</p>
</div>
</div>
</div>
<div class="step">
<h1 class="red">03</h1>
<h2 class="line-height-one-five">
Organisation
</h2>
<h4>Resultate der <em>Break Out Groups</em>, Informationen zur AG und weitere Schritte</h4>
</div>
<div class="step">
<h1 class="red centered" style="font-size: 112px;"> ⚡ Lightning Talks ⚡ ️</h1>
</div>
<div class="step">
<h2>Informationen & Weitere Schritte</h2>
<h3 class="red up-25">Website, Mailingliste, GitHub, etc.</h3>
<div class="row">
<div class="twelve columns">
<ul class="line-height-one-five">
<li>
<strong>DH-RSE Website</strong> <br/>
<a href="https://dh-rse.github.io/">https://dh-rse.github.io</a>
</li>
<li>
<strong>DH-RSE Mailingliste</strong> <br/>
<a href="https://mailman.bbaw.de/mailman/listinfo/ag-dhrse">https://mailman.bbaw.de/mailman/listinfo/ag-dhrse</a>
</li>
<li>
<strong>DH-RSE GitHub Organisation</strong> <br/>
<a href="https://github.com/DH-RSE">https://github.com/DH-RSE</a>
</li>
<li>
<strong>DH-RSE Speedblogs</strong>
</li>
<li>
<strong>DH-RSE Manifest</strong>
</li>
<li>
<strong>DH-RSE Speedblogs</strong>
</li>
<li>
<strong>DH-RSE Software Carpentry Workshop bei der DHd 2019</strong>
</li>
</ul>
</div>
</div>
</div>
<div class="step">
<div class="centered">
<h1>F I N I S</h1>
<h2>Vielen Dank für Eure Teilnahme und Unterstützung!</h2>
</div>
</div>
<div class="step">
<h2>Software & Nachnutzung</h2>
<h4>Benutze Software</h4>
<ul class="medium line-height-one-two-five">
<li>
<a href="https://github.com/impress/impress.js">Impress.js</a> (Präsentation)
</li>
<li>
<a href="https://www.google.com/fonts#UsePlace:use/Collection:Open+Sans">Open Sans</a> (Google Font)
</li>
<li>
<a href="https://gionkunz.github.io/chartist-js/">Chartist</a> (Balken- und Kuchendiagramme)
</li>
<li>
<a href="https://rawgraphs.io/">RAWGraphs</a> (Alluvial- und Clusterdiagramme)
</li>
</ul>
<h4>Download & Lizenzhinweis</h4>
<ul class="medium line-height-one-two-five">
<li>
GitHub:
<a href="https://github.com/DH-RSE/dhd-workshop-2018-presentation">
https://github.com/DH-RSE/dhd-workshop-2018-presentation
</a>
</li>
<li>
Lizenz: <a href="https://creativecommons.org/licenses/by/4.0/">CC-BY 4.0</a>, Alex Czmiel, Stefan Druskat, Julia Dolhoff, Patrick Toschka und Torsten Schrade
</li>
</ul>
</div>
</div>
<!-- jquery -->
<script src="vendor/jquery/jquery-1.11.0.min.js"></script>
<!-- chartist -->
<script src="vendor/chartist/chartist.min-0.9.7.js"></script>
<script src="resources/js/chartist.charts.js"></script>
<!-- codemirror -->
<script src="vendor/codemirror/lib/codemirror.js"></script>
<script src="vendor/codemirror/addon/edit/matchbrackets.js"></script>
<!-- highlight -->
<script src="vendor/highlight/highlight.pack-9.3.0.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script src="resources/js/hljs.linenumbering.js"></script>
<!-- magnific popup -->
<script src="vendor/magnific-popup/jquery.magnific-popup.min-1.1.0.js"></script>
<script src="resources/js/magnific-popup.lightbox.js"></script>
<!-- impress.mod.js -->
<script src="vendor/impress/impress.fork.js"></script>
<script src="vendor/impress/impress-slidenum.js"></script>
<script>
var obj = impress();
obj.init();
initSlideNo(obj);
</script>
</body>
</html>