-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2700 lines (2549 loc) · 107 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
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="de">
<head>
<!-- Required Meta Tags Always Come First -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta property="title" content="excellence.dhcraft.org" />
<meta
name="description"
content="Explore best practices, research, support, and training specialized in Digital Humanities, programming, research management, computer science, and generative AI at excellence.dhcraft.org."
/>
<meta
name="keywords"
content="Generative AI, LLMs, Large Language Models, Digital Humanities Craft, DHCraft, DH Craft Graz, DHLab Graz, Digital Humanities, Christopher Pollin, Christian Steiner, research-driven, Digitale Geisteswissenschaften, semantic web, linked data"
/>
<meta name="author" content="Christopher Pollin" />
<meta name="author" content="Christian Steiner" />
<!-- og: -->
<meta property="og:title" content="excellence.dhcraft.org" />
<meta
property="og:description"
content="Explore best practices, research, support, and training specialized in Digital Humanities, programming, research management, computer science, and generative AI at excellence.dhcraft.org."
/>
<meta
property="og:image"
content="/assets/svg/logos/dhcraft_logo_invert.svg"
/>
<meta property="og:url" content="https://excellence.dhcraft.org" />
<meta property="og:site_name" content="excellence.dhcraft.org" />
<!-- Title -->
<title>excellence.dhcraft.org</title>
<!-- Favicon -->
<link
rel="icon"
href="/assets/img/favicon/excellence/icon.svg"
type="image/svg+xml"
/>
<link
rel="apple-touch-icon"
href="/assets/img/favicon/excellence/apple-touch-icon.png"
/>
<link
rel="manifest"
href="/assets/img/favicon/excellence/manifest.webmanifest"
/>
<link
rel="shortcut icon"
href="/assets/img/favicon/excellence/favicon.ico"
sizes="any"
/>
<!-- Font -->
<link href="/assets/fonts/fonts.css" rel="stylesheet" />
<!-- CSS Implementing Plugins -->
<link rel="stylesheet" href="/assets/css/vendor.min.css" />
<link
rel="stylesheet"
href="/assets/vendor/bootstrap-icons/font/bootstrap-icons.css"
/>
<link rel="stylesheet" href="/assets/vendor/aos/dist/aos.css" />
<!-- CSS Front Template -->
<link rel="stylesheet" href="/assets/css/theme.min.css?v=1.0" />
<!-- Custom CSS -->
<link rel="stylesheet" href="/assets/css/custom.css" />
<link rel="stylesheet" href="/assets/css/custom-excellence.css" />
</head>
<body>
<!-- ========== HEADER ========== -->
<header>
<a
href="//patreon.com/DigitalHumanitiesCraft"
title="Go to DH Craft Patreon Page"
>
<img
src="/assets/img/excellence/PATREON_WORDMARK_1_BLACK_RGB.svg"
alt="Patreon"
/>
</a>
<a href="https://dhcraft.org" title="Go to main DH Craft page">
<img
src="/assets/svg/logos/dhcraft_logo_invert.svg"
alt="DH Craft Logo"
/>
</a>
</header>
<!-- ========== END HEADER ========== -->
<!-- ========== MAIN CONTENT ========== -->
<main id="content" role="main">
<!-- Hero -->
<div
class="bg-img-start"
style="background-image: url(/assets/img/excellence/a.png)"
>
<div class="d-md-flex content-space-3 content-space-md-0">
<div
class="container d-md-flex justify-content-md-center align-items-md-center flex-md-column min-vh-md-100 text-center"
>
<h1 class="display-1">
<a class="text-reset text-decoration-none" href="#excellence"
>Excellence</a
>
</h1>
<p class="lead">
by
<a
class="text-reset text-decoration-none"
href="https://dhcraft.org"
>Digital Humanities Craft</a
>
</p>
</div>
</div>
</div>
<!-- End Hero -->
<!-- Content -->
<div
class="container content-space-t-2 content-space-lg-3 content-space-b-1"
id="excellence"
>
<div class="row justify-content-center">
<!-- Stats Row - New Addition -->
<div class="col-12 text-center mb-5">
<div class="row justify-content-center">
<div class="col-4">
<h2 class="display-4 mb-1">100+</h2>
<p class="switchLang showLang" lang="de">
Workshops durchgeführt
</p>
<p class="switchLang" lang="en">Workshops delivered</p>
</div>
<div class="col-4">
<h2 class="display-4 mb-1">30+</h2>
<p class="switchLang showLang" lang="de">
Partner Institutionen
</p>
<p class="switchLang" lang="en">Partner institutions</p>
</div>
<div class="col-4">
<h2 class="display-4 mb-1">10+</h2>
<p class="switchLang showLang" lang="de">
Jahre Erfahrung in der Lehre
</p>
<p class="switchLang" lang="en">
Years of experience in teaching
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4">
<h2 class="switchLang showLang" lang="de">
Wir verbinden zeiteffizientes Lernen mit praxisnahem Know-how, das
auf langjähriger Erfahrung basiert.
</h2>
<h2 class="switchLang" lang="en">
We combine time-efficient learning with practical know-how based
on years of experience.
</h2>
</div>
<div class="col-md-6 col-lg-5 offset-lg-1">
<p class="switchLang showLang" lang="de">
Ein Exzellenzzentrum bietet Best Practice, Forschung,
Unterstützung und Ausbildung. Hier auf der Plattform
<a class="text-reset" href="https://excellence.dhcraft.org"
><b>excellence.dhcraft.org</b></a
>
finden Sie ein solches Angebot spezialisiert auf
<b
>Generative KI, Prompt Engineering,
Digital Humanities, Forschungsmanagement,
Data Science, Datenvisualisierung und Programmierung</b
>.
</p>
<p class="switchLang" lang="en">
A center of excellence offers best practices, research, support,
and training. Here on the platform
<a class="text-reset" href="https://excellence.dhcraft.org"
><b>excellence.dhcraft.org</b></a
>
you will find such an offering specialized in
<b
>Generative AI, Prompt Engineering,
Digital Humanities, Research Management,
Data Science, Data Visualization, and Programming</b
>.
</p>
</div>
<div class="col-md-8 col-sm-12 mt-md-5">
<p class="switchLang showLang" lang="de">
Unsere Expertise erstreckt sich über verschiedenste Branchen: Vom
<span class="text-primary fw-bold"
>maßgeschneiderten KI-Training für Führungskräfte</span
>
im <span class="text-primary">Land Steiermark</span>, über
Workshops für Unternehmen wie die
<span class="text-primary">Merkur Versicherung</span>, bis hin zu
<span class="text-primary fw-bold"
>spezialisierten Schulungen</span
>
für
<span class="text-primary"
>Universitäten und Forschungseinrichtungen</span
>. Diese Vielfalt ermöglicht uns, Best Practices aus allen
Bereichen in unsere Workshops zu integrieren.
</p>
<p class="switchLang" lang="en">
Our expertise spans across diverse sectors: From
<span class="text-primary fw-bold"
>tailored AI training for executives</span
>
in the <span class="text-primary">State of Styria</span>, to
workshops for companies like
<span class="text-primary">Merkur Insurance</span>, to
<span class="text-primary fw-bold">specialized training</span> for
<span class="text-primary"
>universities and research institutions</span
>. This diversity allows us to integrate best practices from all
sectors into our workshops.
</p>
<div class="mt-4 text-center">
<a
href="mailto:office@dhcraft.org"
class="btn btn-primary rounded-pill"
>
<span class="switchLang showLang" lang="de"
>Beratungsgespräch</span
>
<span class="switchLang" lang="en">Consultation</span>
</a>
<div>
<span class="text-dark text-highlight-warning fs-6 mailAdress"
>office@dhcraft.org</span
><button
class="btn btn-xs btn-ghost-dark btn-icon btn-transition copyToClipboard"
data-clipboard-target=".mailAdress"
title="Copy to clipboard"
>
<i class="bi bi-clipboard"></i>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- End Content -->
<!-- Features -->
<div class="container mb-5">
<div class="w-md-75 w-lg-50 text-center mx-md-auto mb-5 mb-md-9">
<h1 class="switchLang showLang" lang="de">Angebot</h1>
<h1 class="switchLang" lang="en">Services</h1>
</div>
<div class="row justify-content-lg-center">
<div class="col-sm-6 col-lg-4 mb-3 mb-sm-4">
<div class="d-flex px-md-4">
<div class="flex-shrink-0">
<span class="svg-icon svg-icon-sm">
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
fill="#24B5C6"
version="1.1"
id="Layer_1"
viewBox="0 0 24 24"
xml:space="preserve"
>
<style type="text/css">
.st0 {
fill: none;
}
</style>
<path
d="M4,2C2.9,2,2,2.9,2,4v13c0,1.1,0.9,2,2,2h6v1H6v2h12v-2h-4v-1h6c1.1,0,2-0.9,2-2V4c0-1.1-0.9-2-2-2H4z M4,4h16v13H4V4z M12,5c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,5,12,5z M10,10c-1.1,0-2,0.9-2,2v1h8v-1c0-1.1-0.9-2-2-2H10z M5,14v2h4v-2H5z M10,14v2h4v-2H10z M15,14v2h4v-2H15z"
/>
<rect class="st0" width="24" height="24" />
</svg>
</span>
</div>
<div class="flex-grow-1 ms-3">
<h4 class="switchLang showLang" lang="de">Webinare</h4>
<h4 class="switchLang" lang="en">Webinars</h4>
<p class="switchLang showLang" lang="de">
<b>Dauer</b>: 60-90 Minuten<br />
<b>Inhalt</b>: Kompakte Themendarstellung mit praktischen
Beispielen.<br />
<b>Ziel</b>: Schneller Überblick und Einstieg in spezielle
Themengebiete.<br />
<b>Format</b>: Online, Frontalunterricht mit
Frage-und-Antwort-Session.<br />
</p>
<p class="switchLang" lang="en">
<b>Duration</b>: 60-90 minutes<br />
<b>Content</b>: Concise topic presentation with practical
examples.<br />
<b>Objective</b>: Quick overview and introduction to specific
subject areas.<br />
<b>Format</b>: Online, lecture-style with question and answer
session.<br />
</p>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 mb-3 mb-sm-4">
<div class="d-flex px-md-4">
<div class="flex-shrink-0">
<span class="svg-icon svg-icon-sm">
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
fill="#FFBB47"
version="1.1"
id="XMLID_66_"
viewBox="0 0 24 24"
xml:space="preserve"
>
<g id="workshop1">
<g>
<polygon
points="24,17 20,17 20,15 22,15 22,3 4,3 4,5 2,5 2,1 24,1 "
/>
</g>
<g>
<rect x="10" width="6" height="4" />
</g>
<g>
<path
d="M13,24H0v-5c0-2.3,1.3-4.4,3.3-5.4C2.5,12.8,2,11.7,2,10.5C2,8,4,6,6.5,6S11,8,11,10.5c0,0.7-0.1,1.3-0.4,1.8 c1.4-0.6,3.4-1.8,5.7-4.1l2-2l1.4,1.4L18.4,9l1.8,1.8l-0.3,0.6c-0.1,0.2-2.4,5.5-6.6,7.2C13.1,18.7,13,18.8,13,19V24z M2,22h9v-3 c0-1,0.6-1.9,1.5-2.3c2.7-1.1,4.6-4.2,5.3-5.5L17,10.4C12.1,15,8.4,15,8,15H6c-2.2,0-4,1.8-4,4V22z M6.5,13C7.9,13,9,11.9,9,10.5 S7.9,8,6.5,8S4,9.1,4,10.5S5.1,13,6.5,13z"
/>
</g>
</g>
</svg>
</span>
</div>
<div class="flex-grow-1 ms-3">
<h4 class="switchLang showLang" lang="de">Workshops</h4>
<h4 class="switchLang" lang="en">Workshops</h4>
<p class="switchLang showLang" lang="de">
<b>Dauer</b>: 3 Stunden<br />
<b>Inhalt</b>: Mischung aus Vortrag, Einblicken und
praktischen Übungen.<br />
<b>Ziel</b>: Vertiefendes Verständnis und Anwendung des
Gelernten.<br />
<b>Format</b>: Online, Hybrid oder Live-Setting,
Frontalunterricht mit Q&A, Hands-On und Plenumsdiskussion.<br />
</p>
<p class="switchLang" lang="en">
<b>Duration</b>: 3 hours<br />
<b>Content</b>: Mix of lectures, insights, and practical
exercises.<br />
<b>Objective</b>: In-depth understanding and application of
learned material.<br />
<b>Format</b>: Online, hybrid, or live setting, lecture-style
with Q&A, hands-on activities, and plenary discussion.<br />
</p>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 mb-3 mb-sm-4">
<div class="d-flex px-md-4">
<div class="flex-shrink-0">
<span class="svg-icon svg-icon-sm">
<svg
xmlns="http://www.w3.org/2000/svg"
width="800px"
height="800px"
viewBox="0 0 24 24"
>
<defs>
<style>
.cls-1 {
fill: black;
}
.cls-2 {
fill: #ffbb47;
}
.cls-3 {
fill: #24b5c6;
}
</style>
</defs>
<g data-name="Product Icons">
<rect class="cls-1" x="9" y="9" width="6" height="6" />
<rect class="cls-2" x="11" y="2" width="2" height="4" />
<rect class="cls-2" x="7" y="2" width="2" height="4" />
<rect class="cls-2" x="15" y="2" width="2" height="4" />
<rect class="cls-3" x="11" y="18" width="2" height="4" />
<rect class="cls-3" x="7" y="18" width="2" height="4" />
<rect class="cls-3" x="15" y="18" width="2" height="4" />
<rect
class="cls-3"
x="19"
y="10"
width="2"
height="4"
transform="translate(8 32) rotate(-90)"
/>
<rect
class="cls-3"
x="19"
y="14"
width="2"
height="4"
transform="translate(4 36) rotate(-90)"
/>
<rect
class="cls-3"
x="19"
y="6"
width="2"
height="4"
transform="translate(12 28) rotate(-90)"
/>
<rect
class="cls-2"
x="3"
y="10"
width="2"
height="4"
transform="translate(-8 16) rotate(-90)"
/>
<rect
class="cls-2"
x="3"
y="14"
width="2"
height="4"
transform="translate(-12 20) rotate(-90)"
/>
<rect
class="cls-2"
x="3"
y="6"
width="2"
height="4"
transform="translate(-4 12) rotate(-90)"
/>
<path class="cls-1" d="M5,5V19H19V5ZM17,17H7V7H17Z" />
<polygon class="cls-2" points="9 15 15 15 12 12 9 15" />
<polygon class="cls-3" points="12 12 15 15 15 9 12 12" />
</g>
</svg>
</span>
</div>
<div class="flex-grow-1 ms-3">
<h4 class="switchLang showLang" lang="de">Intensives</h4>
<h4 class="switchLang" lang="en">Intensives</h4>
<p class="switchLang showLang" lang="de">
<b>Dauer</b>: 1 Tag<br />
<b>Inhalt</b>: Ausführlicher Vortrag, Inputs und Hands-On
Übungen.<br />
<b>Ziel</b>: Vermittlung von Expertenwissen zu spezifischen
Themen.<br />
<b>Format</b>: Live-Setting, aktive Arbeit mit eigenen Daten,
Live-Beratung, Train the Trainer, Plenumsdiskussion.<br />
</p>
<p class="switchLang" lang="en">
<b>Duration</b>: 1 day<br />
<b>Content</b>: Detailed lecture, inputs, and hands-on
exercises.<br />
<b>Objective</b>: Imparting expert knowledge on specific
topics.<br />
<b>Format</b>: Live setting, active work with own data, live
consultation, train the trainer, plenary discussion.<br />
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mb-3 mb-sm-4 mt-lg-3">
<div class="d-flex justify-content-center">
<div class="d-flex px-md-4">
<div class="flex-shrink-0">
<span class="svg-icon svg-icon-sm">
<svg
xmlns="http://www.w3.org/2000/svg"
width="800px"
height="800px"
viewBox="0 0 64 64"
>
<g data-name="outline color" id="outline_color">
<path
class="cls-1"
d="M54,50H48a1,1,0,0,1,0-2h5V40a8,8,0,0,0-8-8,8,8,0,0,0-8,8v8h5a1,1,0,0,1,0,2H36a1,1,0,0,1-1-1V40A10,10,0,0,1,45,30,10,10,0,0,1,55,40v9A1,1,0,0,1,54,50Z"
/>
<path
class="cls-1"
d="M45,51a6,6,0,0,1-6-6V40a6,6,0,0,1,12,0v5A6,6,0,0,1,45,51Zm0-15a4,4,0,0,0-4,4v5a4,4,0,0,0,8,0V40A4,4,0,0,0,45,36Z"
/>
<path
class="cls-1"
d="M50.5,41h-11a1,1,0,0,1,0-2h11a1,1,0,0,1,0,2Z"
/>
<path
class="cls-1"
d="M45.24,54.38a3.07,3.07,0,0,1-3.06-3.07V49.66a1,1,0,0,1,2,0v1.65a1.06,1.06,0,1,0,2.12,0V49.44a1,1,0,0,1,2,0v1.87A3.07,3.07,0,0,1,45.24,54.38Z"
/>
<path
class="cls-1"
d="M57.5,60h-24a1,1,0,0,1-1-1,7.87,7.87,0,0,1,7.87-7.88h2.81a1,1,0,0,1,0,2H40.37a5.81,5.81,0,0,0-4.15,1.73A5.87,5.87,0,0,0,34.58,58H56.42a5.89,5.89,0,0,0-5.79-4.88H47.3a1,1,0,0,1,0-2h3.33A7.88,7.88,0,0,1,58.5,59,1,1,0,0,1,57.5,60Z"
/>
<path
class="cls-1"
d="M59,43H57a1,1,0,0,1,0-2h1V39.58C58,33.19,52.47,28,45.68,28H44.32C37.53,28,32,33.19,32,39.58V41h1a1,1,0,0,1,0,2H31a1,1,0,0,1-1-1V39.58C30,32.09,36.42,26,44.32,26h1.36C53.58,26,60,32.09,60,39.58V42A1,1,0,0,1,59,43Z"
/>
<path
class="cls-1"
d="M33,44a1,1,0,0,1-1-1V41a1,1,0,0,1,2,0v2A1,1,0,0,1,33,44Z"
/>
<path
class="cls-1"
d="M57,44a1,1,0,0,1-1-1V41a1,1,0,0,1,2,0v2A1,1,0,0,1,57,44Z"
/>
<path
class="cls-2"
d="M21.78,55.1a5,5,0,0,1-4.57-3L4.56,23.84a5,5,0,0,1,2.52-6.61L28,7.9a1,1,0,1,1,.82,1.82L7.9,19.05a3,3,0,0,0-1.52,4L19,51.32a3,3,0,0,0,4,1.52L31.59,49a1,1,0,1,1,.82,1.82l-8.6,3.84A4.89,4.89,0,0,1,21.78,55.1Z"
/>
<path
class="cls-3"
d="M14.83,28.21a1,1,0,0,1-.92-.59,2.74,2.74,0,0,1,.38-2.79,1,1,0,0,0-1-1.58,1,1,0,0,0-.67.53,1,1,0,0,0,0,.85,1,1,0,0,1-1.83.82,3,3,0,1,1,5.13.58.78.78,0,0,0-.14.77,1,1,0,0,1-.5,1.32A1,1,0,0,1,14.83,28.21Z"
/>
<path
class="cls-3"
d="M16,30.83l-.2,0-.19-.06-.17-.09a.93.93,0,0,1-.15-.13,1,1,0,0,1-.29-.7,1,1,0,0,1,.07-.39,1,1,0,0,1,.22-.32.93.93,0,0,1,.15-.13l.17-.09.19-.06a1,1,0,0,1,1.12.6,1,1,0,0,1,.08.39,1,1,0,0,1-1,1Z"
/>
<path
class="cls-3"
d="M17.32,38.69a1,1,0,0,1-.91-.59,2.94,2.94,0,0,1-.07-2.29A3,3,0,0,1,18,34.13a1,1,0,1,1,.8,1.82,1.06,1.06,0,0,0-.54.58,1,1,0,0,0,0,.75,1,1,0,0,1-.5,1.32A1,1,0,0,1,17.32,38.69Z"
/>
<path
class="cls-3"
d="M21.65,43.48a1.05,1.05,0,0,1-.71-.29,1,1,0,0,1-.29-.71,1,1,0,0,1,.08-.38,1,1,0,0,1,.21-.33,1,1,0,0,1,1.42,0,1,1,0,0,1,.21.33.84.84,0,0,1,.08.38,1,1,0,0,1-.29.71A1.05,1.05,0,0,1,21.65,43.48Z"
/>
<path
class="cls-3"
d="M19.47,21.45a1,1,0,0,1-.41-1.91l5.37-2.4A1,1,0,0,1,25.25,19l-5.37,2.4A1,1,0,0,1,19.47,21.45Z"
/>
<path
class="cls-3"
d="M21.11,25.1a1,1,0,0,1-.41-1.91l1.71-.76a1,1,0,0,1,.82,1.82L21.52,25A1,1,0,0,1,21.11,25.1Z"
/>
<path
class="cls-2"
d="M27,45.34a.92.92,0,0,1-.36-.07l-6.92-2.65a5,5,0,0,1-2.87-6.45l11.06-29a5,5,0,0,1,6.45-2.89L56.79,12.9a5,5,0,0,1,2.89,6.45L56.9,26.62A1,1,0,0,1,55,25.9l2.77-7.26a3,3,0,0,0-1.74-3.88L33.65,6.19a3,3,0,0,0-3.88,1.74l-11.06,29a3,3,0,0,0,.07,2.3,2.91,2.91,0,0,0,1.65,1.56l6.93,2.66A1,1,0,0,1,27,45.34Z"
/>
<path
class="cls-3"
d="M32.79,17.87a.92.92,0,0,1-.36-.07,1,1,0,0,1-.58-1.29,2.75,2.75,0,0,1,2.24-1.71,1,1,0,0,0,.85-.82,1,1,0,0,0-.46-1,1,1,0,0,0-1.46.49,1,1,0,0,1-1.87-.71,3,3,0,1,1,3.22,4,.76.76,0,0,0-.65.45A1,1,0,0,1,32.79,17.87Z"
/>
<path
class="cls-3"
d="M31.76,20.54a1,1,0,0,1-.7-.29,1,1,0,0,1,0-1.42,1,1,0,0,1,1.41,0,1.19,1.19,0,0,1,.22.33,1,1,0,0,1-.93,1.38Z"
/>
<path
class="cls-3"
d="M27.84,30.82a.92.92,0,0,1-.36-.07,1,1,0,0,1-.58-1.29,2.72,2.72,0,0,1,2.24-1.71,1,1,0,0,0,.85-.82,1,1,0,0,0-.46-1,1,1,0,0,0-.85-.1,1,1,0,0,0-.61.59,1,1,0,0,1-1.87-.71,3,3,0,1,1,3.22,4,.77.77,0,0,0-.65.44A1,1,0,0,1,27.84,30.82Z"
/>
<path
class="cls-3"
d="M26.81,33.49l-.19,0a.6.6,0,0,1-.19-.06.56.56,0,0,1-.17-.09l-.15-.12a1,1,0,0,1,.9-1.69,1.08,1.08,0,0,1,.36.15,1.58,1.58,0,0,1,.15.12,1,1,0,0,1,0,1.42l-.15.12a1.08,1.08,0,0,1-.36.15Z"
/>
<path
class="cls-3"
d="M49.26,19.59a.92.92,0,0,1-.36-.07l-8.41-3.21A1,1,0,0,1,39.92,15a1,1,0,0,1,1.29-.58l8.41,3.21a1,1,0,0,1-.36,1.94Z"
/>
<path
class="cls-3"
d="M50.63,24.4a1.15,1.15,0,0,1-.36-.07L39.06,20a1,1,0,0,1,.72-1.86L51,22.46a1,1,0,0,1-.36,1.94Z"
/>
</g>
</svg>
</span>
</div>
<div class="ms-3">
<h4>Consulting</h4>
<p class="switchLang showLang" lang="de">
<b>individuelles Consulting</b> bzw. auch mehrtägige
Workshops sind ebenfalls jederzeit auf Anfrage möglich.
</p>
<p class="switchLang" lang="en">
<b>Individual consulting</b> as well as multi-day workshops
are also available at any time upon request.
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mb-3 mb-sm-0 mt-lg-3">
<div class="d-flex justify-content-center">
<div class="d-flex px-md-4">
<div class="flex-shrink-0">
<span class="svg-icon svg-icon-sm">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs>
<!-- Optimized glow filter with reduced intensity -->
<filter
id="glow"
x="-50%"
y="-50%"
width="200%"
height="200%"
>
<fegaussianblur
stdDeviation="0.375"
result="coloredBlur"
/>
<femerge>
<femergenode in="coloredBlur" />
<femergenode in="SourceGraphic" />
</femerge>
</filter>
<!-- Gradient definitions -->
<lineargradient
id="techGradient"
x1="0%"
y1="0%"
x2="100%"
y2="0%"
>
<stop offset="0%" style="stop-color: #0066cc" />
<stop offset="100%" style="stop-color: #4a90e2" />
</lineargradient>
<lineargradient
id="humanitiesGradient"
x1="0%"
y1="0%"
x2="100%"
y2="0%"
>
<stop offset="0%" style="stop-color: #63b87e" />
<stop offset="100%" style="stop-color: #2e8b57" />
</lineargradient>
</defs>
<!-- Enhanced Flow Paths with new color scheme - expanded to fill space -->
<path
d="M3 12C3 6 9 6 12 12C15 18 21 18 21 12"
stroke="url(#techGradient)"
stroke-width="1.8"
fill="none"
filter="url(#glow)"
/>
<path
d="M3 12C3 18 9 18 12 12C15 6 21 6 21 12"
stroke="url(#humanitiesGradient)"
stroke-width="1.8"
fill="none"
filter="url(#glow)"
/>
<!-- Optimized Nodes with new colors and sizes -->
<circle
cx="3"
cy="12"
r="2"
fill="#0066CC"
filter="url(#glow)"
/>
<!-- Start node (Tech Blue) -->
<circle
cx="9"
cy="9"
r="1.4"
fill="#FFB940"
filter="url(#glow)"
/>
<!-- Process node (Warm Gold) -->
<circle
cx="15"
cy="9"
r="1.4"
fill="#63B87E"
filter="url(#glow)"
/>
<!-- Process node (Sage Green) -->
<circle
cx="9"
cy="15"
r="1.4"
fill="#4A90E2"
filter="url(#glow)"
/>
<!-- Process node (Azure Blue) -->
<circle
cx="15"
cy="15"
r="1.4"
fill="#FFB940"
filter="url(#glow)"
/>
<!-- Process node (Warm Gold) -->
<circle
cx="21"
cy="12"
r="2"
fill="#2E8B57"
filter="url(#glow)"
/>
<!-- End node (Sage Green) -->
</svg>
</span>
</div>
<div class="ms-3">
<h4>
<a
class="text-reset"
href="https://dhcraft.org/excellence/promptotyping/"
>Promptotyping</a
>
</h4>
<p class="switchLang showLang" lang="de">
Kombinieren Sie <b>Prompt Engineering</b> mit Rapid
Prototyping für <b>Frontend-Entwicklung</b>. Lernen Sie, wie
man <b><i>promptotyping</i></b> betreibt oder lassen Sie uns
die Arbeit machen. Alle Details finden Sie in der
<a
class="text-primary text-highlight-warning fw-bold"
href="https://dhcraft.org/excellence/promptotyping/"
>Promptotyping-Übersicht</a
>.
</p>
<p class="switchLang" lang="en">
Combining <b>prompt engineering</b> with rapid prototyping
for <b>frontend</b> development. Learn how to
<b><i>promptotype</i></b> or let us do the work. All details
can be found on the
<a
class="text-primary text-highlight-warning fw-bold"
href="https://dhcraft.org/excellence/promptotyping/"
>promptotyping overview</a
>.
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mb-3 mb-sm-0 mt-lg-3">
<div class="d-flex justify-content-center">
<div class="d-flex px-md-4">
<div class="flex-shrink-0">
<span class="svg-icon svg-icon-sm">
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
x="0px"
y="0px"
viewBox="0 0 1080 1080"
style="enable-background: new 0 0 1080 1080"
xml:space="preserve"
>
<path
fill="#24B5C6"
d="M1033.05,324.45c-0.19-137.9-107.59-250.92-233.6-291.7c-156.48-50.64-362.86-43.3-512.28,27.2 C106.07,145.41,49.18,332.61,47.06,519.31c-1.74,153.5,13.58,557.79,241.62,560.67c169.44,2.15,194.67-216.18,273.07-321.33 c55.78-74.81,127.6-95.94,216.01-117.82C929.71,603.22,1033.27,483.3,1033.05,324.45z"
></path>
</svg>
</span>
</div>
<div class="ms-3">
<h4>
<a
class="text-reset"
href="//patreon.com/DigitalHumanitiesCraft"
>Patreon - Membership</a
>
</h4>
<p class="switchLang showLang" lang="de">
<a
class="text-primary text-highlight-warning fw-bold"
href="//patreon.com/DigitalHumanitiesCraft"
><b>Unsere Patreon Seite</b></a
>
liefert aktuelle Entwicklungen, praktische Ausarbeitungen
und viel Prompting, kuratiert und aufbereitet. Es gibt dort
außerdem gratis Inhalte wie zum Beispiel unsere
<a
class="text-primary text-highlight-warning fw-bold"
href="//patreon.com/posts/slide-deck-of-110398856"
><i>Basics of Prompt Engineering</i></a
>.
</p>
<p class="switchLang" lang="en">
<a
class="text-primary text-highlight-warning fw-bold"
href="//patreon.com/DigitalHumanitiesCraft"
><b>Our Patreon Page</b></a
>
provides current developments, practical elaborations, and
extensive prompting, curated and prepared. There are also
free contents available, such as our
<a
class="text-primary text-highlight-warning fw-bold"
href="//patreon.com/posts/slide-deck-of-110398856"
><i>Basics of Prompt Engineering</i></a
>.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Features -->
<div
class="bg-light rounded-2 content-space-2 content-space-lg-3"
id="workSection"
>
<div class="container-xl container-fluid">
<!-- Heading -->
<div class="w-md-75 w-lg-75 text-center mx-md-auto mb-5 mb-md-9">
<h1>
<span class="switchLang showLang" lang="de"
>Excellence: Einblicke in unsere Arbeit</span
><span class="switchLang" lang="en"
>Excellence: Insights into Our Work</span
>
</h1>
</div>
<!-- End Heading -->
<div class="container content-space-b-1 content-space-b-lg-1">
<!-- Nav Scroller -->
<div class="js-nav-scroller hs-nav-scroller-horizontal mb-7">
<span class="hs-nav-scroller-arrow-prev" style="display: none">
<a class="hs-nav-scroller-arrow-link" href="javascript:;">
<i class="bi-chevron-left"></i>
</a>
</span>
<span class="hs-nav-scroller-arrow-next" style="display: none">
<a class="hs-nav-scroller-arrow-link" href="javascript:;">
<i class="bi-chevron-right"></i>
</a>
</span>
<!-- Nav -->
<ul
class="js-filter-options nav nav-segment nav-pills d-flex mx-auto"
style="max-width: 60rem"
>
<li class="nav-item">
<a
class="nav-link active"
href="javascript:;"
data-group="ai-basics"
id="ai-basics"
>KI Grundlagen</a
>
</li>
<li class="nav-item">
<a
class="nav-link"
href="javascript:;"
data-group="ai-business"
id="ai-business"
>KI für Unternehmen</a
>
</li>
<li class="nav-item">
<a
class="nav-link"
href="javascript:;"
data-group="ai-research"
id="ai-research"
>KI in der Forschung</a
>
</li>
<li class="nav-item">
<a
class="nav-link"
href="javascript:;"
data-group="ai-teaching"
id="ai-teaching"
>KI in der Lehre</a
>
</li>
<li class="nav-item">
<a
class="nav-link"
href="javascript:;"
data-group="workshop"
id="workshop"
>Workshops</a
>
</li>
<li class="nav-item">
<a
class="nav-link"
href="javascript:;"
data-group="teaching"
id="teaching"
>Lehre</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="/excellence/promptotyping/"
>Promptotypes</a
>
</li>
</ul>
<!-- End Nav -->
</div>
<!-- End Nav Scroller -->
<div class="js-shuffle row row-cols-1 row-cols-sm-2 row-cols-md-3">
<div
class="js-shuffle-item col mb-5"
data-groups='["ai-business"]'
>
<a
class="card card-transition"
href="https://docs.google.com/presentation/d/1cBLiEncR6GOtzit7cbAjzPl77LZRMKavp6tKIzRQznc"
target="_blank"
rel="noopener noreferrer"
>
<img
class="card-img-top"
src="../assets/img/work-gallery/GenAI-Strategisches.png"
alt="Generative KI: Paradigmenwechsel und Strategische Perspektiven"
/>
<div class="card-body">
<h3 class="card-title">
Generative KI: Paradigmenwechsel und Strategische
Perspektiven
</h3>
<span class="card-subtitle text-body"
>Universität Graz. 04.12.2024.</span
>
</div>
</a>
</div>
<div
class="js-shuffle-item col mb-5"
data-groups='["ai-business"]'
>
<a