-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2497 lines (2390 loc) · 99.7 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="Digital Humanities Craft" />
<meta
name="description"
content="Digital Humanities Craft OG provides solutions for research-driven IT services.
We focus on projects from the Digital Humanities and cultural heritage institutions"
/>
<meta
name="keywords"
content="Digital Humanities Craft, Digital Humanities Craft OG, DHCraft OG, DHCraft, DH Craft, dh craft, 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="Digital Humanities Craft" />
<meta
property="og:description"
content="We provide solutions for research-driven IT services, focusing on projects within the Digital Humanities and within cultural heritage institutions"
/>
<meta
property="og:image"
content="/assets/svg/logos/dhcraft_logo_invert.svg"
/>
<meta property="og:url" content="https://dhcraft.org" />
<meta property="og:site_name" content="dhcraft.org" />
<!-- Title -->
<title>Digital Humanities Craft</title>
<!-- Favicon -->
<link
rel="icon"
type="image/svg+xml"
href="/assets/img/favicon/dhcraft_logo_invert.svg"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/assets/img/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/assets/img/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/assets/img/favicon/favicon-16x16.png"
/>
<link rel="manifest" href="/assets/img/favicon/site.webmanifest" />
<link
rel="mask-icon"
href="/assets/img/favicon/safari-pinned-tab.svg"
color="#5bbad5"
/>
<link rel="shortcut icon" href="/assets/img/favicon/favicon.ico" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta
name="msapplication-config"
content="/assets/img/favicon/browserconfig.xml"
/>
<meta name="theme-color" content="#ffffff" />
<!-- 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" />
</head>
<body id="homeSection" class="position-relative">
<!-- ========== HEADER ========== -->
<header
id="header"
class="navbar navbar-expand-lg navbar-end navbar-absolute-top navbar-light navbar-sticky-top"
>
<div class="container">
<nav class="js-mega-menu navbar-nav-wrap">
<!-- Default Logo -->
<a class="navbar-brand" href="./index.html" aria-label="Front">
<img
class="navbar-brand-logo"
src="./assets/svg/logos/dhcraft_logo_invert.svg"
alt="Logo"
/>
</a>
<!-- End Default Logo -->
<!-- Toggler -->
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-default">
<i class="bi-list"></i>
</span>
<span class="navbar-toggler-toggled">
<i class="bi-x"></i>
</span>
</button>
<!-- End Toggler -->
<!-- Collapse -->
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul id="navbarNavDropdownNav" class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" href="#homeSection">Home</a>
</li>
<li>
<a class="nav-link" href="https://dhcraft.org/excellence"
>Excellence</a
>
</li>
<li class="nav-item">
<a
class="nav-link"
lang="de"
href="#aboutSection"
id="aboutSectionLink"
>Angebot</a
>
</li>
<li class="nav-item">
<a
class="nav-link"
lang="de"
href="#pricingSection"
id="pricingSectionLink"
>Preise</a
>
</li>
<li class="nav-item">
<a
class="nav-link"
lang="de"
href="#partnerSection"
id="partnerSectionLink"
>Partner</a
>
</li>
<li class="nav-item">
<a
class="nav-link"
lang="de"
href="#workSection"
id="workSectionLink"
>Arbeit</a
>
</li>
<li class="nav-item">
<a
class="nav-link"
lang="de"
href="#ongoingSection"
id="ongoingSectionLink"
>Laufend</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#teamSection">Team</a>
</li>
<li class="nav-item">
<a class="nav-link" lang="de" href="#footer" id="footerLink"
>Kontakt</a
>
</li>
</ul>
</div>
<!-- End Collapse -->
</nav>
</div>
</header>
<!-- ========== END HEADER ========== -->
<!-- ========== MAIN CONTENT ========== -->
<main id="content" role="main">
<!-- Hero -->
<div
class="container position-relative content-space-t-3 content-space-t-md-4 content-space-t-lg-4"
>
<div class="row justify-content-lg-between align-items-lg-center">
<div class="col col-lg-8">
<!-- Heading -->
<div class="mb-7 text-center">
<h1 class="display-4 mb-3">Digital Humanities Craft</h1>
<p class="lead switchLang showLang" lang="de">
Wir bieten Lösungen für forschungsorientierte
IT-Dienstleistungen.<br />
Unser Fokus liegt auf
<span class="text-primary text-highlight-warning">
<span
class="js-typedjs"
data-hs-typed-options='{
"strings": ["den Digital Humanities", "Generativer K.I. in der Praxis", "Forschungskontexten", "Webentwicklung", "Data und A.I. Stewardship"],
"typeSpeed": 90,
"loop": true,
"backSpeed": 30,
"backDelay": 2500
}'
></span>
</span>
</p>
<p class="lead switchLang" lang="en">
We provide solutions for research-driven IT services.<br />
We focus on
<span class="text-primary text-highlight-warning">
<span
class="js-typedjs"
data-hs-typed-options='{
"strings": ["the Digital Humanities", "Generative A.I.", "research contexts", "Web Developement","Data and A.I. Stewardship"],
"typeSpeed": 90,
"loop": true,
"backSpeed": 30,
"backDelay": 2500
}'
></span>
</span>
</p>
</div>
</div>
<div class="col-lg-4 d-none d-lg-block">
<img
class="img-fluid"
src="./assets/svg/logos/dhcraft_logo_invert.svg"
alt="DH Craft Logo"
/>
</div>
<!-- End Col -->
</div>
<!-- End Row -->
</div>
<!-- End Hero -->
<!-- About -->
<div
id="aboutSection"
class="container content-space-t-2 content-space-t-lg-3"
>
<!-- Heading -->
<div class="w-lg-75 text-center mx-auto mb-5 mb-sm-9">
<h1>
<span class="switchLang showLang" lang="de">Was bieten wir?</span
><span class="switchLang" lang="en">What we do?</span>
</h1>
</div>
<!-- End Heading -->
<div class="row">
<div class="col-sm-6 col-md-4 mb-3 mb-md-5">
<!-- Icon Blocks -->
<div class="pe-lg-6">
<span class="svg-icon text-primary mb-3">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M17.2718 8.68537C16.8933 8.28319 16.9125 7.65032 17.3146 7.2718C17.7168 6.89329 18.3497 6.91246 18.7282 7.31464L22.7282 11.5646C23.0906 11.9497 23.0906 12.5503 22.7282 12.9354L18.7282 17.1854C18.3497 17.5875 17.7168 17.6067 17.3146 17.2282C16.9125 16.8497 16.8933 16.2168 17.2718 15.8146L20.6268 12.25L17.2718 8.68537Z"
fill="#035A4B"
/>
<path
d="M6.7282 8.68537C7.10671 8.28319 7.08754 7.65032 6.68536 7.2718C6.28319 6.89329 5.65031 6.91246 5.2718 7.31464L1.2718 11.5646C0.909397 11.9497 0.909397 12.5503 1.2718 12.9354L5.2718 17.1854C5.65031 17.5875 6.28319 17.6067 6.68536 17.2282C7.08754 16.8497 7.10671 16.2168 6.7282 15.8146L3.37325 12.25L6.7282 8.68537Z"
fill="#035A4B"
/>
<rect
opacity="0.3"
x="12.7388"
y="3.97168"
width="2"
height="16"
rx="1"
transform="rotate(12.3829 12.7388 3.97168)"
fill="#035A4B"
/>
</svg>
</span>
<h4>Web Development</h4>
<p class="switchLang showLang" lang="de">
Wir besitzen jahrelange Erfahrung in der Implementierung von
<span class="text-primary fw-bold">Web Interfaces</span> für
Digitale Editionen, Sammlungen und Forschungsprojekte. Wann
immer möglich sind unsere Web-Projekte mit den
<a
href="https://www.w3.org/DesignIssues/LinkedData"
class="text-primary text-highlight-warning fw-bold"
target="_blank"
rel="noopener noreferrer"
>Linked Open Data principles</a
>
kompatibel.
</p>
<p class="switchLang" lang="en">
We have years of experience in implementing
<span class="text-primary fw-bold">web interfaces</span> for
digital editions, collections and research projects. We are
known to ensure compatibility of all our web projects with the
<a
href="https://www.w3.org/DesignIssues/LinkedData"
class="text-primary text-highlight-warning fw-bold"
target="_blank"
rel="noopener noreferrer"
>Linked Open Data principles</a
>.
</p>
</div>
<!-- End Icon Blocks -->
</div>
<!-- End Col -->
<div class="col-sm-6 col-md-4 mb-3 mb-md-5">
<!-- Icon Blocks -->
<div class="pe-lg-6">
<span class="svg-icon text-primary mb-3">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
opacity="0.3"
d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z"
fill="#035A4B"
></path>
<path
d="M19 10.4C19 10.3 19 10.2 19 10C19 8.9 18.1 8 17 8H16.9C15.6 6.2 14.6 4.29995 13.9 2.19995C13.3 2.09995 12.6 2 12 2C11.9 2 11.8 2 11.7 2C12.4 4.6 13.5 7.10005 15.1 9.30005C15 9.50005 15 9.7 15 10C15 11.1 15.9 12 17 12C17.1 12 17.3 12 17.4 11.9C18.6 13 19.9 14 21.4 14.8C21.4 14.8 21.5 14.8 21.5 14.9C21.7 14.2 21.8 13.5 21.9 12.7C20.9 12.1 19.9 11.3 19 10.4Z"
fill="#035A4B"
></path>
<path
d="M12 15C11 13.1 10.2 11.2 9.60001 9.19995C9.90001 8.89995 10 8.4 10 8C10 7.1 9.40001 6.39998 8.70001 6.09998C8.40001 4.99998 8.20001 3.90005 8.00001 2.80005C7.30001 3.10005 6.70001 3.40002 6.20001 3.90002C6.40001 4.80002 6.50001 5.6 6.80001 6.5C6.40001 6.9 6.10001 7.4 6.10001 8C6.10001 9 6.80001 9.8 7.80001 10C8.30001 11.6 9.00001 13.2 9.70001 14.7C7.10001 13.2 4.70001 11.5 2.40001 9.5C2.20001 10.3 2.10001 11.1 2.10001 11.9C4.60001 13.9 7.30001 15.7 10.1 17.2C10.2 18.2 11 19 12 19C12.6 20 13.2 20.9 13.9 21.8C14.6 21.7 15.3 21.5 15.9 21.2C15.4 20.5 14.9 19.8 14.4 19.1C15.5 19.5 16.5 19.9 17.6 20.2C18.3 19.8 18.9 19.2 19.4 18.6C17.6 18.1 15.7 17.5 14 16.7C13.9 15.8 13.1 15 12 15Z"
fill="#035A4B"
></path>
</svg>
</span>
<h4>
<span class="switchLang showLang" lang="de"
>Datentransformation & Datenmodellierung</span
><span class="switchLang" lang="en"
>Data Transformation & Data Modeling</span
>
</h4>
<p class="switchLang showLang" lang="de">
Die Transformation von Daten in etablierte Standards ist Teil
unseres Kerngeschäfts. Wir sind erfahrene
<span class="text-primary fw-bold">XSLT</span> und
<span class="text-primary fw-bold">Python</span> Programmierer
und haben jahrelange Erfahrung in der Modellierung von
geisteswissenschaftlichen Daten mit
<a
href="https://tei-c.org/"
class="text-primary text-highlight-warning fw-bold"
target="_blank"
rel="noopener noreferrer"
>TEI</a
>, <span class="text-primary fw-bold">RDF</span>
und einer großen Bandbreite an anderen Standards.
</p>
<p class="switchLang" lang="en">
Transforming data into established standards is part of our core
business. We are experienced
<span class="text-primary fw-bold">XSLT</span> and
<span class="text-primary fw-bold">Python</span> programmers and
have extensive practice in modeling humanities domains with
<a
href="https://tei-c.org/"
class="text-primary text-highlight-warning fw-bold"
target="_blank"
rel="noopener noreferrer"
>TEI</a
>, <span class="text-primary fw-bold">RDF</span>
and a wide range of other standards.
</p>
</div>
<!-- End Icon Blocks -->
</div>
<!-- End Col -->
<div class="col-sm-6 col-md-4 mb-3 mb-md-5">
<!-- Icon Blocks -->
<div class="pe-lg-6">
<span class="svg-icon text-primary mb-3">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
opacity="0.3"
d="M10.9607 12.9128H18.8607C19.4607 12.9128 19.9607 13.4128 19.8607 14.0128C19.2607 19.0128 14.4607 22.7128 9.26068 21.7128C5.66068 21.0128 2.86071 18.2128 2.16071 14.6128C1.16071 9.31284 4.96069 4.61281 9.86069 4.01281C10.4607 3.91281 10.9607 4.41281 10.9607 5.01281V12.9128V12.9128Z"
fill="#035A4B"
/>
<path
d="M12.9607 10.9128V3.01281C12.9607 2.41281 13.4607 1.91281 14.0607 2.01281C16.0607 2.21281 17.8607 3.11284 19.2607 4.61284C20.6607 6.01284 21.5607 7.91285 21.8607 9.81285C21.9607 10.4129 21.4607 10.9128 20.8607 10.9128H12.9607V10.9128Z"
fill="#035A4B"
/>
</svg>
</span>
<h4>
<span class="switchLang showLang" lang="de">Datenanalyse</span
><span class="switchLang" lang="en">Data Analysis</span>
</h4>
<p class="switchLang showLang" lang="de">
Wir haben uns auf die Analyse und Visualisierung von
Forschungsdaten mit Hilfe von
<span class="text-primary fw-bold">SPARQL</span>
und
<span class="text-primary fw-bold">JavaScript</span>
spezialisiert. Klassische Datenanalysen machen wir mit
<span class="text-primary fw-bold">Python</span> und nutzen für
komplexe Aufgabenstellungen auch
<span class="text-primary fw-bold">LLMs</span>.
</p>
<p class="switchLang" lang="en">
We specialize in the analysis and visualization of research data
via
<span class="text-primary fw-bold">SPARQL</span>
and <span class="text-primary fw-bold">JavaScript</span>. We
perform classic data analyses with
<span class="text-primary fw-bold">Python</span> and also use
<span class="text-primary fw-bold">LLMs</span> for complex
tasks.
</p>
</div>
<!-- End Icon Blocks -->
</div>
<!-- End Col -->
<div class="col-md-6 mb-3 mb-md-5">
<!-- Icon Blocks -->
<div class="pe-lg-6">
<a class="text-reset" href="/excellence" title="Excellence"
><span class="svg-icon text-primary mb-3">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
opacity="0.3"
d="M20.335 15.537C21.725 14.425 21.57 12.812 21.553 11.224C21.4407 9.50899 20.742 7.88483 19.574 6.624C18.5503 5.40102 17.2668 4.4216 15.817 3.757C14.4297 3.26981 12.9703 3.01966 11.5 3.01701C8.79576 2.83108 6.11997 3.66483 4 5.35398C2.289 6.72498 1.23101 9.12497 2.68601 11.089C3.22897 11.6881 3.93029 12.1214 4.709 12.339C5.44803 12.6142 6.24681 12.6888 7.024 12.555C6.88513 12.9965 6.85078 13.4644 6.92367 13.9215C6.99656 14.3786 7.17469 14.8125 7.444 15.189C7.73891 15.5299 8.10631 15.8006 8.51931 15.9812C8.93232 16.1619 9.38047 16.2478 9.831 16.233C10.0739 16.2296 10.3141 16.1807 10.539 16.089C10.7371 15.9871 10.9288 15.8732 11.113 15.748C12.1594 15.2831 13.3275 15.1668 14.445 15.416C15.7795 15.7213 17.1299 15.952 18.49 16.107C18.7927 16.1438 19.0993 16.1313 19.398 16.07C19.7445 15.9606 20.0639 15.7789 20.335 15.537V15.537Z"
fill="#035A4B"
/>
<path
d="M19.008 16.114C18.9486 16.6061 18.7934 17.0817 18.551 17.514C18.229 18.114 17.581 18.314 17.103 18.752C16.457 19.343 16.595 20.38 16.632 21.164C16.6522 21.3437 16.621 21.5254 16.542 21.688C16.4335 21.835 16.2751 21.9373 16.0965 21.9758C15.9179 22.0143 15.7314 21.9863 15.572 21.897C15.2577 21.7083 15.0072 21.4296 14.853 21.097C14.581 20.607 14.362 20.085 14.053 19.612C13.3182 18.7548 12.4201 18.0525 11.411 17.546C10.9334 17.1942 10.5857 16.6942 10.422 16.124C10.459 16.111 10.499 16.106 10.536 16.09C10.7336 15.9879 10.925 15.8741 11.109 15.749C12.1554 15.2842 13.3234 15.1678 14.441 15.417C15.7754 15.7223 17.1259 15.953 18.486 16.108C18.6598 16.1191 18.834 16.1211 19.008 16.114V16.114ZM18.8 10.278V3C18.8 2.73478 18.6946 2.48044 18.5071 2.29291C18.3196 2.10537 18.0652 2 17.8 2C17.5348 2 17.2804 2.10537 17.0929 2.29291C16.9053 2.48044 16.8 2.73478 16.8 3V10.278C16.4187 10.4981 16.1207 10.8379 15.9522 11.2447C15.7838 11.6514 15.7542 12.1024 15.8681 12.5277C15.9821 12.953 16.2332 13.3287 16.5825 13.5967C16.9318 13.8648 17.3597 14.0101 17.8 14.0101C18.2403 14.0101 18.6682 13.8648 19.0175 13.5967C19.3668 13.3287 19.6179 12.953 19.7318 12.5277C19.8458 12.1024 19.8162 11.6514 19.6477 11.2447C19.4793 10.8379 19.1813 10.4981 18.8 10.278V10.278ZM13.8 2C13.5348 2 13.2804 2.10537 13.0929 2.29291C12.9053 2.48044 12.8 2.73478 12.8 3V8.586L12.312 9.07397C11.8792 8.95363 11.4188 8.98004 11.0026 9.14899C10.5864 9.31794 10.2379 9.61994 10.0115 10.0079C9.78508 10.3958 9.69351 10.8478 9.75109 11.2933C9.80867 11.7387 10.0122 12.1526 10.3298 12.4702C10.6474 12.7878 11.0612 12.9913 11.5067 13.0489C11.9522 13.1065 12.4042 13.0149 12.7921 12.7885C13.18 12.5621 13.4821 12.2136 13.651 11.7974C13.82 11.3812 13.8463 10.9207 13.726 10.488L14.507 9.70697C14.6945 9.51948 14.7999 9.26519 14.8 9V3C14.8 2.73478 14.6946 2.48044 14.5071 2.29291C14.3196 2.10537 14.0652 2 13.8 2ZM9.79999 2C9.53478 2 9.28042 2.10537 9.09289 2.29291C8.90535 2.48044 8.79999 2.73478 8.79999 3V4.586L7.31199 6.07397C6.87924 5.95363 6.41882 5.98004 6.00263 6.14899C5.58644 6.31794 5.23792 6.61994 5.0115 7.00787C4.78508 7.39581 4.69351 7.84781 4.75109 8.29327C4.80867 8.73874 5.01216 9.1526 5.32977 9.47021C5.64739 9.78783 6.06124 9.99131 6.50671 10.0489C6.95218 10.1065 7.40417 10.0149 7.7921 9.78851C8.18004 9.56209 8.48207 9.21355 8.65102 8.79736C8.81997 8.38117 8.84634 7.92073 8.726 7.48798L10.507 5.70697C10.6945 5.51948 10.7999 5.26519 10.8 5V3C10.8 2.73478 10.6946 2.48044 10.5071 2.29291C10.3196 2.10537 10.0652 2 9.79999 2Z"
fill="#035A4B"
/>
</svg> </span
></a>
<h4>
<a class="text-reset" href="/excellence" title="Excellence"
><span class="switchLang showLang" lang="de"
>Angewandte Generative KI mit Large Language Models (LLM)
und Prompt Engineering</span
><span class="switchLang" lang="en"
>Applied Generative AI with Large Language Models (LLM) and
Prompt Engineering</span
></a
>
</h4>
<p class="switchLang showLang" lang="de">
Wir haben viel Zeit in die Erprobung von
<a
href="https://www.patreon.com/posts/herzlich-110211592"
class="text-primary text-highlight-warning fw-bold"
target="_blank"
rel="noopener noreferrer"
>LLMs</a
>
investiert und uns intensiv mit
<a
href="/excellence/promptotyping/"
class="text-primary text-highlight-warning fw-bold"
target="_blank"
rel="noopener noreferrer"
>Prompt Engineering</a
>
beschäftigt. Gerne beraten, schulen und unterstützen wir Sie
dabei. Mehr Infos dazu finden Sie auch in unserem Portal
<a
title="Excellence"
href="/excellence"
class="text-primary text-highlight-warning fw-bold"
target="_blank"
rel="noopener noreferrer"
>excellence.dhcraft.org</a
>
und unserer
<a
href="//patreon.com/DigitalHumanitiesCraft"
class="text-primary text-highlight-warning fw-bold"
target="_blank"
rel="noopener noreferrer"
>Patreon Seite</a
>.
</p>
<p class="switchLang" lang="en">
We have invested a lot of time in testing
<a
href="https://www.patreon.com/posts/herzlich-110211592"
class="text-primary text-highlight-warning fw-bold"
target="_blank"
rel="noopener noreferrer"
>LLMs</a
>
and have delved deeply into
<a
href="//patreon.com/posts/slide-deck-of-110398856"
class="text-primary text-highlight-warning fw-bold"
target="_blank"
rel="noopener noreferrer"
>Prompt Engineering</a
>. We are happy to advise, train, and support you in this. You
can find more information on our portal
<a
title="Excellence"
href="/excellence"
class="text-primary text-highlight-warning fw-bold"
target="_blank"
rel="noopener noreferrer"
>excellence.dhcraft.org</a
>
and on our
<a
href="//patreon.com/DigitalHumanitiesCraft"
class="text-primary text-highlight-warning fw-bold"
target="_blank"
rel="noopener noreferrer"
>Patreon page</a
>.
</p>
</div>
<!-- End Icon Blocks -->
</div>
<div class="col-md-6 mb-3 mb-md-5">
<!-- Icon Blocks -->
<div class="pe-lg-6">
<a
class="text-reset"
href="https://www.patreon.com/digitalhumanitiescraft/membership"
title="Excellence"
>
<span class="svg-icon text-primary mb-3">
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 1080 1080"
style="enable-background: new 0 0 1080 1080"
xml:space="preserve"
>
<path
fill="white"
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"
/>
</svg> </span
></a>
<h4>
<a
class="text-reset"
href="https://www.patreon.com/digitalhumanitiescraft/membership"
title="Excellence"
>Patreon - Membership</a
>
</h4>
<p class="switchLang showLang" lang="de">
Generative KI entwickelt sich rasant! Es ist nicht einfach mit
der Entwicklung Schritt zu halten, gerade weil die wichtigste
Ressource fehlt: Zeit. Unsere Patreon Seite liefert mit derzeit
<a
href="https://www.patreon.com/digitalhumanitiescraft/membership"
class="text-primary text-highlight-warning fw-bold"
target="_blank"
rel="noopener noreferrer"
>zwei Tiers</a
>
aktuelle Entwicklungen, praktische Ausarbeitungen und viel
Prompting, kuratiert und aufbereitet.
</p>
<p class="switchLang" lang="en">
We have invested a lot of time in testing
<a
href="https://www.patreon.com/posts/herzlich-110211592"
class="text-primary text-highlight-warning fw-bold"
target="_blank"
rel="noopener noreferrer"
>LLMs</a
>
and have delved deeply into
<a
href="//patreon.com/posts/slide-deck-of-110398856"
class="text-primary text-highlight-warning fw-bold"
target="_blank"
rel="noopener noreferrer"
>Prompt Engineering</a
>. We are happy to advise, train, and support you in this. You
can find more information on our portal
<a
title="Excellence"
href="/excellence"
class="text-primary text-highlight-warning fw-bold"
target="_blank"
rel="noopener noreferrer"
>excellence.dhcraft.org</a
>
and on our
<a
href="//patreon.com/DigitalHumanitiesCraft"
class="text-primary text-highlight-warning fw-bold"
target="_blank"
rel="noopener noreferrer"
>Patreon page</a
>.
</p>
</div>
<!-- End Icon Blocks -->
</div>
<div class="col-sm-6 col-md-4 mb-3 mb-md-5">
<!-- Icon Blocks -->
<div class="pe-lg-6">
<a class="text-reset" href="/excellence" title="Excellence">
<span class="svg-icon text-primary mb-3">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
opacity="0.3"
d="M18 22C19.7 22 21 20.7 21 19C21 18.5 20.9 18.1 20.7 17.7L15.3 6.30005C15.1 5.90005 15 5.5 15 5C15 3.3 16.3 2 18 2H6C4.3 2 3 3.3 3 5C3 5.5 3.1 5.90005 3.3 6.30005L8.7 17.7C8.9 18.1 9 18.5 9 19C9 20.7 7.7 22 6 22H18Z"
fill="#035A4B"
/>
<path
d="M18 2C19.7 2 21 3.3 21 5H9C9 3.3 7.7 2 6 2H18Z"
fill="#035A4B"
/>
<path
d="M9 19C9 20.7 7.7 22 6 22C4.3 22 3 20.7 3 19H9Z"
fill="#035A4B"
/>
</svg>
</span>
</a>
<h4>
<a title="Excellence" class="text-reset" href="/excellence">
<span class="switchLang showLang" lang="de">Lehre</span
><span class="switchLang" lang="en">Teaching</span></a
>
</h4>
<p class="mb-0 switchLang showLang" lang="de">
Wir unterrichten die folgenden Themengebiete an
<span class="text-primary fw-bold">Universitäten</span> und
<span class="text-primary fw-bold"
>spezialisierten Hochschulen</span
>:
</p>
<p class="mb-0 switchLang" lang="en">
We teach the following topics at
<span class="text-primary fw-bold">universities</span> and
<span class="text-primary fw-bold">specialized schools</span>:
</p>
<ul
class="list-checked list-checked-primary list-checked-sm small"
>
<li class="list-checked-item mb-0">
Generative AI and Prompt Engineering
</li>
<li class="list-checked-item mb-0">
Data-based Knowledge Production and Organization
</li>
<li class="list-checked-item mb-0">
Digital Edition and Text Encoding
</li>
<li class="list-checked-item mb-0">Information Modelling</li>
<li class="list-checked-item mb-0">
Introduction to Computer Science
</li>
<li class="list-checked-item mb-0">
Knowledge Engineering and Semantic Web Technologies
</li>
<li class="list-checked-item mb-0">Project Management</li>
<li class="list-checked-item mb-0">Web Development</li>
<li class="list-checked-item mb-0">X-Technologies</li>
</ul>
</div>
<!-- End Icon Blocks -->
</div>
<!-- End Col -->
<div class="col-sm-6 col-md-4 mb-3 mb-sm-0">
<!-- Icon Blocks -->
<div class="pe-lg-6">
<a class="text-reset" href="/excellence" title="Excellence">
<span class="svg-icon text-primary mb-3">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
opacity="0.3"
fill-rule="evenodd"
clip-rule="evenodd"
d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z"
fill="#035A4B"
/>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M10.591 13.209V14.868H11.851C14.392 14.868 16.387 12.915 16.387 10.395C16.387 7.875 14.392 5.922 11.851 5.922C9.31 5.922 7.336 7.875 7.336 10.395H9.121C9.121 8.799 10.234 7.581 11.851 7.581C13.447 7.581 14.602 8.799 14.602 10.395C14.602 11.991 13.447 13.209 11.851 13.209H10.591ZM12 16C11.4477 16 11 16.4477 11 17C11 17.5523 11.4477 18 12 18C12.5523 18 13 17.5523 13 17C13 16.4477 12.5523 16 12 16Z"
fill="#035A4B"
/>
</svg>
</span>
</a>
<h4>
<a class="text-reset" href="/excellence" title="Excellence"
>Consulting</a
>
</h4>
<p class="switchLang showLang" lang="de">
Wenn Sie Fragen zu den Themen
<span class="text-primary fw-bold">Management</span>,
<span class="text-primary fw-bold">Planung</span> oder
<span class="text-primary fw-bold">Implementierung</span> von
Digital Humanities Projekten haben, sind Sie hier genau richtig.
Wir können bei Fragestellungen zu Modellierung,
Datenverarbeitung oder der digitalen Umsetzung ihrer Projekte
behilflich sein.
</p>
<p class="switchLang" lang="en">
If you have questions about the
<span class="text-primary fw-bold">management</span>,
<span class="text-primary fw-bold">planning</span> and
<span class="text-primary fw-bold">implementation</span> of
Digital Humanities projects, you are at the right place. We can
help with questions about modeling, data wrangling and the
digital implementation of your projects.
</p>
</div>
<!-- End Icon Blocks -->
</div>
<!-- End Col -->
<div class="col-sm-6 col-md-4">
<!-- Icon Blocks -->
<div class="pe-lg-6">
<a class="text-reset" href="//gams.uni-graz.at" title="Gams">
<span class="svg-icon text-primary mb-3">
<img
src="./assets/svg/logos/gams_logo.svg"
loading="lazy"
width="140"
alt="GAMS Logo"
/>
</span>
</a>
<h4>
<span class="switchLang showLang" lang="de"
>Langzeitarchivierung</span
><span class="switchLang" lang="en">Long-Term Archiving</span>
</h4>
<p class="switchLang showLang" lang="de">
Wir haben einen Kooperationsvertrag mit dem
<a
href="//zim.uni-graz.at"
class="text-primary text-highlight-warning fw-bold"
target="_blank"
rel="noopener noreferrer"
>
Institut für Digitale Geisteswissenschaften (vormals ZIM) der
Universität Graz,
</a>
das das OAIS konforme und zertifizierte institutionelle
Forschungsrepositorium
<a
target="_blank"
rel="noopener noreferrer"
href="//gams.uni-graz.at"
class="text-primary text-highlight-warning fw-bold"
>GAMS</a
>
betreibt.
</p>
<p class="switchLang" lang="en">
We have a cooperation contract with the
<a
href="//zim.uni-graz.at"
class="text-primary text-highlight-warning fw-bold"
target="_blank"
rel="noopener noreferrer"
>
Department of Digital Humanities (ZIM) at the University of
Graz
</a>
which runs the OAIS compliant and certified institutional
repository
<a
target="_blank"
rel="noopener noreferrer"
href="//gams.uni-graz.at"
class="text-primary text-highlight-warning fw-bold"
>GAMS</a
>.
</p>
</div>
<!-- End Icon Blocks -->
</div>
<!-- End Col -->
</div>
<!-- End Row -->
</div>
<!-- End About -->
<!-- Prices -->
<div class="container" id="pricingSection">
<div class="w-75 mx-auto mb-7">
<img
class="img-fluid"
src="./assets/svg/components/three-pointers.svg"
alt="SVG Arrow"
/>
</div>
<!-- Heading -->
<div class="w-md-60 w-lg-50 text-center mx-auto mb-7">
<h2>
<span class="text-dark"
><span class="switchLang showLang" lang="de"
>Preise? Schreiben Sie uns!</span
><span class="switchLang" lang="en"
>Prices? Get in touch with us!</span
></span
>
<span class="fw-normal">
<span class="switchLang showLang" lang="de">
Wir arbeiten auf der Basis von individuellen Angeboten, die
genau auf Ihre Bedürfnisse zugeschnitten werden.
</span>
<span class="switchLang" lang="en">
We operate on the basis of individual offers tailored to your
specific needs.
</span>
</span>
</h2>
</div>
<!-- End Heading -->
</div>
<!-- End Prices -->
<!-- Partners -->
<div
id="partnerSection"
class="bg-light container-fluid content-space-2 content-space-lg-3"
>
<!-- 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">Partner</span
><span class="switchLang" lang="en">Partners</span>
</h1>
</div>
<!-- End Heading -->
<div class="logo-bar">
<div class="container">
<div class="row logo-bar align-items-center justify-content-center">
<!-- Add your logos inside the divs below -->
<div class="col-auto my-2">
<img
height="80"
loading="lazy"
src="./assets/img/logos/zim-logo.png"
alt="Institut für Digitale Geisteswissenschaften (vormals ZIM) - Uni Graz"
/>
</div>
<div class="col-auto my-2">
<img
loading="lazy"
src="./assets/img/logos/unigraz-logo.png"
alt="University of Graz"
/>
</div>
<div class="col-auto my-2">
<img
loading="lazy"
src="./assets/img/logos/uniwien-logo.png"
alt="University of Vienna"
/>
</div>
<div class="col-auto my-2">
<img
loading="lazy"
src="./assets/img/logos/mdw-logo.png"
alt="mdw – University of Music and Performing Arts Vienna"
/>
</div>
<div class="col-auto my-2">
<img
loading="lazy"
src="./assets/img/logos/yaleuniv-blue.png"
alt="Yale University"
/>
</div>
<div class="col-auto my-2">
<img
style="max-height: 140px"
loading="lazy"
src="./assets/img/logos/khm-logo.png"
alt="Kunsthistorisches Museum Wien"
/>
</div>
<div class="col-auto my-2">
<img
loading="lazy"
src="./assets/img/logos/oeaw-logo.png"
alt="Österreichische Akademie der Wissenschaften"
/>
</div>
<div class="col-auto my-2">
<img
loading="lazy"
src="./assets/img/logos/las-logo.jpg"
alt="Literaturarchiv Salzburg"
/>
</div>
<div class="col-auto my-2">
<img
loading="lazy"
src="./assets/img/logos/plus-logo.png"
alt="Universität Salzburg"
/>
</div>
<div class="col-auto my-2">
<img
loading="lazy"
src="./assets/img/logos/unidonau-logo.png"
alt="Donau-Universität Krems - Universität für Weiterbildung"
/>
</div>
<div class="col-auto my-2">
<img
loading="lazy"