-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbye_2017_and_hi_2018.html
More file actions
214 lines (187 loc) · 8.44 KB
/
Copy pathbye_2017_and_hi_2018.html
File metadata and controls
214 lines (187 loc) · 8.44 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<!doctype html>
<html lang="zh-CN" class="night">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=4.0, user-scalable=0" name="viewport">
<title>Ede's Blog</title>
<meta name="description" content="Try to be a qualified programmer">
<meta property="og:type" content="website">
<meta property="og:description" content="Try to be a qualified programmer">
<meta property="og:title" content="Ede's Blog">
<meta property="og:site_name" content="Ede's Blog">
<meta property="og:url" content="https://ede.ink">
<meta property="og:image" content="https://edeity.oss-cn-shenzhen.aliyuncs.com/public/edeity_o.png">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="mainfest" href="/mainfest.json">
<link rel="stylesheet" href="/public/css/common.css">
<link rel="stylesheet" href="//at.alicdn.com/t/font_707055_4b9og9sc5lx.css">
<script>
// 是否需要切换黑夜模式(此JS应在CSS加载前执行,否则会造成页面闪烁)
(function toggleNightOrDay() {
var isForceNightTheme = window.location.search.indexOf('theme=night') !== -1
|| window.localStorage.getItem('edeity-theme_theme') === 'night';
var isForceLightTheme = window.location.search.indexOf('theme=light') !== -1
|| window.localStorage.getItem('edeity-theme_theme') === 'light';
var hours = new Date().getHours();
hours = 22;
var html = document.querySelector('html')
if (isForceNightTheme) {
html.classList.add('night');
} else if (isForceLightTheme) {
html.classList.remove('night');
} else {
// 没有强制开关,用时间计算
if (hours < 8 || hours >= 20) {
html.classList.add('night');
} else {
html.classList.remove('night');
}
}
})();
// 切换暗夜模式,需要在CSS渲染前调整,否则重绘时会闪烁
document.addEventListener('DOMContentLoaded', function () {
// 是否需要隐藏左侧导航栏
if (document.querySelector('ol.toc') !== null) {
var bar = document.querySelector('#nav-bar')
bar.style.cssText = 'display: block'
}
});
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M3J9QSEE2Z"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M3J9QSEE2Z');
</script>
<meta name="generator" content="Hexo 7.3.0"></head>
<body>
<div class="loading"></div>
<div id="switch" data-switch="{"toc":true,"use_pwa":false}"></div>
<header class="fullscreen">
<div class="toolbar">
<i class="iconfont icon-menu"></i>
</div>
<h1>
<a href="/">Ede's Blog</a>
</h1>
<div class="head-link">
<a class="btn waves" href="/">
<span>
<i class="iconfont icon-home">
Home
</i>
</span>
</a>
<a class="btn waves" href="/about/index.html">
<span>
<i class="iconfont icon-me">
About
</i>
</span>
</a>
<a class="btn waves" target="_blank" rel="noopener" href="https://github.com/edeink">
<span>
<i class="iconfont icon-github">
Github
</i>
</span>
</a>
</div>
</header>
<div class="some-link">
<a class="btn" id="light-or-not">
<i class="iconfont icon-light"></i>
</a>
<a style="display: none;" class="btn" id="up-to-top">
<i class="iconfont icon-up"></i>
</a>
</div>
<div id="nav-bar" style="display: none">
<div class="toc">
<ol class="toc"><li class="toc-item toc-level-2"><a class="toc-link" href="#2017"><span class="toc-number">1.</span> <span class="toc-text">2017</span></a></li><li class="toc-item toc-level-2"><a class="toc-link" href="#2018"><span class="toc-number">2.</span> <span class="toc-text">2018</span></a></li></ol>
</div>
</div>
<main id="content-main" class="section">
<div class="list-item">
<h1 class="post-title">
<a id="Bye 2017, Hi 2018" class="article-link" href="">
Bye 2017, Hi 2018
</a>
</h1>
<div class="post-meta">
<time class="meta published">
Dec 31, 2017
</time>
</div>
<!-- 文章声明 -->
<div class="article">
<div class="post-excerpt markdown-body">
<div class="img-list">
<img data-src="https://edeity.oss-cn-shenzhen.aliyuncs.com/2017/yonyou_snow.jpg" data-desc="一月的用友"/>
<img data-src="https://edeity.oss-cn-shenzhen.aliyuncs.com/2017/fangji_land.jpg" data-desc="二月的放鸡岛"/>
<img data-src="https://edeity.oss-cn-shenzhen.aliyuncs.com/2017/the_great_wall_v2.jpg" data-desc="四月的长城"/>
<img data-src="https://edeity.oss-cn-shenzhen.aliyuncs.com/2017/tailand.jpg" data-desc="十月的泰山"/>
<img data-src="https://edeity.oss-cn-shenzhen.aliyuncs.com/2017/The_Imperial_Palace.jpg" data-desc="十二月的故宫"/>
<img data-src="https://edeity.oss-cn-shenzhen.aliyuncs.com/2017/yonyou_simple_v2.jpg" data-desc="用友 | 一区"/>
</div>
<p>即将别理,两年时光里,充满了各种巧合、幸运与不甘。那些陪我去疯癫的小伙伴,那宁静美丽的用友软件园,感谢你们,让我不觉得遗憾。</p>
<h2 id="2017"><a href="#2017" class="headerlink" title="2017"></a>2017</h2><ul>
<li>工作<ul>
<li>完成集团财务合并-原型版开发,顺利拿到两家原型用户报告</li>
<li>逐渐了解Kero框架,梳理复杂业务中前端数据流的问题。期待下一次突破</li>
<li>在大型软件NC下,进行大量软件工程实践,积累开发经验<ul>
<li>预演、开发、疯狂测试、迭代完善</li>
</ul>
</li>
</ul>
</li>
<li>生活<ul>
<li>入冬睡凉席、不注意饮食、经常不吃早餐、熬夜 -> 终成第一批把胃弄坏的90后。<strong>注意身体!!</strong></li>
<li>世界这么大<ul>
<li>北京:军都山滑雪,长城、故宫、北海、香山、动物园</li>
<li>河北:南戴河的海</li>
<li>山东:陪女朋友重温了趵突泉、千佛山、大明湖,泰安的泰山</li>
</ul>
</li>
<li>看完牙了!看完牙了!看完牙了!5年啊!</li>
</ul>
</li>
</ul>
<h2 id="2018"><a href="#2018" class="headerlink" title="2018"></a>2018</h2><ul>
<li>关注各FE周报、月报、年报<<small><a target="_blank" rel="noopener" href="https://risingstars.js.org/2017/zh">[1]</a>、<a target="_blank" rel="noopener" href="https://segmentfault.com/p/1210000012596690/read">[2]</a></small>>。</li>
<li>逃出安逸区:在广州找到一份不错的工作。<ul>
<li>参与前端多人协作,交互复杂(不仅限于业务)的Web应用</li>
<li>多维数据打交道的部门:复习基本算法,学习OLAP等。</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<div class="more section">
<div class="pre">
<a class="article-link" href="/test_for_front_end.html">
<i class="iconfont icon-right"></i>
<span>前端测试简记:mocha + chai</span>
</a>
</div>
<div class="next">
<a class="article-link" href="/fe_app_with_mac.html">
MAC之前端常用APP和技巧
<i class="iconfont icon-right"></i>
</a>
</div>
</div>
</main>
</body>
<footer class="section fullscreen">
<div class="footer-desc">
Edeink © 2015-2025 · Powered by Hexo
</div>
</footer>
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.js"></script>
<!--<script src="https://lab.hakim.se/zoom-js/js/zoom.js"></script>-->
<script src="/public/js/init.js"></script>
</html>