-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
121 lines (95 loc) · 4.11 KB
/
about.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
---
layout: page
title: "About"
description: "Hey, this is Lnn."
header-img: "img/post-bg-rwd.jpg"
---
<!-- Language Selector -->
<!-- <select class="sel-lang" 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">
<p><strong>半吊子菜鸟全沾工程师</strong>, 8 年研发经验,2 年工程师团队管理经验。负责过 10 人左右团队(客户端、后端)的技术管理、团队 OKR、绩效、招聘、汰换等。
<br/> 工作中使用的编程语言,后端:Java 和 Golang,大部分时间写后端。在个人项目中的有实战经验的有 React、TypeScript、Python、 Swift、 React Native, 典型全干工程师。
<br/> 从 C 走入编程世界,被 Clojure 虐过。接触编程语言较多(并熟悉它们的 Hello World 写法),因此对技术站队不感兴趣。
</p>
<p></p>
<h5>业余爱好</h5>
<ul>
<li>曾经的骑行爱好者,有长途骑行的经历</li>
<li>三大环赛资深云观众</li>
<li>儿法梦</li>
<li>LOL 云玩家</li>
</ul>
<h5>观点</h5>
<ul>
<li>努力不站队,不偏激。有观点,但不固执。</li>
<li><strong>坚信</strong>软件工程领域没有银弹!</li>
<li>优秀的工程师应该更关注通过技术创造持续的产品价值,技术源于业务。</li>
<li>好的产品和差的产品之间有巨大的差距,同样一个好的团队和差的团队之间也有巨大的鸿沟。</li>
</ul>
<h5>职业经历</h5>
<ul>
<li>2021~至今 TapTap/LeanCloud-游戏中台-XDSDK 技术负责人</li>
<li>2016~2020 阿里巴巴-电商业务 资深研发工程师</li>
<li>2016.03~2016.06 阿里巴巴-电商业务 研发工程师实习生</li>
<li>2015.04~2015.08 腾讯光子工作室-基础架构 研发工程师实习生</li>
</ul>
<h5>教育经历</h5>
<ul>
<li>2012.09~2016.07 西安电子科技大学 烧锅炉</li>
</ul>
<p>博客使用了<a href="https://github.com/qiubaiying/qiubaiying.github.io">柏荧</a>提供的主题,感谢他!</p>
</div>
<!-- English Version -->
<!-- <div class="en post-container">
<blockquote><p>Yet another iOS Developer. <br>
Yet another Life-long Student.</p></blockquote>
<p>Hi, I am <strong>Baiying Qiu</strong>,you can call me <strong>BY</strong>. I am an iOS software engineer and currently working in Xiamen</p>
<p>This is my personal blog, through making Github Pages and Jekyll.My GitHub 👉 <a href="http://github.com/qiubaiying">Github·BY</a>.</p>
<p>I am a sports enthusiast, I like fitness, running and boxing.</p>
<h5>Talks</h5>
<ul>
<li><a href="https://github.com">GitHub</a></li>
<li><a href="http://jekyll.com.cn/">jekyll</a></li>
<li><a href="https://pages.github.com/">GitHub Pages</a></li>
<li><a href="https://qiubaiying.github.io">BY</a></li>
</ul>
</div> -->
<!-- Handle Language Change -->
<script type="text/javascript">
// get nodes
var $zh = document.querySelector(".zh");
var $en = document.querySelector(".en");
var $select = document.querySelector("select");
// bind hashchange event
window.addEventListener('hashchange', _render);
// handle render
function _render(){
var _hash = window.location.hash;
// en
if(_hash == "#en"){
$select.selectedIndex = 1;
$en.style.display = "block";
$zh.style.display = "none";
// zh by default
}else{
// not trigger onChange, otherwise cause a loop call.
$select.selectedIndex = 0;
$zh.style.display = "block";
$en.style.display = "none";
}
}
// handle select change
function onLanChange(index){
if(index == 0){
window.location.hash = "#zh"
}else{
window.location.hash = "#en"
}
}
// init
_render();
</script>