-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
executable file
·80 lines (65 loc) · 2.12 KB
/
Copy pathabout.html
File metadata and controls
executable file
·80 lines (65 loc) · 2.12 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
---
layout: page
title: "About"
description: "Hey, this is simple."
header-img: "img/about-bg.jpg"
multilingual: true
---
<!-- Language Selector -->
<select onchange= "onLanChange(this.options[this.options.selectedIndex].value)">
<option value="0" selected> 中文 Chinese </option>
<option value="1"> 英语 English </option>
</select>
<!-- Chinese Version -->
<div class="zh post-container">
<blockquote>
有趣的灵魂。
</blockquote>
大家好,我是qry,目前在西安电子科技大学读研究生,主要研究物联网安全。本博客主要分享研究生阶段研究的一些东西,
偶尔也会分享一些c++、计算机网络,数据库等方面的一些知识。本科主要肝ACM,大家想学习算法可以关注我的ACM博客。
<p style="text-align:right;">
—— qry - 「自我简介」
</p>
<a target="_blank" href="http://mail.qq.com/cgi-bin/qm_share?t=qm_mailme&email=tMXGzYSBhob0xcWa19vZ"
style="text-decoration:none;"><img src="http://rescdn.qqmail.com/zh_CN/htmledition/images/function/qm_open/ico_mailme_02.png"/></a>
</div>
<!-- English Version -->
<div class="en post-container">
<blockquote>
To be simple.
</blockquote>
Hello!
<p style="text-align:right;">
-- qry
</p>
</div>
<!-- Handle Language Change -->
<script type="text/javascript">
var $zh = document.querySelector(".zh");
var $en = document.querySelector(".en");
function onLanChange(index){
if(index == 0){
$zh.style.display = "block";
$en.style.display = "none";
}else{
$en.style.display = "block";
$zh.style.display = "none";
}
}
onLanChange(0);
</script>
<br>
<br>
<h2 id="工作经历">工作经历</h2>
<ul>
<li> 2018.06 ~ 2018.09 腾讯wxg微信支付c++后台实习生 </li>
</ul>
<br>
<br>
<h2 id="奖项">奖项</h2>
<ul>
<li>2017 ACM-icpc亚洲区域赛西安站银奖 </li>
<li>2016 ACM-icpc亚洲区域赛青岛站银奖 </li>
<li>2016 CCPC杭州站银奖 </li>
<li>2017 大学生程序设计竞赛省赛金奖 </li>
</ul>