-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
473 lines (401 loc) · 12.8 KB
/
index.html
File metadata and controls
473 lines (401 loc) · 12.8 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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, user-scalable=no, minimal-ui'>
<title>胡成龙</title>
<style>
body {
background: #EEEEEE;
font: 15px "Times New Roman", Times, sans-serif;
line-height: 1.4;
margin: 40px 0;
}
em {
/* color: #999; */
color:#a52a2a;
font-weight:bold;
}
p {
line-height: 1.4;
}
ul {
margin-bottom: 0;
}
li {
margin-bottom: 2px;
}
a {
text-decoration: none;
}
#resume {
margin: 0 auto;
max-width: 700px;
padding: 80px 100px;
background: #fff;
border: 1px solid #ccc;
box-shadow: 2px 2px 4px #aaa;
-webkit-box-shadow: 2px 2px 4px #aaa;
}
.coursesList {
width: 28%;
vertical-align: top;
display: inline-block;
}
.largeFont {
font-size: 20px;
}
.smallFont {
font-size: 13px;
}
.sectionBlock {
display: flex;
width: 100%;
}
.sectionName {
width: 18%;
vertical-align: top;
display: inline-block;
}
.sectionContent {
width: 80%;
vertical-align: top;
display: inline-block;
}
.sectionContent ul {
padding-left: 20px;
margin-top: 6px;
list-style-type: circle;
}
.sectionContent .title {
font-weight: bold;
}
.sectionContent .date {
float: right;
}
.sectionContent .separator {
height: 8px;
}
/* 公司名称块 */
.blockHeader{
font: 18px "Times New Roman", Times, sans-serif;
color: brown;
}
.sectionLine {
border-style: dashed;
border-width: 1px;
border-color: #CFCFCF;
margin-top: 10px;
margin-bottom: 10px;
}
.divider {
font-weight: bold;
margin-left: 5px;
margin-right: 5px;
}
.summary {
margin-top: 6px;
}
.skillBlock {
margin-bottom: 4px;
}
.jobBlock {
page-break-inside: avoid;
}
/* Media Queries */
@media only screen and (max-width: 40em) {
body {
margin: 0;
font-size: 14px;
}
#resume {
margin: 0 auto;
max-width: 600px;
padding: 0.5em 1em;
border: none;
}
.sectionBlock {
flex-direction: column;
}
.sectionContent {
width: 100%;
}
.sectionContent .date {
padding-right: 2em;
}
.sectionName {
width: auto;
}
.largeFont {
font-size: 20px;
}
.smallFont {
font-size: 14px;
}
}
@media print {
body {
background: #FFFFFF;
}
#resume {
margin: 0 auto;
max-width: 600px;
padding: 0px 0px;
border: 0px;
/* background: #fff; */
background: #fefefe;
box-shadow: none;
-webkit-box-shadow: none;
}
a {
color: black;
}
}
#nameBlock{
float: left;
}
#basicsBlock{
float: right;
}
.sectionLine{
clear:both;
}
.sectionName{
font-size: 20px;
color: brown
}
.myname {
font-size: 40px;
font-weight: bold;
color: brown;
font-family: cursive;
}
.label{
font-size: 16px;
}
#basicsBlock.smallFont{
font-size: 15px;
}
.sectionContent .title {
font-weight: bold;
/* font-size: 20px; */
}
a:hover {
background-color:#ba0018;
color:#fff;
}
h3 {
display: block;
font-size: 1.1em;
margin-block-start: 0.3em;
margin-block-end: 0.3em;
margin-inline-start: 0px;
margin-inline-end: 0px;
font-weight: bold;
}
</style>
</head>
<body>
<div id='resume'>
<div id='nameBlock' class='largeFont'>
<span class='myname'>
胡成龙
</span><br>
<span class='label'>网络工程师</span>
</div>
<div id='basicsBlock' class='smallFont'>
<div class='contactBlock'>
<span class='phone'>(+86)18890107327</span><br>
<a href="https://github.com/hoochanlon">https://github.com/hoochanlon</a><br>
<span class='address'>
湖南科职院 17届 计算机网络
</span>
</div>
</div>
<div class='sectionLine'></div>
<div id='myself' class="sectionBlock">
<div class='sectionName'>
<span>自我概述</span>
</div>
<div class='sectionContent'>
<div class='myselfBlock'>
<span>从业运维工作近2年,有稳实的经验积累。善于研究及制定项目优化ITSM实施方案,乐于听取同事改进意见,并不断实践总结。常将所得经验分享团队提高工作效率,并提供优质高效的SLA运维服务。</span>
</div>
<div class='myselfBlock'>
<span>爱翻阅相关网络原理的博客,并试验以证其真伪对错,再进行总结及发布文章。活跃GitHub开源社区,维护软件、文档等项目并参与测试,提交自己的反馈建议。同时,具有较强计算机专业英文文献阅读理解能力。</span>
</div>
</div>
</div>
<div class='sectionLine'></div>
<div id='workBlock' class="sectionBlock">
<div class='sectionName'>
<span>项目经验</span>
</div>
<div class='sectionContent'>
<div class="jobBlock">
<div class='blockHeader'>
<span class='title'>
神州动力数码有限公司 - 网络工程师
</span>
<span class='date'>
2019.6 — 2020.6
</span>
</div>
<div><a href=''></a></div>
<p class='highlights'>
<h3> 平安总行系统标装</h3>
</p>
<ul class='details'>
<li>银行对安全防控专项均比多数企业严苛。在安全方面,曾与360代理商工程师合作处理深圳大学机房感染永恒之蓝事件,必须深入理解银行对杀软配置、组策略安全防控的意义及作用,以避免在安排桌面运维工程师进行系统标装过程中出现大范围安全隐患。</li>
<li>编写项目实施方案标书,指明在安防配置项中易出现的误操作,要求每台主机的安全防控组件,必须与客户共同确认安全组件防控是否与总台信息同步,以确保标装项目顺利完成。</li>
<li>期间结识了微软、华为、Citrix等厂商探讨过关于端口隔离、容灾备份等话题,在网络安全及域控、桌面方面有着较广的人际。</li>
</ul>
<div class='separator'></div>
</div>
<div class="jobBlock">
<div class='blockHeader'>
<span class='title'>
</span>
</div>
<div><a href=''></a></div>
<p class='highlights'>
<h3> 华夏银行年终信息运维</h3>
</p>
<ul class='details'>
<li>年终期间由我负责分行大厦中低区的信息运维,会计部职员文档资料损坏异常致电我后,赶入现场分析故障原因,发现并不是文件损坏,而是由系统防毒机制触发其安全性锁定。在添加信任站点后,解决了此类问题。</li>
<li>信息接入方面为调入分行的同事连接分行内网,需进行端口测线及机房接线,经交换机调用ARP表查询主机IP并配置,确保主机与总控内网客户端连接成功。</li>
<li>为每次网络、软件、外设故障异常处理,编写内部信息运维问题汇总文档。以提高工作效率,带来更高效和更专业的服务。</li>
</ul>
<div class='separator'></div>
</div>
<div class="jobBlock">
<div class='blockHeader'>
<span class='title'>
鸿海科技集团 - Certified Quality Engineer
</span>
<span class='date'>
2018.10 — 2019.5
</span>
</div>
<div><a href=''></a></div>
<p class='highlights'>
<h3> 驻原厂事业群质量管理(IDSBG)</h3>
</p>
<ul class='details'>
<li>曾派遣到南京乐金(LG)考察学习,后调入原厂事业群驻场团队,并负责调度优化事业群产品售后生产运作。需对产品评估与质量分析,给出生产改善选定意见。与客户现场核实产品相关的质量问题,在不违客户产品检验规格标准的情况下,指导生产操作员进行重审检查。</li>
<li>对每期季度生产的进展进行图表绘制,以及编写报表向上级高工汇报,以此可确切落实下一步生产计划筹备工作。多次代理上级与SQE客户完成品质样品检验交接。</li>
</ul>
</div>
</div>
</div>
<div class='sectionLine'></div>
<div id='skills' class="sectionBlock">
<div class='sectionName'>
<span>工作职能</span>
</div>
<div class='sectionContent'>
<div class='skillBlock'>
<span class='title'>Network</span>
<li>掌握应用路由协议原理,掌握Cisco路由协议配置 <em>(OSPF,EIGRP,RIP2)</em> </li>
<li>掌握应用交换协议原理,对堆叠做过相应的了解。 <em>(STP,RSTP,MSTP)</em> </li>
<li>熟悉Win Server部署常见应用服务器及管理 <em>(AD,DHCP,DNS,FTP)</em> </li>
<li>掌握机房Cisco数通设备布线与相关配置,对huawei设备有过一定的使用与了解</li>
</div>
<div class='skillBlock'>
<span class='title'>Desktop</span>
<li>掌握桌面系统防火墙与安全更新配置,以及病毒处理的安全防控 </li>
<li>熟悉主机、扫描仪及打印机等硬件设备,以及OA办公异常的解决 </li>
<li>熟悉batch脚本代码,开发相应的批量自动化功能模块实现 </li>
<li>明确公司业务范围所长,进行客户的需求分析,并编写方案投标书</li>
</div>
</div>
</div>
<div class='sectionLine'></div>
<div id='publications'>
<div class='sectionName'>
<span>作品展示</span>
</div>
<div class='sectionContent'>
<div class='blockHeader'>
<span class='title'>
《这本书能让你连接互联网》
</span>
</div>
<div class='website'>
<a href='https://hoochanlon.github.io/fq-book'>https://hoochanlon.github.io/fq-book</a>
</div>
<ul class='highlights'>
<li>详细阐述proxy tunnel、Virtual Private Network运作过程,并对防火墙检测策略如:IP及PORT封锁、服务器缓存投毒、SSL连接阻断做相关的原理说明。
并参考CSDN、Segmentfault等技术网站文章,以及wiki英文文献,总结出自己的网络安防解决方案。</li>
</ul>
<div class='separator'></div>
<div class='blockHeader'>
<span class='title'>
《桌面运维管理指南》
</span>
</div>
<div class='website'>
<a href='https://hoochanlon.github.io/helpdesk-guide'>https://hoochanlon.github.io/helpdesk-guide</a>
</div>
<ul class='highlights'>
<li>概述计算机超融合虚拟化系统与BIOS、PhysicalDisk、RAM等软硬件知识,以及eternal blue,Synaptics病毒暗箱运作、分发原理,并提供异常解决方案。同时,进行团队分享,以推动公司整体的办公业务运行效率。</li>
</ul>
</div>
</div>
<div class='sectionLine'></div>
<div id='awards' class="sectionBlock">
<div class='sectionName'>
<span>所获赞誉</span>
</div>
<div class='sectionContent'>
<div class='blockHeader'>
<span class='title'>
北邮人论坛推荐网络书 北京邮电大学
</span>
</div>
<ul class='highlights'>
<li>《这本书能让你连接互联网》曾解决多数大众因中间人进行的服务器缓存投毒、跨域脚本攻击、数字证书篡改造成的网络应用无法访问问题。
书中关于应对分布式入侵的网络安防方案,也可作为程序员参考的网络优化方法,并获推荐。</li>
</ul>
<div class='separator'></div>
<div class='blockHeader'>
<span class='title'>
知乎校园公众号获赏作品 知乎社区
</span>
</div>
<ul class='highlights'>
<li>《桌面运维管理指南》解决了多数办公人员、运维工程师排查及解决软硬件问题的困扰,还提供了对运维工程师病毒安全防范的参考,为企业批量投入安全系统提供稳健运行保障,并在论坛社区上受到同业人士肯定及知乎官方公众号的赏识。</li>
</ul>
</div>
</div>
<div class='sectionLine'></div>
<div id='interests' class="sectionBlock">
<div class='sectionName'>
<span>兴趣爱好</span>
</div>
<div class='sectionContent'>
<li class='name'>喜好阅读与发布技术文章及分享</span><!--
--><span></span>
<li class='name'>乐于参与组织的活动</span><!--
--><span class='keywords'> <em>[
环市公路骑行、长距离慢跑<!--
-->
]</em></span><!--
-->
</div>
</ul>
</div>
<div class='sectionLine'></div>
<div id='thanks' class="sectionBlock">
<div class='sectionName'>
<span>诚挚致谢</span>
</div>
<div class='sectionContent'>
<div class='thanksBlock'>
<em><span style="font-size: large;" class='title'>感谢您在百忙中阅读我的简历,期待有机会与您共事。 </em></span>
</div>
</div>
</div>
</body>
</html>