-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
636 lines (597 loc) · 30.8 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
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"
/>
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="format-detection" content="email=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="format-detection" content="telephone=no" />
<meta name="renderer" content="webkit">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Amaze UI" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<title>XIE Jia</title>
<link rel="shortcut icon" href="assets/images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="assets/css/typo.css">
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/index.css">
<script>
function showimg() {
document.getElementsByClassName('avatar')[0].style.display = 'block';
document.getElementsByClassName('loading')[0].style.display = 'none';
}
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-L2YZD4SDN8"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-L2YZD4SDN8');
</script>
</head>
<body>
<header class="header"></header>
<article class="container">
<section class="side" id="side">
<!-- 左栏固定开关 Start-->
<!-- label class="switch" style="display: none;" onchange="switchFixed()">
<script type="text/javaScript">
function switchFixed(){
var value = document.getElementById('side').style.position === 'fixed' ? 'absolute' : 'fixed';
document.getElementById('side').style.position = value;
}
</script>
<input id="cb" type="checkbox">
<span class="slider round"></span>
</label>
<style>
@media (min-width: 750px){
.switch{position:relative;display:inline-block!important;width:60px;height:34px;}
.switch input{display:block;}
.slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;-webkit-transition:.4s;transition:.4s;}
.slider:before{position:absolute;content:"";height:26px;width:26px;left:4px;bottom:4px;background-color:white;-webkit-transition:.4s;transition:.4s;}
input:checked + .slider{background-color:#1abc9c;}
input:focus + .slider{box-shadow:0 0 1px #1abc9c;}
input:checked + .slider:before{-webkit-transform:translateX(26px);-ms-transform:translateX(26px);transform:translateX(26px);}.slider.round{border-radius:34px;}
.slider.round:before{border-radius:50%;}
}
</style>
<!-- 左侧固定开关 End-->
<!-- 语言切换 -->
<section class="SWITCHLANGUAGES-unit" style="display: block">
<h2>Choose Language:
<span class="SWITCHLANGUAGES">
<a href="ch.html" target="_self">中文</a>
<a href="de.html" target="_self">Deutsch</a>
</span>
<hr/>
<br> </br>
</section>
<!-- 个人肖像 -->
<section class="me">
<section class="portrait">
<div class="loading">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<!-- 头像照片 -->
<img class="avatar" src="assets/images/avatar.jpg" onload="showimg()">
</section>
<h1 class="name">XIE Jia</h1>
<h4 class="info-job">Uni Heidelberg / Student</h4>
</section>
<!-- 基本信息 -->
<section class="profile info-unit">
<h2>
<i class="fa fa-user" aria-hidden="true"></i>Info</h2>
<hr/>
<ul>
<li>
<label>Basic</label>
<span>he/his/him</span>
</li>
<li>
<label>Location</label>
<span>Heidelberg</span>
</li>
</ul>
</section>
<!-- 联系方式 -->
<section class="contact info-unit">
<h2>
<i class="fa fa-envelope" aria-hidden="true"></i>Contact Me</h2>
<hr/>
<ul>
<li>
<label>Email</label>
<a href="rg194@uni-heidelberg.de" target="_blank">rg194@uni-heidelberg.de</a>
</li>
<li>
<label>Blog</label>
<a href="https://DHHD2022.github.io" target="_blank">DHHD2022.github.io/</a>
</li>
<li>
<label>Github</label>
<a href="https://github.com/xiejia1995" target="_blank">xiejia1995</a>
</li>
</ul>
</section>
<!-- 语言技能 -->
<section class="skill info-unit">
<h2>
<i class="fa fa-language" aria-hidden="true"></i>Languages</h2>
<hr/>
<ul>
<li>
<label>Chinese</label>
<progress value="100" max="100"></progress>
</li>
<li>
<label>Classic Chinese</label>
<progress value="100" max="100"></progress>
</li>
<li>
<label>English</label>
<progress value="99" max="100"></progress>
</li>
<li>
<label>German</label>
<progress value="90" max="100"></progress>
</li>
<li>
<label>Japanese</label>
<progress value="60" max="100"></progress>
</li>
<li>
<label>French</label>
<progress value="30" max="100"></progress>
</li>
<li>
<label>Korean</label>
<progress value="20" max="100"></progress>
</li>
</ul>
</section>
<!-- section class="qrcode info-unit">
<h2><i class="fa fa-qrcode" aria-hidden="true"></i>QR-Code</h2>
<hr/>
<img src="https://github.com/if2er/FeZaoDuKe-Collection/blob/master/ifeees.jpg?raw=true" style="width: 100%;" alt="">
</section>-->
<!-- 技术栈 -->
<!-- <div class="stack info-unit">
<h2><i class="fa fa-code" aria-hidden="true"></i>其他</h2>
<hr/>
<ul>
<li>
<label>前端</label>
<span>React、jQuery、微信小程序、Bootstrap、SASS、LESS</span>
</li>
<li>
<label>后端</label>
<span>Node.js、MySQL、MongoDB、WordPress、ThinkPHP</span>
</li>
<li>
<label>其他</label>
<span>Git、SVN、Markdown</span>
</li>
</ul>
</div> -->
</section>
<section class="main">
<!-- 教育经历 -->
<section class="edu info-unit">
<h2>
<i class="fa fa-graduation-cap" aria-hidden="true"></i>Education Background</h2>
<hr/>
<ul>
<li>
<h3>
<span>The University of Heidelberg, Germany - Transcultural Studies (Ph.D) </span>
<time>2021-now</time>
</h3>
</li>
<li>
<h3>
<span>The University of Heidelberg, Germany - Transcultural Studies (M.A.) </span>
<time>2017-2020</time>
</h3>
</li>
<li>
<h3>
<span>Nanjing Normal University, China - Chinese Language and Literature (B.A.)</span>
<time>2013-2017</time>
</h3>
</li>
</ul>
</section>
<!-- 工作经历 -->
<section class="work info-unit">
<h2>
<i class="fa fa-laptop" aria-hidden="true"></i>Professional Experience</h2>
<hr/>
<ul>
<li>
<h3>
<span>
Assistant - <a href="https://www.hadw-bw.de/forschung/forschungsstelle/buddhistische-steininschriften-nordchina" target="_blank">
Project of Buddhist Stone Inscriptions in China
</a>
</span>
<time>2024-2025</time>
</h3>
<ul class="info-content">
<li>Heidelberg Academy of Sciences and Humanities</li>
</ul>
</li>
<li>
<h3>
<span>
Assistant -<a href="https://project.zo.uni-heidelberg.de/library/exhibitions/yao/#/" target="_blank">
Digitization Project of Yao-Manuscripts</a>
</span>
<time>2023</time>
</h3>
<ul class="info-content">
<li>CATS Library, the University of Heidelberg</li>
</ul>
</li>
<li>
<h3>
<span>Lecturer - M.A course “Digital Humanities Methods in Literary and Cultural Research for Sinologists” </span>
<time>2022-2023</time>
</h3>
<ul class="info-content">
<li>Institute for Sinology, the University of Heidelberg</li>
</ul>
</li>
<li>
<h3>
<span>Assistant - <a href="https://uni-heidelberg.de/ecpo/" target="_blank">Early Chinese Periodicals Online Project (ECPO)</a></span>
<time>2018-2022</time>
</h3>
<ul class="info-content">
<li>the University of Heidelberg</li>
</ul>
</li>
</ul>
</section>
<!-- Other experience-->
<section class="work info-unit">
<h2>
<i class="fa fa-sticky-note" aria-hidden="true"></i>Other Experience</h2>
<hr/>
<ul>
<li>
<h3>
<span>Co-founder of HEADs (Heidelberg East Asian Digital Humanities) group
</span>
<time>2022-now</time>
</h3>
<ul class="info-content">
<li>
<a href="https://DHHD2022.github.io" target="_blank">DHHD2022.github.io/</a></li>
</ul>
</li>
<li>
<h3>
<span>Student researcher at Research Center for Digital Humanities of Renmin University of China
</span>
<time>2022-2023</time>
</h3>
<ul class="info-content">
<li>responsible for translating academic papers</li>
</ul>
</li>
<li>
<h3>
<span>Member of Popular Culture Research Group
</span>
<time>2021-now</time>
</h3>
<ul class="info-content">
<li>by Prof. Barbara Mittler</li>
</ul>
</li>
</ul>
</section>
<!-- Publications -->
<section class="work info-unit">
<h2>
<i class="fa fa-book" aria-hidden="true"></i>Publications</h2>
<hr/>
<ul>
<li>
<h3>
<span>Journal Articles (English)</span>
</h3>
<ul class="info-content">
<li>XIE, Jia, Shimin Zhang, and Xiaojie Chang. “Reflection on Digital Humanities Teaching in a German University's Chinese Studies Classroom”
<i>Critical Theory</i>, vol.8, no.2 (2024): 120-130. DOI: <a href="https://www.wsp-publishing.com/en/article/doi/10.47297/wspctWSP2515-470213.20240802/" target="_blank">10.47297/wspctWSP2515-470213.20240802</a></li>
</ul>
<ul class="info-content">
<li>Arnold, Matthias, Duncan Paterson, and Jia Xie. “Procedural challenges: the FAIR principles and PRC electronic resources - a case study of Chinese republican newspapers.”
<i>International Journal of Digital Humanities</i>, special Issue on “Digital Humanities and East Asian Studies” (2022). DOI: <a href="https://doi.org/10.1007/s42803-022-00055-6" target="_blank">https://doi.org/10.1007/s42803-022-00055-6 </a></li>
</ul>
</li>
<li>
<h3>
<span>Journal Articles (Chinese)</span>
</h3>
<ul class="info-content">
<li>Xie, Jia, and Suk Man Yip. “Challenges and Thoughts in Making Text Ground Truth for Republican Chinese Newspaper: Taking Jing Bao as an Example - CNKI” [民国报纸文本基准真值制作的挑战与思考——以《晶报》为例]. Digital Humanities Research [数字人文研究], no. 4 (2023): 49–62.</li>
</ul>
</li>
<li>
<h3>
<span>Translations (English -> Chinese)</span>
</h3>
<ul class="info-content">
<li>Spence, Paul Joseph and Renata Brandao. “Towards Language Sensitivity and Diversity in the Digital Humanities”[数字人文中的语言敏感性和多样性] <i>Digital Humanities Research</i> [数字人文研究] 2, no. 3 (August 8, 2022): 3–20. <a href="http://dhr.ruc.edu.cn/CN/Y2022/V2/I3/3" target="_blank">http://dhr.ruc.edu.cn/CN/Y2022/V2/I3/3</a></li>
</ul>
<ul class="info-content">
<li>Arnold, Matthias. “Multilingual Research Projects: Non-Latin Script Challenges for Making Use of Standards, Authority Files, and Character Recognition” [多语言研究项目:非拉丁文字(NLS)利用标准、权威文件和字符识别的挑战*]
<a href="https://zenodo.org/records/11112286" target="_blank">https://zenodo.org/records/11112286</a></li>
</ul>
</li>
</ul>
</section>
<!-- 会议经验 -->
<section class="project info-unit">
<h2>
<i class="fa fa-comments" aria-hidden="false"></i>Presentations and Conferences</h2>
<hr/>
<ul>
<li>
<h3>
<span>[Materials, Media, and Methods: Digital Issues in East Asian Studies]
</span>
<span class="link">
<a href="http://dhconf2022.github.io" target="_blank">link</a>
</span>
<time>2023 Feb</time>
</h3>
<ul class="info-content">
<li>hybrid format conference, funded by German Research Foundation (DFG) Priority Program “The Digital Image”</li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
The University of Heidelberg, Germany
<br/>
</li>
<li>
<i class="fa fa-users" aria-hidden="true"></i>
[Co-orgnizers] Fengyu Wang, Xiaojie Chang, and Shinmin Zhang
<br/>
</li>
</ul>
</li>
<li>
<h3>
<span>[China Digital Humanities Conference 2022 (中国数字人文年会)]
</span>
<span class="link">
<a href="http://dh.ruc.edu.cn/xwgg/34cb9f3b0e234f68a65145e0de27af1b.htm" target="_blank">link</a>
</span>
<time>2022 Nov</time>
</h3>
<ul class="info-content">
<li>Paper Presentation (Received the Outstanding Paper Award): “Challenges and Thoughts in Making Text Ground Truth for Republican Chinese Newspaper”</li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
Online
<br/>
</li>
<li>
<i class="fa fa-users" aria-hidden="true"></i>
[Team] YIP Suk Man
<br/>
</li>
</ul>
</li>
<li>
<h3>
<span>[Digital Orientalist 2022]
</span>
<span class="link">
<a href="https://digitalorientalist.com/digital-orientalists-2022-conference-infrastructure-abstracts/" target="_blank">link</a>
</span>
<time>2022 Jun</time>
</h3>
<ul class="info-content">
<li>Title: “Making Ground Truth for Republican Chinese Newspaper: Taking Jing Bao as an example” </li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
Online, <a href="https://www.youtube.com/watch?v=HIXU3yzcSK8&ab_channel=TheDigitalOrientalist" target="_blank">video recording</a>
<br/>
</li>
<li>
<i class="fa fa-users" aria-hidden="true"></i>
[Team] YIP Suk Man
<br/>
</li>
</ul>
</li>
<li>
<h3>
<span>[Presentation at Konfuzius-Institut]
</span>
<span class="link">
<a href="https://konfuzius-institut-heidelberg.de/event/online-vortrag-early-chinese-periodicals-online-ecpo-ein-projekt-stellt-sich-vor/" target="_blank">link</a>
</span>
<time>2022 May</time>
</h3>
<ul class="info-content">
<li>Title: "Early Chinese Periodicals Online (ECPO) – ein Projekt stellt sich vor." </li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
Online, <a href="https://www.bilibili.com/video/BV1nN4y1g7Zo/?share_source=copy_web" target="_blank">video recording</a>
<br/>
</li>
<li>
<i class="fa fa-users" aria-hidden="true"></i>
[Team] Matthias Arnold; YIP Suk Man; and Konstantin Henke
<br/>
</li>
</ul>
</li>
<li>
<h3>
<span>[Series “Werkstattgespräche” of the Heidelberg Forum Digital Humanities]
</span>
<time>2021 Oct</time>
</h3>
<ul class="info-content">
<li>Title: Die Erschließung der republikzeitlichen chinesischen Presse: Der Einsatz von Ground Truth, Neuronalen Netzwerken und OCR im Langzeitprojekt 'Early Chinese Periodicals Online' (ECPO).</li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
Online
<br/>
</li>
<li>
<i class="fa fa-users" aria-hidden="true"></i>
[Team] Matthias Arnold; YIP Suk Man; and Konstantin Henke
<br/>
</li>
</ul>
</li>
<li>
<h3>
<span>[International Summer Seminar: From late imperial to Republican China: continuities and ruptures]</span>
<time>2021 Sept</time>
</h3>
<ul class="info-content">
<li> organized by the French National Centre for Scientific Research (CNRS), the French School of the Far East (EFEO), the School for Advanced Studies in the Social Sciences (EHESS) and Campus France (Orchid Program)</li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
in La Rochelle, France
<br/>
</li>
</ul>
</li>
<li>
<h3>
<span>[41. Annual EASL Conference]</span>
<span class="link">
<a href="http://easl.org/min.html" target="_blank">link</a>
</span>
<time>2021 Sept</time>
</h3>
<ul class="info-content">
<li>Title: Fair data principles and global accessibility: a case study.</li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
Online
<br/>
</li>
<li>
<i class="fa fa-users" aria-hidden="true"></i>
[Team] Matthias Arnold; Duncan Paterson
<br/>
</li>
</ul>
</li>
<li>
<h3>
<span>[CATS Virtual Spring School: Rethinking the Sinophone— A Transcultural Perspective]</span>
<span class="link">
<a href="https://projects.zo.uni-heidelberg.de/documents/taiwanlec/springschool-program.pdf" target="_blank">link</a>
</span>
<time>2021 April</time>
</h3>
<ul class="info-content">
<li>Moderator</li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
Online
<br/>
</li>
</ul>
</li>
<li>
<h3>
<span>[HeKKsaGOn Young Scholars Workshop on Transcultural Studies]</span>
<span class="link">
<a href="https://www.asia-europe.uni-heidelberg.de/de/aktuelles/termine/terminansicht/cal/event/view-list%7Cpage_id-2540/tx_cal_phpicalendar////workshop_hekksagon_young_scholars_workshop_on_transcultural_encounters.html" target="_blank">link</a>
</span>
<time>2019 Sept</time>
</h3>
<ul class="info-content">
<li>Title: Shaping the Spiritual Community -- the Aesthetics in Manchukuo under the Slogan "Five Races under One Union"</li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
in Heidelberg
<br/>
</li>
</ul>
</li>
<li>
<h3>
<span>[Projekt Presentation: Early Chinese Periodicals Online (ECPO)]</span>
<span class="link">
<a href="https://www.asia-europe.uni-heidelberg.de/en/newsevents/events/event-view/cal/event/view-list%7cpage_id-2289/tx_cal_phpicalendar/2019/05/07/project_presentation_early_chinese_periodicals_online_ecpo.html" target="_blank">link</a>
</span>
<time>2019 May</time>
</h3>
<ul class="info-content">
<li>Title: Introduction to the Project "Western Publications in China" (Prof. Wagner)</li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
in Heidelberg
</li>
</ul>
</li>
<li>
<h3>
<span>[Study Program “Global Comparative Studies of Culture and Society”]
</span>
<time>2016 July</time>
</h3>
<ul class="info-content">
<li>supported by Jiangsu government scholarship</li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
Duke University, U.S.
</li>
</ul>
</li>
</ul>
</section>
<!-- 自我评价 -->
<section class="work info-unit">
<h2>
<i class="fa fa-pencil" aria-hidden="true"></i>Self Comments</h2>
<hr/>
<p>I am a person who loves life, always tries to help others, and permanently seeks the true and the beautiful.
<span class="mark-txt">“Keep moving”</span>is my motto. I will do my best in everything.</p>
</section>
</section>
</article>
<footer class="footer">
<p>© 2017 XIE JIA. Latest update on
<time>2024.11.15</time>.</p>
</footer>
<!-- 侧栏 -->
<aside>
<ul>
<li>
<a href="https://DHHD2022.github.io" target="_blank"> <i class="fa fa-bold" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://twitter.com/xxjjjjjj" target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://github.com/xiejia1995" target="_blank"> <i class="fa fa-github" aria-hidden="true"></i></a>
</li>
</ul>
</aside>
<script src="./assets/js/index.js"></script>
</body>
</html>