-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcv.html
More file actions
1262 lines (1226 loc) · 79.1 KB
/
cv.html
File metadata and controls
1262 lines (1226 loc) · 79.1 KB
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 xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
<meta charset="utf-8">
<meta name="generator" content="quarto-1.7.30">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>CV – Prof. Dr. Stephan Huber</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
ul.task-list li input[type="checkbox"] {
width: 0.8em;
margin: 0 0.8em 0.2em -1em; /* quarto-specific, see https://github.com/quarto-dev/quarto-cli/issues/4556 */
vertical-align: middle;
}
/* CSS for citations */
div.csl-bib-body { }
div.csl-entry {
clear: both;
margin-bottom: 0em;
}
.hanging-indent div.csl-entry {
margin-left:2em;
text-indent:-2em;
}
div.csl-left-margin {
min-width:2em;
float:left;
}
div.csl-right-inline {
margin-left:2em;
padding-left:1em;
}
div.csl-indent {
margin-left: 2em;
}</style>
<script src="site_libs/quarto-nav/quarto-nav.js"></script>
<script src="site_libs/quarto-nav/headroom.min.js"></script>
<script src="site_libs/clipboard/clipboard.min.js"></script>
<script src="site_libs/quarto-search/autocomplete.umd.js"></script>
<script src="site_libs/quarto-search/fuse.min.js"></script>
<script src="site_libs/quarto-search/quarto-search.js"></script>
<meta name="quarto:offset" content="./">
<script src="site_libs/quarto-html/quarto.js" type="module"></script>
<script src="site_libs/quarto-html/tabsets/tabsets.js" type="module"></script>
<script src="site_libs/quarto-html/popper.min.js"></script>
<script src="site_libs/quarto-html/tippy.umd.min.js"></script>
<script src="site_libs/quarto-html/anchor.min.js"></script>
<link href="site_libs/quarto-html/tippy.css" rel="stylesheet">
<link href="site_libs/quarto-html/quarto-syntax-highlighting-de070a7b0ab54f8780927367ac907214.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
<link href="site_libs/quarto-html/quarto-syntax-highlighting-dark-2b3e328b71be8d25427581baeb23079b.css" rel="stylesheet" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
<link href="site_libs/quarto-html/quarto-syntax-highlighting-de070a7b0ab54f8780927367ac907214.css" rel="stylesheet" class="quarto-color-scheme-extra" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap-5aa8fcd4d5f319b5863951c056b9cda7.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
<link href="site_libs/bootstrap/bootstrap-dark-7292bda8d4d1c277e3cfac11d4b04c50.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
<link href="site_libs/bootstrap/bootstrap-5aa8fcd4d5f319b5863951c056b9cda7.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme-extra" id="quarto-bootstrap" data-mode="light">
<script id="quarto-search-options" type="application/json">{
"location": "navbar",
"copy-button": false,
"collapse-after": 3,
"panel-placement": "end",
"type": "overlay",
"limit": 50,
"keyboard-shortcut": [
"f",
"/",
"s"
],
"language": {
"search-no-results-text": "No results",
"search-matching-documents-text": "matching documents",
"search-copy-link-title": "Copy link to search",
"search-hide-matches-text": "Hide additional matches",
"search-more-match-text": "more match in this document",
"search-more-matches-text": "more matches in this document",
"search-clear-button-title": "Clear",
"search-text-placeholder": "",
"search-detached-cancel-button-title": "Cancel",
"search-submit-button-title": "Submit",
"search-label": "Search"
}
}</script>
<link rel="stylesheet" href="styles.css">
</head>
<body class="nav-fixed quarto-light"><script id="quarto-html-before-body" type="application/javascript">
const toggleBodyColorMode = (bsSheetEl) => {
const mode = bsSheetEl.getAttribute("data-mode");
const bodyEl = window.document.querySelector("body");
if (mode === "dark") {
bodyEl.classList.add("quarto-dark");
bodyEl.classList.remove("quarto-light");
} else {
bodyEl.classList.add("quarto-light");
bodyEl.classList.remove("quarto-dark");
}
}
const toggleBodyColorPrimary = () => {
const bsSheetEl = window.document.querySelector("link#quarto-bootstrap:not([rel=disabled-stylesheet])");
if (bsSheetEl) {
toggleBodyColorMode(bsSheetEl);
}
}
const setColorSchemeToggle = (alternate) => {
const toggles = window.document.querySelectorAll('.quarto-color-scheme-toggle');
for (let i=0; i < toggles.length; i++) {
const toggle = toggles[i];
if (toggle) {
if (alternate) {
toggle.classList.add("alternate");
} else {
toggle.classList.remove("alternate");
}
}
}
};
const toggleColorMode = (alternate) => {
// Switch the stylesheets
const primaryStylesheets = window.document.querySelectorAll('link.quarto-color-scheme:not(.quarto-color-alternate)');
const alternateStylesheets = window.document.querySelectorAll('link.quarto-color-scheme.quarto-color-alternate');
manageTransitions('#quarto-margin-sidebar .nav-link', false);
if (alternate) {
// note: dark is layered on light, we don't disable primary!
enableStylesheet(alternateStylesheets);
for (const sheetNode of alternateStylesheets) {
if (sheetNode.id === "quarto-bootstrap") {
toggleBodyColorMode(sheetNode);
}
}
} else {
disableStylesheet(alternateStylesheets);
enableStylesheet(primaryStylesheets)
toggleBodyColorPrimary();
}
manageTransitions('#quarto-margin-sidebar .nav-link', true);
// Switch the toggles
setColorSchemeToggle(alternate)
// Hack to workaround the fact that safari doesn't
// properly recolor the scrollbar when toggling (#1455)
if (navigator.userAgent.indexOf('Safari') > 0 && navigator.userAgent.indexOf('Chrome') == -1) {
manageTransitions("body", false);
window.scrollTo(0, 1);
setTimeout(() => {
window.scrollTo(0, 0);
manageTransitions("body", true);
}, 40);
}
}
const disableStylesheet = (stylesheets) => {
for (let i=0; i < stylesheets.length; i++) {
const stylesheet = stylesheets[i];
stylesheet.rel = 'disabled-stylesheet';
}
}
const enableStylesheet = (stylesheets) => {
for (let i=0; i < stylesheets.length; i++) {
const stylesheet = stylesheets[i];
if(stylesheet.rel !== 'stylesheet') { // for Chrome, which will still FOUC without this check
stylesheet.rel = 'stylesheet';
}
}
}
const manageTransitions = (selector, allowTransitions) => {
const els = window.document.querySelectorAll(selector);
for (let i=0; i < els.length; i++) {
const el = els[i];
if (allowTransitions) {
el.classList.remove('notransition');
} else {
el.classList.add('notransition');
}
}
}
const isFileUrl = () => {
return window.location.protocol === 'file:';
}
const hasAlternateSentinel = () => {
let styleSentinel = getColorSchemeSentinel();
if (styleSentinel !== null) {
return styleSentinel === "alternate";
} else {
return false;
}
}
const setStyleSentinel = (alternate) => {
const value = alternate ? "alternate" : "default";
if (!isFileUrl()) {
window.localStorage.setItem("quarto-color-scheme", value);
} else {
localAlternateSentinel = value;
}
}
const getColorSchemeSentinel = () => {
if (!isFileUrl()) {
const storageValue = window.localStorage.getItem("quarto-color-scheme");
return storageValue != null ? storageValue : localAlternateSentinel;
} else {
return localAlternateSentinel;
}
}
const toggleGiscusIfUsed = (isAlternate, darkModeDefault) => {
const baseTheme = document.querySelector('#giscus-base-theme')?.value ?? 'light';
const alternateTheme = document.querySelector('#giscus-alt-theme')?.value ?? 'dark';
let newTheme = '';
if(authorPrefersDark) {
newTheme = isAlternate ? baseTheme : alternateTheme;
} else {
newTheme = isAlternate ? alternateTheme : baseTheme;
}
const changeGiscusTheme = () => {
// From: https://github.com/giscus/giscus/issues/336
const sendMessage = (message) => {
const iframe = document.querySelector('iframe.giscus-frame');
if (!iframe) return;
iframe.contentWindow.postMessage({ giscus: message }, 'https://giscus.app');
}
sendMessage({
setConfig: {
theme: newTheme
}
});
}
const isGiscussLoaded = window.document.querySelector('iframe.giscus-frame') !== null;
if (isGiscussLoaded) {
changeGiscusTheme();
}
};
const authorPrefersDark = false;
const darkModeDefault = authorPrefersDark;
document.querySelector('link#quarto-text-highlighting-styles.quarto-color-scheme-extra').rel = 'disabled-stylesheet';
document.querySelector('link#quarto-bootstrap.quarto-color-scheme-extra').rel = 'disabled-stylesheet';
let localAlternateSentinel = darkModeDefault ? 'alternate' : 'default';
// Dark / light mode switch
window.quartoToggleColorScheme = () => {
// Read the current dark / light value
let toAlternate = !hasAlternateSentinel();
toggleColorMode(toAlternate);
setStyleSentinel(toAlternate);
toggleGiscusIfUsed(toAlternate, darkModeDefault);
window.dispatchEvent(new Event('resize'));
};
// Switch to dark mode if need be
if (hasAlternateSentinel()) {
toggleColorMode(true);
} else {
toggleColorMode(false);
}
</script>
<div id="quarto-search-results"></div>
<header id="quarto-header" class="headroom fixed-top">
<nav class="navbar navbar-expand-lg " data-bs-theme="dark">
<div class="navbar-container container-fluid">
<div class="navbar-brand-container mx-auto">
<a class="navbar-brand" href="./index.html">
<span class="navbar-title">Prof. Dr. Stephan Huber</span>
</a>
</div>
<div id="quarto-search" class="" title="Search"></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav navbar-nav-scroll me-auto">
<li class="nav-item">
<a class="nav-link" href="./index.html">
<span class="menu-text">Home</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./publications.html">
<span class="menu-text">Publications</span></a>
</li>
<li class="nav-item">
<a class="nav-link active" href="./cv.html" aria-current="page">
<span class="menu-text">CV</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./about.html">
<span class="menu-text">I Like…</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./contact.html">
<span class="menu-text">Contact</span></a>
</li>
</ul>
</div> <!-- /navcollapse -->
<div class="quarto-navbar-tools tools-wide">
<a href="mailto:DrStephanHuber@yahoo.com" title="" class="quarto-navigation-tool px-1" aria-label=""><i class="bi bi-envelope-fill"></i></a>
<a href="https://www.researchgate.net/profile/Stephan-Huber-6" title="" class="quarto-navigation-tool px-1" aria-label=""><i class="bi bi-r-circle-fill"></i></a>
<a href="https://www.linkedin.com/in/stephan-huber-04698a61/" title="" class="quarto-navigation-tool px-1" aria-label=""><i class="bi bi-linkedin"></i></a>
<a href="https://www.instagram.com/profstephuber" title="" class="quarto-navigation-tool px-1" aria-label=""><i class="bi bi-instagram"></i></a>
<div class="dropdown">
<a href="" title="" id="quarto-navigation-tool-dropdown-0" class="quarto-navigation-tool dropdown-toggle px-1" data-bs-toggle="dropdown" aria-expanded="false" role="link" aria-label=""><i class="bi bi-github"></i></a>
<ul class="dropdown-menu" aria-labelledby="quarto-navigation-tool-dropdown-0">
<li>
<a class="dropdown-item quarto-navbar-tools-item" href="https://github.com/hubchev/">
My GitHub Account
</a>
</li>
<li>
<a class="dropdown-item quarto-navbar-tools-item" href="mailto:DrStephanHuber@yahoo.com">
Report a Bug
</a>
</li>
</ul>
</div>
<a href="" class="quarto-color-scheme-toggle quarto-navigation-tool px-1" onclick="window.quartoToggleColorScheme(); return false;" title="Toggle dark mode"><i class="bi"></i></a>
</div>
</div> <!-- /container-fluid -->
</nav>
</header>
<!-- content -->
<div id="quarto-content" class="quarto-container page-columns page-rows-contents page-layout-article page-navbar">
<!-- sidebar -->
<!-- margin-sidebar -->
<div id="quarto-margin-sidebar" class="sidebar margin-sidebar">
<nav id="TOC" role="doc-toc" class="toc-active">
<h2 id="toc-title">On this page</h2>
<ul>
<li><a href="#current-positions" id="toc-current-positions" class="nav-link active" data-scroll-target="#current-positions">Current positions</a></li>
<li><a href="#past-positions" id="toc-past-positions" class="nav-link" data-scroll-target="#past-positions">Past positions</a></li>
<li><a href="#education" id="toc-education" class="nav-link" data-scroll-target="#education">Education</a></li>
<li><a href="#talks" id="toc-talks" class="nav-link" data-scroll-target="#talks">Talks</a></li>
<li><a href="#research-stays" id="toc-research-stays" class="nav-link" data-scroll-target="#research-stays">Research stays</a></li>
<li><a href="#awards-grants-and-scholarships" id="toc-awards-grants-and-scholarships" class="nav-link" data-scroll-target="#awards-grants-and-scholarships">Awards, grants, and scholarships</a></li>
<li><a href="#referee-service" id="toc-referee-service" class="nav-link" data-scroll-target="#referee-service">Referee service</a></li>
<li><a href="#software-skills" id="toc-software-skills" class="nav-link" data-scroll-target="#software-skills">Software skills</a></li>
<li><a href="#affiliations" id="toc-affiliations" class="nav-link" data-scroll-target="#affiliations">Affiliations</a></li>
<li><a href="#further-professional-education" id="toc-further-professional-education" class="nav-link" data-scroll-target="#further-professional-education">Further professional education</a></li>
<li><a href="#references" id="toc-references" class="nav-link" data-scroll-target="#references">References</a></li>
<li><a href="#publications" id="toc-publications" class="nav-link" data-scroll-target="#publications">Publications</a></li>
<li><a href="#teaching" id="toc-teaching" class="nav-link" data-scroll-target="#teaching">Teaching</a>
<ul class="collapse">
<li><a href="#lectures" id="toc-lectures" class="nav-link" data-scroll-target="#lectures">Lectures</a></li>
<li><a href="#seminars" id="toc-seminars" class="nav-link" data-scroll-target="#seminars">Seminars</a></li>
<li><a href="#tutorials" id="toc-tutorials" class="nav-link" data-scroll-target="#tutorials">Tutorials</a></li>
<li><a href="#evaluations" id="toc-evaluations" class="nav-link" data-scroll-target="#evaluations">Evaluations</a></li>
</ul></li>
<li><a href="#list-of-supervised-theses" id="toc-list-of-supervised-theses" class="nav-link" data-scroll-target="#list-of-supervised-theses">List of supervised theses</a></li>
<li><a href="#references-1" id="toc-references-1" class="nav-link" data-scroll-target="#references-1">References</a></li>
</ul>
</nav>
</div>
<!-- main -->
<main class="content" id="quarto-document-content">
<header id="title-block-header" class="quarto-title-block default">
<div class="quarto-title">
<h1 class="title">CV</h1>
</div>
<div class="quarto-title-meta">
</div>
</header>
<p>Please find the PDF of my CV <a href="https://raw.githubusercontent.com/hubchev/courses/main/cv/cv_Stephan_Huber.pdf">here</a>.</p>
<section id="current-positions" class="level1">
<h1>Current positions</h1>
<p><strong>Program Director</strong><br>
Hochschule Fresenius, Cologne</p>
<p>Computer Science (B.Sc./M.Sc.) <span style="float:right">since 12/2024</span><br>
Master of Business Administration (MBA-60 and MBA-90) <span style="float:right">since 05/2024</span><br>
Data Science for Business (M.Sc.) <span style="float:right">since 11/2023</span></p>
<p><strong>Employee</strong> <span style="float:right">since 11/2024</span><br>
Financial management, M. Huber, Altdorf</p>
<p><strong>Professor of International Economics and Data Science</strong> <span style="float:right">since 11/2020</span><br>
Hochschule Fresenius, Cologne</p>
</section>
<section id="past-positions" class="level1">
<h1>Past positions</h1>
<p><strong>Visiting professor</strong><br>
Petra Christian University in Surabaya, Indonesia <span style="float:right">08/2023 – 09/2023</span></p>
<p><strong>Lecturer</strong><br>
Frankfurt University of Applied Sciences <span style="float:right">11/2021 – 12/2021</span><br>
Hochschule Fresenius, Cologne <span style="float:right">03/2020 – 11/2020</span><br>
University of Applied Sciences Augsburg <span style="float:right">10/2018 – 02/2019</span><br>
University of Córdoba, Spain <span style="float:right">04/2019</span><br>
Technical University of Munich (TUM), Campus Straubing <span style="float:right">04/2018 – 07/2018</span><br>
University of Regensburg (Tutor) <span style="float:right">10/2006 – 03/2008</span></p>
<p><strong>Employment in research</strong><br>
IOS Regensburg (Post-Doc) <span style="float:right">10/2019 – 02/2020</span><br>
University of Regensburg (Research Assistant of Joachim Möller) <span style="float:right">10/2011 – 09/2019</span><br>
Charles University Prague, Czech Republic (freelancer) <span style="float:right">05/2014 – 10/2016</span><br>
Erasmus Mundus ‘CoDe Joint European Master’ (freelancer) <span style="float:right">04/2012 – 12/2014</span><br>
Jean Monnet Programme `INEQ’, University of Perugia, Italy (team member) <span style="float:right">09/2013 – 02/2014</span><br>
Osteuropa Institut, Regensburg (freelancer) <span style="float:right">11/2008 – 12/2010</span></p>
<p><strong>Employment in businesses</strong><br>
M. Huber, Altdorf , <span style="float:right">10/2019 – 04/2021</span><br>
Generalagentur und Immobilien M. Huber <span style="float:right">11/2018 – 09/2019</span><br>
Huber & Partner GmbH, Altdorf <span style="float:right">01/1999 – 10/2005</span><br>
E.ON Kernkraft, Niederaichbach (internship) <span style="float:right">09/2004 – 12/2004</span></p>
<p><strong>Self-employed</strong><br>
Tennis Instructor <span style="float:right">04/1997 – 09/2019</span><br>
Owner of a shop for scooter spare parts company in Regensburg <span style="float:right">02/2012 – 03/2017</span><br>
Owner of a retail shop for sporting goods in Altdorf <span style="float:right">06/2001 – 12/2001</span></p>
</section>
<section id="education" class="level1">
<h1>Education</h1>
<p><strong>Dr. rer. pol.</strong> (summa cum laude) <span style="float:right">07/2017</span><br>
University of Trier</p>
<p><strong>Postgraduate Study</strong> <span style="float:right">12/2008 – 10/2011</span><br>
Graduate Centre of Excellence, IAAEU Trier</p>
<p><strong>Diploma in Economics</strong> <span style="float:right">09/2002 – 08/2008</span><br>
University of Regensburg</p>
<p><strong>Abitur</strong> <span style="float:right">06/2002</span><br>
Maristen-Gymnasium Furth bei Landshut</p>
</section>
<section id="talks" class="level1">
<h1>Talks</h1>
<p>I have given more than 50 talks in Austria, Belgium, Canada, Czech Republic, England, Germany, Indonesia, Italy, Poland, Spain, and Switzerland. Here is a selection:</p>
<ul>
<li>Petra Christian University in <strong>Surabaya, Indonesia</strong> (invited):<br>
<a href="https://lnkd.in/eE_Aan5g">Inspirational Speech at the Graduation Ceremony</a> <span style="float:right">2023</span></li>
<li>Hochschule <strong>Landshut</strong> (invited) <span style="float:right">2022</span></li>
<li>Hochschule Fresenius, <strong>Cologne</strong> (invited) <span style="float:right">2020</span></li>
<li>Jacobs University, <strong>Bremen</strong> (invited) <span style="float:right">2019</span></li>
<li>Deutsche Bundesbank, <strong>Frankfurt</strong> <span style="float:right">2019</span></li>
<li>21st Workshop ‘Internationale Wirtschaftsbeziehungen’, <strong>Göttingen</strong> <span style="float:right">2019</span></li>
<li>Georg-August-Universität, <strong>Göttingen</strong> (invited) <span style="float:right">2018</span></li>
<li>Workshop on team dynamics and peer effects, IAAEU, <strong>Trier</strong> <span style="float:right">2018</span></li>
<li>European Trade Study Group (ETSG), 20th Annual Meeting, <strong>Warsaw</strong>, Poland <span style="float:right">2018</span></li>
<li>Behavioral and Empirical Work in Progress Seminar, TU <strong>Munich</strong> <span style="float:right">2018</span></li>
<li>ESCP Europe, <strong>Berlin</strong> (invited) <span style="float:right">2018</span></li>
<li>TU <strong>Chemnitz</strong> (invited) <span style="float:right">2018</span></li>
<li>PhD in Economics Seminar Series, Universität <strong>Perugia</strong>, Italy (invited) <span style="float:right">2018</span></li>
<li>Hamburgisches WeltWirtschaftsInstitut (HWWI), Hamburg (invited) <span style="float:right">2018</span></li>
<li>4th Workshop on FDI and Multinational Corporations, <strong>Mainz</strong> <span style="float:right">2017</span></li>
<li>Jahrestagung des Vereins für Socialpolitik, <strong>Wien</strong>, Österreich (with 2 papers) <span style="float:right">2017</span></li>
<li>Podiumsdiskussion des IHK-Gremiums, Schwandorf, <strong>Schwandorf</strong> (invited) <span style="float:right">2017</span></li>
<li>Spring Meeting of Young Economists, <strong>Halle</strong> <span style="float:right">2017</span></li>
<li>9th FIW-Research Conference: International Economics, <strong>Wien</strong>, Österreich <span style="float:right">2016</span></li>
<li>Jean Monnet Lecture jointly with Eric Verhoegen, <strong>Perugia</strong>, Italy (invited) <span style="float:right">2015</span></li>
<li>Annual Conference of the Canadian Economics Association, <strong>Toronto</strong>, Canada <span style="float:right">2015</span></li>
<li>Final event of the Jean Monnet research project INEQ, <strong>Assisi</strong>, Italy (invited) <span style="float:right">2014</span></li>
<li>Jean Monnet Seminar: INEQ, <strong>Perugia</strong>, Italy <span style="float:right">2013</span></li>
<li>3rd Brixen Workshop Summer School, <strong>Brixen</strong>, Italy (invited) <span style="float:right">2012</span></li>
<li>2nd Biannual Assisi Workshop on Economics and Institutions, <strong>Assisi</strong>, Italy <span style="float:right">2012</span></li>
<li>Spring Meeting of Young Economists, <strong>Mannheim</strong> <span style="float:right">2012</span></li>
<li>Internationaler Doktoranden-Workshop des Netzwerkes Personal-, Bildungs- und Organisationsökonomik, Schloss <strong>Hohentübingen</strong> <span style="float:right">2012</span></li>
<li>23rd Annual Meeting of the SASE, <strong>Madrid</strong>, Spain <span style="float:right">2011</span></li>
<li>Spring School der German Industrial Relations Association (GIRA), <strong>Trier</strong> <span style="float:right">2011</span></li>
<li>International Doctoral Workshop, <strong>Zurich</strong>, Switzerland <span style="float:right">2010</span></li>
<li>European Doctoral Workshop of IR, University of <strong>Warwick</strong>, England <span style="float:right">2009</span></li>
</ul>
</section>
<section id="research-stays" class="level1">
<h1>Research stays</h1>
<p><strong>University of Perugia</strong> <span style="float:right">2015, 2013, 2018</span><br>
Italy (overall more than 4 months)</p>
<p><strong>CERGE-EI Prague</strong> <span style="float:right">07/2012 – 08/2012</span><br>
Czech Republic (3 weeks)</p>
<p><strong>International Labour Organization (ILO)</strong> <span style="float:right">03/2011</span><br>
Geneva, Switzerland (1 week)</p>
<p><strong>ifo-Institut</strong> <span style="float:right">01/2010</span><br>
Dresden (1 week)</p>
</section>
<section id="awards-grants-and-scholarships" class="level1">
<h1>Awards, grants, and scholarships</h1>
<p><strong>ERASMUS+ and LLP-ERASMUS: Teaching mobility grant</strong><br>
University of Córdoba, Spain <span style="float:right">04/2019</span><br>
University of Perugia, Italy <span style="float:right">07/2017, 07/2015, 09/2013</span></p>
<p><strong>Invited guest: The Review of Economic Studies Tour Meeting</strong> <span style="float:right">05/2018</span><br>
CERGE-EI, Prague, Czech Republic</p>
<p><strong>Graduate Centre of Excellence: Full scholarship</strong> <span style="float:right">12/2008 – 12/2011</span><br>
<a href="https://www.iaaeg.de">IAAEU</a>, Trier</p>
</section>
<section id="referee-service" class="level1">
<h1>Referee service</h1>
<p><strong>Journals:</strong><br>
The Annals of Regional Science, Czech Journal of Economics and Finance (Finance a úvěr) (2x), Eastern European Economics, Economic Systems (7x), Energy, International Review of Economics and Finance, Journal of Conflict Resolution, Journal of Informetrics (2x), Journal of Development Studies (2x), Südosteuropa (Journal of Politics and Society), Oxford Economic Papers, Stata Journal, South African Journal of Economics (2x), The World Economy.</p>
<p><strong>Conferences:</strong><br>
IOS Jahrestagung, FIW Research Conference, Spring Meeting for Young Economist (since 2013)</p>
<p><strong>Students:</strong><br>
Member of the Audit Committee of the Ph.D. Program, Andrássy Universität Budapest<br>
23 Bachelor Theses<br>
67 Master Theses</p>
</section>
<section id="software-skills" class="level1">
<h1>Software skills</h1>
<p>Stata, R, Linux, LaTeX, RMarkdown, Quarto, Git, GitHub, EViews, SPSS, JMulti, Maple, …</p>
</section>
<section id="affiliations" class="level1">
<h1>Affiliations</h1>
<p>German Economic Association / Verein für Socialpolitik<br>
Research Fellow at the IOS Regensburg<br>
Canadian Economics Association (2015 – 2016)</p>
</section>
<section id="further-professional-education" class="level1">
<h1>Further professional education</h1>
<p><strong><a href="http://www.medientraining-fuer-wissenschaftler.de">Media and Communication Training</a></strong> <span style="float:right">11/2019</span><br>
IOS Regensburg</p>
<p><strong>3rd Brixen Workshop on International Trade and Finance</strong> <span style="float:right">09/2012</span><br>
Brixen, Italy (1 week)</p>
<p><strong>GIRA Spring School</strong> <span style="float:right">03/2011</span><br>
German Industrial Relations Association, IAAEU, Trier</p>
<p><strong>Advanced Studies Program</strong><br>
Institut for the World Economy, Kiel<br>
International Trade with Gianmarco Ottaviano (3 weeks) <span style="float:right">09/2010</span><br>
International Trade with Thierry Mayer (3 weeks) <span style="float:right">09/2009</span></p>
</section>
<section id="references" class="level1">
<h1>References</h1>
<p><strong>Prof. Dr. Richard Frensch</strong> <span style="float:right"><a href="mailto:frensch@ios-regensburg.de">frensch@ios-regensburg.de</a></span><br>
University of Regensburg and IOS Regensburg</p>
<p><strong>Prof. Dr. Xenia Matschke Ph.D.</strong> <span style="float:right"><a href="mailto:matschke@uni-trier.de">matschke@uni-trier.de</a></span><br>
University of Trier</p>
<p><strong>Prof. Dr. Dr. h.c. Joachim Möller</strong> <span style="float:right"><a href="mailto:joachim.moeller@wiwi.uni-regensburg.de">joachim.moeller@wiwi.uni-regensburg.de</a></span><br>
University of Regensburg and IAB Nuremberg</p>
<p><strong>Prof. Dr. Dr. h.c. Dieter Sadowski</strong> <span style="float:right"><a href="mailto:sadowski@iaaeu.de">sadowski@iaaeu.de</a></span><br>
University of Trier and IAAEU Trier</p>
</section>
<section id="publications" class="level1">
<h1>Publications</h1>
<p><strong>Monographs</strong></p>
<p><span class="citation" data-cites="Huber2018Product">Huber, S. <a href="#ref-Huber2018Product" role="doc-biblioref">(2018). <em>Product characteristics in international economics: Role and impact on economic development</em> (Contributions in Economics, p. 137). Springer.</a></span></p>
<p><strong>Articles</strong></p>
<p><span class="citation" data-cites="Frensch2021Openness">Frensch, R., Horvath, R., & Huber, S. <a href="#ref-Frensch2021Openness" role="doc-biblioref">(2021). Openness effects on the rule of law: Size and patterns of trade. <em>International Review of Law and Economics</em>, <em>68</em>, 106027. <span>https://doi.org/10.1016/j.irle.2021.106027</span></a></span></p>
<p><span class="citation" data-cites="Doblinger2019Converging">Doblinger, C., Soppe, B., & Huber, S. <a href="#ref-Doblinger2019Converging" role="doc-biblioref">(2019). Converging logics: Coopetitive ties and innovation in the early clean transportation industry. <em>Academy of Management Proceedings</em>, <em>2019</em>. <span>https://doi.org/10.5465/AMBPP.2019.148</span></a></span></p>
<p><span class="citation" data-cites="Huber2016Indicators">Huber, S. <a href="#ref-Huber2016Indicators" role="doc-biblioref">(2017). Indicators of product sophistication and factor intensities: Measurement matters [Working Paper]. <em>Journal of Economic and Social Measurement</em>, <em>42</em>, 27–65. <span>https://doi.org/10.3233/JEM-170440</span></a></span></p>
<p><span class="citation" data-cites="Huber2016Vertical">Huber, S., & Nguyen Than, B. <a href="#ref-Huber2016Vertical" role="doc-biblioref">(2016). Vertical specialization in the EU and the causality of trade. <em>Applied Economics Letters</em>, <em>24</em>, 329–333. <span>https://doi.org/10.1080/13504851.2016.1186791</span></a></span></p>
<p><span class="citation" data-cites="Eck2016Product">Eck, K., & Huber, S. <a href="#ref-Eck2016Product" role="doc-biblioref">(2016). Product sophistication and spillovers from foreign direct investment. <em>Canadian Journal of Economics</em>, <em>49</em>(4), 1658–1684. <span>https://doi.org/10.1111/caje.12247</span></a></span></p>
<p><span class="citation" data-cites="Huber2016Calculate">Huber, S., & Rust, C. <a href="#ref-Huber2016Calculate" role="doc-biblioref">(2016). Calculate travel time and distance with OpenStreetMap data using the open source routing machine (OSRM). <em>The Stata Journal</em>, <em>16</em>(2), 416–423. <span>https://doi.org/10.1177/1536867X1601600209</span></a></span></p>
<p><strong>Software</strong></p>
<!-- _The Stata module SXPOSE2 is frequently among the TOP-100 downloaded user-written programs and the Stata module OSRMTIME was one of the most purchased Stata journal articles for years._ -->
<p><span class="citation" data-cites="Huber2020SXPOSE2">Huber, S. <a href="#ref-Huber2020SXPOSE2" role="doc-biblioref">(2020). <em><span>SXPOSE2</span>: Stata module to transpose string and numeric variable dataset including variable names and labels</em>. Statistical Software Components, Boston College Department of Economics. <span>https://ideas.repec.org/c/boc/bocode/s458854.html</span></a></span></p>
<p><span class="citation" data-cites="Huber2016simcadi">Huber, S. <a href="#ref-Huber2016simcadi" role="doc-biblioref">(2017). <em>Simcadi: Similarity indices for categorical distributions</em>. SSRN. <span>https://doi.org/10.2139/ssrn.2870834</span></a></span></p>
<p><span class="citation" data-cites="Huber2017PRODY">Huber, S. <a href="#ref-Huber2017PRODY" role="doc-biblioref">(2017). <em><span>PRODY</span>: Stata module to calculate factor intensity and sophistication indicators</em> (Statistical Software Components S458329). Boston College Department of Economics. <span>https://ideas.repec.org/c/boc/bocode/s458329.html</span></a></span></p>
<p><span class="citation" data-cites="Huber2017EXPY">Huber, S. <a href="#ref-Huber2017EXPY" role="doc-biblioref">(2017). <em><span>EXPY</span>: Stata module to calculate the <span>EXPY</span>-index as proposed by <span>Hausmann</span> et al. (2007)</em> (Statistical Software Components S458328). Boston College Department of Economics. <span>https://ideas.repec.org/c/boc/bocode/s458328.html</span></a></span></p>
<p><span class="citation" data-cites="Huber2016OSRMTIME">Huber, S., & Rust, C. <a href="#ref-Huber2016OSRMTIME" role="doc-biblioref">(2016). <em><span>OSRMTIME</span>: Stata module to calculate travel time and distance with <span>Open-StreetMap</span> data using the <span>O</span>pen <span>S</span>ource <span>R</span>outing <span>M</span>achine (<span>OSRM</span>)</em>. GitHub. <span>https://github.com/christophrust/osrmtime</span></a></span></p>
<p><strong>Discussion paper</strong></p>
<p><span class="citation" data-cites="Bhaumik2021Political">Bhaumik, S. K., Frensch, R., & Huber, S. <a href="#ref-Bhaumik2021Political" role="doc-biblioref">(2021). <em>Political economy of labour market institutions in a globalised era</em> (Discussion Paper Series 14121). Institute of Labor Economics (IZA). <span>http://ftp.iza.org/dp14121.pdf</span></a></span></p>
<p><span class="citation" data-cites="Huber2021Einfuehrung">Huber, S. <a href="#ref-Huber2021Einfuehrung" role="doc-biblioref">(2021). <em>Einführung in die <span>Datenanalyse</span> mit <span>Stata</span></em> (Version 1.92). ResearchGate. <span>https://doi.org/10.13140/RG.2.2.12763.21284/1</span></a></span></p>
<p><span class="citation" data-cites="Huber2019Labor">Huber, S. <a href="#ref-Huber2019Labor" role="doc-biblioref">(2019). <em>Labor market rigidity, product characteristics and world trade at the goods level</em>. SSRN. <span>https://doi.org/10.2139/ssrn.2943444</span></a></span></p>
<p><span class="citation" data-cites="Huber2019Ostracism">Huber, S., Model, J., & Städter, S. <a href="#ref-Huber2019Ostracism" role="doc-biblioref">(2019). <em>Ostracism in alliances of teams and individuals: Voting, exclusion, contribution, and earnings</em> (IAAEU Discussion Papers 201901). Institute of Labour Law <span>and</span> Industrial Relations in the European Union (IAAEU). <span>https://ideas.repec.org/p/iaa/dpaper/201901.html</span></a></span></p>
<p><span class="citation" data-cites="Huber2016simcadi">Huber, S. <a href="#ref-Huber2016simcadi" role="doc-biblioref">(2017). <em>Simcadi: Similarity indices for categorical distributions</em>. SSRN. <span>https://doi.org/10.2139/ssrn.2870834</span></a></span></p>
<p><span class="citation" data-cites="Frensch2016Trade">Frensch, R., Horváth, R., & Huber, S. <a href="#ref-Frensch2016Trade" role="doc-biblioref">(2016). <em>Trade patterns and endogenous institutions: Global evidence</em> (IOS Working Paper 358). Institute of East; Southeast European Studies (IOS). <span>https://www.dokumente.ios-regensburg.de/publikationen/wp/wp_358.pdf</span></a></span></p>
<p><span class="citation" data-cites="Huber2014Wage">Huber, S., Perugini, C., & Pompei, F. <a href="#ref-Huber2014Wage" role="doc-biblioref">(2014). <em>Wage inequality and international trade: Micro data evidence for 22 european countries</em> (INEQ Working Paper Series 8). Jean Monnet Information; Research: Variety of Institutional Settings; Socio-Economic Inequalities in the Process of European Integration (INEQ).</a></span></p>
<p><span class="citation" data-cites="Huber2009">Huber, S. <a href="#ref-Huber2009" role="doc-biblioref">(2009). <em>Der <span>Erfolg</span> von <span>Flexicurity</span></em> (Working Paper 277). Osteuropa-Institut Regensburg.</a></span></p>
<p><strong>Contributions to published dissertations</strong></p>
<p><span class="citation" data-cites="NguyenThan2017Vertical">Nguyen Than, B., & Huber, S. <a href="#ref-NguyenThan2017Vertical" role="doc-biblioref">(2017). Vertical specialization in the EU and the causality of trade [Chapter in Dissertation]. In <em>The impact of economic uncertainty on housing, labor and financial markets</em> (pp. 69–77). Dissertation, University of Regensburg. <span>https://doi.org/10.5283/epub.36011</span></a></span></p>
<p><span class="citation" data-cites="Bresslein2016International">Breßlein, M., & Huber, S. <a href="#ref-Bresslein2016International" role="doc-biblioref">(2016). International trade in parts, components, and final goods: Who trades what with whom? In <em>Empirical aspects of trade, foreign direct investment and trade policy in times of global value chains</em> (pp. 54–77). Dissertation, OPUS, University of Trier. <span>https://doi.org/10.25353/ubtr-xxxx-b94c-9023</span></a></span></p>
<p><span class="citation" data-cites="Model2015Experimentelle">Model, J., & Huber, S. <a href="#ref-Model2015Experimentelle" role="doc-biblioref">(2015). Experimentelle <span>U</span>ntersuchung: <span>I</span>ndividual- und <span>T</span>eamentscheidungen. In <em>Einfluss der sozialen <span>Identität</span> auf kooperatives <span>Verhalten</span></em> (pp. 32–90). <span>https://epub.uni-regensburg.de/33208/</span></a></span></p>
<p><span class="citation" data-cites="Eck2013Impact">Eck, K., & Huber, S. <a href="#ref-Eck2013Impact" role="doc-biblioref">(2013). Product sophistication and spillovers from <span>FDI</span>. In <em>The impact of inter-firm finance and knowledge spillovers on exporting and product sophistication</em> (pp. 107–138). Dissertation, LMU M<span>ü</span>nchen. <span>https://doi.org/10.5282/edoc.15730</span></a></span></p>
<!-- # Other Projects -->
<!-- @Heid2020Party -->
<p><strong>Lecture materials</strong><br>
<a href="https://raw.githubusercontent.com/hubchev/courses/main/pdfs/cla_A4.pdf">Calculus and Linear Algebra</a><br>
<a href="https://hubchev.github.io/dadm">Data Analysis for Decision-Making</a><br>
<a href="https://hubchev.github.io/dsbl">Data Science for Business Leaders</a><br>
<a href="https://raw.githubusercontent.com/hubchev/courses/main/pdfs/econ_a4.pdf">Economics</a><br>
<a href="https://hubchev.github.io/ewa">Empirisch-Wissenschaftliches Arbeiten: Übung zur computergestützten Datenanalyse</a><br>
<a href="https://raw.githubusercontent.com/hubchev/courses/main/pdfs/Stata_Skript.pdf">Einführung in die Datenanalyse mit Stata</a><br>
<a href="https://hubchev.github.io/ds">How to Use R for Data Science</a><br>
<a href="https://hubchev.github.io/ie">International Economics</a><br>
<a href="https://hubchev.github.io/me">Managerial Economics</a><br>
<a href="https://hubchev.github.io/various/fivecents_html.html">My Five Cents on How to Write a Thesis: A Guide for My Students</a><br>
<a href="https://github.com/hubchev/courses/tree/main/exams">Past Exams</a><br>
<a href="https://hubchev.github.io/qm">Quantitative Methods</a><br>
<a href="https://github.com/hubchev/temp_apa_en">APA 7 Compliant Quarto Template for Writing a Thesis in English</a><br>
<a href="https://github.com/hubchev/temp_apa_de">APA 7 Compliant Quarto Template for Writing a Thesis in German</a><br>
<a href="https://www.overleaf.com/latex/templates/thesis-hsf/kmzcxdmcqgsq">LaTeX Template for Writing a Thesis at the HS Fresenius in Overleaf</a> or <a href="https://github.com/hubchev/courses/tree/main/tex/thesis_hsf">GitHub</a></p>
</section>
<section id="teaching" class="level1">
<h1>Teaching</h1>
<p></p>
<p>All courses have been taught in English, except for those with a German title.</p>
<section id="lectures" class="level2">
<h2 class="anchored" data-anchor-id="lectures">Lectures</h2>
<p><strong>Doctoral level</strong><br>
Datenanalyse mit Stata für Mobilität und Logistik <span style="float:right">@ Promotionszentrum Logistik & Mobilität (Frankfurt University of Applied Sciences)</span></p>
<p><strong>Master level</strong><br>
Applied Regional and International Economics <span style="float:right">@ University Regensburg</span><br>
Data Analysis for Decision-Making <span style="float:right">@ HS Fresenius</span><br>
Data Science for Business <span style="float:right">@ HS Fresenius</span><br>
Data Science for Business Leaders <span style="float:right">@ HS Fresenius</span><br>
Descriptive Statistics <span style="float:right">@ HS Fresenius</span><br>
Economics <span style="float:right">@ PCU, HS Fresenius</span><br>
Introduction to R <span style="float:right">@ HS Fresenius</span><br>
Judgment and Decision Making <span style="float:right">@ HS Fresenius</span><br>
Managerial Economics <span style="float:right">@ HS Fresenius</span><br>
Organization of International Businesses <span style="float:right">@ HS Fresenius</span><br>
Quantitative Methods <span style="float:right">@ HS Fresenius</span></p>
<p><strong>Bachelor level</strong><br>
Calculus and Linear Algebra <span style="float:right">@ HS Fresenius</span><br>
Data Science and Data Analytics <span style="float:right">@ HS Fresenius</span><br>
Economic Thinking in a Global Context <span style="float:right">@ HS Fresenius</span><br>
Einführung in die Datenanalyse mit Stata <span style="float:right">@ University Regensburg</span><br>
Empirie und Datenanalyse <span style="float:right">@ HS Fresenius</span><br>
Inferential Statistics <span style="float:right">@ HS Fresenius</span><br>
International Economics <span style="float:right">@ UAS Augsburg, HS Fresenius, University of Córdoba</span><br>
Macroeconomics <span style="float:right">@ HS Fresenius</span><br>
Market Research and Empirical Research Methods <span style="float:right">@ HS Fresenius</span><br>
Methoden der empirischen Wirtschaftsforschung <span style="float:right">@ Universität des Saarland</span><br>
Microeconomics <span style="float:right">@ HS Fresenius</span><br>
Programming language R for beginners <span style="float:right">@ HS Fresenius</span><br>
Volkswirtschaftslehre <span style="float:right">@ TU Munich</span></p>
</section>
<section id="seminars" class="level2">
<h2 class="anchored" data-anchor-id="seminars">Seminars</h2>
<p><strong>Doctoral level</strong><br>
Topics in International Trade and Development <span style="float:right">@ University Perugia</span><br>
Best Practices for Writing an Academic Paper Using Data <span style="float:right">@ PCU</span></p>
<p><strong>Master level</strong><br>
Regionalökonomie <span style="float:right">@ University Regensburg</span><br>
Work-Life-Balance und die Familienfreundlichkeit von Unternehmen <span style="float:right">@ University of Trier</span></p>
</section>
<section id="tutorials" class="level2">
<h2 class="anchored" data-anchor-id="tutorials">Tutorials</h2>
<p><strong>Master level</strong><br>
Makroökonomie <span style="float:right">@ University of Regensburg</span><br>
Regionalökonomie 2 <span style="float:right">@ University of Regensburg</span></p>
<p><strong>Bachelor level</strong><br>
Empirisch-Wissenschaftliches Arbeiten: Übung zur computergestützten Datenanalyse<br>
<span style="float:right">@ Charlotte Fresenius Hochschule</span><br>
Einführung in die Ökonometrie <span style="float:right">@ University of Regensburg</span><br>
Quantitative Wirtschaftsforschung <span style="float:right">@ University of Regensburg</span><br>
Regionalökonomie 1 <span style="float:right">@ University of Regensburg</span><br>
Makroökonomie <span style="float:right">@ University of Regensburg</span></p>
</section>
<section id="evaluations" class="level2">
<h2 class="anchored" data-anchor-id="evaluations">Evaluations</h2>
<p>The evaluations have been carried out by the academic dean. Students evaluated anonymously.</p>
<p><strong>Course</strong> <span style="float:right"><strong>Grade<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a></strong></span><br>
Data Science for Business (WS 23/24) <span style="float:right">1.6</span><br>
International Economics (WS 23/24) <span style="float:right">1.7</span><br>
Macroeconomics (WS 22/23) <span style="float:right">1.6</span><br>
Microeconomics (WS 22/23) <span style="float:right">1.0</span><br>
Economic Thinking in a Global Context (WS 22/23) <span style="float:right">1.6</span><br>
Datenanalyse mit Stata für Mobilität und Logistik (WS 21/22) <span style="float:right">1.3</span><br>
Judgment and Decision Making (SS 20) <span style="float:right">1.3</span><br>
Applied Regional and International Economics (SS 19) <span style="float:right">1.0</span><br>
Einführung in die Datenanalyse mit Stata (SS 19) <span style="float:right">1.0</span><br>
Regionalökonomie 1 (SS 18) <span style="float:right">1.5</span><br>
Regionalökonomie 2 (WS 17/18) <span style="float:right">1.3</span></p>
</section>
</section>
<section id="list-of-supervised-theses" class="level1">
<h1>List of supervised theses</h1>
<p><strong>Bachelor theses</strong></p>
<ol type="1">
<li>The Changes in the Corporate Real Estate Landscape in New York City due to the Coronavirus Pandemic</li>
<li>Die Migrationsströme aus der EU8 nach Deutschland unter besonderer Berücksichtigung der Regeln zur Arbeitnehmerfreizügigkeit</li>
<li>Ländliche Entwicklung unter dem Einfluss des demographischen Wandels – Am Beispiel der nördlichen Oberpfalz</li>
<li>Regionale Unterschiede in den Schulabbrecherquoten</li>
<li>Wage Inequality and International Trade in Europe: Does It Matter With Whom You Trade?</li>
<li>Do Rich Trading Partners Spur the Economic Convergence of Poor Countries?</li>
<li>Ökonomische Konvergenz durch Direktinvestitionen? Der Einfluss von länderspezifischen Finanzmarktinstitutionen</li>
<li>Der internationale Handel mit High-Tech-Gütern und dessen Bedeutung für Wirtschaftswachstum – eine Kritik</li>
<li>Einfluss der ILO-Arbeitsmarktkonventionen auf den Internationalen Handel</li>
<li>Die Analyse regionaler Beschäftigungsentwicklungen in Deutschland mit Hilfe der Shift-Share Methode</li>
<li>Konvergenz oder Divergenz von Regionen - Eine Untersuchung für Bayern</li>
<li>Der Einfluss von ILO Arbeits- und Sozialstandards auf internationale Handelsströme – Eine Kritik der empirischen Literatur</li>
<li>Die Qualifikation der Migranten in Deutschland – Eine langfristige Betrachtung</li>
<li>Der Einfluss ausländischer Direktinvestitionen auf das Wirtschaftswachstum – Eine empirische Herausforderung</li>
<li>Income Inequality: Does International Trade Matter?</li>
<li>Die Bedeutung von Importen für das Wirtschaftswachstum – eine empirische Analyse nach Gütergruppen</li>
<li>Zur Pathologie der ungleichen Lohnentwicklung in Deutschland</li>
<li>Die ökonomische Wirksamkeit von Instrumenten der Entwicklungshilfe</li>
<li>The Changes in the Corporate Real Estate Landscape in New York City due to the Corona Virus Pandemic</li>
<li>The Impact of National and Global Economic Shocks on International Trade</li>
<li>Generation Z in the US Job Market: Challenges and Strategies for Effective Human Resource Management</li>
<li>The Monetary Policy of the European Central Bank in Times of Crisis and in Normal Times</li>
<li>Unveiling the Nexus of Technological Evolution and Strategic Creativity: The Influence of Artificial Intelligence on Innovation Management</li>
</ol>
<p><strong>Master theses</strong></p>
<ol type="1">
<li>Die Arbeitsmarktentwicklung in der Slowakei seit dem EU-Beitritt - Eine Untersuchung anhand von Mikrodatensätzen</li>
<li>Der Zusammenhang zwischen demografischer Entwicklung und Immobilienmärkten – Eine Untersuchung für deutsche Regionen</li>
<li>Chancen und Risiken der europäischen Gemeinschaftswährung – theoretische Aspekte im Kontext der aktuellen Eurokrise</li>
<li>Eine Einschätzung des Konzeptes der Kreativen Klassen von R. Florida – Theoretische und empirische Aspekte</li>
<li>Der Fachkräftebedarf in grenznahen ländlichen Regionen in Bayern vor dem Hintergrund der demographischen Entwicklung – eine empirische Untersuchung am Beispiel des Landkreises Cham</li>
<li>Neue Konzepte zur breiteren Messung des Wohlstands - eine Anwendung auf deutsche Regionen</li>
<li>Konvergenz der wirtschaftlichen Entwicklung in der EU – mit besonderer Berücksichtigung von Bulgarien und Rumänien</li>
<li>Bohemiens, Humankapitalakkumulation und die wirtschaftliche Entwicklung deutscher Regionen – Eine Analyse des Kausalzusammenhangs unter Verwendung historischer Instrumentarien</li>
<li>RMB (Renminbi) Internationalisation and Financial Liberalisation in China</li>
<li>Internationale und intersektorale Lohnungleichheit in Europa: Eine Mehrländer-Analyse mit Mikrodaten</li>
<li>Kulturelle Diversität und langfristige ökonomische Entwicklung - Eine Untersuchung am Beispiel deutscher Regionen</li>
<li>Veränderungen in der Merkmalsstruktur der Einwanderer nach Deutschland</li>
<li>Die Auswirkungen von Kommunikationstechnologie auf ökonomische Konvergenz: eine Mehrländer Panel-Daten Analyse</li>
<li>Institutional Approach to the Development of Industrial Districts in the EU</li>
<li>Konvergenz– und Divergenzprozesse im Lichte der deutschen Wiedervereinigung</li>
<li>Die makroökonomische Entwicklung der Ukraine im Transformationsprozess</li>
<li>Ausländische Direktinvestitionen – Theoretische Erklärungsansätze und ihre regionalen Determinanten in deutschen Großstädten. Eine Untersuchung unter Verwendung von Mikrodaten</li>
<li>Determinanten ausländischer Direktinvestitionen im Raum Indien</li>
<li>Theoretische Argumente und empirische Belege zur Wirksamkeit der wirtschaftspolitischen Strategie ‘Horizon 2020’ der EU</li>
<li>Green Cities: Wie wirtschaften Ballungsräume ökologisch sinnvoll?</li>
<li>Die Qualitative Comparative Analysis als empirisches Tool zur Identifizierung und Evaluierung von Determinanten ausländischer Direktinvestitionen</li>
<li>Economic determinants of voting patterns in German districts</li>
<li>Internationaler Warenhandel differenziert nach Teilen, Komponenten und Endprodukten: Kritik und Evaluation der bestehenden Empirie</li>
<li>The Role of the Global Economy for the Prosperity of German Region</li>
<li>Disentangling the Determinants of Forced Migration</li>
<li>Inwieweit ist die Entwicklung der Produktivität U.S. amerikanischer Firmen standort- und industriespezifisch?</li>
<li>Komponenten ökonomischer Freiheit: Notwendig oder hilfreich für Aufholwachstum?</li>
<li>Die Auswirkungen internationaler Handelsbarrieren. Evaluationsmethoden im Vergleich</li>
<li>Die Bedeutung des internationalen Handels mit Dienstleistungen für ökonomisches Wachstum</li>
<li>Brexit und internationaler Handel: Allgemeine und regionalökonomische Konsequenzen</li>
<li>Die EU-Regionalpolitik zwischen Anspruch und Wirklichkeit</li>
<li>Institutionen und Reformen als Bausteine ökonomischer Prosperität: Eine empirische Analyse</li>
<li>Die ökonomische Relevanz des Breitbandausbaus in Deutschland</li>
<li>The Understanding and Meaning of Product Complexity in International Trade</li>
<li>Ökonomische Auswirkung von Handelskriegen: Theorie vs. Empirie</li>
<li>Der Einfluss von geo-referenzierten Daten auf die regionalökonomische Forschung</li>
<li>The influence of digitalization on the expansion strategy of Alibaba to Europe – A critical investigation</li>
<li>Blockchain Technology: Its Application in the Financial Sector and Cryptonomics</li>
<li>Influence of the Digital Transformation on the Profession of Alternative and Complementary Medicine Practitioners: Critical Analysis of a New Platform Strategy</li>
<li>Refinement of Cloud Products Integration in the Customer’s Business Processes to Identify New Services for Damovo: An Analysis in Finding Network and Security Partners on the Example of Damovo</li>
<li>How Can Yanfeng Integrate In-Vehicle Connected Services Into Their Portfolio to Meet Future Market Requirements?</li>
<li>Possibilities of European Economies to Deal with Material Shortages in the Construction Industry.</li>
<li>Mitigating and Managing Supply Chain Risks in the Electronics Industry: Lessons Learned From Laptop Supply Chains During COVID-19</li>
<li>Supply Chain Management 4.0 in China and Europe</li>
<li>Cultural and Ethical Issues in the Implementation of Artificial Intelligence Technologies in Business in China and Europe</li>
<li>Unlocking the Potential of Blockchain Technology in Global Supply Chain: Exploring Strategies to Overcome Implementation Obstacles</li>
<li>Optimizing Warehouse Operations Using Data-Driven Approaches: A Case Study of Flink</li>
<li>Achieving Supply Chain Resilience in the Sportswear Industry: Balancing Trade-offs for Success</li>
<li>Digital Technology Adoption in the Maritime Industry in Southeast Asia – Lessons Learned from Shipping Companies in Thailand</li>
<li>Traditional Empirical and State-of-the-Art Intelligent Methods in Credit Risk Assessment: A Best Practice Guide</li>
<li>Low-Cost Data Science Applications for Small and Medium Sized Enterprises: Opportunities and Challenges</li>
<li>From Excel to AI: Necessity and Strategies for Data Organization and Analysis in Scaling Enterprises</li>
<li>Transforming Heritage: Adaptive Reuse of Existing Office and Commercial Buildings into Modern Residential Spaces – An Integrated Study of Architectural Adaptation, Marketing and Financing Strategies in Germany</li>
<li>Security and Privacy in 5G-Enabled Smart Industry</li>
<li>Sustainability Improvements of Electric Vehicle Batteries Through Second-Life Applications: An Assessment of the Environmental and Socio-Economic Impacts</li>
<li>Optimierungsmöglichkeiten von Werbeausgaben durch Maschinelles Lernen am Beispiel von Toyota Deutschland</li>
<li>The Impact of IoT on Data Management in Clinical Trials in the Pharmaceutical Industry</li>
<li>Pricing Strategies and the Economics of Subscription Models in the Retail Sector</li>
<li>The Slow Mobile Wallet Payment Adoption in Germany: Causes and Solutions</li>
<li>Regulating Artificial Intelligence and Its Impact on Business and Innovation</li>
<li>Strategies for Using Real-Time Data to Optimize Resource Allocation in the Plastic Manufacturing Industry</li>
<li>Evaluating Current and Future Regulations Against Financial Fraud in the European Union</li>
<li>An Analysis of the Integration of Management Control Systems in European Software and Tech Start-ups</li>
<li>The Role of Computer-Assisted Indexation in Supporting SMEs</li>
<li>Financial Forecasting: An Advance Machine Learning Model Study on DAX 40 Index</li>
<li>Developing a Cost-Effective Smart Production Framework for Electric Vehicle Battery Manufacturing: A Simulation-Based Study for Enhancing Quality, Efficiency, and Sustainability in Tier 2 Companies</li>
<li>Currency Manipulation Instruments and the Impact of Chinese Players on the US Dollar</li>
<li>Implementation of a CapsNet-GNN Architecture in Space Debris Detection and Classification for Space Situational Awareness</li>
</ol>
</section>
<section id="references-1" class="level1">
</section>
<div id="quarto-appendix" class="default"><section class="quarto-appendix-contents" role="doc-bibliography" id="quarto-bibliography"><h2 class="anchored quarto-appendix-heading">References</h2><div id="refs" class="references csl-bib-body hanging-indent" data-entry-spacing="0" data-line-spacing="2" role="list">
<div id="ref-Bhaumik2021Political" class="csl-entry" role="listitem">
Bhaumik, S. K., Frensch, R., & Huber, S. (2021). <em>Political economy of labour market institutions in a globalised era</em> (Discussion Paper Series 14121). Institute of Labor Economics (IZA). <a href="http://ftp.iza.org/dp14121.pdf">http://ftp.iza.org/dp14121.pdf</a>
</div>
<div id="ref-Frensch2021Openness" class="csl-entry" role="listitem">
Frensch, R., Horvath, R., & Huber, S. (2021). Openness effects on the rule of law: Size and patterns of trade. <em>International Review of Law and Economics</em>, <em>68</em>, 106027. <a href="https://doi.org/10.1016/j.irle.2021.106027">https://doi.org/10.1016/j.irle.2021.106027</a>
</div>
<div id="ref-Huber2021Einfuehrung" class="csl-entry" role="listitem">
Huber, S. (2021). <em>Einführung in die <span>Datenanalyse</span> mit <span>Stata</span></em> (Version 1.92). ResearchGate. <a href="https://doi.org/10.13140/RG.2.2.12763.21284/1">https://doi.org/10.13140/RG.2.2.12763.21284/1</a>
</div>
<div id="ref-Huber2020SXPOSE2" class="csl-entry" role="listitem">
Huber, S. (2020). <em><span>SXPOSE2</span>: Stata module to transpose string and numeric variable dataset including variable names and labels</em>. Statistical Software Components, Boston College Department of Economics. <a href="https://ideas.repec.org/c/boc/bocode/s458854.html">https://ideas.repec.org/c/boc/bocode/s458854.html</a>
</div>
<div id="ref-Doblinger2019Converging" class="csl-entry" role="listitem">
Doblinger, C., Soppe, B., & Huber, S. (2019). Converging logics: Coopetitive ties and innovation in the early clean transportation industry. <em>Academy of Management Proceedings</em>, <em>2019</em>. <a href="https://doi.org/10.5465/AMBPP.2019.148">https://doi.org/10.5465/AMBPP.2019.148</a>
</div>
<div id="ref-Huber2019Labor" class="csl-entry" role="listitem">
Huber, S. (2019). <em>Labor market rigidity, product characteristics and world trade at the goods level</em>. SSRN. <a href="https://doi.org/10.2139/ssrn.2943444">https://doi.org/10.2139/ssrn.2943444</a>
</div>
<div id="ref-Huber2019Ostracism" class="csl-entry" role="listitem">
Huber, S., Model, J., & Städter, S. (2019). <em>Ostracism in alliances of teams and individuals: Voting, exclusion, contribution, and earnings</em> (IAAEU Discussion Papers 201901). Institute of Labour Law <span>and</span> Industrial Relations in the European Union (IAAEU). <a href="https://ideas.repec.org/p/iaa/dpaper/201901.html">https://ideas.repec.org/p/iaa/dpaper/201901.html</a>
</div>
<div id="ref-Huber2018Product" class="csl-entry" role="listitem">
Huber, S. (2018). <em>Product characteristics in international economics: Role and impact on economic development</em> (Contributions in Economics, p. 137). Springer.
</div>
<div id="ref-Huber2017EXPY" class="csl-entry" role="listitem">
Huber, S. (2017). <em><span>EXPY</span>: Stata module to calculate the <span>EXPY</span>-index as proposed by <span>Hausmann</span> et al. (2007)</em> (Statistical Software Components S458328). Boston College Department of Economics. <a href="https://ideas.repec.org/c/boc/bocode/s458328.html">https://ideas.repec.org/c/boc/bocode/s458328.html</a>
</div>
<div id="ref-Huber2016Indicators" class="csl-entry" role="listitem">
Huber, S. (2017). Indicators of product sophistication and factor intensities: Measurement matters [Working Paper]. <em>Journal of Economic and Social Measurement</em>, <em>42</em>, 27–65. <a href="https://doi.org/10.3233/JEM-170440">https://doi.org/10.3233/JEM-170440</a>
</div>
<div id="ref-Huber2017PRODY" class="csl-entry" role="listitem">
Huber, S. (2017). <em><span>PRODY</span>: Stata module to calculate factor intensity and sophistication indicators</em> (Statistical Software Components S458329). Boston College Department of Economics. <a href="https://ideas.repec.org/c/boc/bocode/s458329.html">https://ideas.repec.org/c/boc/bocode/s458329.html</a>
</div>
<div id="ref-Huber2016simcadi" class="csl-entry" role="listitem">
Huber, S. (2017). <em>Simcadi: Similarity indices for categorical distributions</em>. SSRN. <a href="https://doi.org/10.2139/ssrn.2870834">https://doi.org/10.2139/ssrn.2870834</a>
</div>
<div id="ref-NguyenThan2017Vertical" class="csl-entry" role="listitem">
Nguyen Than, B., & Huber, S. (2017). Vertical specialization in the EU and the causality of trade [Chapter in Dissertation]. In <em>The impact of economic uncertainty on housing, labor and financial markets</em> (pp. 69–77). Dissertation, University of Regensburg. <a href="https://doi.org/10.5283/epub.36011">https://doi.org/10.5283/epub.36011</a>
</div>
<div id="ref-Bresslein2016International" class="csl-entry" role="listitem">
Breßlein, M., & Huber, S. (2016). International trade in parts, components, and final goods: Who trades what with whom? In <em>Empirical aspects of trade, foreign direct investment and trade policy in times of global value chains</em> (pp. 54–77). Dissertation, OPUS, University of Trier. <a href="https://doi.org/10.25353/ubtr-xxxx-b94c-9023">https://doi.org/10.25353/ubtr-xxxx-b94c-9023</a>
</div>
<div id="ref-Eck2016Product" class="csl-entry" role="listitem">
Eck, K., & Huber, S. (2016). Product sophistication and spillovers from foreign direct investment. <em>Canadian Journal of Economics</em>, <em>49</em>(4), 1658–1684. <a href="https://doi.org/10.1111/caje.12247">https://doi.org/10.1111/caje.12247</a>
</div>
<div id="ref-Frensch2016Trade" class="csl-entry" role="listitem">
Frensch, R., Horváth, R., & Huber, S. (2016). <em>Trade patterns and endogenous institutions: Global evidence</em> (IOS Working Paper 358). Institute of East; Southeast European Studies (IOS). <a href="https://www.dokumente.ios-regensburg.de/publikationen/wp/wp_358.pdf">https://www.dokumente.ios-regensburg.de/publikationen/wp/wp_358.pdf</a>
</div>
<div id="ref-Huber2016Vertical" class="csl-entry" role="listitem">
Huber, S., & Nguyen Than, B. (2016). Vertical specialization in the EU and the causality of trade. <em>Applied Economics Letters</em>, <em>24</em>, 329–333. <a href="https://doi.org/10.1080/13504851.2016.1186791">https://doi.org/10.1080/13504851.2016.1186791</a>
</div>
<div id="ref-Huber2016Calculate" class="csl-entry" role="listitem">
Huber, S., & Rust, C. (2016). Calculate travel time and distance with OpenStreetMap data using the open source routing machine (OSRM). <em>The Stata Journal</em>, <em>16</em>(2), 416–423. <a href="https://doi.org/10.1177/1536867X1601600209">https://doi.org/10.1177/1536867X1601600209</a>
</div>
<div id="ref-Huber2016OSRMTIME" class="csl-entry" role="listitem">
Huber, S., & Rust, C. (2016). <em><span>OSRMTIME</span>: Stata module to calculate travel time and distance with <span>Open-StreetMap</span> data using the <span>O</span>pen <span>S</span>ource <span>R</span>outing <span>M</span>achine (<span>OSRM</span>)</em>. GitHub. <a href="https://github.com/christophrust/osrmtime">https://github.com/christophrust/osrmtime</a>
</div>
<div id="ref-Model2015Experimentelle" class="csl-entry" role="listitem">
Model, J., & Huber, S. (2015). Experimentelle <span>U</span>ntersuchung: <span>I</span>ndividual- und <span>T</span>eamentscheidungen. In <em>Einfluss der sozialen <span>Identität</span> auf kooperatives <span>Verhalten</span></em> (pp. 32–90). <a href="https://epub.uni-regensburg.de/33208/">https://epub.uni-regensburg.de/33208/</a>
</div>
<div id="ref-Huber2014Wage" class="csl-entry" role="listitem">
Huber, S., Perugini, C., & Pompei, F. (2014). <em>Wage inequality and international trade: Micro data evidence for 22 european countries</em> (INEQ Working Paper Series 8). Jean Monnet Information; Research: Variety of Institutional Settings; Socio-Economic Inequalities in the Process of European Integration (INEQ).
</div>
<div id="ref-Eck2013Impact" class="csl-entry" role="listitem">
Eck, K., & Huber, S. (2013). Product sophistication and spillovers from <span>FDI</span>. In <em>The impact of inter-firm finance and knowledge spillovers on exporting and product sophistication</em> (pp. 107–138). Dissertation, LMU M<span>ü</span>nchen. <a href="https://doi.org/10.5282/edoc.15730">https://doi.org/10.5282/edoc.15730</a>
</div>
<div id="ref-Huber2009" class="csl-entry" role="listitem">
Huber, S. (2009). <em>Der <span>Erfolg</span> von <span>Flexicurity</span></em> (Working Paper 277). Osteuropa-Institut Regensburg.
</div>
</div></section><section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes"><h2 class="anchored quarto-appendix-heading">Footnotes</h2>
<ol>
<li id="fn1"><p>grading scale goes from 1 (very good) to 6 (bad fail)<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section></div></main> <!-- /main -->
<script id="quarto-html-after-body" type="application/javascript">
window.document.addEventListener("DOMContentLoaded", function (event) {
// Ensure there is a toggle, if there isn't float one in the top right
if (window.document.querySelector('.quarto-color-scheme-toggle') === null) {
const a = window.document.createElement('a');
a.classList.add('top-right');
a.classList.add('quarto-color-scheme-toggle');
a.href = "";
a.onclick = function() { try { window.quartoToggleColorScheme(); } catch {} return false; };
const i = window.document.createElement("i");
i.classList.add('bi');
a.appendChild(i);
window.document.body.appendChild(a);
}
setColorSchemeToggle(hasAlternateSentinel())
const icon = "";
const anchorJS = new window.AnchorJS();
anchorJS.options = {
placement: 'right',
icon: icon
};
anchorJS.add('.anchored');
const isCodeAnnotation = (el) => {
for (const clz of el.classList) {
if (clz.startsWith('code-annotation-')) {
return true;
}
}
return false;
}
const onCopySuccess = function(e) {
// button target
const button = e.trigger;
// don't keep focus
button.blur();
// flash "checked"
button.classList.add('code-copy-button-checked');
var currentTitle = button.getAttribute("title");
button.setAttribute("title", "Copied!");
let tooltip;
if (window.bootstrap) {
button.setAttribute("data-bs-toggle", "tooltip");
button.setAttribute("data-bs-placement", "left");
button.setAttribute("data-bs-title", "Copied!");
tooltip = new bootstrap.Tooltip(button,
{ trigger: "manual",
customClass: "code-copy-button-tooltip",
offset: [0, -8]});
tooltip.show();
}
setTimeout(function() {
if (tooltip) {
tooltip.hide();
button.removeAttribute("data-bs-title");
button.removeAttribute("data-bs-toggle");
button.removeAttribute("data-bs-placement");
}
button.setAttribute("title", currentTitle);
button.classList.remove('code-copy-button-checked');
}, 1000);
// clear code selection
e.clearSelection();
}
const getTextToCopy = function(trigger) {
const codeEl = trigger.previousElementSibling.cloneNode(true);
for (const childEl of codeEl.children) {
if (isCodeAnnotation(childEl)) {
childEl.remove();
}
}
return codeEl.innerText;
}
const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', {
text: getTextToCopy
});
clipboard.on('success', onCopySuccess);
if (window.document.getElementById('quarto-embedded-source-code-modal')) {
const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', {
text: getTextToCopy,
container: window.document.getElementById('quarto-embedded-source-code-modal')
});
clipboardModal.on('success', onCopySuccess);
}
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
var mailtoRegex = new RegExp(/^mailto:/);
var filterRegex = new RegExp("https:\/\/github\.com\/hubchev\/hubchev\.github\.io\/");
var isInternal = (href) => {
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
}
// Inspect non-navigation links and adorn them if external
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool):not(.about-link)');
for (var i=0; i<links.length; i++) {
const link = links[i];
if (!isInternal(link.href)) {
// undo the damage that might have been done by quarto-nav.js in the case of
// links that we want to consider external
if (link.dataset.originalHref !== undefined) {
link.href = link.dataset.originalHref;
}
}
}
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
const config = {
allowHTML: true,
maxWidth: 500,
delay: 100,
arrow: false,
appendTo: function(el) {
return el.parentElement;
},
interactive: true,
interactiveBorder: 10,
theme: 'quarto',
placement: 'bottom-start',
};
if (contentFn) {
config.content = contentFn;
}
if (onTriggerFn) {
config.onTrigger = onTriggerFn;
}
if (onUntriggerFn) {
config.onUntrigger = onUntriggerFn;
}
window.tippy(el, config);
}
const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]');
for (var i=0; i<noterefs.length; i++) {
const ref = noterefs[i];
tippyHover(ref, function() {
// use id or data attribute instead here
let href = ref.getAttribute('data-footnote-href') || ref.getAttribute('href');
try { href = new URL(href).hash; } catch {}
const id = href.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
if (note) {
return note.innerHTML;
} else {
return "";
}
});
}
const xrefs = window.document.querySelectorAll('a.quarto-xref');
const processXRef = (id, note) => {
// Strip column container classes
const stripColumnClz = (el) => {
el.classList.remove("page-full", "page-columns");
if (el.children) {
for (const child of el.children) {
stripColumnClz(child);
}
}
}
stripColumnClz(note)
if (id === null || id.startsWith('sec-')) {
// Special case sections, only their first couple elements