-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
4006 lines (1818 loc) · 104 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
<!--
* @Author: maple
* @Date: 2022-04-20 16:27:18
* @LastEditors: maple
* @LastEditTime: 2022-05-20 14:21:17
-->
<!DOCTYPE html>
<html lang="">
<!--
* @Author: maple
* @Date: 2022-04-20 16:27:18
* @LastEditors: maple
* @LastEditTime: 2022-05-20 14:22:15
-->
<!-- title -->
<!-- keywords -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="author" content="Maple">
<meta name="renderer" content="webkit">
<meta name="copyright" content="Maple">
<meta name="keywords" content="hexo,blog,hexo-blog">
<meta name="description" content="">
<meta property="og:type" content="website">
<meta property="og:title" content="Maple's Blog">
<meta property="og:url" content="https://blog.vvcat.cn/index.html">
<meta property="og:site_name" content="Maple's Blog">
<meta property="og:locale">
<meta property="article:author" content="Maple">
<meta name="twitter:card" content="summary">
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="icon" href="/favicon.png">
<title>Maple's Blog</title>
<!-- /*! loadCSS. [c]2017 Filament Group, Inc. MIT License */
/* This file is meant as a standalone workflow for
- testing support for link[rel=preload]
- enabling async CSS loading in browsers that do not support rel=preload
- applying rel preload css once loaded, whether supported or not.
*/ -->
<script>
(function (w) {
'use strict'
// rel=preload support test
if (!w.loadCSS) {
w.loadCSS = function () {}
}
// define on the loadCSS obj
var rp = (loadCSS.relpreload = {})
// rel=preload feature support test
// runs once and returns a function for compat purposes
rp.support = (function () {
var ret
try {
ret = w.document.createElement('link').relList.supports('preload')
} catch (e) {
ret = false
}
return function () {
return ret
}
})()
// if preload isn't supported, get an asynchronous load by using a non-matching media attribute
// then change that media back to its intended value on load
rp.bindMediaToggle = function (link) {
// remember existing media attr for ultimate state, or default to 'all'
var finalMedia = link.media || 'all'
function enableStylesheet() {
link.media = finalMedia
}
// bind load handlers to enable media
if (link.addEventListener) {
link.addEventListener('load', enableStylesheet)
} else if (link.attachEvent) {
link.attachEvent('onload', enableStylesheet)
}
// Set rel and non-applicable media type to start an async request
// note: timeout allows this to happen async to let rendering continue in IE
setTimeout(function () {
link.rel = 'stylesheet'
link.media = 'only x'
})
// also enable media after 3 seconds,
// which will catch very old browsers (android 2.x, old firefox) that don't support onload on link
setTimeout(enableStylesheet, 3000)
}
// loop through link elements in DOM
rp.poly = function () {
// double check this to prevent external calls from running
if (rp.support()) {
return
}
var links = w.document.getElementsByTagName('link')
for (var i = 0; i < links.length; i++) {
var link = links[i]
// qualify links to those with rel=preload and as=style attrs
if (
link.rel === 'preload' &&
link.getAttribute('as') === 'style' &&
!link.getAttribute('data-loadcss')
) {
// prevent rerunning on link
link.setAttribute('data-loadcss', true)
// bind listeners to toggle media back
rp.bindMediaToggle(link)
}
}
}
// if unsupported, run the polyfill
if (!rp.support()) {
// run once at least
rp.poly()
// rerun poly on an interval until onload
var run = w.setInterval(rp.poly, 500)
if (w.addEventListener) {
w.addEventListener('load', function () {
rp.poly()
w.clearInterval(run)
})
} else if (w.attachEvent) {
w.attachEvent('onload', function () {
rp.poly()
w.clearInterval(run)
})
}
}
// commonjs
if (typeof exports !== 'undefined') {
exports.loadCSS = loadCSS
} else {
w.loadCSS = loadCSS
}
})(typeof global !== 'undefined' ? global : this)
</script>
<style type="text/css">
@font-face {
font-family: 'Oswald-Regular';
src: url("/font/Oswald-Regular.ttf");
}
body {
margin: 0;
}
header,
footer,
.back-top,
.sidebar,
.container,
.site-intro-meta,
.toc-wrapper {
display: none;
}
.site-intro {
position: relative;
z-index: 3;
width: 100%;
/* height: 50vh; */
overflow: hidden;
}
.site-intro-placeholder {
position: absolute;
z-index: -2;
top: 0;
left: 0;
width: calc(100% + 300px);
height: 100%;
background: repeating-linear-gradient(-45deg, #444 0, #444 80px, #333 80px, #333 160px);
background-position: center center;
transform: translate3d(-226px, 0, 0);
animation: gradient-move 2.5s ease-out 0s infinite;
}
@keyframes gradient-move {
0% {
transform: translate3d(-226px, 0, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
</style>
<link rel="preload" href="/css/style.css?v=20211217" as="style" onload="this.onload=null;this.rel='stylesheet'">
<link rel="preload" href="/css/dark.css?v=20211217" as="style">
<link rel="stylesheet" href="/css/dark.css">
<link rel="stylesheet" href="/css/mobile.css?v=20211217" media="(max-width: 960px)">
<link rel="preload" href="https://cdn.bootcdn.net/ajax/libs/fancybox/3.5.7/jquery.fancybox.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<link rel="preload" href="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.min.js" as="script">
<link rel="preload" href="/scripts/main.js?v=20211217" as="script">
<link rel="preload" href="/scripts/dark.js?v=20211217" as="script">
<link rel="preload" href="/font/Oswald-Regular.ttf" as="font" crossorigin>
<link rel="preload" href="https://at.alicdn.com/t/font_327081_1dta1rlogw17zaor.woff" as="font" crossorigin>
<!-- algolia -->
<!-- 百度统计 -->
<!-- 谷歌统计 -->
<meta name="generator" content="Hexo 6.3.0"></head>
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script type="text/javascript">
if (typeof window.$ == undefined) {
console.warn('jquery load from bootcdn failed, will load local script')
document.write('<script src="/lib/jquery.min.js" />')
}
</script>
<body class="home-body">
<!-- header -->
<header class="header header-mobile index-header">
<!-- top read progress line -->
<div class="header-element">
<div class="read-progress"></div>
</div>
<!-- sidebar menu button -->
<div class="header-element">
<div class="header-sidebar-menu">
<div style="padding-left: 1px;"></div>
</div>
</div>
<!-- header actions -->
<div class="header-actions">
<!-- theme mode switch button -->
<span class="header-theme-btn header-element">
<i class="fas fa-adjust"></i>
</span>
<!-- back to home page text -->
<span class="home-link header-element">
<a href=/>Maple's Blog.</a>
</span>
</div>
<!-- toggle banner for post layout -->
</header>
<!-- fixed footer -->
<footer class="footer-fixed index-footer-fixed">
<!-- back to top button -->
<div class="footer-fixed-element">
<div class="back-top back-top-hidden">
<div></div>
</div>
</div>
</footer>
<!-- wrapper -->
<div class="wrapper">
<div class="site-intro" style="
height:50vh;
">
<!-- 主页 -->
<!-- 文章页 -->
<div class="site-intro-placeholder"></div>
<div class="site-intro-img" style="background-image: url(https://raw.githubusercontent.com/mapleincode/images/master/img/20200522183020.jpg)"></div>
<div class="site-intro-meta">
<!-- 标题 -->
<h1 class="intro-title">
<!-- 主页 -->
Maple's Blog.
<!-- 文章页 -->
</h1>
<!-- 副标题 -->
<p class="intro-subtitle">
<!-- 主页副标题 -->
keep coding and having fun
<!-- 文章页 -->
</p>
<!-- 文章页 meta -->
</div>
</div>
<script>
// get user agent
function getBrowserVersions() {
var u = window.navigator.userAgent
return {
userAgent: u,
trident: u.indexOf('Trident') > -1, //IE内核
presto: u.indexOf('Presto') > -1, //opera内核
webKit: u.indexOf('AppleWebKit') > -1, //苹果、谷歌内核
gecko: u.indexOf('Gecko') > -1 && u.indexOf('KHTML') == -1, //火狐内核
mobile: !!u.match(/AppleWebKit.*Mobile.*/), //是否为移动终端
ios: !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/), //ios终端
android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1, //android终端或者uc浏览器
iPhone: u.indexOf('iPhone') > -1 || u.indexOf('Mac') > -1, //是否为iPhone或者安卓QQ浏览器
iPad: u.indexOf('iPad') > -1, //是否为iPad
webApp: u.indexOf('Safari') == -1, //是否为web应用程序,没有头部与底部
weixin: u.indexOf('MicroMessenger') == -1, //是否为微信浏览器
uc: u.indexOf('UCBrowser') > -1, //是否为android下的UC浏览器
}
}
var browser = {
versions: getBrowserVersions(),
}
console.log('userAgent: ' + browser.versions.userAgent)
// callback
function fontLoaded() {
console.log('font loaded')
if (document.getElementsByClassName('site-intro-meta')) {
document
.getElementsByClassName('intro-title')[0]
.classList.add('intro-fade-in')
document
.getElementsByClassName('intro-subtitle')[0]
.classList.add('intro-fade-in')
var postIntros = document.getElementsByClassName('post-intros')[0]
if (postIntros) {
postIntros.classList.add('post-fade-in')
}
}
}
// UC不支持跨域,所以直接显示
function asyncCb() {
if (browser.versions.uc) {
console.log('UCBrowser')
fontLoaded()
} else {
WebFont.load({
custom: {
families: ['Oswald-Regular'],
},
loading: function () {
// 所有字体开始加载
// console.log('font loading');
},
active: function () {
// 所有字体已渲染
fontLoaded()
},
inactive: function () {
// 字体预加载失败,无效字体或浏览器不支持加载
console.log('inactive: timeout')
fontLoaded()
},
timeout: 5000, // Set the timeout to two seconds
})
}
}
function asyncErr() {
console.warn('script load from CDN failed, will load local script')
}
// load webfont-loader async, and add callback function
function async(u, cb, err) {
var d = document,
t = 'script',
o = d.createElement(t),
s = d.getElementsByTagName(t)[0]
o.src = u
if (cb) {
o.addEventListener(
'load',
function (e) {
cb(null, e)
},
false
)
}
if (err) {
o.addEventListener(
'error',
function (e) {
err(null, e)
},
false
)
}
s.parentNode.insertBefore(o, s)
}
var asyncLoadWithFallBack = function (arr, success, reject) {
var currReject = function () {
reject()
arr.shift()
if (arr.length) async(arr[0], success, currReject)
}
async(arr[0], success, currReject)
}
asyncLoadWithFallBack(
[
// 'https://cdn.jsdelivr.net/npm/[email protected]/webfontloader.min.js',
'https://cdn.bootcss.com/webfont/1.6.28/webfontloader.js',
"/lib/webfontloader.min.js",
],
asyncCb,
asyncErr
)
</script>
<img class="loading" src="/assets/loading.svg" style="display: block; margin: 6rem auto 0 auto; width: 6rem; height: 6rem;" />
<div class="container container-unloaded">
<main class="main index-page">
<article class="index-post">
<a class="abstract-title" href="/2024/04/10/2024/04/rsync/">
<span class="abstract-title-text">rsync 命令参数详解</span>
</a>
<div class="abstract-content">
1rsync -avz /etc/gitlab/gitlab.rb [email protected]:~/gitlab_backups/
常用:
123456789101112-a, --archive 归档模式,表示以递归方式传输文件,并保持所有文件属性,等于-rlptgo-v, --verbose 详细模式输出-z, --compress 对备份的文件在传输时进行压缩处理 --delete 删除那些 DST 中 SRC 没有的文件-e, --rsh=COMMAND 指定使用rsh、ssh方式进行数据同步# -e 'ssh -p 2222' --par...
</div>
<!-- read more -->
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date" title="Last updated: 2024/06/04">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2024/04/10</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags="rsync">rsync</a>
</div>
</div>
</article>
<div class="index-post-divider"></div>
<article class="index-post">
<a class="abstract-title" href="/2024/04/10/2024/04/ssh-keygen/">
<span class="abstract-title-text">SSH密钥类型</span>
</a>
<div class="abstract-content">
原文地址
SSH 密钥类型在 SSH 中,常见的密钥类型包括以下几种:
RSA:这是最早的 SSH 密钥类型之一,使用 RSA 加密算法。RSA 密钥在 SSH 中被广泛使用,并且是许多 SSH 工具和协议的默认密钥类型。
DSA:这是另一种早期的 SSH 密钥类型,使用 DSA 加密算法。DSA 密钥已被广泛使用,但现在已不建议使用。
ECDSA:这是一种基于椭圆曲线加密算法的 SSH 密钥类型,通常比 RSA 和 DSA 密钥更安全和高效。
ed25519:这是一种基于椭圆曲线加密算法的公钥加密方案,它被广泛应用于 SSH 密钥认证。ed25519 密钥具有更高的安全性和更好的性能...
</div>
<!-- read more -->
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date" title="Last updated: 2024/06/04">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2024/04/10</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags="ssh">ssh</a>
</div>
</div>
</article>
<div class="index-post-divider"></div>
<article class="index-post">
<a class="abstract-title" href="/2024/03/14/2024/02/deli/">
<span class="abstract-title-text">得力和假货和美工刀和订书钉</span>
</a>
<div class="abstract-content">
事情起因是我闲着无聊在拼多多上买了十把美工刀,得力。
我手上也有一把得力的,和商品选项上的图片也是一样的,结果还是翻车了。
结果拿着证据找了拼多多客服,拼多多客服判定店铺违规,并退了钱。
结果半夜我脑抽,忽然想会不会是店家被误会了,真的有这样长相的一把刀?于是我成功在淘宝旗舰店找到了一把类似的的美工刀,当时心想,我良心道德都没了…
拿着旗舰店的买家秀对比了半天,确定我还真的没误会这个店家,那丫就是个卖假货的。
我刚拿到手时,发现有几点不对:
使用的材质不对,得力的美工刀使用的不锈钢材质有拉丝抛光,而这把美工刀使用的不锈钢材质是镜面的。
美工刀的做工虽然算不上差,但是正面出现不规则的加工...
</div>
<!-- read more -->
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date" title="Last updated: 2024/03/14">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2024/03/14</span>
</div>
<!-- tags -->
</div>
</article>
<div class="index-post-divider"></div>
<article class="index-post">
<a class="abstract-title" href="/2024/03/07/2024/02/postgresql-installation/">
<span class="abstract-title-text">PostgreSQL Ubuntu 安装</span>
</a>
<div class="abstract-content">
安装流程安装直接找官网,无脑走流程即可。
切记不要使用默认 apt 安装,默认 apt 仓库使用的是旧版本的 Postgres。
官网地址安装教程
123456789101112# Create the file repository configuration:sudo sh -c 'echo "deb https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'# Import the ...
</div>
<!-- read more -->
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date" title="Last updated: 2024/03/07">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2024/03/07</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags="postgresql">postgresql</a>
</div>
</div>
</article>
<div class="index-post-divider"></div>
<article class="index-post">
<a class="abstract-title" href="/2024/02/22/2024/01/outline/">
<span class="abstract-title-text">通过 docker 来部署 outline</span>
</a>
<div class="abstract-content">
同样是写 traefik 的老哥,他也写了 outline 的教程:
从零开始使用开源文档/Wiki软件 Outline(一)
需要注意的是,整个项目的部署是基于 traefik 来进行部署的,除此之外教程相当详细。
为什么要使用域名?域名可以保证使用时候比较舒服,因为所有服务都可以使用同一个 80 端口或者 443 端口,而不需要每个服务单独占用一个独立的非标准端口。
这样的情况下,http 服务器区分服务的办法,只能以来域名。
并非一定需要购买域名,例如范例中的 *.lab.com,只需要在 hosts 文件中加入映射即可访问。
是否一定要使用 httpshttps 取决于...
</div>
<!-- read more -->
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date" title="Last updated: 2024/03/07">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2024/02/22</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags="outline">outline</a>
</div>
</div>
</article>
<div class="index-post-divider"></div>
<article class="index-post">
<a class="abstract-title" href="/2024/01/31/2024/01/traefik/">
<span class="abstract-title-text">Traefik 使用和配置</span>
</a>
<div class="abstract-content">
Traefik 的作用是基于 Docker 网络来暴露服务,通过域名的方式来分发对容器的请求。
在网上找到一老哥的介绍,基本已经很完善了。
Traefik v3.0 Docker 全面使用指南:基础篇
但是就最后的结果,因为我不想再部署一套 https 证书的申请获取,于是我简化成了纯 http 版本:
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576...
</div>
<!-- read more -->
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date" title="Last updated: 2024/03/07">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2024/01/31</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags="docker">docker</a>
<a class="post-tag" href="javascript:void(0);" data-tags="traefik">traefik</a>
</div>
</div>
</article>
<div class="index-post-divider"></div>
<article class="index-post">
<a class="abstract-title" href="/2023/12/20/2023/12/validation-api/">
<span class="abstract-title-text">validation-api</span>
</a>
<div class="abstract-content">
validation-api 内置的 constraints
Validation-API
概述
@AssertFalse
被注释的元素必须为 false
@AssertTrue
被注释的元素必须为 true
@DecimalMax
被注释的元素必须是一个数字,其值必须小于等于指定的最大值
@DecimalMin
被注释的元素必须是一个数字,其值必须大于等于指定的最小值
@Digits
被注释的元素必须是一个在可接受范围内的数字
@Email
被注释的元素必须是正确格式的电子邮件地址
@Future
被注释的元素必须是将来的日期
@FutureOrP...
</div>
<!-- read more -->
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date" title="Last updated: 2024/01/09">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2023/12/20</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags="java">java</a>
</div>
</div>
</article>
<div class="index-post-divider"></div>
<article class="index-post">
<a class="abstract-title" href="/2023/09/20/2023/09/shutil/">
<span class="abstract-title-text">Python shutil 笔记</span>
</a>
<div class="abstract-content">
目录和文件操作shutil.copyfile(src, dst, *, follow_symlinks=True)将名为 src 的文件的内容(不包括元数据)拷贝到名为 dst 的文件并以尽可能高效的方式返回 dst。 src 和 dst 均为路径类对象或以字符串形式给出的路径名。
dst 必须是完整的目标文件名;
exception shutil.SameFileError此异常会在 copyfile() 中的源和目标为同一文件时被引发。
shutil.copymode(src, dst, *, follow_symlinks=True)从 src 拷贝权限位到 d...
</div>
<!-- read more -->
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date" title="Last updated: 2024/01/09">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2023/09/20</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags="python">python</a>
</div>
</div>
</article>
<div class="index-post-divider"></div>
<article class="index-post">
<a class="abstract-title" href="/2023/08/31/2023/08/nestjs-provider/">
<span class="abstract-title-text">Nestjs Provider</span>
</a>
<div class="abstract-content">
基础使用12345678910111213// cat.service.tsimport { Injectable } from '@nestjs/common';import { Cat } from './interfaces/cat.interface';@Injectable()export class CatsService { private readonly cats: Cat[] = []; findAll(): Cat[] { return this.cats;...
</div>
<!-- read more -->
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date" title="Last updated: 2024/01/09">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2023/08/31</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags="nodejs">nodejs</a>
</div>
</div>
</article>
<div class="index-post-divider"></div>
<article class="index-post">
<a class="abstract-title" href="/2023/08/03/2023/08/mvn-command/">
<span class="abstract-title-text">mvn 命令参数含义</span>
</a>
<div class="abstract-content">
</div>
<!-- read more -->
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date" title="Last updated: 2024/01/09">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2023/08/03</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags="java">java</a>
<a class="post-tag" href="javascript:void(0);" data-tags="mvn">mvn</a>
</div>
</div>
</article>
<div class="index-post-divider"></div>
<!-- paginator -->
<nav class="page-nav">
<span class="page-number current">1</span><a class="page-number" href="/page/2/">2</a><a class="page-number" href="/page/3/">3</a><span class="space">…</span><a class="page-number" href="/page/19/">19</a><a class="extend next" rel="next" href="/page/2/">NEXT ></a>
</nav>
</main>
<!-- profile -->
<div class="profile">
<img class="profile-avatar" alt="avatar" src= /avatar.png />
<div class="profile-name">Maple</div>
<div class="profile-signature">
coding & have fun
</div>
<div class="profile-social">
<a href="mailto:[email protected]" class="iconfont-archer email" title=email ></a>
<a href="//github.com/mapleincode" class="iconfont-archer github" target="_blank" title=github></a>
<a href="//www.zhihu.com/people/mapleincode" class="iconfont-archer zhihu" target="_blank" title=zhihu></a>
<a href="//space.bilibili.com/830610" class="iconfont-archer bilibili" target="_blank" title=bilibili></a>
</div>
</div>
</div>
<!--
* @Author: maple
* @Date: 2022-04-20 16:27:18
* @LastEditors: maple
* @LastEditTime: 2022-05-05 14:10:53
-->
<footer class="footer footer-unloaded">
<!-- social -->
<div class="social">
<a href="mailto:[email protected]" class="iconfont-archer email" title=email ></a>
<a href="//github.com/mapleincode" class="iconfont-archer github" target="_blank" title=github></a>
<a href="//www.zhihu.com/people/mapleincode" class="iconfont-archer zhihu" target="_blank" title=zhihu></a>