forked from Huxpro/huxpro.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
126 lines (103 loc) · 5.53 KB
/
about.html
File metadata and controls
126 lines (103 loc) · 5.53 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
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
---
layout: page
title: "About"
description: "Hey, this is Hux."
header-img: "img/about-bg.jpg"
---
<!-- 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">
<blockquote>
写写代码,做做设计,看看产品。
世界那么大,多玩玩看看。
</blockquote>
<p>大学生,就读于中国传媒大学数字媒体艺术专业 12 级,准大四。学的东西杂七杂八,技术艺术交叉,也当过<a href="http://www.cucxsh.cn/" target="_blank">学生会</a>部长,负责些小互联网产品</p>
<p>程序员,<a href="http://m.wepiao.com/index.html">微信电影票</a>前端工程师。曾在淘宝旅行(<a href="http://alitrip.com" target="_blank">阿里旅行·去啊</a>)前端团队实习一年载,主攻 JavaScript 全栈,也玩玩其他语言,希望成为一名<a href="http://www.zhihu.com/question/19589966/answer/12550259">产品工程师</a></p>
<p>设计师,UI/UX Designer,迷恋 OSX/iOS & Android & Windows,擅长 Layout/Typographic 与动效设计(Motion Graphic),大一在
<a href="http://weibo.com/lxustudio" target="_blank">LxU 工作室</a> 实习动画师,大二在阿里做了很短一段时间交互 </p>
<p>产品狗,热衷于 Web & Mobile 产品,<a href="http://www.zhihu.com/people/huxpro">知乎</a>用户。手机收藏癖,轻微<a href="/tags/#职业病">职业病</a>,没事想想用户痛点、行业趋势、商业模式,无论身处什么职位都很在乎产品本身</p>
<p>人类,唱唱通俗跳跳 HipHop ,也爱好打球游泳、摄影<del>把妹</del>,没事泡泡社交网络,刷刷微博知乎</p>
<p>哦对了,我叫<b>黄玄</b>
<hr>
附上认真版的简历:
<ul class="active-list">
<li><a href="{{site.baseUrl}}/attach/2016_Hux_DEV_en.pdf"> 2016_Hux_DEV_en </a></li>
<li><a href="{{site.baseUrl}}/attach/2016_Hux_PD_en.pdf"> 2016_Hux_PD_en </a></li>
<li><a href="{{site.baseUrl}}/attach/2015_Hux_SDE_cn.pdf"> 2015_Hux_SDE_cn </a></li>
<li><a href="{{site.baseUrl}}/attach/2015_Hux_UX & PD_cn.pdf"> 2015_Hux_UX & PD_cn </a></li>
<li><a href="{{site.baseUrl}}/attach/2015_Hux_UX & PD_en.pdf"> 2015_Hux_UX & PD_en </a></li>
</ul>
一些期待成为的角色:
<ul>
<li> UX Unicorn </li>
<li> Product Engineer </li>
<li> Creative Technologist </li>
<li> End to End JavaScript Engineer</li>
<li> "Full Stack" Engineer/Designer </li>
</ul>
</div>
<!-- English Version -->
<div class="en">
<blockquote>
Designer or Engineer, things in between.
</blockquote>
<p>Student, major in New Media Art of <a href="https://en.wikipedia.org/wiki/Communication_University_of_China">Communication University of China</a>, which is a interdisciplinary subject of technology and art, and now Senior.</p>
<p>Programmer, JavaScript Engineer Intern of <a href="http://m.wepiao.com/index.html">Wechat Movie</a>, previous worked in <a href="http://alitrip.com" target="_blank">Alibaba Trip</a> as Front End Engineer for one year, looking for opportunities abroad.</p>
<p>Designer, offered as UI/UX Designer Intern by Alibaba Group, Microsoft Bing etc. Experienced in Motion Graphic Design, also familer with Layout and Typography.</p>
<p>Product Design and Program Management is also attractive and comfortable to me.</p>
<p>My Chinese name is <b>Huang Xuan</b>, you can call me English name <b>Hux</b> for short.</p>
<hr>
Interested in more details? Just checkout my resumes:
<ul class="active-list">
<li><a href="{{site.baseUrl}}/attach/2016_Hux_DEV_en.pdf"> 2016_Hux_DEV_en </a></li>
<li><a href="{{site.baseUrl}}/attach/2016_Hux_PD_en.pdf"> 2016_Hux_PD_en </a></li>
<li><a href="{{site.baseUrl}}/attach/2015_Hux_UX & PD_en.pdf"> 2015_Hux_UX & PD_en </a></li>
</ul>
My dream position include:
<ul>
<li> UX Unicorn </li>
<li> Product Engineer </li>
<li> Creative Technologist </li>
<li> End to End JavaScript Engineer</li>
<li> "Full Stack" Engineer/Designer </li>
</ul>
</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>
{% if site.useDuoshuo %}
<!-- 多说评论框 start -->
<div class="comment">
<div class="ds-thread" data-thread-key="{{page.id}}" data-title="{{page.title}}" data-url="{{site.url}}/about/"></div>
</div>
<!-- 多说评论框 end -->
<!-- 多说公共JS代码 start (一个网页只需插入一次) -->
<script type="text/javascript">
var duoshuoQuery = {short_name:"huxblog"};
(function() {
var ds = document.createElement('script');
ds.type = 'text/javascript';ds.async = true;
ds.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//static.duoshuo.com/embed.js';
ds.charset = 'UTF-8';
(document.getElementsByTagName('head')[0]
|| document.getElementsByTagName('body')[0]).appendChild(ds);
})();
</script>
<!-- 多说公共JS代码 end -->
{% endif %}