-
Notifications
You must be signed in to change notification settings - Fork 2
/
about.html
executable file
·81 lines (68 loc) · 3.44 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
---
layout: page
title: "About"
description: "All things in their being are good for something"
header-img: "img/nav-about.jpg"
---
<!-- Chinese Version -->
<div class="zh post-container">
<!--copied from markdown -->
<blockquote><p>有志者事竟成,破釜沉舟,百二秦关终属楚;<br>
苦心人天不负,卧薪尝胆,三千越甲可吞吴。</p>
</blockquote>
<h5>个人简介</h5>
<p>Hi,我是<strong>Gityuan</strong>,软件工程师,曾就职于IBM、Lenovo,目前就职于小米MIUI部门。<br>
我对技术的第一个追逐目标是成为Android全栈工程师:上至能写App,中间能改framework和Native代码,下至能调驱动,整体上解决性能/稳定性/功耗问题,博主正在努力加强内功修养。</p>
<h5>知乎热门回答</h5>
<ul>
<li><a target="_blank" href="http://zhuanlan.zhihu.com/p/20708611">如何自学Android?</a></li>
<li><a target="_blank" href="https://www.zhihu.com/question/37801069/answer/97391748">Android到底爽在哪里?</a></li>
<li><a target="_blank" href="https://www.zhihu.com/question/39440766/answer/89210950">为什么Android要采用Binder作为IPC机制?</a></li>
<li><a target="_blank" href="https://www.zhihu.com/question/34652589/answer/90344494?from=profile_answer_card">Android中为什么主线程不会因为Looper.loop()里的死循环卡死?</a></li>
</ul>
<h5>网站历史</h5>
<ul>
<li>2015.5.31, 搭建个人博客;</li>
<li>2015.7.13, 申请域名http://yuanhh.com;</li>
<li>2016.3.17, 迁移至新域名http://gityuan.com;</li>
<li>2016.5.02, 博客风格和评论系统进行全面更新;</li>
<li>2016.5.08, 博客开通打赏功能,另外新增Archieve/Resource/talk子栏目;</li>
<li>2016.5.22, 通过Google custom,开通站内搜索功能,需要翻墙功能支持;</li>
<li>2016.5.29, 改进代码高亮风格为AndroidStudio默认风格。</li>
</ul>
<h5>版本声明</h5>
<ul>
<li>本站所有博文内容均为原创,欢迎交流与转载,转载请务必注明作者<a target="_blank" href="http://weibo.com/gityuan">Gityuan</a>与<strong>原文链接</strong>(注:是链接而非文字描述),且不得轻易篡改原文内容。</li>
<li>另外,未经授权不得用于任何商业目的。</li>
</ul>
</div>
{% if site.duoshuo_username %}
<!-- 多说评论框 start -->
<div class="comment">
<div class="ds-thread"
{% if site.duoshuo_username == "huxblog" %}
data-thread-id="1187623191091085319"
{% else %}
data-thread-key="{{site.duoshuo_username}}/about"
{% endif %}
data-title="{{page.title}}"
data-url="{{site.url}}/about/"></div>
</div>
<!-- 多说评论框 end -->
<!-- 多说公共JS代码 start (一个网页只需插入一次) -->
<script type="text/javascript">
// dynamic User hacking by Hux
var _user = '{{site.duoshuo_username}}';
// duoshuo comment query.
var duoshuoQuery = {short_name: _user };
(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 %}