-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathch.html
624 lines (591 loc) · 30.1 KB
/
ch.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
<!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>
</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>切换语言:
<span class="SWITCHLANGUAGES">
<a href="index.html" target="_self">English</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">谢 佳</h1>
<h4 class="info-job">海德堡大学 / 学生</h4>
</section>
<!-- 基本信息 -->
<section class="profile info-unit">
<h2>
<i class="fa fa-user" aria-hidden="true"></i>基本信息</h2>
<hr/>
<ul>
<li>
<label>基本信息</label>
<span>男 / 中国</span>
</li>
<li>
<label>当前地址</label>
<span>德国-海德堡</span>
</li>
<li>
<label>邮政编码
</label>
<span>69115</span>
</li>
</ul>
</section>
<!-- 联系方式 -->
<section class="contact info-unit">
<h2>
<i class="fa fa-envelope" aria-hidden="true"></i>联系方式</h2>
<hr/>
<ul>
<li>
<label>邮箱</label>
<a href="rg194@uni-heidelberg.de" target="_blank">rg194@uni-heidelberg.de</a>
</li>
<li>
<label>Blog</label>
<a href="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>语言水平</h2>
<hr/>
<ul>
<li>
<label>现代汉语</label>
<progress value="100" max="100"></progress>
</li>
<li>
<label>古代汉语</label>
<progress value="100" max="100"></progress>
</li>
<li>
<label>英语</label>
<progress value="99" max="100"></progress>
</li>
<li>
<label>德语</label>
<progress value="90" max="100"></progress>
</li>
<li>
<label>日语</label>
<progress value="60" max="100"></progress>
</li>
<li>
<label>法语</label>
<progress value="30" max="100"></progress>
</li>
<li>
<label>韩语</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>教育经历</h2>
<hr/>
<ul>
<li>
<h3>
<span>海德堡大学 - 跨文化研究(博士) </span>
<time>2021-至今</time>
</h3>
</li>
<li>
<h3>
<span>海德堡大学 - 跨文化研究(硕士) </span>
<time>2017-2020</time>
</h3>
</li>
<li>
<h3>
<span>南京师范大学 - 汉语言文学基地班(本科)</span>
<time>2013-2017</time>
</h3>
</li>
</ul>
</section>
<!-- 工作经历 -->
<section class="work info-unit">
<h2>
<i class="fa fa-laptop" aria-hidden="true"></i>工作经历</h2>
<hr/>
<ul>
<li>
<h3>
<span>
研究助理 - <a href="https://www.hadw-bw.de/forschung/forschungsstelle/buddhistische-steininschriften-nordchina" target="_blank">
中国佛教石经项目
</a>
</span>
<time>2024-2025</time>
</h3>
<ul class="info-content">
<li>海德堡科学院</li>
</ul>
</li>
<li>
<h3>
<span>
研究助理 -<a href="https://project.zo.uni-heidelberg.de/library/exhibitions/yao/#/" target="_blank">
瑶族手稿数字化项目</a>
</span>
<time>2023</time>
</h3>
<ul class="info-content">
<li>海德堡大学亚洲与跨文化研究中心图书馆</li>
</ul>
</li>
<li>
<h3>
<span>授课讲师 - 硕士课程 “汉学文学文化研究中的数字人文方法” </span>
<time>2022-2023</time>
</h3>
<ul class="info-content">
<li>海德堡大学汉学系</li>
</ul>
</li>
<li>
<h3>
<span>研究助理 - <a href="https://uni-heidelberg.de/ecpo/" target="_blank">早期中文期刊线上平台 (ECPO)</a></span>
<time>2018-2022</time>
</h3>
<ul class="info-content">
<li>海德堡大学亚洲与跨文化研究中心</li>
<!--<li>建设维护<mark><a href="https://uni-heidelberg.de/ecpo/" target="_blank">早期中文期刊线上平台 (ECPO)</a></mark>, 核对、录入及修复材料,编辑出版信息等。 </li>
<li>建设维护<mark>人物数据库(agent service)</mark>,查找外部链接,并参与wikibase数据集工作等。</li>
<li>为民国报刊汉字识别的机器学习任务编写Ground Truth</li>-->
</ul>
</li>
</ul>
</section>
<!-- Other experience-->
<section class="work info-unit">
<h2>
<i class="fa fa-sticky-note" aria-hidden="true"></i>其他经历</h2>
<hr/>
<ul>
<li>
<h3>
<span>东亚数字人文学术小组创建人 (HEADs)
</span>
<time>2022 至今</time>
</h3>
<ul class="info-content">
<li>
网站链接: <a href="https://DHHD2022.github.io" target="_blank">DHHD2022.github.io</a></li>
<li>微信公众号: 东亚数字人文</li>
</ul>
</li>
<li>
<h3>
<span>中国人民大学数字人文研究中心学生研究员
</span>
<time>2022-2023</time>
</h3>
<ul class="info-content">
<li>负责学术编译</li>
</ul>
</li>
<li>
<h3>
<span>流行文化研究小组成员
</span>
<time>2021 至今</time>
</h3>
<ul class="info-content">
<li>梅嘉乐教授组织</li>
</ul>
</li>
</ul>
</section>
<!-- Publications -->
<section class="work info-unit">
<h2>
<i class="fa fa-book" aria-hidden="true"></i>学术发表</h2>
<hr/>
<ul>
<li>
<h3>
<span>期刊论文</span>
</h3>
<ul class="info-content">
<li>[英文]Jia XIE, Shimin Zhang, and Xiaojie Chang. “Reflection on Digital Humanities Teaching in a German University's Chinese Studies Classroom” Critical Theory (2024) vol. 8, no. 2, 120-130. DOI: 10.47297/wspctWSP2515-470213.20240802 (《德国大学中国研究课堂的数字人文教学反思》, 《批评理论》2024年第8卷第2期.) DOI: <a href="https://www.wsp-publishing.com/en/article/doi/10.47297/wspctWSP2515-470213.20240802/" target="_blank">10.47297/wspctWSP2515-470213.20240802</a></a>。
</li>
<li>谢佳、叶淑敏. “民国报纸文本基准真值制作的挑战与思考——以《晶报》为例”. 数字人文研究, 2023年第4期: 49–62. <a href="https://www.dhcn.cn/%e4%bf%a1%e6%81%af%e7%a7%91%e6%8a%80/%e6%96%b0%e9%97%bb%e4%b8%8e%e4%bc%a0%e5%aa%92/9674.html" target="_blank">论文链接</a>
</li>
<li>[英文]Matthias Arnold, Duncan Paterson, and Jia XIE, “程序挑战:FAIR原则和中国的电子资源——民国报刊案例研究”. 国际数字人文杂志,“数字人文与东亚研究”特刊,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>学术翻译</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>会议经验</h2>
<hr/>
<ul>
<li>
<h3>
<span>[材料,媒介,方法: 东亚研究中的数字问题]
</span>
<span class="link">
<a href="http://dhconf2022.github.io" target="_blank">link</a>
</span>
<time>2023年2月</time>
</h3>
<ul class="info-content">
<li>主办会议,受德国国家科学基金会资助</li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
地点:德国,海德堡大学
<br/>
</li>
<li>
<i class="fa fa-users" aria-hidden="true"></i>
[协办人员] Fengyu Wang, Xiaojie Chang, and Shinmin Zhang
<br/>
</li>
</ul>
</li>
<li>
<h3>
<span>[2022中国数字人文年会]
</span>
<span class="link">
<a href="http://dh.ruc.edu.cn/xwgg/34cb9f3b0e234f68a65145e0de27af1b.htm" target="_blank">link</a>
</span>
<time>2022年11月</time>
</h3>
<ul class="info-content">
<li>论文报告 (优秀论文奖): “为民国报刊制作文本基准真相(Ground Truth)工作中的挑战与思考”</li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
线上
<br/>
</li>
<li>
<i class="fa fa-users" aria-hidden="true"></i>
[团队成员] 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年6月</time>
</h3>
<ul class="info-content">
<li>标题: “为民国时期的中国报纸制作Ground Truth——以《晶报》为例” </li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
线上
<br/>
</li>
<li>
<i class="fa fa-users" aria-hidden="true"></i>
[团队成员] YIP Suk Man
<br/>
</li>
</ul>
</li>
<li>
<h3>
<span>[海德堡孔子学院讲座]
</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年5月</time>
</h3>
<ul class="info-content">
<li>主题: “Early Chinese Periodicals Online (ECPO)项目介绍” </li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
线上
<br/>
</li>
<li>
<i class="fa fa-users" aria-hidden="true"></i>
[团队成员] Matthias Arnold; YIP Suk Man; and Konstantin Henke
<br/>
</li>
</ul>
</li>
<li>
<h3>
<span>[海德堡数字人文论坛]</span>
<span class="link">
<a href="http://easl.org/min.html" target="_blank">link</a>
</span>
<time>2021年10月</time>
</h3>
<ul class="info-content">
<li>主题:民国时期报刊的发展: "早期中国期刊在线平台(ECPO)"项目中Ground Truth、神经网络和OCR的应用</li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
线上
<br/>
</li>
<li>
<i class="fa fa-users" aria-hidden="true"></i>
[团队成员] Matthias Arnold; YIP Suk Man; and Konstantin Henke
<br/>
</li>
</ul>
</li>
<li>
<h3>
<span>[国际暑期研讨课: 从帝制晚期到民国时期的中国————连续性和断裂性]</span>
<time>2021年9月</time>
</h3>
<ul class="info-content">
<li> 由法国国家科学研究中心、法国远东学院、法国社会科学高等学院以及法国高等教育署(幽兰计划)举办</li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
地点:法国,拉罗切尔
<br/>
</li>
</ul>
</li>
<li>
<h3>
<span>[第四十一届欧洲汉学图书馆员协会年会]</span>
<span class="link">
<a href="http://easl.org/min.html" target="_blank">link</a>
</span>
<time>2021年9月</time>
</h3>
<ul class="info-content">
<li>标题:FAIR数据原则与全球可获得性——一项案例研究</li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
线上
<br/>
</li>
<li>
<i class="fa fa-users" aria-hidden="true"></i>
[团队成员] Matthias Arnold; Duncan Paterson
<br/>
</li>
</ul>
</li>
<li>
<h3>
<span>[CATS 线上春季课程: 重思华语语系文学————以跨文化视角]</span>
<span class="link">
<a href="https://projects.zo.uni-heidelberg.de/documents/taiwanlec/springschool-program.pdf" target="_blank">link</a>
</span>
<time>2021年4月</time>
</h3>
<ul class="info-content">
<li>主持人</li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
线上
<br/>
</li>
</ul>
</li>
<li>
<h3>
<span>[HeKKsaGOn跨文化研究青年学者研讨会]</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年9月</time>
</h3>
<ul class="info-content">
<li>标题:塑造精神共同体——“五族协和”口号下伪满文艺的审美</li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
地点:德国,海德堡大学
<br/>
</li>
</ul>
</li>
<li>
<h3>
<span>[项目发表:早期中文期刊线上平台(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年5月</time>
</h3>
<ul class="info-content">
<li>标题:“西方出版物在中国”项目简介(鲁道夫·瓦格纳教授项目)</li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
地点:德国,海德堡大学
</li>
</ul>
</li>
<li>
<h3>
<span>[暑期学习课程"全球人文比较研究"]</span>
<time>2016年7月</time>
</h3>
<ul class="info-content">
<li>由江苏省政府境外留学奖学金资助</li>
<li>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
地点:美国,杜克大学
</li>
</ul>
</li>
</ul>
</section>
<!-- 自我评价 -->
<section class="work info-unit">
<h2>
<i class="fa fa-pencil" aria-hidden="true"></i>自我评价</h2>
<hr/>
<p>
<span class="mark-txt">善良</span>,乐于助人。</p>
</section>
</section>
</article>
<footer class="footer">
<p>© 2017 XIE JIA. 更新于
<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>