-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1307 lines (866 loc) · 49.4 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="referrer" content="no-referrer-when-downgrade">
<meta name="keywords" content="kiba, zen, amor, kibazen, kibaamor, 木叶, 木叶禅">
<meta name="description" content="You are too concerned with what was and what will be">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="renderer" content="webkit|ie-stand|ie-comp">
<meta name="mobile-web-app-capable" content="yes">
<meta name="format-detection" content="telephone=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<!-- Global site tag (gtag.js) - Google Analytics -->
<title>木叶禅</title>
<link rel="icon" type="image/png" href="https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/favicon.png">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/libs/awesome/css/all.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/libs/materialize/materialize.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/libs/aos/aos.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/libs/animate/animate.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/libs/lightGallery/css/lightgallery.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/css/matery.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/css/my.css">
<script src="https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/libs/jquery/jquery.min.js"></script>
<meta name="generator" content="Hexo 5.3.0">
<style>.github-emoji { position: relative; display: inline-block; width: 1.2em; min-height: 1.2em; overflow: hidden; vertical-align: top; color: transparent; } .github-emoji > span { position: relative; z-index: 10; } .github-emoji img, .github-emoji .fancybox { margin: 0 !important; padding: 0 !important; border: none !important; outline: none !important; text-decoration: none !important; user-select: none !important; cursor: auto !important; } .github-emoji img { height: 1.2em !important; width: 1.2em !important; position: absolute !important; left: 50% !important; top: 50% !important; transform: translate(-50%, -50%) !important; user-select: none !important; cursor: auto !important; } .github-emoji-fallback { color: inherit; } .github-emoji-fallback img { opacity: 0 !important; }</style>
<link rel="alternate" href="/atom.xml" title="木叶禅" type="application/atom+xml">
</head>
<body>
<header class="navbar-fixed">
<nav id="headNav" class="bg-color nav-transparent">
<div id="navContainer" class="nav-wrapper container">
<div class="brand-logo">
<a href="/" class="waves-effect waves-light">
<img src="https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/medias/logo.png" class="logo-img" alt="LOGO">
<span class="logo-span">木叶禅</span>
</a>
</div>
<a href="#" data-target="mobile-nav" class="sidenav-trigger button-collapse"><i class="fas fa-bars"></i></a>
<ul class="right nav-menu">
<li class="hide-on-med-and-down nav-item">
<a href="/" class="waves-effect waves-light">
<i class="fas fa-home" style="zoom: 0.6;"></i>
<span>首页</span>
</a>
</li>
<li class="hide-on-med-and-down nav-item">
<a href="/learn/" class="waves-effect waves-light">
<i class="fas fa-book" style="zoom: 0.6;"></i>
<span>Learn</span>
</a>
</li>
<li class="hide-on-med-and-down nav-item">
<a href="/memo/" class="waves-effect waves-light">
<i class="fas fa-sticky-note" style="zoom: 0.6;"></i>
<span>Memo</span>
</a>
</li>
<li class="hide-on-med-and-down nav-item">
<a href="/categories/" class="waves-effect waves-light">
<i class="fas fa-bookmark" style="zoom: 0.6;"></i>
<span>分类</span>
</a>
</li>
<li class="hide-on-med-and-down nav-item">
<a href="/tags/" class="waves-effect waves-light">
<i class="fas fa-tags" style="zoom: 0.6;"></i>
<span>标签</span>
</a>
</li>
<li class="hide-on-med-and-down nav-item">
<a href="/about/" class="waves-effect waves-light">
<i class="fas fa-user-circle" style="zoom: 0.6;"></i>
<span>关于</span>
</a>
</li>
<li>
<a href="#searchModal" class="modal-trigger waves-effect waves-light">
<i id="searchIcon" class="fas fa-search" title="搜索" style="zoom: 0.85;"></i>
</a>
</li>
</ul>
<div id="mobile-nav" class="side-nav sidenav">
<div class="mobile-head bg-color">
<img src="https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/medias/logo.png" class="logo-img circle responsive-img">
<div class="logo-name">木叶禅</div>
<div class="logo-desc">
You are too concerned with what was and what will be
</div>
</div>
<ul class="menu-list mobile-menu-list">
<li class="m-nav-item">
<a href="/" class="waves-effect waves-light">
<i class="fa-fw fas fa-home"></i>
首页
</a>
</li>
<li class="m-nav-item">
<a href="/learn/" class="waves-effect waves-light">
<i class="fa-fw fas fa-book"></i>
Learn
</a>
</li>
<li class="m-nav-item">
<a href="/memo/" class="waves-effect waves-light">
<i class="fa-fw fas fa-sticky-note"></i>
Memo
</a>
</li>
<li class="m-nav-item">
<a href="/categories/" class="waves-effect waves-light">
<i class="fa-fw fas fa-bookmark"></i>
分类
</a>
</li>
<li class="m-nav-item">
<a href="/tags/" class="waves-effect waves-light">
<i class="fa-fw fas fa-tags"></i>
标签
</a>
</li>
<li class="m-nav-item">
<a href="/about/" class="waves-effect waves-light">
<i class="fa-fw fas fa-user-circle"></i>
关于
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<style>
.carousel-control {
width: 45px;
height: 45px;
line-height: 55px;
border-radius: 45px;
background: transparent;
cursor: pointer;
z-index: 100;
}
#prev-cover {
position: absolute;
top: 48%;
left: 8px;
}
#next-cover {
position: absolute;
top: 48%;
right: 8px;;
}
#prev-cover i {
margin-right: 3px;
}
#next-cover i {
margin-left: 3px;
}
.carousel-control:hover {
background-color: rgba(0, 0, 0, .4);
}
.carousel-control i {
color: #fff;
font-size: 2.4rem;
}
</style>
<div class="carousel carousel-slider center index-cover" data-indicators="true" style="margin-top: -64px;">
<div id="prev-cover" class="left waves-effect carousel-control">
<i class="icon fa fa-angle-left"></i>
</div>
<div id="next-cover" class="right waves-effect carousel-control">
<i class="icon fa fa-angle-right"></i>
</div>
<div class="carousel-item red white-text bg-cover about-cover">
<div class="container">
<div class="row">
<div class="col s10 offset-s1 m8 offset-m2 l8 offset-l2">
<div class="brand">
<div class="title center-align">
你的问题主要是读书不多而想得太多
</div>
<div class="description center-align">
You are too concerned with what was and what will be
</div>
</div>
</div>
</div>
<script>
$('.bg-cover').css('background-image', 'url(https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/medias/banner/0.jpg)');
</script>
<div class="cover-btns">
<a href="#articles" class="waves-effect waves-light btn">
<i class="fa fa-angle-double-down"></i>开始阅读
</a>
<a href="https://github.com/kibaamor" class="waves-effect waves-light btn" target="_blank">
<i class="fab fa-github-alt"></i>Github
</a>
</div>
<div class="cover-social-link">
<a href="https://github.com/kibaamor" class="tooltipped" target="_blank" data-tooltip="访问我的GitHub" data-position="top" data-delay="50">
<i class="fab fa-github"></i>
</a>
<a href="mailto:[email protected]" class="tooltipped" target="_blank" data-tooltip="邮件联系我" data-position="top" data-delay="50">
<i class="fas fa-envelope-open"></i>
</a>
<a href="/atom.xml" class="tooltipped" target="_blank" data-tooltip="RSS 订阅" data-position="top" data-delay="50">
<i class="fas fa-rss"></i>
</a>
</div>
</div>
</div>
<div class="carousel-item amber white-text carousel-post bg-cover"
style="background-image: url('https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/medias/featureimages/19.jpg');">
<div class="container">
<div class="row">
<div class="col s10 offset-s1">
<div class="title center-align">TCPIP常见问题</div>
<div class="description center-align">
1. TIME_WAIT 会在什么情况下出现如果处于 TIMEWAIT 状态,说明双方建立成功过连接,而且已经发送了最后的 ACK 之后,才会处于这个状态,而且是主动发起关闭的一方处于这个状态。
其次,当断开TCP的主动方收到了被动方发来的
</div>
<div class="cover-btns">
<a href="/tcpip-chang-jian-wen-ti/" class="waves-effect waves-light btn"
target="_blank">
<i class="icon fa fa-eye fa-fw"></i>阅读更多
</a>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item amber white-text carousel-post bg-cover"
style="background-image: url('https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/medias/featureimages/1.jpg');">
<div class="container">
<div class="row">
<div class="col s10 offset-s1">
<div class="title center-align">iptables简介</div>
<div class="description center-align">
一、netfilter 项目netfilter 项目是 Linux 内核中用于数据包过滤的框架。
netfilter 项目有两个常用的子项目:iptables 和 nftables。
iptables 项目中包含了一系列用于配置 Linux
</div>
<div class="cover-btns">
<a href="/iptables-jian-jie/" class="waves-effect waves-light btn"
target="_blank">
<i class="icon fa fa-eye fa-fw"></i>阅读更多
</a>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item amber white-text carousel-post bg-cover"
style="background-image: url('https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/medias/featureimages/20.jpg');">
<div class="container">
<div class="row">
<div class="col s10 offset-s1">
<div class="title center-align">理解TCP中的数据传输</div>
<div class="description center-align">
一、TCP 协议:物流公司TCP 协议提供了一种 面向连接的 、可靠的 、基于字节流的 传输层通信协议。
可以把 TCP 协议理解成一个物流公司,把货物从一个仓库运送到另一个仓库:
TCP 是 基于字节流的 协议,所以运输的货物就是字节;
</div>
<div class="cover-btns">
<a href="/li-jie-tcp-zhong-de-shu-ju-chuan-shu/" class="waves-effect waves-light btn"
target="_blank">
<i class="icon fa fa-eye fa-fw"></i>阅读更多
</a>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item amber white-text carousel-post bg-cover"
style="background-image: url('https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/medias/featureimages/12.jpg');">
<div class="container">
<div class="row">
<div class="col s10 offset-s1">
<div class="title center-align">网络模型协议状态机速览</div>
<div class="description center-align">
一、OSI 模型
名字
功能
协议数据单元(PDU)
常用协议及设备
应用层
为应用进程提供服务
HTTP、FTP、TELNET、DNS、BT、NTP、DHCP、SNMP
表示层
提供数据格式转换服务
JPEG、MP
</div>
<div class="cover-btns">
<a href="/wang-luo-mo-xing-xie-yi-zhuang-tai-ji-su-lan/" class="waves-effect waves-light btn"
target="_blank">
<i class="icon fa fa-eye fa-fw"></i>阅读更多
</a>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item amber white-text carousel-post bg-cover"
style="background-image: url('https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/medias/featureimages/21.jpg');">
<div class="container">
<div class="row">
<div class="col s10 offset-s1">
<div class="title center-align">领域驱动设计相关的软件架构</div>
<div class="description center-align">
架构风格和架构模式架构风格(Architectural Styles)Roy Thomas Fielding 在论文 Architectural Styles andthe Design of Network-based Software
</div>
<div class="cover-btns">
<a href="/ling-yu-qu-dong-she-ji-xiang-guan-de-ruan-jian-jia-gou/" class="waves-effect waves-light btn"
target="_blank">
<i class="icon fa fa-eye fa-fw"></i>阅读更多
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
$(function () {
let coverSlider = $('.carousel');
//用户触摸轮播自动 restartPlay 是否生效
let initUserPressedOrDraggedActive = false
//用户触摸轮播自动 restartPlay
function initUserPressedOrDragged(instance) {
setInterval(() => {
if (instance.pressed || instance.dragged) {
// console.log('initUserPressedOrDragged: ',instance.pressed,instance.dragged)
restartPlay()
}
}, 1000)
}
coverSlider.carousel({
duration: Number('120'),
fullWidth: true,
indicators: 'true' === 'true',
onCycleTo() {
if (!initUserPressedOrDraggedActive) {
// console.log('initUserPressedOrDraggedActive')
initUserPressedOrDragged(this)
initUserPressedOrDraggedActive = true
}
},
})
let carouselIntervalId;
function restartPlay() {
};
// prev and next cover post.
$('#prev-cover').click(function () {
coverSlider.carousel('prev');
restartPlay();
});
$('#next-cover').click(function () {
coverSlider.carousel('next');
restartPlay();
});
});
</script>
<main class="content">
<div id="indexCard" class="index-card">
<div class="container ">
<div class="card">
<div class="card-content">
<div class="dream">
<div class="row">
<div class="col l8 offset-l2 m10 offset-m1 s10 offset-s1 center-align text">
We can only see a short distance ahead, but we can see plenty there that needs to be done.
</div>
</div>
</div>
<div id="recommend-sections" class="recommend">
</div>
</div>
</div>
</div>
</div>
<!-- 所有文章卡片 -->
<article id="articles" class="container articles">
<div class="row article-row">
<div class="article col s12 m6 l4" data-aos="zoom-in">
<div class="card">
<a href="/ddd-si-xiang-jie-du-ji-you-xiu-shi-jian-xue-xi-bi-ji/">
<div class="card-image">
<img src="https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/medias/featureimages/8.jpg" class="responsive-img" alt="《DDD思想解读及优秀实践》学习笔记">
<span class="card-title">《DDD思想解读及优秀实践》学习笔记</span>
</div>
</a>
<div class="card-content article-content">
<div class="summary block-with-text">
相关代码:
https://github.com/kibaamor/DDD-smartrm-monolith-study
https://github.com/kibaamor/DDD-smartrm-micro-services-stu
</div>
<div class="publish-info">
<span class="publish-date">
<i class="far fa-clock fa-fw icon-date"></i>2025-02-05
</span>
<span class="publish-author">
<i class="fas fa-bookmark fa-fw icon-category"></i>
<a href="/categories/%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/" class="post-category">
学习笔记
</a>
</span>
</div>
</div>
<div class="card-action article-tags">
<a href="/tags/%E9%A2%86%E5%9F%9F%E9%A9%B1%E5%8A%A8%E8%AE%BE%E8%AE%A1/">
<span class="chip bg-color">领域驱动设计</span>
</a>
<a href="/tags/%E6%9E%81%E5%AE%A2%E6%97%B6%E9%97%B4/">
<span class="chip bg-color">极客时间</span>
</a>
</div>
</div>
</div>
<div class="article col s12 m6 l4" data-aos="zoom-in">
<div class="card">
<a href="/tou-shi-http-xie-yi-xue-xi-bi-ji/">
<div class="card-image">
<img src="https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/medias/featureimages/9.jpg" class="responsive-img" alt="《透视HTTP协议》学习笔记">
<span class="card-title">《透视HTTP协议》学习笔记</span>
</div>
</a>
<div class="card-content article-content">
<div class="summary block-with-text">
准备git clone [email protected]:kibaamor/http_study.git
cd http_study/www
./run.sh start
编辑hosts,添加
127.0.0.1 www.chr
</div>
<div class="publish-info">
<span class="publish-date">
<i class="far fa-clock fa-fw icon-date"></i>2024-08-26
</span>
<span class="publish-author">
<i class="fas fa-bookmark fa-fw icon-category"></i>
<a href="/categories/%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/" class="post-category">
学习笔记
</a>
</span>
</div>
</div>
<div class="card-action article-tags">
<a href="/tags/HTTP/">
<span class="chip bg-color">HTTP</span>
</a>
<a href="/tags/%E6%9E%81%E5%AE%A2%E6%97%B6%E9%97%B4/">
<span class="chip bg-color">极客时间</span>
</a>
</div>
</div>
</div>
<div class="article col s12 m6 l4" data-aos="zoom-in">
<div class="card">
<a href="/service-mesh-shi-zhan-xue-xi-bi-ji/">
<div class="card-image">
<img src="https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/medias/featureimages/13.jpg" class="responsive-img" alt="《Service Mesh实战》学习笔记">
<span class="card-title">《Service Mesh实战》学习笔记</span>
</div>
</a>
<div class="card-content article-content">
<div class="summary block-with-text">
最小化可实行产品最小化可实行产品(MVP,Minimum Viable Product)的概念来自于《精益创业》。简单来说就是:
开发团队通过提供最小化可行产品,获取用户反馈。并在最小化可行产品上持续地进行迭代直到产品达到一个相对稳定的状
</div>
<div class="publish-info">
<span class="publish-date">
<i class="far fa-clock fa-fw icon-date"></i>2024-08-09
</span>
<span class="publish-author">
<i class="fas fa-bookmark fa-fw icon-category"></i>
<a href="/categories/%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/" class="post-category">
学习笔记
</a>
</span>
</div>
</div>
<div class="card-action article-tags">
<a href="/tags/%E6%9E%81%E5%AE%A2%E6%97%B6%E9%97%B4/">
<span class="chip bg-color">极客时间</span>
</a>
<a href="/tags/ServiceMesh/">
<span class="chip bg-color">ServiceMesh</span>
</a>
</div>
</div>
</div>
<div class="article col s12 m6 l4" data-aos="zoom-in">
<div class="card">
<a href="/yun-yuan-sheng-xun-lian-ying-xue-xi-bi-ji/">
<div class="card-image">
<img src="https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/medias/featureimages/7.jpg" class="responsive-img" alt="《云原生训练营》学习笔记">
<span class="card-title">《云原生训练营》学习笔记</span>
</div>
</a>
<div class="card-content article-content">
<div class="summary block-with-text">
课程资源: https://github.com/kibaamor/101
代码走读:https://github.com/kibaamor/101/blob/master/source-code-reading/readme.MD, ht
</div>
<div class="publish-info">
<span class="publish-date">
<i class="far fa-clock fa-fw icon-date"></i>2024-03-16
</span>
<span class="publish-author">
<i class="fas fa-bookmark fa-fw icon-category"></i>
<a href="/categories/%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/" class="post-category">
学习笔记
</a>
</span>
</div>
</div>
<div class="card-action article-tags">
<a href="/tags/%E6%9E%81%E5%AE%A2%E6%97%B6%E9%97%B4/">
<span class="chip bg-color">极客时间</span>
</a>
<a href="/tags/kubernetes/">
<span class="chip bg-color">kubernetes</span>
</a>
</div>
</div>
</div>
<div class="article col s12 m6 l4" data-aos="zoom-in">
<div class="card">
<a href="/ling-yu-qu-dong-she-ji-xiang-guan-de-ruan-jian-jia-gou/">
<div class="card-image">
<img src="https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/medias/featureimages/21.jpg" class="responsive-img" alt="领域驱动设计相关的软件架构">
<span class="card-title">领域驱动设计相关的软件架构</span>
</div>
</a>
<div class="card-content article-content">
<div class="summary block-with-text">
架构风格和架构模式架构风格(Architectural Styles)Roy Thomas Fielding 在论文 Architectural Styles andthe Design of Network-based Software
</div>
<div class="publish-info">
<span class="publish-date">
<i class="far fa-clock fa-fw icon-date"></i>2023-11-01
</span>
<span class="publish-author">
<i class="fas fa-bookmark fa-fw icon-category"></i>
<a href="/categories/%E8%BD%AF%E4%BB%B6%E5%B7%A5%E7%A8%8B/" class="post-category">
软件工程
</a>
</span>
</div>
</div>
<div class="card-action article-tags">
<a href="/tags/%E9%A2%86%E5%9F%9F%E9%A9%B1%E5%8A%A8%E8%AE%BE%E8%AE%A1/">
<span class="chip bg-color">领域驱动设计</span>
</a>
<a href="/tags/%E8%BD%AF%E4%BB%B6%E6%9E%B6%E6%9E%84/">
<span class="chip bg-color">软件架构</span>
</a>
</div>
</div>
</div>
<div class="article col s12 m6 l4" data-aos="zoom-in">
<div class="card">
<a href="/ddd-shi-zhan-ke-xue-xi-bi-ji/">
<div class="card-image">
<img src="https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/medias/featureimages/23.jpg" class="responsive-img" alt="《DDD实战课》学习笔记">
<span class="card-title">《DDD实战课》学习笔记</span>
</div>
</a>
<div class="card-content article-content">
<div class="summary block-with-text">
基础篇01 | 领域驱动设计:微服务设计为什么要选择DDD?我们知道,微服务设计过程中往往会面临边界如何划定的问题,我经常看到项目团队为微服务到底应该拆多小而争得面红耳赤。不同的人会根据自己对微服务的理解而拆分出不同的微服务,于是大家各执一
</div>
<div class="publish-info">
<span class="publish-date">
<i class="far fa-clock fa-fw icon-date"></i>2023-09-08
</span>
<span class="publish-author">
<i class="fas fa-bookmark fa-fw icon-category"></i>
<a href="/categories/%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/" class="post-category">
学习笔记
</a>
</span>
</div>
</div>
<div class="card-action article-tags">
<a href="/tags/%E9%A2%86%E5%9F%9F%E9%A9%B1%E5%8A%A8%E8%AE%BE%E8%AE%A1/">
<span class="chip bg-color">领域驱动设计</span>
</a>
<a href="/tags/%E6%9E%81%E5%AE%A2%E6%97%B6%E9%97%B4/">
<span class="chip bg-color">极客时间</span>
</a>
</div>
</div>
</div>
<div class="article col s12 m6 l4" data-aos="zoom-in">
<div class="card">
<a href="/zhou-zhi-ming-de-ruan-jian-jia-gou-ke-xue-xi-bi-ji/">
<div class="card-image">
<img src="https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/medias/featureimages/9.jpg" class="responsive-img" alt="《周志明的软件架构课》学习笔记">
<span class="card-title">《周志明的软件架构课》学习笔记</span>
</div>
</a>
<div class="card-content article-content">
<div class="summary block-with-text">
开篇词如何构建一个可靠的分布式系统?作为一名架构师,在软件研发的过程中,最难的事儿,其实并不是如何解决具体某个缺陷、如何提升某段代码的性能,而是 如何才能让一系列来自不同开发者、不同厂商、不同版本、不同语言、质量也良莠不齐的软件模块,在不同
</div>
<div class="publish-info">
<span class="publish-date">
<i class="far fa-clock fa-fw icon-date"></i>2023-03-06
</span>
<span class="publish-author">
<i class="fas fa-bookmark fa-fw icon-category"></i>
<a href="/categories/%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/" class="post-category">
学习笔记
</a>
</span>
</div>
</div>
<div class="card-action article-tags">
<a href="/tags/%E6%9E%81%E5%AE%A2%E6%97%B6%E9%97%B4/">
<span class="chip bg-color">极客时间</span>
</a>
<a href="/tags/%E8%BD%AF%E4%BB%B6%E6%9E%B6%E6%9E%84/">
<span class="chip bg-color">软件架构</span>
</a>
</div>
</div>
</div>
<div class="article col s12 m6 l4" data-aos="zoom-in">
<div class="card">
<a href="/rong-qi-shi-zhan-gao-shou-ke-xue-xi-bi-ji/">
<div class="card-image">
<img src="https://cdn.jsdelivr.net/gh/kibaamor/kibaamor.github.io/medias/featureimages/17.jpg" class="responsive-img" alt="《容器实战高手课》学习笔记">
<span class="card-title">《容器实战高手课》学习笔记</span>
</div>
</a>
<div class="card-content article-content">
<div class="summary block-with-text">
课程代码: https://github.com/chengyli/training
开篇词开篇词 | 一个态度两个步骤,成为容器实战高手我们可以结合 Linux 操作系统的主要模块,把容器的知识结构系统地串联起来,同时看到 Names
</div>
<div class="publish-info">
<span class="publish-date">
<i class="far fa-clock fa-fw icon-date"></i>2022-09-02
</span>
<span class="publish-author">
<i class="fas fa-bookmark fa-fw icon-category"></i>
<a href="/categories/%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/" class="post-category">
学习笔记
</a>
</span>