-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqiang_xu.html
74 lines (58 loc) · 3.97 KB
/
qiang_xu.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
---
layout: page
---
<script src="https://cdn.jsdelivr.net/npm/[email protected]/marked.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons/css/academicons.min.css">
<article id="true-undefined" class="article article-type-true" itemscope="" itemprop="blogPost">
<table style="margin-top:20px;border:0;margin: auto;background-color:#f0f8ff;">
<tbody>
<tr style="border:0;background-color:#f0f8ff;">
<td style="width:200px;border:0;"><img style="width:200px;" src="images/people/qiang_xu1.jpg"></td>
<td style="border:0;">
<h1 style="font-size:50px;font-family:Cooper Black;margin-left:30px;">Qiang Xu</h1>
<div style="margin-left:30px;">
<p><div style="font-size:20px;">Professor <br>Department of Computer Science & Engineering <br>The Chinese University of Hong Kong <br>
Shatin, N.T., Hong Kong<br></p>
<p style="margin: auto;">
Email:  qxu AT cse.cuhk.edu.hk<br>
Office: Room 1008, Ho Sin Hang Building<br></p>
</div>
<p>
<br />
<a href="https://scholar.google.com/citations?user=eSiKPqUAAAAJ&hl=zh-CN"><i class="ai ai-google-scholar ai-lg"></i>Google Scholar</a>
<!--<a href="https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MzU3NTM2MjIxMg==&scene=124#wechat_redirect"><i class="fa fa-user fa-lg"></i>wechat_official_account</a>-->
<br>
<br>
<!--<a href="mailto:[email protected]"><i class="fa fa-envelope-o"></i> [email protected]</a>-->
</p>
</div>
</td>
</tr>
</tbody>
</table>
<hr>
<!-- <div style="font-size:20px;">
<p style="font-size:20px;margin-left:20px;text-align:justify;text-justify:inter-ideograph;"><span style="font-size:medium;font-family: Arial"> Qiang Xu leads <u>CU</u>hk <u>RE</u>liable Computing laboratory (<b>CURE Lab.</b>), and he is interested in combating all sorts of problems in computing systems that make them less powerful or reliable. Recently, he is particularly interested in generative AI and logic reasoning. He has published broadly in the filed of electronic design automation (EDA) and AI, and received a number of best paper awards and best paper nominations, including a William J. McCalla ICCAD Ten Year Retrospective Most Influential Paper Award. He is currently serving as an Associate Editor for IEEE Transactions on Computer-Aided Design and Integration, the VLSI Journal. </span></p>
</div> -->
<div id="markdown-content"></div>
<script>
const apiUrl = 'https://api.github.com/repos/{owner}/{repo}/contents/{path}';
const owner = 'cure-lab';
const repo = 'cure-lab.github.io';
const path = 'qiangxu.md';
// 构建API请求URL
const requestUrl = apiUrl.replace('{owner}', owner).replace('{repo}', repo).replace('{path}', path);
// 发送API请求
fetch(requestUrl)
.then(response => response.json())
.then(data => {
// 提取Markdown文件内容
const markdownContent = atob(data.content);
// 将Markdown转换为HTML
const html = marked(markdownContent);
// 在页面中显示HTML内容
document.getElementById('markdown-content').innerHTML = html;
});
</script>
<hr>
</article>