-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1338 lines (409 loc) · 51.6 KB
/
index.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
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
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<!-- This site was created with Hugo Blox. https://hugoblox.com -->
<!-- Last Published: July 19, 2024 --><html lang="en-us" dir="ltr"
data-wc-theme-default="system">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="generator" content="Hugo Blox Builder 0.2.0" />
<meta name="author" content="王国嵘" />
<meta name="description" content="A highly-customizable Hugo résumé theme powered by Hugo Blox Builder." />
<link rel="alternate" hreflang="en-us" href="https://example.com/" />
<link rel="stylesheet" href="/css/themes/blue.min.css" />
<link href="/dist/wc.min.css" rel="stylesheet" />
<script>
window.hbb = {
defaultTheme: document.documentElement.dataset.wcThemeDefault,
setDarkTheme: () => {
document.documentElement.classList.add("dark");
document.documentElement.style.colorScheme = "dark";
},
setLightTheme: () => {
document.documentElement.classList.remove("dark");
document.documentElement.style.colorScheme = "light";
}
}
console.debug(`Default Hugo Blox Builder theme is ${window.hbb.defaultTheme}`);
if ("wc-color-theme" in localStorage) {
localStorage.getItem("wc-color-theme") === "dark" ? window.hbb.setDarkTheme() : window.hbb.setLightTheme();
} else {
window.hbb.defaultTheme === "dark" ? window.hbb.setDarkTheme() : window.hbb.setLightTheme();
if (window.hbb.defaultTheme === "system") {
window.matchMedia("(prefers-color-scheme: dark)").matches ? window.hbb.setDarkTheme() : window.hbb.setLightTheme();
}
}
</script>
<script>
document.addEventListener('DOMContentLoaded', function () {
let checkboxes = document.querySelectorAll('li input[type=\'checkbox\'][disabled]');
checkboxes.forEach(e => {
e.parentElement.parentElement.classList.add('task-list');
});
const liNodes = document.querySelectorAll('.task-list li');
liNodes.forEach(nodes => {
let textNodes = Array.from(nodes.childNodes).filter(node => node.nodeType === 3 && node.textContent.trim().length > 1);
if (textNodes.length > 0) {
const span = document.createElement('label');
textNodes[0].after(span);
span.appendChild(nodes.querySelector('input[type=\'checkbox\']'));
span.appendChild(textNodes[0]);
}
});
});
</script>
<link rel="alternate" href="/index.xml" type="application/rss+xml" title="王国嵘个人简历" />
<link rel="icon" type="image/png" href="/media/icon_hu68170e94a17a2a43d6dcb45cf0e8e589_3079_32x32_fill_lanczos_center_3.png" />
<link rel="apple-touch-icon" type="image/png" href="/media/icon_hu68170e94a17a2a43d6dcb45cf0e8e589_3079_180x180_fill_lanczos_center_3.png" />
<link rel="canonical" href="https://example.com/" />
<meta property="twitter:card" content="summary" />
<meta property="twitter:site" content="@GetResearchDev" />
<meta property="twitter:creator" content="@GetResearchDev" />
<meta property="og:site_name" content="王国嵘个人简历" />
<meta property="og:url" content="https://example.com/" />
<meta property="og:title" content="CV | 王国嵘个人简历" />
<meta property="og:description" content="A highly-customizable Hugo résumé theme powered by Hugo Blox Builder." /><meta property="og:image" content="https://example.com/media/icon_hu68170e94a17a2a43d6dcb45cf0e8e589_3079_512x512_fill_lanczos_center_3.png" />
<meta property="twitter:image" content="https://example.com/media/icon_hu68170e94a17a2a43d6dcb45cf0e8e589_3079_512x512_fill_lanczos_center_3.png" /><meta property="og:locale" content="en-us" />
<meta property="og:updated_time" content="2023-10-24T00:00:00+00:00" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite","url": "https://example.com/"
}
</script>
<title>CV | 王国嵘个人简历</title>
<style>
@font-face {
font-family: 'Inter var';
font-style: normal;
font-weight: 100 900;
font-display: swap;
src: url(/dist/font/Inter.var.woff2) format(woff2);
}
</style>
<script
defer
src="/js/hugo-blox-en.min.e5fa931947cac2d947732ea37a770aae2b5bd4a50b6048060cd129b46159a06d.js"
integrity="sha256-5fqTGUfKwtlHcy6jencKritb1KULYEgGDNEptGFZoG0="
></script>
</head>
<body class="dark:bg-hb-dark dark:text-white page-wrapper" id="top">
<div id="page-bg"></div>
<div class="page-header ">
<div class="absolute right-0 top-0 m-3 bg-primary-100 dark:bg-primary-700 rounded-full p-2 z-10">
<div class="h-[24px] w-[24px]">
<button class="theme-toggle" accesskey="t" title="" aria-label="Display preferences">
<svg id="moon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="dark:hidden">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
</svg>
<svg id="sun" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="white" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class=" dark:block [&:not(dark)]:hidden">
<circle cx="12" cy="12" r="5"></circle>
<line x1="12" y1="1" x2="12" y2="3"></line>
<line x1="12" y1="21" x2="12" y2="23"></line>
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
<line x1="1" y1="12" x2="3" y2="12"></line>
<line x1="21" y1="12" x2="23" y2="12"></line>
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
</svg>
</button>
</div>
</div>
</div>
<div class="page-body ">
<section id="section-resume-biography" class="relative hbb-section blox-resume-biography " style="padding: 4rem 0 4rem 0;" >
<div class="home-section-bg " >
</div>
<div class="w-full bg-gray-200 dark:bg-gray-900 flex flex-wrap items-center justify-center">
<div class="w-full bg-white rounded dark:bg-gray-800">
<div class="h-2/4 sm:h-64 overflow-hidden w-full">
<img class="w-full object-cover"
src="/media/kalen-emsley-Bkci_8qcdvQ-unsplash_hu36bf0ef92611c26ca13528fcf3853edf_2502989_0x0_q80_h2_.webp"
width="5760" height="1677"
alt="" />
</div>
</div>
</div>
<div id="profile" class="resume-biography flex justify-center items-center flex-col dark:text-white">
<div class="avatar-wrapper -mt-[105px]">
<img class="avatar rounded-full bg-white dark:bg-gray-800 p-1" src="/author/%E7%8E%8B%E5%9B%BD%E5%B5%98/avatar_hu02aa61ae1d9de35cbe238d2676170cb9_34840_150x150_fill_q80_lanczos_center.jpg" alt="王国嵘"
width="150" height="150">
<span class="avatar-emoji">🆙</span>
</div>
<div class="text-3xl font-bold mb-2 mt-6"><ruby>
<rb>王国嵘</rb>
<rt>EricWgr</rt>
</ruby></div>
<h3 class="font-semibold mb-1">游戏后端Golang工程师</h3>
<div class="mb-2">
<a href="https://www.5eplay.com/" target="_blank" rel="noopener">
<div>@5EPlay对战平台</div>
</a>
</div>
<ul class="network-icon dark:text-zinc-100">
<li>
<a href="https://github.com/ericwgr" target="_blank" rel="noopener" aria-label="brands/github"
>
<svg style="height: 1.5rem;" fill="currentColor" viewBox="3 3 18 18"><path d="M12 3C7.0275 3 3 7.12937 3 12.2276C3 16.3109 5.57625 19.7597 9.15374 20.9824C9.60374 21.0631 9.77249 20.7863 9.77249 20.5441C9.77249 20.3249 9.76125 19.5982 9.76125 18.8254C7.5 19.2522 6.915 18.2602 6.735 17.7412C6.63375 17.4759 6.19499 16.6569 5.8125 16.4378C5.4975 16.2647 5.0475 15.838 5.80124 15.8264C6.51 15.8149 7.01625 16.4954 7.18499 16.7723C7.99499 18.1679 9.28875 17.7758 9.80625 17.5335C9.885 16.9337 10.1212 16.53 10.38 16.2993C8.3775 16.0687 6.285 15.2728 6.285 11.7432C6.285 10.7397 6.63375 9.9092 7.20749 9.26326C7.1175 9.03257 6.8025 8.08674 7.2975 6.81794C7.2975 6.81794 8.05125 6.57571 9.77249 7.76377C10.4925 7.55615 11.2575 7.45234 12.0225 7.45234C12.7875 7.45234 13.5525 7.55615 14.2725 7.76377C15.9937 6.56418 16.7475 6.81794 16.7475 6.81794C17.2424 8.08674 16.9275 9.03257 16.8375 9.26326C17.4113 9.9092 17.76 10.7281 17.76 11.7432C17.76 15.2843 15.6563 16.0687 13.6537 16.2993C13.98 16.5877 14.2613 17.1414 14.2613 18.0065C14.2613 19.2407 14.25 20.2326 14.25 20.5441C14.25 20.7863 14.4188 21.0746 14.8688 20.9824C16.6554 20.364 18.2079 19.1866 19.3078 17.6162C20.4077 16.0457 20.9995 14.1611 21 12.2276C21 7.12937 16.9725 3 12 3Z"></path></svg>
</a>
</li>
<li>
<a href="https://x.com/ericwgr1" target="_blank" rel="noopener" aria-label="brands/x"
>
<svg style="height: 1.5rem;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"/></svg>
</a>
</li>
<li>
<a href="mailto:[email protected]" aria-label="at-symbol"
data-toggle="tooltip" data-placement="top" title="E-mail Me">
<svg style="height: 1.5rem;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="1.5" d="M16.5 12a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0Zm0 0c0 1.657 1.007 3 2.25 3S21 13.657 21 12a9 9 0 1 0-2.636 6.364M16.5 12V8.25"/></svg>
</a>
</li>
</ul>
<div class="pt-2 d-flex justify-content-center prose prose-slate lg:prose-xl dark:prose-invert">
<div class="bio-text" style="text-align: justify; font-size: 0.8em;">
<ul>
<li>十多年研发经验参与过37个项目,敢拼搏、能实干、有坚持,有良好的沟通与团队协能力</li>
<li>技术全面,擅长后端研发(Golang/PHP/JAVA) 架构与运维,熟悉前端React/Vue/小程序</li>
</ul>
</div>
</div>
<a href="uploads/cv.pdf" target="_blank" class="inline-flex items-center px-4 py-2 text-sm font-medium text-gray-900 bg-white border border-gray-200 rounded-lg hover:bg-gray-100 hover:text-primary-700 focus:z-10 focus:ring-4 focus:outline-none focus:ring-gray-200 focus:text-primary-700 dark:bg-gray-800 dark:text-gray-400 dark:border-gray-600 dark:hover:text-white dark:hover:bg-gray-700 dark:focus:ring-gray-700"><svg class="w-3.5 h-3.5 me-2.5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
<path d="M14.707 7.793a1 1 0 0 0-1.414 0L11 10.086V1.5a1 1 0 0 0-2 0v8.586L6.707 7.793a1 1 0 1 0-1.414 1.414l4 4a1 1 0 0 0 1.416 0l4-4a1 1 0 0 0-.002-1.414Z"/>
<path d="M18 12h-2.55l-2.975 2.975a3.5 3.5 0 0 1-4.95 0L4.55 12H2a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2Zm-3 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"/>
</svg> 下载PDF简历</a>
</div>
</section>
<section id="section-resume-experience" class="relative hbb-section blox-resume-experience " style="padding: 4rem 0 4rem 0;" >
<div class="home-section-bg " >
</div>
<div class="flex flex-col items-center max-w-prose mx-auto">
<div class="flex flex-col lg:gap-x-6 w-100 px-6 sm:px-0 ">
<div class="w-full">
<h3 class="mb-6 text-3xl font-bold text-gray-900 dark:text-white">Experience</h3>
<ol class="relative border-s border-gray-200 dark:border-gray-700">
<li class="mb-10 ms-6">
<span class="absolute flex items-center justify-center w-6 h-6 bg-primary-100 rounded-full -start-3 ring-8 ring-white dark:ring-gray-900 dark:bg-primary-900">
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256" class="w-5 h-5 text-primary-800 dark:text-primary-300"><path d="M216,56H176V48a24,24,0,0,0-24-24H104A24,24,0,0,0,80,48v8H40A16,16,0,0,0,24,72V200a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V72A16,16,0,0,0,216,56ZM96,48a8,8,0,0,1,8-8h48a8,8,0,0,1,8,8v8H96ZM216,72v41.61A184,184,0,0,1,128,136a184.07,184.07,0,0,1-88-22.38V72Zm0,128H40V131.64A200.19,200.19,0,0,0,128,152a200.25,200.25,0,0,0,88-20.37V200ZM104,112a8,8,0,0,1,8-8h32a8,8,0,0,1,0,16H112A8,8,0,0,1,104,112Z"></path></svg>
</span>
<h3 class="flex items-center mb-1 text-lg font-semibold text-gray-900 dark:text-white text-wrap">Golang工程师-游戏后端
</h3>
<span class="block mb-2 text-sm font-normal leading-none text-gray-500 dark:text-gray-300">5EPlay 北京云奥赛凡</span>
<time class="block mb-3 text-sm font-normal leading-none text-gray-500 dark:text-gray-300">
2022-09 –
Present
</time>
<div class="mb-4 text-base font-normal text-gray-500 dark:text-gray-300 text-wrap prose prose-slate dark:prose-invert"><blockquote>
<p>5E对战平台,国内TOP3且玩家最多的CS:GO对战平台超百万活跃玩家</p>
</blockquote>
<ul>
<li>负责游戏服务器后端开发,cs2 游戏服务器后端从0到1研发,支撑了单日最高上万台游戏服务器以及最高数十万日活用户,逐步推动游戏服务架构优化 , 可用性, 研发效率的提升</li>
<li>参与5Eplay的活动平台游戏实时数据项目的全流程,线上游戏数据发送稳定支撑5k+的qps(压测支撑1w+)</li>
<li>协助团队与项目的管理工作,制定团队与项目的规范,负责游戏后端的架构、日常需求研发、核心服务重构的工作</li>
<li>主动发起并推进项目中一些老服务的CI/CD的改造,提升了服务发布的效率同时避免了人工发布操作失误引起的风险</li>
<li>相关技术栈:Go、Gin、MySQL、Clickhouse、Kafka、Redis、gRPC、阿里云/腾讯云/火山引擎等</li>
</ul></div>
</li>
<li class="mb-10 ms-6">
<span class="absolute flex items-center justify-center w-6 h-6 bg-primary-100 rounded-full -start-3 ring-8 ring-white dark:ring-gray-900 dark:bg-primary-900">
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256" class="w-5 h-5 text-primary-800 dark:text-primary-300"><path d="M216,56H176V48a24,24,0,0,0-24-24H104A24,24,0,0,0,80,48v8H40A16,16,0,0,0,24,72V200a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V72A16,16,0,0,0,216,56ZM96,48a8,8,0,0,1,8-8h48a8,8,0,0,1,8,8v8H96ZM216,72v41.61A184,184,0,0,1,128,136a184.07,184.07,0,0,1-88-22.38V72Zm0,128H40V131.64A200.19,200.19,0,0,0,128,152a200.25,200.25,0,0,0,88-20.37V200ZM104,112a8,8,0,0,1,8-8h32a8,8,0,0,1,0,16H112A8,8,0,0,1,104,112Z"></path></svg>
</span>
<h3 class="flex items-center mb-1 text-lg font-semibold text-gray-900 dark:text-white text-wrap">Golang工程师-直播风控 & 后端组长
</h3>
<span class="block mb-2 text-sm font-normal leading-none text-gray-500 dark:text-gray-300">LiveMe 北京乐我无限</span>
<time class="block mb-3 text-sm font-normal leading-none text-gray-500 dark:text-gray-300">
2021-09 –
2022-09
</time>
<div class="mb-4 text-base font-normal text-gray-500 dark:text-gray-300 text-wrap prose prose-slate dark:prose-invert"><blockquote>
<p>海外直播平台TOP3,产品遍布 240 个国家 3700 万月活,字节跳动曾投资5000万美元</p>
</blockquote>
<ul>
<li>负责LiveMe风控平台的服务端开发(基于golang),主导优化各项实时指标性能(200ms)与可用性(99.99%),同时调优后节约了30%的服务器成本</li>
<li>搭建大数据可视化报表体系(基于AWS Redshift数仓),对接三方风控服务(同盾、数美), 搭建风控用户画像体系(基于ElasticSearch),优化风控策略引擎与决策引擎</li>
<li>相关技术栈:Go、Gin、MySQL、Redis、ElasticSearch、Thrift、gRPC、AWS等</li>
</ul></div>
</li>
<li class="mb-10 ms-6">
<span class="absolute flex items-center justify-center w-6 h-6 bg-primary-100 rounded-full -start-3 ring-8 ring-white dark:ring-gray-900 dark:bg-primary-900">
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256" class="w-5 h-5 text-primary-800 dark:text-primary-300"><path d="M216,56H176V48a24,24,0,0,0-24-24H104A24,24,0,0,0,80,48v8H40A16,16,0,0,0,24,72V200a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V72A16,16,0,0,0,216,56ZM96,48a8,8,0,0,1,8-8h48a8,8,0,0,1,8,8v8H96ZM216,72v41.61A184,184,0,0,1,128,136a184.07,184.07,0,0,1-88-22.38V72Zm0,128H40V131.64A200.19,200.19,0,0,0,128,152a200.25,200.25,0,0,0,88-20.37V200ZM104,112a8,8,0,0,1,8-8h32a8,8,0,0,1,0,16H112A8,8,0,0,1,104,112Z"></path></svg>
</span>
<h3 class="flex items-center mb-1 text-lg font-semibold text-gray-900 dark:text-white text-wrap">研发Leader & Golang/PHP工程师
</h3>
<span class="block mb-2 text-sm font-normal leading-none text-gray-500 dark:text-gray-300">趣店集团</span>
<time class="block mb-3 text-sm font-normal leading-none text-gray-500 dark:text-gray-300">
2016-01 –
2021-03
</time>
<div class="mb-4 text-base font-normal text-gray-500 dark:text-gray-300 text-wrap prose prose-slate dark:prose-invert"><blockquote>
<p>成立仅三年纽交所上市 ,市值曾最高超百亿美元,早期员工</p>
</blockquote>
<ul>
<li>【全栈研发&架构】在趣店五年多,参与了涉及多个行业的数十个大小项目前后端研发,相关技术栈:Go、PHP、JS、React/Vue、MySQL、Elastic Search、Redis、WebSocket、Docker/K8S等</li>
<li>【用户体系团队leader】带领研发(最多9人)支撑集团多个新业务(跨境电商、教育OMO)用户体系相关系统的开发,包括:账号体系、会员体系、增长体系、生命周期体系等</li>
<li>【来分期】 经历从来分期早期到7000W+注册用户百万日活,负责用户相关系统的研发与项目管理</li>
<li>负责集团用户增长体系(营销/电销/活动/线下等项目)的研发与项目管理,高效助力运营人员进行百万级的短信/PUSH/活动以及2000+ 电销人员的日常工作,促成最高单日数亿金额的转化</li>
<li>负责大白汽车分期CRM门店端App全栈开发,与团队一起7天完成上线并不断优化,快速高效的支撑了集团门店线下运营工作,助力实现项目成立后3个月内单日汽车订单超300</li>
<li>负责万里目奢侈品CRM体系、万里目少儿用户体系、趣学习教师端用户体系 等项目的研发与团队管理</li>
</ul></div>
</li>
<li class="mb-10 ms-6">
<span class="absolute flex items-center justify-center w-6 h-6 bg-primary-100 rounded-full -start-3 ring-8 ring-white dark:ring-gray-900 dark:bg-primary-900">
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256" class="w-5 h-5 text-primary-800 dark:text-primary-300"><path d="M216,56H176V48a24,24,0,0,0-24-24H104A24,24,0,0,0,80,48v8H40A16,16,0,0,0,24,72V200a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V72A16,16,0,0,0,216,56ZM96,48a8,8,0,0,1,8-8h48a8,8,0,0,1,8,8v8H96ZM216,72v41.61A184,184,0,0,1,128,136a184.07,184.07,0,0,1-88-22.38V72Zm0,128H40V131.64A200.19,200.19,0,0,0,128,152a200.25,200.25,0,0,0,88-20.37V200ZM104,112a8,8,0,0,1,8-8h32a8,8,0,0,1,0,16H112A8,8,0,0,1,104,112Z"></path></svg>
</span>
<h3 class="flex items-center mb-1 text-lg font-semibold text-gray-900 dark:text-white text-wrap">PHP & JAVA工程师
</h3>
<span class="block mb-2 text-sm font-normal leading-none text-gray-500 dark:text-gray-300">友宝昂莱</span>
<time class="block mb-3 text-sm font-normal leading-none text-gray-500 dark:text-gray-300">
2021-09 –
2022-09
</time>
<div class="mb-4 text-base font-normal text-gray-500 dark:text-gray-300 text-wrap prose prose-slate dark:prose-invert"><blockquote>
<p>智能售货机行业TOP1,蚂蚁金服投资16亿,拟赴香港IPO估值约10亿美元</p>
</blockquote>
<ul>
<li>参与友宝支付体系的开发,参与微信&支付宝支付内测项目同微信团队对接,快速完成了友宝对接微信支付体系工作。并在2013年互联网大会上,友宝售货机和便利柜首次展示微信支付买饮料零食,得到了广泛关注与赞扬</li>
<li>参与售货机核心服务的开发,提供售货机中WebApp的商品、二维码、广告、程序包、配置等相关API服务</li>
<li>负责后端开发,通过智能运营App,方便的补货,库存检查,异常报警,任务管理等工作,系统化提升了线下运营效率并更精准的考核业绩</li>
</ul></div>
</li>
</ol>
</div>
</div>
</div>
</section>
<section id="section-resume-skills" class="relative hbb-section blox-resume-skills " style="padding: 4rem 0 4rem 0;" >
<div class="home-section-bg " >
</div>
<div class="flex flex-col items-center max-w-prose mx-auto gap-3 justify-center">
<div class="mb-6 text-3xl font-bold text-gray-900 dark:text-white">
Skills
</div>
</div>
<div class="flex flex-col lg:flex-row items-center max-w-prose mx-auto gap-3">