-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1026 lines (811 loc) · 29 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
<title>
Hxy(慌糖盐)
</title>
<meta name="author" content="EthanH3514">
<meta name="description" content="不能再逃避">
<meta name="keywords" content="">
<link rel="icon" href="https://user-images.githubusercontent.com/103171084/250282211-20100fa2-b869-4d9c-afe6-e7f1f1733b96.jpg">
<script src="https://cdn.staticfile.org/instant.page/5.1.0/instantpage.min.js" type="module"></script>
<script src="https://cdn.staticfile.org/font-awesome/6.2.0/js/all.min.js"></script>
<script src="https://cdn.staticfile.org/vue/3.2.33/vue.global.prod.min.js"></script>
<canvas
id="fireworks"
style="position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: 32767"
></canvas>
<script src="https://cdn.staticfile.org/animejs/3.2.1/anime.min.js"></script>
<script src="../source/js/firework.min.js"></script>
<link rel="stylesheet" href="/css/fonts.min.css">
<link rel="stylesheet" href="/css/particlex.css">
<meta name="generator" content="Hexo 6.3.0"><style>mjx-container[jax="SVG"] {
direction: ltr;
}
mjx-container[jax="SVG"] > svg {
overflow: visible;
}
mjx-container[jax="SVG"][display="true"] {
display: block;
text-align: center;
margin: 1em 0;
}
mjx-container[jax="SVG"][justify="left"] {
text-align: left;
}
mjx-container[jax="SVG"][justify="right"] {
text-align: right;
}
g[data-mml-node="merror"] > g {
fill: red;
stroke: red;
}
g[data-mml-node="merror"] > rect[data-background] {
fill: yellow;
stroke: none;
}
g[data-mml-node="mtable"] > line[data-line] {
stroke-width: 70px;
fill: none;
}
g[data-mml-node="mtable"] > rect[data-frame] {
stroke-width: 70px;
fill: none;
}
g[data-mml-node="mtable"] > .mjx-dashed {
stroke-dasharray: 140;
}
g[data-mml-node="mtable"] > .mjx-dotted {
stroke-linecap: round;
stroke-dasharray: 0,140;
}
g[data-mml-node="mtable"] > svg {
overflow: visible;
}
[jax="SVG"] mjx-tool {
display: inline-block;
position: relative;
width: 0;
height: 0;
}
[jax="SVG"] mjx-tool > mjx-tip {
position: absolute;
top: 0;
left: 0;
}
mjx-tool > mjx-tip {
display: inline-block;
padding: .2em;
border: 1px solid #888;
font-size: 70%;
background-color: #F8F8F8;
color: black;
box-shadow: 2px 2px 5px #AAAAAA;
}
g[data-mml-node="maction"][data-toggle] {
cursor: pointer;
}
mjx-status {
display: block;
position: fixed;
left: 1em;
bottom: 1em;
min-width: 25%;
padding: .2em .4em;
border: 1px solid #888;
font-size: 90%;
background-color: #F8F8F8;
color: black;
}
foreignObject[data-mjx-xml] {
font-family: initial;
line-height: normal;
overflow: visible;
}
.MathJax path {
stroke-width: 3;
}
mjx-container[display="true"] {
overflow: auto hidden;
}
mjx-container[display="true"] + br {
display: none;
}
</style><link rel="alternate" href="/atom.xml" title="hxy(慌糖盐)" type="application/atom+xml">
</head>
<body>
<!-- <div id="L2dCanvas"></div> -->
<!-- <script src="/js/live2d.min.js"></script>
<script src="/css/live2d.css"></script>
<script>
var v = new Viewer({
width: 240,
height: 325,
right: "0",
bottom: "0",
basePath: "/model",
role: "<model-name>",
mobile: true,
});
</script> -->
<!-- <div id="cursor"></div> -->
<!-- <script src="../source/css/cursor.css"></script>
<script src="../source/js/cursor.js"></script> -->
<!-- <div id="loading" style="height:100vh;width:100vw;position:fixed;display:flex;z-index:200;justify-content:space-between;background:#fff;transition:opacity 0.3s ease-out">
<div style="position:fixed;height:100vh;width:100vw;display:flex;justify-content:center;align-items:center">
<div id="loadcontent" style="width:50vmin;height:50vmin;padding:50px;border-radius:50%;display:flex;justify-content:center;align-items:center;border:solid 10px #a3ddfb;text-align:center">
<div>
<h2>LOADING...</h2>
<p style="word-break:keep-all">加载过慢请开启缓存(浏览器默认开启)</p>
<div><img alt="loading" src="/loading.gif"></div>
</div>
</div>
</div>
</div> -->
<!-- <canvas id="background" style="position:fixed;top:0;left:0;width:100vw;height:100vh;pointer-events:none;z-index:-1"></canvas>
<script src="../source/js/background.js"></script> -->
<div id="layout">
<i data-fa-symbol="calendar-solid" class="fa-solid fa-calendar fa-fw"></i>
<i data-fa-symbol="bookmark-solid" class="fa-solid fa-bookmark fa-fw"></i>
<i data-fa-symbol="tags-solid" class="fa-solid fa-tags fa-fw"></i>
<transition name="into">
<div v-show="show_page" style="display: -not-none">
<div id="menu_show">
<nav id="menu">
<div class="desktop-menu">
<a href="/">
<span class="title">hxy(慌糖盐)</span>
</a>
<a href="/">
<i class="fa-solid fa-house fa-fw"></i>
<span> home</span>
</a>
<a href="/about">
<i class="fa-solid fa-id-card fa-fw"></i>
<span> about</span>
</a>
<a href="/archives">
<i class="fa-solid fa-box-archive fa-fw"></i>
<span> archives</span>
</a>
<a href="/categories">
<i class="fa-solid fa-bookmark fa-fw"></i>
<span> categories</span>
</a>
<a href="/tags">
<i class="fa-solid fa-tags fa-fw"></i>
<span> tags</span>
</a>
<a href="/friends">
<i class="fa-solid fa-user-group fa-fw"></i>
<span> friends</span>
</a>
</div>
<div :class="'phone-menu ' + menu_show" id="phone-menu">
<div class="curtain" @click="menu_show = !menu_show" v-show="menu_show"></div>
<div :class="'title'" @click="menu_show = !menu_show">
<i class="fa-solid fa-bars fa-fw"></i>
<span> hxy(慌糖盐)</span>
</div>
<transition name="slide">
<div class="items" v-show="menu_show">
<a href="/">
<div class="item">
<div style="min-width: 20px; max-width: 50px; width: 10%">
<i class="fa-solid fa-house fa-fw"></i>
</div>
<div style="min-width: 100px; max-width: 150%; width: 20%">home</div>
</div>
</a>
<a href="/about">
<div class="item">
<div style="min-width: 20px; max-width: 50px; width: 10%">
<i class="fa-solid fa-id-card fa-fw"></i>
</div>
<div style="min-width: 100px; max-width: 150%; width: 20%">about</div>
</div>
</a>
<a href="/archives">
<div class="item">
<div style="min-width: 20px; max-width: 50px; width: 10%">
<i class="fa-solid fa-box-archive fa-fw"></i>
</div>
<div style="min-width: 100px; max-width: 150%; width: 20%">archives</div>
</div>
</a>
<a href="/categories">
<div class="item">
<div style="min-width: 20px; max-width: 50px; width: 10%">
<i class="fa-solid fa-bookmark fa-fw"></i>
</div>
<div style="min-width: 100px; max-width: 150%; width: 20%">categories</div>
</div>
</a>
<a href="/tags">
<div class="item">
<div style="min-width: 20px; max-width: 50px; width: 10%">
<i class="fa-solid fa-tags fa-fw"></i>
</div>
<div style="min-width: 100px; max-width: 150%; width: 20%">tags</div>
</div>
</a>
<a href="/friends">
<div class="item">
<div style="min-width: 20px; max-width: 50px; width: 10%">
<i class="fa-solid fa-user-group fa-fw"></i>
</div>
<div style="min-width: 100px; max-width: 150%; width: 20%">friends</div>
</div>
</a>
</div>
</transition>
</div>
</nav>
</div>
<div id="main">
<div id="home-head">
<div id="home-background" style="background-image: url(https://user-images.githubusercontent.com/103171084/209776146-2310a63b-c836-4aaa-bd84-5ab4d98a630f.jpg)"></div>
<div id="home-info" class="home-info" @click="home_click">
<span class="loop"></span>
<span class="loop"></span>
<span class="loop"></span>
<span class="loop"></span>
<span class="info">
<div class="wrap">
<h1>hxy(慌糖盐)</h1>
<h3></h3>
<h5>不能再逃避</h5>
</div>
</span>
</div>
</div>
<div id="home-posts-wrap" class="">
<div id="home-posts">
<div id="posts">
<div class="post">
<a href="/2024/06/22/2024-CCPC上海市赛-体验/">
<h2 class="post-title">2024 CCPC上海市赛 体验</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#calendar-solid"></use></svg>
</span>
2024/6/22
</span>
</div>
<div class="excerpt">
<div class="content" v-pre>
<p>本来已经退役了,但是队友拉我打,于是就在实习的间隙打了,大概率是最后一场。6.16号的比赛,但现在才写总结。</p>
<hr>
</div>
</div>
<div class="post-tags">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#tags-solid"></use></svg>
</span>
<span class="tag">
<a href="/tags/算法竞赛/" style="color: #00a596">
算法竞赛
</a>
</span>
<span class="tag">
<a href="/tags/CCPC/" style="color: #ff7d73">
CCPC
</a>
</span>
<span class="tag">
<a href="/tags/省赛/" style="color: #ffa2c4">
省赛
</a>
</span>
<span class="tag">
<a href="/tags/上海/" style="color: #03a9f4">
上海
</a>
</span>
<span class="tag">
<a href="/tags/2024/" style="color: #ff7d73">
2024
</a>
</span>
<span class="tag">
<a href="/tags/SHCPC/" style="color: #ffa2c4">
SHCPC
</a>
</span>
</div>
<a href="/2024/06/22/2024-CCPC上海市赛-体验/" class="go-post">阅读全文</a>
</div>
<div class="post">
<a href="/2024/06/10/分布式ID-学习笔记/">
<h2 class="post-title">分布式ID 学习笔记</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#calendar-solid"></use></svg>
</span>
2024/6/10
</span>
</div>
<div class="excerpt">
<div class="content" v-pre>
<p>分布式系统下为不同的数据节点生成全局唯一主键</p>
</div>
</div>
<div class="post-tags">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#tags-solid"></use></svg>
</span>
<span class="tag">
<a href="/tags/笔记/" style="color: #00bcd4">
笔记
</a>
</span>
<span class="tag">
<a href="/tags/分布式/" style="color: #03a9f4">
分布式
</a>
</span>
<span class="tag">
<a href="/tags/ID/" style="color: #00bcd4">
ID
</a>
</span>
</div>
<a href="/2024/06/10/分布式ID-学习笔记/" class="go-post">阅读全文</a>
</div>
<div class="post">
<a href="/2024/06/10/Gossip-协议-学习笔记/">
<h2 class="post-title">Gossip 协议 学习笔记</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#calendar-solid"></use></svg>
</span>
2024/6/10
</span>
</div>
<div class="excerpt">
<div class="content" v-pre>
<p>分布式系统中,不同的节点进行信息共享的一种<strong>分散式发散消息</strong>的协议</p>
<p>被Redis、Apache Cassandra、Consul等项目应用</p>
</div>
</div>
<div class="post-tags">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#tags-solid"></use></svg>
</span>
<span class="tag">
<a href="/tags/笔记/" style="color: #00a596">
笔记
</a>
</span>
<span class="tag">
<a href="/tags/分布式/" style="color: #00bcd4">
分布式
</a>
</span>
<span class="tag">
<a href="/tags/Gossip/" style="color: #ff7d73">
Gossip
</a>
</span>
<span class="tag">
<a href="/tags/信息共享/" style="color: #00a596">
信息共享
</a>
</span>
</div>
<a href="/2024/06/10/Gossip-协议-学习笔记/" class="go-post">阅读全文</a>
</div>
<div class="post">
<a href="/2024/06/10/CAP-BASE-理论-学习笔记/">
<h2 class="post-title">CAP BASE 理论 学习笔记</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#calendar-solid"></use></svg>
</span>
2024/6/10
</span>
</div>
<div class="excerpt">
<div class="content" v-pre>
<p>是分布式里面比较重要的理论</p>
</div>
</div>
<div class="post-tags">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#tags-solid"></use></svg>
</span>
<span class="tag">
<a href="/tags/笔记/" style="color: #00bcd4">
笔记
</a>
</span>
<span class="tag">
<a href="/tags/CAP/" style="color: #ffa2c4">
CAP
</a>
</span>
<span class="tag">
<a href="/tags/BASE/" style="color: #00a596">
BASE
</a>
</span>
<span class="tag">
<a href="/tags/分布式/" style="color: #ff7d73">
分布式
</a>
</span>
<span class="tag">
<a href="/tags/ACID/" style="color: #03a9f4">
ACID
</a>
</span>
</div>
<a href="/2024/06/10/CAP-BASE-理论-学习笔记/" class="go-post">阅读全文</a>
</div>
<div class="post">
<a href="/2024/06/03/设计模式-六大设计原则-学习笔记/">
<h2 class="post-title">设计模式-六大设计原则 学习笔记</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#calendar-solid"></use></svg>
</span>
2024/6/3
</span>
</div>
<div class="excerpt">
<div class="content" v-pre>
<p>面对需求的变化,有六大设计原则和23种设计模式来为可预料的变化做准备</p>
</div>
</div>
<div class="post-tags">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#tags-solid"></use></svg>
</span>
<span class="tag">
<a href="/tags/笔记/" style="color: #00a596">
笔记
</a>
</span>
<span class="tag">
<a href="/tags/设计模式/" style="color: #ffa2c4">
设计模式
</a>
</span>
<span class="tag">
<a href="/tags/设计原则/" style="color: #00a596">
设计原则
</a>
</span>
</div>
<a href="/2024/06/03/设计模式-六大设计原则-学习笔记/" class="go-post">阅读全文</a>
</div>
<div class="post">
<a href="/2024/06/03/双数组Trie树-DAT-学习笔记/">
<h2 class="post-title">双数组Trie树(DAT) 学习笔记</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#calendar-solid"></use></svg>
</span>
2024/6/3
</span>
</div>
<div class="excerpt">
<div class="content" v-pre>
<blockquote>
<p>Trie
树是一种利用空间换时间的数据结构,占用的内存会比较大。也正是因为这个原因,实际工程项目中都是使用的改进版
Trie 树例如双数组 Trie 树(Double-Array Trie,DAT)。</p>
</blockquote>
<blockquote>
<p>在双数组所有键中包含的字符之间的联系都是通过简单的数学加法运算表示,不仅提高了检索速度,而且省去了链式结构中使用的大量指针,节省了存储空间。</p>
</blockquote>
<p>如果DAT与AC自动机结合,可以达到很高的多模式匹配性能</p>
</div>
</div>
<div class="post-tags">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#tags-solid"></use></svg>
</span>
<span class="tag">
<a href="/tags/算法/" style="color: #00bcd4">
算法
</a>
</span>
<span class="tag">
<a href="/tags/笔记/" style="color: #03a9f4">
笔记
</a>
</span>
<span class="tag">
<a href="/tags/数据结构/" style="color: #03a9f4">
数据结构
</a>
</span>
<span class="tag">
<a href="/tags/DAT/" style="color: #00bcd4">
DAT
</a>
</span>
<span class="tag">
<a href="/tags/Trie/" style="color: #00a596">
Trie
</a>
</span>
</div>
<a href="/2024/06/03/双数组Trie树-DAT-学习笔记/" class="go-post">阅读全文</a>
</div>
<div class="post">
<a href="/2024/06/02/代码命名规范-学习笔记/">
<h2 class="post-title">代码命名规范 学习笔记</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#calendar-solid"></use></svg>
</span>
2024/6/2
</span>
</div>
<div class="excerpt">
<div class="content" v-pre>
<blockquote>
<p>好的代码本身就是注释</p>
</blockquote>
</div>
</div>
<div class="post-tags">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#tags-solid"></use></svg>
</span>
<span class="tag">
<a href="/tags/笔记/" style="color: #00bcd4">
笔记
</a>
</span>
<span class="tag">
<a href="/tags/命名规范/" style="color: #00bcd4">
命名规范
</a>
</span>
</div>
<a href="/2024/06/02/代码命名规范-学习笔记/" class="go-post">阅读全文</a>
</div>
<div class="post">
<a href="/2024/06/01/CSRF-学习笔记/">
<h2 class="post-title">CSRF 学习笔记</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#calendar-solid"></use></svg>
</span>
2024/6/1
</span>
</div>
<div class="excerpt">
<div class="content" v-pre>
<blockquote>
<p>CSRF(Cross-Site Request
Forgery)跨站请求伪造:攻击者诱导受害者进入第三方网站,在第三方网站向被攻击网站发送跨站请求,利用受害者在被攻击网站的凭证,绕过用户验证</p>
</blockquote>
</div>
</div>
<div class="post-tags">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#tags-solid"></use></svg>
</span>
<span class="tag">
<a href="/tags/笔记/" style="color: #03a9f4">
笔记
</a>
</span>
<span class="tag">
<a href="/tags/CSRF/" style="color: #00a596">
CSRF
</a>
</span>
</div>
<a href="/2024/06/01/CSRF-学习笔记/" class="go-post">阅读全文</a>
</div>
<div class="post">
<a href="/2024/05/31/RBAC-权限控制模型-学习笔记/">
<h2 class="post-title">RBAC 权限控制模型 学习笔记</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#calendar-solid"></use></svg>
</span>
2024/5/31
</span>
</div>
<div class="excerpt">
<div class="content" v-pre>
<blockquote>
<p>RBAC即基于角色的权限访问控制(Role Based Access Control)</p>
</blockquote>
<p>权限与角色相关联,用户通过成为包含特定角色的成员而得到这些角色的权限</p>
<p>是系统权限控制最常采用的访问控制模型</p>
</div>
</div>
<div class="post-tags">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#tags-solid"></use></svg>
</span>
<span class="tag">
<a href="/tags/笔记/" style="color: #ffa2c4">
笔记
</a>
</span>
<span class="tag">
<a href="/tags/RBAC/" style="color: #03a9f4">
RBAC
</a>
</span>
<span class="tag">
<a href="/tags/权限控制/" style="color: #00bcd4">
权限控制
</a>
</span>
</div>
<a href="/2024/05/31/RBAC-权限控制模型-学习笔记/" class="go-post">阅读全文</a>
</div>
<div class="post">
<a href="/2024/05/31/Cookie-与-Session-学习笔记/">
<h2 class="post-title">Cookie 与 Session 学习笔记</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#calendar-solid"></use></svg>
</span>
2024/5/31
</span>
</div>
<div class="excerpt">
<div class="content" v-pre>
<blockquote>
<p>Cookie和Session都是用来跟踪浏览器用户身份的会话方式</p>
</blockquote>
</div>
</div>
<div class="post-tags">
<span class="icon">
<svg class="fa-icon"><use xlink:href="#tags-solid"></use></svg>
</span>
<span class="tag">
<a href="/tags/笔记/" style="color: #00a596">
笔记
</a>
</span>
<span class="tag">
<a href="/tags/Cookie/" style="color: #ff7d73">
Cookie
</a>
</span>
<span class="tag">
<a href="/tags/Session/" style="color: #00bcd4">
Session
</a>
</span>
</div>
<a href="/2024/05/31/Cookie-与-Session-学习笔记/" class="go-post">阅读全文</a>
</div>
<div class="page-current">
<div class="prev">
</div>
<div class="page-index">
<span class="current">
1
</span>
<span>
<a href="/page/2/">
<span class="page-num">
2
</span>
</a>
<a href="/page/3">
<span class="page-num">
3
</span>
</a>
<span class="page-omit">...</span>
<a href="/page/13">
<span class="page-num">
13
</span>
</a>
</span>
</div>
<div class="next">
<a href="/page/2/ ">
<span class="page-num">
<i class="fa-solid fa-caret-right fa-fw"></i>
</span>
</a>
</div>
</div>
</div>
</div>
<div id="home-card">
<div id="card-div">
<div class="card-style" style="width: 300px">
<div class="avatar">
<img src="https://user-images.githubusercontent.com/103171084/250282211-20100fa2-b869-4d9c-afe6-e7f1f1733b96.jpg " alt="avatar">
</div>
<div class="name">
EthanH3514
</div>
<div class="descriptions">
<div class="description">
A student forever
</div>
</div>
<div class="icon-links">
<span class="icon-link">
<a target="_blank" rel="noopener" href="https://github.com/EthanH3514">
<i class="fa-brands fa-github fa-fw"></i>
</a>
</span>
<span class="icon-link">
<a target="_blank" rel="noopener" href="https://space.bilibili.com/38484581">
<i class="fa-brands fa-bilibili fa-fw"></i>
</a>
</span>
<span class="icon-link">
<a href="atom.xml">
<i class="fa-solid fa-rss fa-fw"></i>
</a>
</span>
</div>
<div class="friend-links">
</div>
</div>
</div>
</div>
</div>
<footer id="footer">
<div class="footer-wrap">
<div>
<script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<span id="busuanzi_container_site_pv">本站总访问量<span id="busuanzi_value_site_pv"></span>次</span>
</div>
<div>
© 2022 - 2024 hxy(慌糖盐)
<span class="footer-icon">