-
Notifications
You must be signed in to change notification settings - Fork 5
/
archive.html
1442 lines (1313 loc) · 89.8 KB
/
archive.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><html lang="zh_CN">
<head><!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TM7J1LHC1Z"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-TM7J1LHC1Z');
gtag('config', 'G-TM7J1LHC1Z', { 'anonymize_ip': true });
</script><meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"><title>Archive - 一片瓜田</title><meta name="description" content="I write more code to write less.
">
<link rel="canonical" href="https://www.desgard.com/archive.html"><link rel="alternate" type="application/rss+xml" title="一片瓜田" href="/feed.xml"><!-- start favicons snippet, use https://realfavicongenerator.net/ --><link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png"><link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png"><link rel="manifest" href="/assets/site.webmanifest"><link rel="mask-icon" href="/assets/safari-pinned-tab.svg" color="#fc4d50"><link rel="shortcut icon" href="/assets/favicon.ico">
<meta name="msapplication-TileColor" content="#ffc40d"><meta name="msapplication-config" content="/assets/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<!-- end favicons snippet --><link rel="stylesheet" href="/assets/css/main.css"><link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" ><!-- start custom head snippets -->
<!-- end custom head snippets -->
<script>(function() {
window.isArray = function(val) {
return Object.prototype.toString.call(val) === '[object Array]';
};
window.isString = function(val) {
return typeof val === 'string';
};
window.hasEvent = function(event) {
return 'on'.concat(event) in window.document;
};
window.isOverallScroller = function(node) {
return node === document.documentElement || node === document.body || node === window;
};
window.isFormElement = function(node) {
var tagName = node.tagName;
return tagName === 'INPUT' || tagName === 'SELECT' || tagName === 'TEXTAREA';
};
window.pageLoad = (function () {
var loaded = false, cbs = [];
window.addEventListener('load', function () {
var i;
loaded = true;
if (cbs.length > 0) {
for (i = 0; i < cbs.length; i++) {
cbs[i]();
}
}
});
return {
then: function(cb) {
cb && (loaded ? cb() : (cbs.push(cb)));
}
};
})();
})();
(function() {
window.throttle = function(func, wait) {
var args, result, thisArg, timeoutId, lastCalled = 0;
function trailingCall() {
lastCalled = new Date;
timeoutId = null;
result = func.apply(thisArg, args);
}
return function() {
var now = new Date,
remaining = wait - (now - lastCalled);
args = arguments;
thisArg = this;
if (remaining <= 0) {
clearTimeout(timeoutId);
timeoutId = null;
lastCalled = now;
result = func.apply(thisArg, args);
} else if (!timeoutId) {
timeoutId = setTimeout(trailingCall, remaining);
}
return result;
};
};
})();
(function() {
var Set = (function() {
var add = function(item) {
var i, data = this._data;
for (i = 0; i < data.length; i++) {
if (data[i] === item) {
return;
}
}
this.size ++;
data.push(item);
return data;
};
var Set = function(data) {
this.size = 0;
this._data = [];
var i;
if (data.length > 0) {
for (i = 0; i < data.length; i++) {
add.call(this, data[i]);
}
}
};
Set.prototype.add = add;
Set.prototype.get = function(index) { return this._data[index]; };
Set.prototype.has = function(item) {
var i, data = this._data;
for (i = 0; i < data.length; i++) {
if (this.get(i) === item) {
return true;
}
}
return false;
};
Set.prototype.is = function(map) {
if (map._data.length !== this._data.length) { return false; }
var i, j, flag, tData = this._data, mData = map._data;
for (i = 0; i < tData.length; i++) {
for (flag = false, j = 0; j < mData.length; j++) {
if (tData[i] === mData[j]) {
flag = true;
break;
}
}
if (!flag) { return false; }
}
return true;
};
Set.prototype.values = function() {
return this._data;
};
return Set;
})();
window.Lazyload = (function(doc) {
var queue = {js: [], css: []}, sources = {js: {}, css: {}}, context = this;
var createNode = function(name, attrs) {
var node = doc.createElement(name), attr;
for (attr in attrs) {
if (attrs.hasOwnProperty(attr)) {
node.setAttribute(attr, attrs[attr]);
}
}
return node;
};
var end = function(type, url) {
var s, q, qi, cbs, i, j, cur, val, flag;
if (type === 'js' || type ==='css') {
s = sources[type], q = queue[type];
s[url] = true;
for (i = 0; i < q.length; i++) {
cur = q[i];
if (cur.urls.has(url)) {
qi = cur, val = qi.urls.values();
qi && (cbs = qi.callbacks);
for (flag = true, j = 0; j < val.length; j++) {
cur = val[j];
if (!s[cur]) {
flag = false;
}
}
if (flag && cbs && cbs.length > 0) {
for (j = 0; j < cbs.length; j++) {
cbs[j].call(context);
}
qi.load = true;
}
}
}
}
};
var load = function(type, urls, callback) {
var s, q, qi, node, i, cur,
_urls = typeof urls === 'string' ? new Set([urls]) : new Set(urls), val, url;
if (type === 'js' || type ==='css') {
s = sources[type], q = queue[type];
for (i = 0; i < q.length; i++) {
cur = q[i];
if (_urls.is(cur.urls)) {
qi = cur;
break;
}
}
val = _urls.values();
if (qi) {
callback && (qi.load || qi.callbacks.push(callback));
callback && (qi.load && callback());
} else {
q.push({
urls: _urls,
callbacks: callback ? [callback] : [],
load: false
});
for (i = 0; i < val.length; i++) {
node = null, url = val[i];
if (s[url] === undefined) {
(type === 'js' ) && (node = createNode('script', { src: url }));
(type === 'css') && (node = createNode('link', { rel: 'stylesheet', href: url }));
if (node) {
node.onload = (function(type, url) {
return function() {
end(type, url);
};
})(type, url);
(doc.head || doc.body).appendChild(node);
s[url] = false;
}
}
}
}
}
};
return {
js: function(url, callback) {
load('js', url, callback);
},
css: function(url, callback) {
load('css', url, callback);
}
};
})(this.document);
})();
</script><script>
(function() {
var TEXT_VARIABLES = {
version: '2.2.6',
sources: {
font_awesome: 'https://use.fontawesome.com/releases/v5.0.13/css/all.css',
jquery: 'https://cdn.bootcss.com/jquery/3.1.1/jquery.min.js',
leancloud_js_sdk: '//cdn.jsdelivr.net/npm/[email protected]/dist/av-min.js',
chart: 'https://cdn.bootcss.com/Chart.js/2.7.2/Chart.bundle.min.js',
gitalk: {
js: 'https://cdn.jsdelivr.net/npm/gitalk@1/dist/gitalk.min.js',
css: 'https://cdn.jsdelivr.net/npm/gitalk@1/dist/gitalk.css'
},
valine: 'https://unpkg.com/valine/dist/Valine.min.js',
mathjax: 'https://cdn.bootcss.com/mathjax/2.7.4/MathJax.js?config=TeX-MML-AM_CHTML',
mermaid: 'https://cdn.bootcss.com/mermaid/8.0.0-rc.8/mermaid.min.js'
},
site: {
toc: {
selectors: 'h1,h2,h3'
}
},
paths: {
search_js: '/assets/search.js'
}
};
window.TEXT_VARIABLES = TEXT_VARIABLES;
})();
</script>
</head>
<body>
<div class="root" data-is-touch="false">
<div class="layout--page js-page-root"><div class="page__main js-page-main page__viewport cell cell--auto">
<div class="page__main-inner"><div class="page__header d-print-none"><header class="header"><div class="main">
<div class="header__title">
<div class="header__brand"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink">
<rect y="5" width="24" height="13.8483" fill="url(#pattern0)"/>
<defs>
<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0" transform="scale(0.00229885 0.00398406)"/>
</pattern>
<image id="image0" width="435" height="251" xlink:href="data:image/png;base64,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"/>
</defs>
</svg>
<a title="I write more code to write less.
" href="/">一片瓜田</a></div><button class="button button--secondary button--circle search-button js-search-toggle"><i class="fas fa-search"></i></button></div><nav class="navigation">
<ul><li class="navigation__item"><a href="https://www.desgard.com/algo/index.html">《Alog》</a></li><li class="navigation__item"><a href="/feed.xml">RSS</a></li><li class="navigation__item"><a href="/qrcode">Wechat</a></li><li><button class="button button--secondary button--circle search-button js-search-toggle"><i class="fas fa-search"></i></button></li></ul>
</nav></div>
</header>
</div><div class="page__content"><div class ="main"><div class="grid grid--reverse">
<!-- 不需要 -->
<!-- <div class="col-aside d-print-none js-col-aside"></div> -->
<div class="col-main cell cell--auto"><!-- start custom main top snippet -->
<!-- end custom main top snippet -->
<article itemscope itemtype="https://schema.org/WebPage"><div class="article__header"><header><h1>Archive</h1></header></div><meta itemprop="headline" content="Archive"><meta itemprop="author" content="冬瓜"/><div class="js-article-content"><div class="layout--archive js-all"><div class="site-tags js-tags">
<ul class="menu">
<li>
<button type="button" class="button button--secondary button--pill tag-button tag-button--all" data-encode="">
Show All<div class="tag-button__count">61</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-1" data-encode="Algorithm">
<span>Algorithm</span><div class="tag-button__count">1</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-1" data-encode="Apple">
<span>Apple</span><div class="tag-button__count">1</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-1" data-encode="Blockchain">
<span>Blockchain</span><div class="tag-button__count">3</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-1" data-encode="B%C3%A9zier+Curve">
<span>Bézier Curve</span><div class="tag-button__count">2</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-1" data-encode="C">
<span>C</span><div class="tag-button__count">2</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-3" data-encode="CocoaPods+%E5%8E%86%E9%99%A9%E8%AE%B0">
<span>CocoaPods 历险记</span><div class="tag-button__count">8</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-1" data-encode="Data+Structure">
<span>Data Structure</span><div class="tag-button__count">1</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-1" data-encode="DeFi">
<span>DeFi</span><div class="tag-button__count">3</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-2" data-encode="Objective-C">
<span>Objective-C</span><div class="tag-button__count">6</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-1" data-encode="Python">
<span>Python</span><div class="tag-button__count">3</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-3" data-encode="Ruby">
<span>Ruby</span><div class="tag-button__count">8</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-1" data-encode="Ruby+in+CocoaPods">
<span>Ruby in CocoaPods</span><div class="tag-button__count">2</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-2" data-encode="Swift">
<span>Swift</span><div class="tag-button__count">4</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-1" data-encode="TeXt">
<span>TeXt</span><div class="tag-button__count">1</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-1" data-encode="Web3">
<span>Web3</span><div class="tag-button__count">2</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-4" data-encode="iOS">
<span>iOS</span><div class="tag-button__count">14</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-1" data-encode="iOS+%E6%96%B9%E6%A1%88%E4%B9%8B%E6%9C%AC">
<span>iOS 方案之本</span><div class="tag-button__count">2</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-1" data-encode="life">
<span>life</span><div class="tag-button__count">1</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-4" data-encode="objective-C">
<span>objective-C</span><div class="tag-button__count">11</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-2" data-encode="%E4%B8%80%E7%93%9C%E7%AE%97%E6%B3%95%E5%B0%8F%E5%86%8C">
<span>一瓜算法小册</span><div class="tag-button__count">6</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-1" data-encode="%E5%86%AC%E7%93%9C%E4%B9%B0%E6%88%BF%E7%AC%94%E8%AE%B0">
<span>冬瓜买房笔记</span><div class="tag-button__count">2</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-1" data-encode="%E5%8A%A8%E6%80%81%E8%A7%84%E5%88%92">
<span>动态规划</span><div class="tag-button__count">1</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-2" data-encode="%E5%9B%BE%E8%AE%BA">
<span>图论</span><div class="tag-button__count">5</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-1" data-encode="%E6%95%B0%E5%AD%A6%E5%BB%BA%E6%A8%A1">
<span>数学建模</span><div class="tag-button__count">2</div>
</button>
</li><li><button type="button" class="button button--pill tag-button tag-button-1" data-encode="%E6%96%B9%E6%A1%88%E4%B9%8B%E6%9C%AC">
<span>方案之本</span><div class="tag-button__count">1</div>
</button>
</li></ul>
</div>
<div class="js-result layout--archive__result d-none"><div class="article-list items"><section><h2 class="article-list__group-header">2023</h2><ul class="items"><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="iOS,Swift,Apple">
<div class="item__content"><span class="item__meta">Jun 21</span><a itemprop="headline" class="item__header" href="/2023/06/21/what's_new_in_swfit_2023.html">WWDC23 - What's new in Swift</a>
<!-- tag --><span class="item__tag" style="background-color: #e6f7ff;vertical-align: top;">
联合创作
</span></div>
</li></ul></section><section><h2 class="article-list__group-header">2021</h2><ul class="items"><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="Blockchain,DeFi,Web3">
<div class="item__content"><span class="item__meta">Nov 03</span><a itemprop="headline" class="item__header" href="/2021/11/03/defi-hunny-attack-analysis.html">PancakeHunny 闪电贷 LP 池操控攻击分析</a>
<!-- tag --><span class="item__tag" style="background-color: #e6f7ff;vertical-align: top;">
Blockchain
</span></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="Blockchain,DeFi,Web3">
<div class="item__content"><span class="item__meta">Sep 06</span><a itemprop="headline" class="item__header" href="/2021/09/06/defi-lp-price.html">LP Token 价格计算推导及安全性</a>
<!-- tag --><span class="item__tag" style="background-color: #e6f7ff;vertical-align: top;">
Blockchain
</span></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="Blockchain,DeFi">
<div class="item__content"><span class="item__meta">Apr 25</span><a itemprop="headline" class="item__header" href="/2021/04/25/defi-lp-math.html">Liquidity Providers 的数学原理</a>
<!-- tag --><span class="item__tag" style="background-color: #e6f7ff;vertical-align: top;">
Blockchain
</span></div>
</li></ul></section><section><h2 class="article-list__group-header">2020</h2><ul class="items"><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="CocoaPods+%E5%8E%86%E9%99%A9%E8%AE%B0,Ruby">
<div class="item__content"><span class="item__meta">Nov 05</span><a itemprop="headline" class="item__header" href="/2020/11/05/cocoapods-story-6.html">Podspec 管理策略</a>
<!-- tag --><span class="item__tag" style="background-color: #e6f7ff;vertical-align: top;">
联合创作
</span></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="CocoaPods+%E5%8E%86%E9%99%A9%E8%AE%B0,Ruby">
<div class="item__content"><span class="item__meta">Oct 12</span><a itemprop="headline" class="item__header" href="/2020/10/12/cocoapods-story-5.html">Podspec 文件分析</a>
<!-- tag --><span class="item__tag" style="background-color: #e6f7ff;vertical-align: top;">
联合创作
</span></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="CocoaPods+%E5%8E%86%E9%99%A9%E8%AE%B0,Ruby+in+CocoaPods,Ruby">
<div class="item__content"><span class="item__meta">Oct 08</span><a itemprop="headline" class="item__header" href="/2020/10/08/cocoapods-story-ex-2.html">Ruby 黑魔法 - eval 和 alias</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="%E5%86%AC%E7%93%9C%E4%B9%B0%E6%88%BF%E7%AC%94%E8%AE%B0,%E6%95%B0%E5%AD%A6%E5%BB%BA%E6%A8%A1">
<div class="item__content"><span class="item__meta">Sep 23</span><a itemprop="headline" class="item__header" href="/2020/09/23/buy-big-house-in-sh-2.html">二手房增值税分析 - 首付与差额</a>
<!-- tag --><span class="item__tag" style="background-color: #e6f7ff;vertical-align: top;">
非技术文
</span></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="CocoaPods+%E5%8E%86%E9%99%A9%E8%AE%B0,Ruby">
<div class="item__content"><span class="item__meta">Sep 16</span><a itemprop="headline" class="item__header" href="/2020/09/16/cocoapods-story-4.html">Podfile 的解析逻辑</a>
<!-- tag --><span class="item__tag" style="background-color: #e6f7ff;vertical-align: top;">
联合创作
</span></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="%E5%86%AC%E7%93%9C%E4%B9%B0%E6%88%BF%E7%AC%94%E8%AE%B0,%E6%95%B0%E5%AD%A6%E5%BB%BA%E6%A8%A1">
<div class="item__content"><span class="item__meta">Sep 14</span><a itemprop="headline" class="item__header" href="/2020/09/14/buy-big-house-in-sh-1.html">公积金贷买房能省多少钱</a>
<!-- tag --><span class="item__tag" style="background-color: #e6f7ff;vertical-align: top;">
非技术文
</span></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="CocoaPods+%E5%8E%86%E9%99%A9%E8%AE%B0,Ruby">
<div class="item__content"><span class="item__meta">Sep 02</span><a itemprop="headline" class="item__header" href="/2020/09/02/cocoapods-story-3.html">CocoaPods 命令解析 - CLAide</a>
<!-- tag --><span class="item__tag" style="background-color: #e6f7ff;vertical-align: top;">
联合创作
</span></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="CocoaPods+%E5%8E%86%E9%99%A9%E8%AE%B0,Ruby+in+CocoaPods,Ruby">
<div class="item__content"><span class="item__meta">Aug 26</span><a itemprop="headline" class="item__header" href="/2020/08/26/cocoapods-story-ex-1.html">CocoaPods 中的 Ruby 特性之 Mix-in</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="CocoaPods+%E5%8E%86%E9%99%A9%E8%AE%B0,Ruby">
<div class="item__content"><span class="item__meta">Aug 17</span><a itemprop="headline" class="item__header" href="/2020/08/17/cocoapods-story-2.html">整体把握 CocoaPods 核心组件</a>
<!-- tag --><span class="item__tag" style="background-color: #e6f7ff;vertical-align: top;">
联合创作
</span></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="iOS+%E6%96%B9%E6%A1%88%E4%B9%8B%E6%9C%AC">
<div class="item__content"><span class="item__meta">Aug 05</span><a itemprop="headline" class="item__header" href="/2020/08/05/why-hook-msg_objc-can-use-asm-2.html">为什么使用汇编可以 Hook objc_msgSend(下)- 实现与分析</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="CocoaPods+%E5%8E%86%E9%99%A9%E8%AE%B0,Ruby">
<div class="item__content"><span class="item__meta">Jun 11</span><a itemprop="headline" class="item__header" href="/2020/06/11/cocoapods-story-1.html">版本管理工具及 Ruby 工具链环境</a>
<!-- tag --><span class="item__tag" style="background-color: #e6f7ff;vertical-align: top;">
联合创作
</span></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="%E4%B8%80%E7%93%9C%E7%AE%97%E6%B3%95%E5%B0%8F%E5%86%8C,%E5%9B%BE%E8%AE%BA">
<div class="item__content"><span class="item__meta">Apr 28</span><a itemprop="headline" class="item__header" href="/2020/04/28/max-flow-edmond-karp.html">Edmond-Karp 最大流算法详解</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="iOS+%E6%96%B9%E6%A1%88%E4%B9%8B%E6%9C%AC">
<div class="item__content"><span class="item__meta">Apr 05</span><a itemprop="headline" class="item__header" href="/2020/04/05/why-hook-msg_objc-can-use-asm-1.html">为什么使用汇编可以 Hook objc_msgSend(上)- 汇编基础</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="%E4%B8%80%E7%93%9C%E7%AE%97%E6%B3%95%E5%B0%8F%E5%86%8C,%E5%9B%BE%E8%AE%BA">
<div class="item__content"><span class="item__meta">Mar 31</span><a itemprop="headline" class="item__header" href="/2020/03/31/binary-graph-perfect-matching-with-maxflow.html">二分匹配的最大流思维</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="iOS,%E6%96%B9%E6%A1%88%E4%B9%8B%E6%9C%AC">
<div class="item__content"><span class="item__meta">Mar 09</span><a itemprop="headline" class="item__header" href="/2020/03/09/dwarf-with-dsym-build-setting.html">为什么 Debug Information Format 改为 DWARF 可以提高编译速度?</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="%E4%B8%80%E7%93%9C%E7%AE%97%E6%B3%95%E5%B0%8F%E5%86%8C,%E5%9B%BE%E8%AE%BA">
<div class="item__content"><span class="item__meta">Mar 03</span><a itemprop="headline" class="item__header" href="/2020/03/03/max-flow-ford-fulkerson.html">Ford-Fulkerson 最大流求解方法</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="%E4%B8%80%E7%93%9C%E7%AE%97%E6%B3%95%E5%B0%8F%E5%86%8C,%E5%9B%BE%E8%AE%BA">
<div class="item__content"><span class="item__meta">Feb 25</span><a itemprop="headline" class="item__header" href="/2020/02/25/max-flow-problem-begining.html">初识最大流问题</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="%E4%B8%80%E7%93%9C%E7%AE%97%E6%B3%95%E5%B0%8F%E5%86%8C,%E5%9B%BE%E8%AE%BA,iOS">
<div class="item__content"><span class="item__meta">Jan 14</span><a itemprop="headline" class="item__header" href="/2020/01/14/topological-sorting-in-carthage.html">从拓扑排序到 Carthage 依赖校验算法</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="%E4%B8%80%E7%93%9C%E7%AE%97%E6%B3%95%E5%B0%8F%E5%86%8C,%E5%8A%A8%E6%80%81%E8%A7%84%E5%88%92">
<div class="item__content"><span class="item__meta">Jan 06</span><a itemprop="headline" class="item__header" href="/2020/01/06/complete-knapsack-problem-2020.html">完全背包告诉你 2020 代表什么</a>
<!-- tag --></div>
</li></ul></section><section><h2 class="article-list__group-header">2019</h2><ul class="items"><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="iOS">
<div class="item__content"><span class="item__meta">Dec 31</span><a itemprop="headline" class="item__header" href="/ios/diary/2019/12/31/summary-2019.html">立志欲坚不欲锐 - 2019 年小结</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="iOS">
<div class="item__content"><span class="item__meta">Dec 25</span><a itemprop="headline" class="item__header" href="/ios/swift/2019/12/25/optional-and-any.html">模糊的 Any 和 Optional</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="iOS">
<div class="item__content"><span class="item__meta">Jul 27</span><a itemprop="headline" class="item__header" href="/ios/swift/2019/07/27/swift-method-swizzling.html">Swift 5 之后 "Method Swizzling"?</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="iOS">
<div class="item__content"><span class="item__meta">Jul 09</span><a itemprop="headline" class="item__header" href="/ios/ruby/2019/07/09/cocoapods-2.html">CocoaPods 历险 - Resolver 仲裁入口解析</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="iOS">
<div class="item__content"><span class="item__meta">Mar 15</span><a itemprop="headline" class="item__header" href="/ios/ruby/2019/03/15/cocoapods-1.html">CocoaPods 历险 - 总览</a>
<!-- tag --></div>
</li></ul></section><section><h2 class="article-list__group-header">2018</h2><ul class="items"><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="iOS">
<div class="item__content"><span class="item__meta">Dec 31</span><a itemprop="headline" class="item__header" href="/ios/diary/2018/12/31/summary-2018.html">做点有意思的事情 - 2018 年小结</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="iOS">
<div class="item__content"><span class="item__meta">Jul 03</span><a itemprop="headline" class="item__header" href="/ios/algorithm/python/2018/07/03/autolayout-simplex.html">AutoLayout 中的线性规划 - Simplex 算法</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="TeXt">
<div class="item__content"><span class="item__meta">Jun 01</span><a itemprop="headline" class="item__header" href="/2018/06/01/header-image.html">Post with Header Image</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="C">
<div class="item__content"><span class="item__meta">Feb 03</span><a itemprop="headline" class="item__header" href="/c/iosre/2018/02/03/fishhook-2.html">验证试验 - 探求 fishhook 原理(二)</a>
<!-- tag --></div>
</li></ul></section><section><h2 class="article-list__group-header">2017</h2><ul class="items"><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="life">
<div class="item__content"><span class="item__meta">Dec 29</span><a itemprop="headline" class="item__header" href="/life/2017/12/29/summary-2017.html">直到双眼适应黑暗 - 2017 年小结</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="C">
<div class="item__content"><span class="item__meta">Dec 16</span><a itemprop="headline" class="item__header" href="/c/iosre/2017/12/16/fishhook-1.html">巧用符号表 - 探求 fishhook 原理(一)</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="Python">
<div class="item__content"><span class="item__meta">Nov 11</span><a itemprop="headline" class="item__header" href="/python/2017/11/11/Shadowsocks-2.html">Shadowsocks Probe II - TCP 代理过程</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="Objective-C">
<div class="item__content"><span class="item__meta">Oct 07</span><a itemprop="headline" class="item__header" href="/macos%20kernel/objective-c/iosre/2017/10/07/iosre-1.html">Mach-O 文件格式探索</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="Algorithm,Data+Structure,Swift">
<div class="item__content"><span class="item__meta">Aug 26</span><a itemprop="headline" class="item__header" href="/algorithm/data%20structure/swift/2017/08/26/lazy-segment-tree.html">用 Lazy 思想实现 Segment Tree 的区间更新</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="Python">
<div class="item__content"><span class="item__meta">Aug 13</span><a itemprop="headline" class="item__header" href="/python/2017/08/13/Shadowsocks-1.html">Shadowsocks Probe I - Sock5 与 EventLoop 事件分发</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="Swift">
<div class="item__content"><span class="item__meta">Jul 13</span><a itemprop="headline" class="item__header" href="/swift/2017/07/13/swift-optional.html">Swift Probe - Optional</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="objective-C">
<div class="item__content"><span class="item__meta">Jun 21</span><a itemprop="headline" class="item__header" href="/objective-c/2017/06/21/SDWebImage4.html">SDWebImage Source Probe: Operation</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="Swift">
<div class="item__content"><span class="item__meta">May 30</span><a itemprop="headline" class="item__header" href="/swift/2017/05/30/BannerHoverView.html">BannerHoverView - 解耦 TableView Header 实现悬停</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="objective-C">
<div class="item__content"><span class="item__meta">Apr 15</span><a itemprop="headline" class="item__header" href="/objective-c/2017/04/15/TableView-Reuse.html">复用的精妙 - UITableView 复用技术原理分析</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="objective-C">
<div class="item__content"><span class="item__meta">Feb 01</span><a itemprop="headline" class="item__header" href="/objective-c/2017/02/01/CFArray.html">CFArray 的历史渊源及实现原理</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="objective-C">
<div class="item__content"><span class="item__meta">Jan 15</span><a itemprop="headline" class="item__header" href="/objective-c/2017/01/15/Load.html">load 方法全程跟踪</a>
<!-- tag --></div>
</li></ul></section><section><h2 class="article-list__group-header">2016</h2><ul class="items"><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="Python">
<div class="item__content"><span class="item__meta">Nov 02</span><a itemprop="headline" class="item__header" href="/python/2016/11/02/Running-Or-Safe.html">玩转运动世界校园</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="objective-C">
<div class="item__content"><span class="item__meta">Oct 03</span><a itemprop="headline" class="item__header" href="/objective-c/2016/10/03/SDWebImage3.html">SDWebImage Source Probe: Downloader</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="objective-C">
<div class="item__content"><span class="item__meta">Sep 29</span><a itemprop="headline" class="item__header" href="/objective-c/2016/09/29/isa.html">用 isa 承载对象的类信息</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="objective-C">
<div class="item__content"><span class="item__meta">Sep 14</span><a itemprop="headline" class="item__header" href="/objective-c/2016/09/14/SDWebImage2.html">SDWebImage Source Probe: Manager</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="objective-C">
<div class="item__content"><span class="item__meta">Sep 10</span><a itemprop="headline" class="item__header" href="/objective-c/2016/09/10/weak.html">weak 弱引用的实现方式</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="objective-C">
<div class="item__content"><span class="item__meta">Sep 03</span><a itemprop="headline" class="item__header" href="/objective-c/2016/09/03/SDWebImage1.html">SDWebImage Source Probe: WebCache</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="objective-C">
<div class="item__content"><span class="item__meta">Sep 02</span><a itemprop="headline" class="item__header" href="/objective-c/2016/09/02/block2.html">浅谈 block(2) - 截获变量方式</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="">
<div class="item__content"><span class="item__meta">Aug 26</span><a itemprop="headline" class="item__header" href="/objective-c/2016/08/26/objc_msgSend2.html">objc_msgSend消息传递学习笔记 - 消息转发</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="objective-C">
<div class="item__content"><span class="item__meta">Aug 20</span><a itemprop="headline" class="item__header" href="/objective-c/2016/08/20/block1.html">浅谈 block(1) - clang 改写后的 block 结构</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="">
<div class="item__content"><span class="item__meta">Aug 10</span><a itemprop="headline" class="item__header" href="/objective-c/2016/08/10/copy.html">从经典问题来看 Copy 方法</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="">
<div class="item__content"><span class="item__meta">Aug 05</span><a itemprop="headline" class="item__header" href="/objective-c/2016/08/05/objc_msgSend1.html">objc_msgSend消息传递学习笔记 - 对象方法消息传递流程</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="">
<div class="item__content"><span class="item__meta">Jul 29</span><a itemprop="headline" class="item__header" href="/objective-c/2016/07/29/Associated-Objects.html">浅谈Associated Objects</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="iOS,Objective-C,B%C3%A9zier+Curve">
<div class="item__content"><span class="item__meta">Jun 28</span><a itemprop="headline" class="item__header" href="/2016/06/28/DGDownloaderButton-2.html">Drip Into A River · Part II</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="iOS,Objective-C,B%C3%A9zier+Curve">
<div class="item__content"><span class="item__meta">Jun 27</span><a itemprop="headline" class="item__header" href="/2016/06/27/DGDownloaderButton.html">Drip Into A River · Part I</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="Objective-C">
<div class="item__content"><span class="item__meta">Jun 21</span><a itemprop="headline" class="item__header" href="/2016/06/21/Reference-Count-Analysis.html">Reference Counting Brief Analysis</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="iOS,Objective-C">
<div class="item__content"><span class="item__meta">Jun 17</span><a itemprop="headline" class="item__header" href="/2016/06/17/The-Card-Interface-For-Signing-Up.html">The Card Interface For Signing Up</a>
<!-- tag --></div>
</li><li class="item" itemscope itemtype="https://schema.org/BlogPosting" data-tags="iOS,Objective-C">
<div class="item__content"><span class="item__meta">Jun 08</span><a itemprop="headline" class="item__header" href="/2016/06/08/If-you-like-me-Thumb-Up.html">If you like me, Thumb Up!</a>
<!-- tag --></div>
</li></div>
</div>
</div>
<script>(function() {
var SOURCES = window.TEXT_VARIABLES.sources;
function queryString() {
// This function is anonymous, is executed immediately and
// the return value is assigned to QueryString!
var i = 0, queryObj = {}, pair;
var queryStr = window.location.search.substring(1);
var queryArr = queryStr.split('&');
for (i = 0; i < queryArr.length; i++) {
pair = queryArr[i].split('=');
// If first entry with this name
if (typeof queryObj[pair[0]] === 'undefined') {
queryObj[pair[0]] = pair[1];
// If second entry with this name
} else if (typeof queryObj[pair[0]] === 'string') {
queryObj[pair[0]] = [queryObj[pair[0]], pair[1]];
// If third or later entry with this name
} else {
queryObj[pair[0]].push(pair[1]);
}
}
return queryObj;
}
var setUrlQuery = (function() {
var baseUrl = window.location.href.split('?')[0];
return function(query) {
if (typeof query === 'string') {
window.history.replaceState(null, '', baseUrl + query);
} else {
window.history.replaceState(null, '', baseUrl);
}
};
})();
window.Lazyload.js(SOURCES.jquery, function() {
var $tags = $('.js-tags');
var $articleTags = $tags.find('button');
var $tagShowAll = $tags.find('.tag-button--all');
var $result = $('.js-result');
var $sections = $result.find('section');
var sectionArticles = [];
var $lastFocusButton = null;
var sectionTopArticleIndex = [];
var hasInit = false;
$sections.each(function() {
sectionArticles.push($(this).find('.item'));
});
function init() {
var i, index = 0;
for (i = 0; i < $sections.length; i++) {
sectionTopArticleIndex.push(index);
index += $sections.eq(i).find('.item').length;
}
sectionTopArticleIndex.push(index);
}
function searchButtonsByTag(_tag/*raw tag*/) {
if (!_tag) {
return $tagShowAll;
}
var _buttons = $articleTags.filter('[data-encode="' + _tag + '"]');
if (_buttons.length === 0) {
return $tagShowAll;
}
return _buttons;
}
function buttonFocus(target) {
if (target) {
target.addClass('focus');
$lastFocusButton && !$lastFocusButton.is(target) && $lastFocusButton.removeClass('focus');
$lastFocusButton = target;
}
}
function tagSelect (tag/*raw tag*/, target) {
var result = {}, $articles;
var i, j, k, _tag;
for (i = 0; i < sectionArticles.length; i++) {
$articles = sectionArticles[i];
for (j = 0; j < $articles.length; j++) {
if (tag === '' || tag === undefined) {
result[i] || (result[i] = {});
result[i][j] = true;
} else {
var tags = $articles.eq(j).data('tags').split(',');
for (k = 0; k < tags.length; k++) {
if (tags[k] === tag) {
result[i] || (result[i] = {});
result[i][j] = true; break;
}
}
}
}
}
for (i = 0; i < sectionArticles.length; i++) {
result[i] && $sections.eq(i).removeClass('d-none');
result[i] || $sections.eq(i).addClass('d-none');
for (j = 0; j < sectionArticles[i].length; j++) {
if (result[i] && result[i][j]) {
sectionArticles[i].eq(j).removeClass('d-none');
} else {
sectionArticles[i].eq(j).addClass('d-none');
}
}
}
hasInit || ($result.removeClass('d-none'), hasInit = true);
if (target) {
buttonFocus(target);
_tag = target.attr('data-encode');
if (_tag === '' || typeof _tag !== 'string') {
setUrlQuery();
} else {
setUrlQuery('?tag=' + _tag);
}
} else {
buttonFocus(searchButtonsByTag(tag));
}
}
var query = queryString(), _tag = query.tag;
init(); tagSelect(_tag);
$tags.on('click', 'button', function() {
tagSelect($(this).data('encode'), $(this));
});
});
})();
</script>
</div><section class="page__comments d-print-none"><style type="text/css">
.gitalk-wrapper .gt-header-textarea {
color: #333 !important;
}
</style><div class="gitalk-wrapper" id="js-gitalk-container"></div>
<script>
window.Lazyload.css('https://cdn.jsdelivr.net/npm/gitalk@1/dist/gitalk.css');
var url = "/archive.html";
var key = url.split("/").pop();
key = key.substring(0, key.length - 5);
console.log("key", key);
var repo = 'desgard.github.com';
// 复用评论
var current_repo = '';
var current_key = '';
if (current_repo && current_repo !== '') {
repo = current_repo;
}
if (current_key && current_key !== '') {
key = current_key;
}
if (key !== "" && '' !== 'ban') {
window.Lazyload.js('https://cdn.jsdelivr.net/npm/gitalk@1/dist/gitalk.min.js', function() {
var gitalk = new Gitalk({
clientID: 'e2612df42f3f2a83e71c',
clientSecret: 'ad17bb24a3dba73607ec340ba593acba91414d99',
repo: repo,
owner: 'Desgard',
admin: ['Desgard'],
id: key,
distractionFreeMode: false
});
gitalk.render('js-gitalk-container');
});
}
</script></section></article><!-- start custom main bottom snippet -->
<!-- end custom main bottom snippet -->
</div>
</div></div></div><div class="page__footer d-print-none">
<footer class="footer py-4 js-page-footer">
<div class="main"><div itemscope itemtype="https://schema.org/Person">
<meta itemprop="name" content="冬瓜"><meta itemprop="url" content="https://www.desgard.com"><meta itemprop="description" content="I write more code to write less."><div class="footer__author-links"><div class="author-links">
<ul class="menu menu--nowrap menu--inline"><link itemprop="url" href="https://www.desgard.com"><li title="Send me an Email.">
<a class="button button--circle mail-button" itemprop="email" href="mailto:[email protected]" target="_blank">
<i class="fas fa-envelope"></i>
</a><li title="Follow me on Facebook.">
<a class="button button--circle facebook-button" itemprop="sameAs" href="https://www.facebook.com/desgard.duan" target="_blank">
<div class="icon"><svg fill="#000000" width="24px" height="24px" viewBox="0 0 1024 1024" version="1.1" xmlns="https://www.w3.org/2000/svg">
<path d="M767.428571 6.857143l0 150.857143-89.714286 0q-49.142857 0-66.285714 20.571429t-17.142857 61.714286l0 108 167.428571 0-22.285714 169.142857-145.142857 0 0 433.714286-174.857143 0 0-433.714286-145.714286 0 0-169.142857 145.714286 0 0-124.571429q0-106.285714 59.428571-164.857143t158.285714-58.571429q84 0 130.285714 6.857143z" />
</svg>
</div>
</a>
</li><li title="Follow me on Twitter.">
<a class="button button--circle twitter-button" itemprop="sameAs" href="https://twitter.com/Desgard_Duan" target="_blank">
<div class="icon"><svg fill="#000000" width="24px" height="24px" viewBox="0 0 1024 1024" version="1.1" xmlns="https://www.w3.org/2000/svg">
<path d="M1024.032 194.432c-37.664 16.704-78.176 28-120.672 33.088 43.36-26.016 76.672-67.168 92.384-116.224-40.608 24.064-85.568 41.568-133.408 50.976-38.336-40.832-92.928-66.336-153.344-66.336-116.032 0-210.08 94.048-210.08 210.08 0 16.48 1.856 32.512 5.44 47.872-174.592-8.768-329.408-92.416-433.024-219.52-18.08 31.04-28.448 67.104-28.448 105.632 0 72.896 37.088 137.184 93.472 174.88-34.432-1.088-66.816-10.528-95.168-26.272-0.032 0.864-0.032 1.76-0.032 2.656 0 101.792 72.416 186.688 168.512 205.984-17.632 4.8-36.192 7.36-55.36 7.36-13.536 0-26.688-1.312-39.52-3.776 26.72 83.456 104.32 144.192 196.256 145.888-71.904 56.352-162.496 89.92-260.928 89.92-16.96 0-33.664-0.992-50.112-2.944 92.96 59.616 203.392 94.4 322.048 94.4 386.432 0 597.728-320.128 597.728-597.76 0-9.12-0.192-18.176-0.608-27.168 41.056-29.632 76.672-66.624 104.832-108.736z" />
</svg>
</div>
</a>
</li><li title="Follow me on Weibo.">
<a class="button button--circle weibo-button" itemprop="sameAs" href="https://weibo.com/desgard" target="_blank">
<div class="icon"><svg fill="#000000" width="24px" height="24px" viewBox="0 0 1024 1024" version="1.1" xmlns="https://www.w3.org/2000/svg">
<path d="M769.226164 496.610234c-14.420098-4.330228-24.309277-7.266877-16.746482-26.214823 16.350218-41.133578 18.046881-76.626289 0.307181-101.939024-33.242099-47.500415-124.194284-44.928286-228.44638-1.280945 0-0.056317-32.73525 14.323848-24.371737-11.64523 16.042013-51.54906 13.626547-94.739726-11.332929-119.662341-56.566349-56.601163-206.976479 2.134908-335.954595 131.078209-96.594075 96.61353-152.681222 198.989775-152.681222 287.52035 0 169.337597 217.152361 272.292366 429.593589 272.292366 278.498445 0 463.752111-161.808592 463.752111-290.273715C893.345701 558.867622 827.968378 514.820945 769.226164 496.610234zM430.163922 866.063936c-169.51781 16.728051-315.851649-59.899262-326.864086-171.202185-11.010389-111.275277 117.530505-215.061482 287.031932-231.823323 169.537265-16.761841 315.876224 59.866496 326.86511 171.119247C728.190884 745.495411 599.705282 849.291856 430.163922 866.063936z" />
<path d="M954.16753 186.714824c-67.256246-74.565105-166.457264-102.990607-258.020739-83.522502l-0.037886 0c-21.188318 4.535015-34.695065 25.37929-30.159026 46.527675 4.516584 21.166816 25.352668 34.691993 46.54201 30.174385 65.139769-13.832358 135.634727 6.400627 183.442323 59.368863 47.765615 52.96414 60.740938 125.206957 40.282686 188.537431l0.011263 0.012287c-6.666851 20.629249 4.617954 42.698153 25.271777 49.366027 20.570885 6.662755 42.687913-4.607714 49.362955-25.188838 0-0.037886 0-0.116729 0.011263-0.150519C1039.577146 362.756133 1021.443231 261.206205 954.16753 186.714824" />
<path d="M850.886125 279.919669c-32.732179-36.315956-81.068126-50.108381-125.685136-40.621609-18.234261 3.885839-29.856965 21.833398-25.946551 40.085067 3.89915 18.173849 21.833398 29.851845 40.024654 25.893307l0 0.037886c21.809848-4.610786 45.459709 2.113405 61.461789 19.83365 16.018463 17.757107 20.323092 41.949655 13.45043 63.178931l0.035838 0c-5.715614 17.717174 3.983113 36.770584 21.717694 42.511796 17.7397 5.677728 36.76956-3.992328 42.493365-21.756603C892.458972 365.691759 883.686907 316.228458 850.886125 279.919669" />
<path d="M447.103928 548.691741c-80.666743-20.985579-171.84317 19.215193-206.880229 90.291746-35.685212 72.492657-1.180599 152.963828 80.321676 179.268757 84.41947 27.224424 183.926645-14.492797 218.521364-92.744074C573.187374 649.021137 530.586496 570.268131 447.103928 548.691741zM385.506979 733.819463c-16.398343 26.160554-51.51015 37.623523-77.954335 25.54824-26.066352-11.868448-33.760211-42.248645-17.360844-67.757975 16.197652-25.400793 50.129884-36.716316 76.378497-25.711046C393.129162 677.216253 401.60838 707.401901 385.506979 733.819463zM439.522702 664.493841c-5.929616 10.131852-19.03498 15.010909-29.304039 10.785123-10.096014-4.15411-13.261002-15.495231-7.522862-25.454038 5.906066-9.908634 18.500485-14.747758 28.572948-10.750309C441.502995 642.817105 445.180975 654.283146 439.522702 664.493841z" />
</svg>
</div>
</a>
</li><li title="Follow me on Zhihu.">
<a class="button button--circle zhihu-button" itemprop="sameAs" href="https://www.zhihu.com/people/devgua" target="_blank">
<div class="icon"><svg fill="#000000" width="24px" height="24px" viewBox="0 0 1024 1024" version="1.1" xmlns="https://www.w3.org/2000/svg">
<path d="M351.791182 562.469462l192.945407 0c0-45.367257-21.3871-71.939449-21.3871-71.939449L355.897709 490.530013c3.977591-82.182744 7.541767-187.659007 8.816806-226.835262l159.282726 0c0 0-0.86367-67.402109-18.578124-67.402109s-279.979646 0-279.979646 0 16.850783-88.141456 39.318494-127.053698c0 0-83.60514-4.510734-112.121614 106.962104S81.344656 355.077018 76.80834 367.390461c-4.536316 12.313443 24.62791 5.832845 36.941354 0 12.313443-5.832845 68.050885-25.924439 84.252893-103.69571l86.570681 0c1.165546 49.28652 4.596691 200.335724 3.515057 226.835262L109.86113 490.530013c-25.275663 18.147312-33.701566 71.939449-33.701566 71.939449L279.868105 562.469462c-8.497535 56.255235-23.417339 128.763642-44.275389 167.210279-33.05279 60.921511-50.55235 116.65793-169.802314 212.576513 0 0-19.442818 14.257725 40.829917 9.073656 60.273758-5.185093 117.305683-20.739347 156.840094-99.807147 20.553105-41.107233 41.805128-93.250824 58.386782-146.138358l-0.055259 0.185218 167.855986 193.263655c0 0 22.035876-51.847855 5.832845-108.880803L371.045711 650.610918l-42.1244 31.157627-0.045025 0.151449c11.69946-41.020252 20.11206-81.5749 22.726607-116.858498C351.665315 564.212152 351.72876 563.345412 351.791182 562.469462z" p-id="907"></path><path d="M584.918753 182.033893l0 668.840094 70.318532 0 28.807093 80.512708 121.875768-80.512708 153.600307 0L959.520453 182.033893 584.918753 182.033893zM887.150192 778.934538l-79.837326 0-99.578949 65.782216-23.537066-65.782216-24.855084 0L659.341766 256.673847l227.807403 0L887.149169 778.934538z" />
</svg>
</div>
</a>
</li><li title="Follow me on Github.">
<a class="button button--circle github-button" itemprop="sameAs" href="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/Desgard" target="_blank">
<div class="icon"><svg fill="#000000" width="24px" height="24px" viewBox="0 0 1024 1024" version="1.1" xmlns="https://www.w3.org/2000/svg">
<path class="svgpath" data-index="path_0" fill="#272636" d="M0 525.2c0 223.6 143.3 413.7 343 483.5 26.9 6.8 22.8-12.4 22.8-25.4l0-88.7c-155.3 18.2-161.5-84.6-172-101.7-21.1-36-70.8-45.2-56-62.3 35.4-18.2 71.4 4.6 113.1 66.3 30.2 44.7 89.1 37.2 119 29.7 6.5-26.9 20.5-50.9 39.7-69.6C248.8 728.2 181.7 630 181.7 513.2c0-56.6 18.7-108.7 55.3-150.7-23.3-69.3 2.2-128.5 5.6-137.3 66.5-6 135.5 47.6 140.9 51.8 37.8-10.2 80.9-15.6 129.1-15.6 48.5 0 91.8 5.6 129.8 15.9 12.9-9.8 77-55.8 138.8-50.2 3.3 8.8 28.2 66.7 6.3 135 37.1 42.1 56 94.6 56 151.4 0 117-67.5 215.3-228.8 243.7 26.9 26.6 43.6 63.4 43.6 104.2l0 128.8c0.9 10.3 0 20.5 17.2 20.5C878.1 942.4 1024 750.9 1024 525.3c0-282.9-229.3-512-512-512C229.1 13.2 0 242.3 0 525.2L0 525.2z" />
</svg>
</div>
</a>
</li></ul>
</div>
</div>
</div><div class="site-info mt-2">
<div>© 一片瓜田 2020,
Powered by <a title="Jekyll is a simple, blog-aware, static site generator." href="https://jekyllrb.com/">Jekyll</a> & <a
title="TeXt is a super customizable Jekyll theme." href="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/kitian616/jekyll-TeXt-theme">TeXt Theme</a>.
</div>
</div>
</div>
</footer>
</div></div>
</div><script>(function() {
var SOURCES = window.TEXT_VARIABLES.sources;
window.Lazyload.js(SOURCES.jquery, function() {
var $body = $('body'), $window = $(window);
var $pageRoot = $('.js-page-root'), $pageMain = $('.js-page-main');
var activeCount = 0;
function modal(options) {
var $root = this, visible, onChange, hideWhenWindowScroll = false;
var scrollTop;
function setOptions(options) {
var _options = options || {};
visible = _options.initialVisible === undefined ? false : show;
onChange = _options.onChange;
hideWhenWindowScroll = _options.hideWhenWindowScroll;
}
function init() {
setState(visible);
}
function setState(isShow) {
if (isShow === visible) {
return;
}
visible = isShow;
if (visible) {
activeCount++;
scrollTop = $(window).scrollTop() || $pageMain.scrollTop();
$root.addClass('modal--show');
$pageMain.scrollTop(scrollTop);
activeCount === 1 && ($pageRoot.addClass('show-modal'), $body.addClass('of-hidden'));
hideWhenWindowScroll && window.hasEvent('touchstart') && $window.on('scroll', hide);
$window.on('keyup', handleKeyup);
} else {
activeCount > 0 && activeCount--;
$root.removeClass('modal--show');
$window.scrollTop(scrollTop);
activeCount === 0 && ($pageRoot.removeClass('show-modal'), $body.removeClass('of-hidden'));
hideWhenWindowScroll && window.hasEvent('touchstart') && $window.off('scroll', hide);
$window.off('keyup', handleKeyup);
}
onChange && onChange(visible);
}
function show() {
setState(true);
}
function hide() {
setState(false);
}
function handleKeyup(e) {
// Char Code: 27 ESC
if (e.which === 27) {
hide();
}
}
setOptions(options);
init();
return {
show: show,
hide: hide,
$el: $root
};
}
$.fn.modal = modal;
});
})();
</script><div class="modal modal--overflow page__search-modal d-print-none js-page-search-modal"><script>
(function () {
var SOURCES = window.TEXT_VARIABLES.sources;
window.Lazyload.js(SOURCES.jquery, function() {
// search panel
var search = (window.search || (window.search = {}));
var useDefaultSearchBox = window.useDefaultSearchBox === undefined ?
true : window.useDefaultSearchBox ;
var $searchModal = $('.js-page-search-modal');
var $searchToggle = $('.js-search-toggle');
var searchModal = $searchModal.modal({ onChange: handleModalChange, hideWhenWindowScroll: true });
var modalVisible = false;
search.searchModal = searchModal;
var $searchBox = null;
var $searchInput = null;
var $searchClear = null;
function getModalVisible() {
return modalVisible;
}
search.getModalVisible = getModalVisible;
function handleModalChange(visible) {
modalVisible = visible;
if (visible) {
search.onShow && search.onShow();
useDefaultSearchBox && $searchInput[0] && $searchInput[0].focus();
} else {
search.onShow && search.onHide();
useDefaultSearchBox && $searchInput[0] && $searchInput[0].blur();
setTimeout(function() {
useDefaultSearchBox && ($searchInput.val(''), $searchBox.removeClass('not-empty'));
search.clear && search.clear();
window.pageAsideAffix && window.pageAsideAffix.refresh();
}, 400);
}
}
$searchToggle.on('click', function() {
modalVisible ? searchModal.hide() : searchModal.show();
});
// Char Code: 83 S, 191 /
$(window).on('keyup', function(e) {
if (!modalVisible && !window.isFormElement(e.target || e.srcElement) && (e.which === 83 || e.which === 191)) {
modalVisible || searchModal.show();
}
});
if (useDefaultSearchBox) {