-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeforehz.html
1731 lines (1143 loc) · 56.2 KB
/
beforehz.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>
<!--
_ooOoo_
o8888888o
88" . "88
(| -_- |)
O\ = /O
____/`---'\____
.' \\| |// `.
/ \\||| : |||// \
/ _||||| -:- |||||- \
| | \\\ - /// | |
| \_| ''\---/'' | |
\ .-\__ `-` ___/-. /
___`. .' /--.--\ `. . __
."" '< `.___\_<|>_/___.' >'"".
| | : `- \`.;`\ _ /`;.`/ - ` : | |
\ \ `-. \_ __\ /__ _/ .-` / /
======`-.____`-.___\_____/___.-`____.-'======
`=---='
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
佛祖保佑 永无BUG
-->
<html class="theme-next mist use-motion" lang="zh-Hans">
<head>
<meta charset="UTF-8"/>
<link href="//mydearest.cn" rel="dns-prefetch">
<link href="//www.mydearest.cn" rel="dns-prefetch">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta name="theme-color" content="#222">
<meta name="description" content="陈宇的博客" />
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic|Roboto Slab:300,300italic,400,400italic,700,700italic|Lobster Two:300,300italic,400,400italic,700,700italic|PT Mono:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<meta name="keywords" content="杂谈," />
<link rel="alternate" href="/rss2.xml" title="cosyer's Blog" type="application/atom+xml" />
<link rel="shortcut icon" type="image/x-icon" href="/images/favicon.ico" />
<meta name="description" content="怯懦的我终于和领导提出了离职,从8月11号入职以来,jenkins打包管理、bugatti自动化部署等等惊艳到了在上家公司还是用手动发包javac的我,学到了更正规的软件开发流程体系和产品线的迭代,KA项目的定制化。从1月开始一直用RN做相关的微应用,期间虽然也做过小程序、mui的H5、antd的中后台系统,但大多数时间还是用RN写业务应用。经过几个应用的锻炼、改造,已经封出了一些较能应付业务需求">
<meta property="og:type" content="article">
<meta property="og:title" content="在去上海前的一些想法">
<meta property="og:url" content="http://mydearest.cn/beforehz.html">
<meta property="og:site_name" content="cosyer's Blog">
<meta property="og:description" content="怯懦的我终于和领导提出了离职,从8月11号入职以来,jenkins打包管理、bugatti自动化部署等等惊艳到了在上家公司还是用手动发包javac的我,学到了更正规的软件开发流程体系和产品线的迭代,KA项目的定制化。从1月开始一直用RN做相关的微应用,期间虽然也做过小程序、mui的H5、antd的中后台系统,但大多数时间还是用RN写业务应用。经过几个应用的锻炼、改造,已经封出了一些较能应付业务需求">
<meta property="article:published_time" content="2018-06-26T13:14:37.000Z">
<meta property="article:modified_time" content="2020-08-13T16:44:37.552Z">
<meta property="article:author" content="陈宇(cosyer)">
<meta property="article:tag" content="杂谈">
<meta name="twitter:card" content="summary">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Mist',
sidebar: {"position":"left","display":"always","offset":12,"offset_float":12,"b2t":false,"scrollpercent":false,"onmobile":false},
fancybox: true,
tabs: true,
motion: true,
duoshuo: {
userId: '0',
author: '博主'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="http://mydearest.cn/beforehz.html"/>
<title>在去上海前的一些想法 | cosyer's Blog</title>
<script type="text/javascript">
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?653a4be35cb6c7b26817038a17c3f0d6";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<link href="https://mydearest.cn/css/all-9097fb9016.css" rel="stylesheet" type="text/css">
<style>
// scrollbar滚动条样式优化
::-webkit-scrollbar-corner {
background-color: transparent;
}
::-webkit-scrollbar-button {
width: 0;
height: 0;
display: none;
}
::-webkit-scrollbar-thumb {
width: 7px;
background-color: #b4babf;
border-radius: 7px;
}
::-webkit-scrollbar {
width: 7px;
height: 7px;
}
::-webkit-scrollbar-track {
width: 15px;
}
::-webkit-scrollbar:hover {
background-color: transparent;
}
* {
cursor: url("http://cdn.mydearest.cn/blog/images/miku1.png"),auto!important
}
:active {
cursor: url("http://cdn.mydearest.cn/blog/images/miku2.png"),auto!important
}
a:hover {
cursor: url("http://cdn.mydearest.cn/blog/images/miku2.png"),auto!important
}
</style>
<meta name="generator" content="Hexo 4.2.1"></head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
<div id="loader">
<div></div>
</div>
<div class="container sidebar-position-left page-post-detail ">
<div class="headband"></div>
<a href="https://github.com/cosyer" target="_blank" rel="noopener" class="github-corner" aria-label="View source on Github"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; left: 0; transform: scale(-1, 1);" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style></a>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">cosyer's Blog</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<h1 class="site-subtitle" itemprop="description">Blog</h1>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" class="faa-parent animated-hover" rel="section">
<i class="menu-item-icon fa fa-fw fa-home faa-wrench"></i> <br />
首页
</a>
</li>
<li class="menu-item menu-item-links">
<a href="/links/" class="faa-parent animated-hover" rel="section">
<i class="menu-item-icon fa fa-fw fa-link faa-shake"></i> <br />
友链
</a>
</li>
<li class="menu-item menu-item-guestbook">
<a href="/guestbook/" class="faa-parent animated-hover" rel="section">
<i class="menu-item-icon fa fa-fw fa-comment-o faa-tada"></i> <br />
留言板
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" class="faa-parent animated-hover" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive faa-float"></i> <br />
归档
</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about/" class="faa-parent animated-hover" rel="section">
<i class="menu-item-icon fa fa-fw fa-user faa-horizontal"></i> <br />
关于
</a>
</li>
<li class="menu-item menu-item-search">
<a href="javascript:;" class="popup-trigger faa-parent animated-hover">
<i class="menu-item-icon fa fa-search faa-burst fa-fw"></i> <br />
搜索
</a>
</li>
</ul>
<div class="site-search">
<div class="popup search-popup local-search-popup">
<div class="local-search-header clearfix">
<span class="search-icon">
<i class="fa fa-search"></i>
</span>
<span class="popup-btn-close">
<i class="fa fa-times-circle"></i>
</span>
<div class="local-search-input-wrapper">
<input autocomplete="off"
placeholder="搜索..." spellcheck="false"
type="text" id="local-search-input">
</div>
</div>
<div id="local-search-result"></div>
</div>
</div>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<div id="posts" class="posts-expand">
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-date" data-datetime="2020-08-14T00:44:37+08:00">
<div class="post-time-text">8月</div>
<div class="post-time-count">14</div>
<div class="text-desc">
<div class="date-text">更新于</div>
<div class="post-tiem">8月14</div>
<div class="post-year">2020</div>
</div>
</div>
<div class="post-badge">
<span class="post-category" >
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E6%9D%82%E8%B0%88/" itemprop="url" rel="index">
<span itemprop="name">杂谈</span>
</a>
</span>
</span>
</div>
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://mydearest.cn/beforehz.html">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="陈宇(cosyer)">
<meta itemprop="description" content="不去做的话永远也做不到。">
<meta itemprop="image" content="/images/avatar.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="cosyer's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">在去上海前的一些想法</h2>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="发表于" itemprop="dateCreated datePublished" datetime="2018-06-26T21:14:37+08:00">
2018-06-26
</time>
</span>
<span id="/beforehz.html" class="leancloud_visitors" data-flag-title="在去上海前的一些想法">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-eye"></i>
</span>
<span class="post-meta-item-text">热度 </span>
<span class="leancloud-visitors-count"></span> ℃
</span>
<div class="post-wordcount">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-pencil-square-o"></i>
</span>
<span class="post-meta-item-text">字数统计:</span>
<span title="字数统计:">
1,441 (字)
</span>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-clock-o"></i>
</span>
<span class="post-meta-item-text">阅读时长:</span>
<span title="阅读时长:">
5 (分钟)
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>怯懦的我终于和领导提出了离职,从8月11号入职以来,jenkins打包管理、bugatti自动化部署等等惊艳到了在上家公司还是用手动发包javac的我,学到了更正规的软件开发流程体系和产品线的迭代,KA项目的定制化。从1月开始一直用RN做相关的微应用,期间虽然也做过小程序、mui的H5、antd的中后台系统,但大多数时间还是用RN写业务应用。经过几个应用的锻炼、改造,已经封出了一些较能应付业务需求的组件。复杂的集成调用框架那边都做了,其他部分做起来没有什么技术含量了。我知道已经毕业1年的我该做出些改变了。</p>
<hr>
<a id="more"></a>
<p>面对领导们的挽留,我也只能笑着婉拒。我想在大前端的道路上迈的更远,本来就没打算活很长的时间,在短暂还算充满干劲的人生中多做点自己感到快乐的事。说来也是好笑,来了南京这么久也没出去逛过,只对公司和公寓周边熟悉一些,真是符合我的作风啊o(<em> ̄︶ ̄</em>)o。</p>
<p>依稀还记得刚追被去南京发展是我的内心也是非常慌乱的,陌生的城市、环境和人不停地在劝退着我,投递的简历有了回复,我不断预演这面试的场景,竟可能多的将自己的优势展现出来。将近2个小时的长途客车旅途,我到了南京南站,摸着黑上了地铁到了软件大道。9点半又误打误撞地摸到了目的地,不好意思随便进入,随即打电话确认(有人来引下路多好)。等待的过程忐忑不安,人生第一次经历三轮面试,和技术聊真的开心啊O(∩_∩)O哈哈~面试完后立即又买了车票回了家汗~~</p>
<p>自从工作以来就没请过假,没迟过到。自尊心强烈的我很在意别人对我的看法。去年买了房,房贷没什么压力。房子让父母住,我在工作的地方租房住,这是我的规划。不想去相亲,不想被各种绑架。</p>
<p>作为熟练的api caller,高中之前的学习是多么快乐啊,是的,做题(除了语文)学习很快乐。新思维解题都是带来很多不同的思路,课堂上有选择地去学习自己喜欢的事物。虽然被老师骂的惨,但暗地里还是支持的。没压力地考上了重点高中,进城上高中了,才感觉到差距是巨大的。城里的小孩终究是不一样的,读过的书也好,培养的兴趣爱好也好,上过的兴趣班都远超过你。学的东西都是套路化的解题,枯燥乏味。渲染了xx的气氛,表达了xx什么的情感。各种烦心、倒霉的事也接踵而来,小小的幸福被扼杀。好奇心和脖子的扭,知道的越多,越觉得绝望。见过的所谓的’真实’,都是为了利益。永远不要去试探人性。现在看来都只是可笑的借口罢了,压力抑郁到自残。人与人之间最公平的就是时间了,每个人一天都是24小时,谁也不多,谁也不少。特别佩服那些活的独立、认真的人们。他们年轻、强大、充满个性,差距真的差到天差地别,是我前进的目标和憧憬的对象。我不会再迷茫了,毕竟~~~</p>
<blockquote class="blockquote-center"><p>不去做的话永远也做不到。</p>
</blockquote>
<p>s(优势):互联网氛围、大牛、技术提升
w(劣势):房租、10m2的地下室、消费、离家远、通勤时间、异地恋
o(机会):更高的待遇天花板、未来发展
t(威胁):陌生的城市、重新整理技术体系、面试</p>
<hr>
<p>s:门面做的不错、近10k(南京1年经验)、双休(有时间做自己项目学习、接外包)、雨花台区(离老婆近)
w:不融资、官网low、没核心产品(说在招人明年做、说呆1年能到13-14 0^0???)、着急招人(目前人数较少?)、外包园、1-3年9-12k???常见都是10-15k。</p>
<p>南京这边的工资待遇真的很低,感觉像命运一样,留了最后一张简历,偏偏扇贝又在这个时候叫我去面试。面试居然还提供饮品。这边催着入职,前面的还没消息,说到底还是自己太懦弱了,如果有联系或者果断点,就不会有这样的情况出现了。不去试一试怎么会知道呢,担当起自己的responsibility。</p>
<p>2周前投的现在认识才提醒面试是不是太迟了;虽然很想去,技术氛围浓厚。大公司就会比较选人,不会立即给你答复。可这边的工作急着让你给答复。唉就这样形成了现在的处境。努力沉淀一点再跳槽到新公司吧!!!</p>
<p>半杯水,懂了么。自身的强大很重要,more experience 成年人 卧薪尝胆</p>
<p>办公环境、补贴、五险一金、工资、福利待遇、氛围、大公司镀金、自身的强大。选择比努力更重要,实力和机遇。看看别人的评分98,6周年dlun这种自研的能跟着一起成长。大格局,这样会越来越迷茫找不到自己的定位,半杯水的思想。真正的效率。</p>
<p>3年了,还是在南京。。。</p>
</div>
<div>
<div>
<div class="text-center line pages-end">
<span>本文结束<i class="fa fa-meh-o fa-fw"></i>感谢您的阅读</span>
</div>
</div>
</div>
<div>
<div class="my_post_copyright">
<script src="//cdn.bootcss.com/clipboard.js/1.5.10/clipboard.min.js"></script>
<!-- JS库 sweetalert 可修改路径 -->
<script type="text/javascript" src="https://cdn.staticfile.org/jquery/1.7.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert@1.0.0/dist/sweetalert.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/sweetalert@1.0.0/dist/sweetalert.css">
<p><span>本文标题:</span><a href="/beforehz.html">在去上海前的一些想法</a></p>
<p><span>文章作者:</span><a href="/" title="访问 陈宇(cosyer) 的个人博客">陈宇(cosyer)</a></p>
<p><span>发布时间:</span>2018年06月26日 - 21:06</p>
<p><span>最后更新:</span>2020年08月14日 - 00:08</p>
<p><span>原始链接:</span><a href="/beforehz.html" title="在去上海前的一些想法">http://mydearest.cn/beforehz.html</a>
<span class="copy-path" title="点击复制文章链接"><i class="fa fa-clipboard" data-clipboard-text="http://mydearest.cn/beforehz.html" aria-label=" 复制成功!"></i></span>
</p>
<p><span>许可协议:</span><i class="fa fa-creative-commons"></i> <a rel="license" href="https://creativecommons.org/licenses/by-nc-nd/4.0/" target="_blank" title="Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)">署名-非商业性使用-禁止演绎 4.0 国际</a> 转载请保留原文链接及作者。</p>
</div>
<script>
var clipboard = new Clipboard('.fa-clipboard');
clipboard.on('success', $(function(){
$(".fa-clipboard").click(function(){
swal({
title: "",
text: '复制成功',
timer: 500,
showConfirmButton: false
});
});
}));
</script>
</div>
<div>
<div style="padding: 10px 0; margin: 20px auto; width: 90%; text-align: center;">
<div>坚持原创技术分享,您的支持将鼓励我继续创作!</div>
<button id="rewardButton" disable="enable" onclick="var qr = document.getElementById('QR'); if (qr.style.display === 'none') {qr.style.display='block';} else {qr.style.display='none'}">
<span>赏</span>
</button>
<div id="QR" style="display: none;">
<div id="wechat" style="display: inline-block">
<img id="wechat_qr" src="/images/wechatpay.png" alt="陈宇(cosyer) WeChat Pay"/>
<p>WeChat Pay</p>
</div>
<div id="alipay" style="display: inline-block">
<img id="alipay_qr" src="/images/alipay.png" alt="陈宇(cosyer) Alipay"/>
<p>Alipay</p>
</div>
</div>
</div>
</div>
<footer class="post-footer">
<div class="post-tags">
<a href="/tags/%E6%9D%82%E8%B0%88/" rel="tag"><i class="fa fa-tag fa-fw"></i> 杂谈</a>
</div>
<div class="post-nav">
<div class="post-nav-next post-nav-item">
<a href="/sort.html" rel="next" title="常见排序的JS实现">
<i class="fa fa-chevron-left"></i> 常见排序的JS实现
</a>
</div>
<span class="post-nav-divider"></span>
<div class="post-nav-prev post-nav-item">
<a href="/%E5%87%BD%E6%95%B0%E9%98%B2%E6%8A%96%E5%92%8C%E8%8A%82%E6%B5%81.html" rel="prev" title="函数的防抖和节流">
函数的防抖和节流 <i class="fa fa-chevron-right"></i>
</a>
</div>
</div>
</footer>
</div>
</article>
<div class="post-spread">
</div>
</div>
</div>
<div class="comments" id="comments">
<div class="comments v" id="comments"></div>
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<section class="site-overview sidebar-panel sidebar-panel-active">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image"
src="/images/avatar.jpg"
alt="陈宇(cosyer)" />
<p class="site-author-name" itemprop="name">陈宇(cosyer)</p>
<p class="site-description motion-element" itemprop="description">不去做的话永远也做不到。</p>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">159</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<a href="/categories/index.html">
<span class="site-state-item-count">10</span>
<span class="site-state-item-name">分类</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/index.html">
<span class="site-state-item-count">51</span>
<span class="site-state-item-name">标签</span>
</a>
</div>
</nav>
<div class="feed-link motion-element">
<a href="/rss2.xml" rel="alternate">
<i class="fa fa-rss"></i>
RSS
</a>
</div>
<div class="links-of-author motion-element">
<span class="links-of-author-item">
<a rel="external nofollow" href="https://github.com/cosyer" target="_blank" title="GitHub">
<i class="fa fa-fw fa-github"></i>
GitHub
</a>
</span>
<span class="links-of-author-item">
<a rel="external nofollow" href="https://twitter.com/yzchenyu1995" target="_blank" title="Twitter">
<i class="fa fa-fw fa-twitter"></i>
Twitter
</a>
</span>
<span class="links-of-author-item">
<a rel="external nofollow" href="mailto:yzchenyu1995@gmail.com" target="_blank" title="E-Mail">
<i class="fa fa-fw fa-envelope"></i>
E-Mail
</a>
</span>
<span class="links-of-author-item">
<a rel="external nofollow" href="https://www.facebook.com/profile.php?id=100025666071215" target="_blank" title="FB Page">
<i class="fa fa-fw fa-facebook"></i>
FB Page
</a>
</span>
</div>
<div class="links-of-blogroll motion-element links-of-blogroll-inline">
<div class="links-of-blogroll-title">
<i class="fa fa-fw fa-globe"></i>
推荐阅读
</div>
<ul class="links-of-blogroll-list">
<li class="links-of-blogroll-item">
<a rel="external nofollow" href="http://callmesoul.cn" title="Callmesoul" target="_blank">Callmesoul</a>
</li>
<li class="links-of-blogroll-item">
<a rel="external nofollow" href="https://www.jstips.co/" title="JsTips" target="_blank">JsTips</a>
</li>
<li class="links-of-blogroll-item">
<a rel="external nofollow" href="http://dir.mydearest.cn/motion/" title="Personal Site" target="_blank">Personal Site</a>
</li>
<li class="links-of-blogroll-item">
<a rel="external nofollow" href="http://resume.mydearest.cn/" title="Resume" target="_blank">Resume</a>
</li>
</ul>
</div>
</section>
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright" >
©
<span itemprop="copyrightYear">2021</span>
<span class="with-love">
<i class="fa fa-heart"></i>
</span>
<span class="author" itemprop="copyrightHolder">陈宇(cosyer)</span>
</div>
<div>
<span class="alive"></span>
</div>
<div class="powered-by">
<i class="fa fa-users fa-fw"></i>
<span id="busuanzi_container_site_uv">
终于等到你(UV): <span id="busuanzi_value_site_uv"></span>
</span>
|
<i class="fa fa-bar-chart-o fa-fw"></i>
<span id="busuanzi_container_site_pv">
欢迎再来(PV): <span id="busuanzi_value_site_pv"></span>
</span>
<div class="theme-info">
<div class="powered-by"></div>
<span class="post-count">Blog总字数: 312.5k字</span>
</div>
<div class="theme-info">
<div class="powered-by"></div>
<a class="post-count" href="http://www.beian.miit.gov.cn/" target="_blank">苏ICP备17005342号-1</a>
</div>
</div>
<!--
<div class="powered-by">
由 <a class="theme-link" href="https://hexo.io" target="_blank" rel="noopener">Hexo</a> 强力驱动
</div>
<div class="theme-info">
主题 -
<a class="theme-link" href="https://github.com/iissnan/hexo-theme-next" target="_blank" rel="noopener">
NexT.Mist
</a>
</div>
-->
</div>
</footer>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
</div>
</div>
<script type="text/javascript">
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
window.Promise = null;
}
</script>
<script type="text/javascript" src="https://cdn.lishaoy.net/js/index.js"></script>