-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
989 lines (610 loc) · 33.6 KB
/
Copy pathindex.html
File metadata and controls
989 lines (610 loc) · 33.6 KB
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
<!DOCTYPE html>
<html lang="zh-Hans">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta name="theme-color" content="#222"><meta name="generator" content="Hexo 6.3.0">
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png">
<link rel="mask-icon" href="/images/logo.svg" color="#222">
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" integrity="sha256-dABdfBfUoC8vJUBOwGVdm8L9qlMWaHTIfXt+7GnZCIo=" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.1.1/animate.min.css" integrity="sha256-PR7ttpcvz8qrF57fur/yAx1qXMFJeJFiA6pSzWi0OIE=" crossorigin="anonymous">
<script class="next-config" data-name="main" type="application/json">{"hostname":"ustcqidi.github.io","root":"/","images":"/images","scheme":"Pisces","darkmode":false,"version":"8.22.0","exturl":false,"sidebar":{"position":"left","width_expanded":320,"width_dual_column":240,"display":"post","padding":18,"offset":12},"hljswrap":true,"copycode":{"enable":false,"style":null},"fold":{"enable":false,"height":500},"bookmark":{"enable":false,"color":"#222","save":"auto"},"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"style":"tabs","active":null,"storage":true,"lazyload":false,"nav":null},"stickytabs":false,"motion":{"enable":true,"async":false,"duration":200,"transition":{"menu_item":"fadeInDown","post_block":"fadeIn","post_header":"fadeInDown","post_body":"fadeInDown","coll_header":"fadeInLeft","sidebar":"fadeInUp"}},"prism":false,"i18n":{"placeholder":"Searching...","empty":"We didn't find any results for the search: ${query}","hits_time":"${hits} results found in ${time} ms","hits":"${hits} results found"}}</script><script src="/js/config.js"></script>
<meta name="description" content="专注企业级客户端应用基础架构设计与性能优化,分享网络通信、数据库、APM等底层技术实践。记录 Troubleshooting、工程效能提升等实战经验,探讨大型应用开发的技术创新。">
<meta property="og:type" content="website">
<meta property="og:title" content="祁迪的博客">
<meta property="og:url" content="https://ustcqidi.github.io/">
<meta property="og:site_name" content="祁迪的博客">
<meta property="og:description" content="专注企业级客户端应用基础架构设计与性能优化,分享网络通信、数据库、APM等底层技术实践。记录 Troubleshooting、工程效能提升等实战经验,探讨大型应用开发的技术创新。">
<meta property="og:locale">
<meta property="article:author" content="祁迪">
<meta property="article:tag" content="企业级应用, 客户端架构, 性能优化, 网络通信, 数据库设计, APM监控, Troubleshooting, 工程效能, 基础组件, 技术创新">
<meta name="twitter:card" content="summary">
<link rel="canonical" href="https://ustcqidi.github.io/">
<script class="next-config" data-name="page" type="application/json">{"sidebar":"","isHome":true,"isPost":false,"lang":"zh-Hans","comments":"","permalink":"","path":"index.html","title":""}</script>
<script class="next-config" data-name="calendar" type="application/json">""</script>
<title>祁迪的博客 - 企业级客户端技术探索:架构设计·性能优化·效能提升</title>
<script src="/js/third-party/analytics/baidu-analytics.js"></script>
<script async src="https://hm.baidu.com/hm.js?b4fa680bcca71536a4ad2a1ce53cf441"></script>
<noscript>
<link rel="stylesheet" href="/css/noscript.css">
</noscript>
<link rel="alternate" href="/atom.xml" title="祁迪的博客" type="application/atom+xml">
</head>
<body itemscope itemtype="http://schema.org/WebPage" class="use-motion">
<div class="headband"></div>
<main class="main">
<div class="column">
<header class="header" itemscope itemtype="http://schema.org/WPHeader"><div class="site-brand-container">
<div class="site-nav-toggle">
<div class="toggle" aria-label="Toggle navigation bar" role="button">
<span class="toggle-line"></span>
<span class="toggle-line"></span>
<span class="toggle-line"></span>
</div>
</div>
<div class="site-meta">
<a href="/" class="brand" rel="start">
<i class="logo-line"></i>
<h1 class="site-title">祁迪的博客</h1>
<i class="logo-line"></i>
</a>
<p class="site-subtitle" itemprop="description">企业级客户端技术探索:架构设计·性能优化·效能提升</p>
</div>
<div class="site-nav-right">
<div class="toggle popup-trigger" aria-label="Search" role="button">
</div>
</div>
</div>
<nav class="site-nav">
<ul class="main-menu menu"><li class="menu-item menu-item-about"><a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>About</a></li><li class="menu-item menu-item-tags"><a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>Tags</a></li>
</ul>
</nav>
</header>
<aside class="sidebar">
<div class="sidebar-inner sidebar-overview-active">
<ul class="sidebar-nav">
<li class="sidebar-nav-toc">
Table of Contents
</li>
<li class="sidebar-nav-overview">
Overview
</li>
</ul>
<div class="sidebar-panel-container">
<!--noindex-->
<div class="post-toc-wrap sidebar-panel">
</div>
<!--/noindex-->
<div class="site-overview-wrap sidebar-panel">
<div class="site-author animated" itemprop="author" itemscope itemtype="http://schema.org/Person">
<p class="site-author-name" itemprop="name">祁迪</p>
<div class="site-description" itemprop="description">专注企业级客户端应用基础架构设计与性能优化,分享网络通信、数据库、APM等底层技术实践。记录 Troubleshooting、工程效能提升等实战经验,探讨大型应用开发的技术创新。</div>
</div>
<div class="site-state-wrap animated">
<nav class="site-state">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">51</span>
<span class="site-state-item-name">posts</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/">
<span class="site-state-item-count">86</span>
<span class="site-state-item-name">tags</span></a>
</div>
</nav>
</div>
<div class="links-of-author animated">
<span class="links-of-author-item">
<a href="https://github.com/ustcqidi" title="GitHub → https://github.com/ustcqidi" rel="noopener me" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a>
</span>
</div>
</div>
</div>
</div>
</aside>
</div>
<div class="main-inner index posts-expand">
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://ustcqidi.github.io/2025/05/03/energy/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="祁迪">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="祁迪的博客">
<meta itemprop="description" content="专注企业级客户端应用基础架构设计与性能优化,分享网络通信、数据库、APM等底层技术实践。记录 Troubleshooting、工程效能提升等实战经验,探讨大型应用开发的技术创新。">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 祁迪的博客">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2025/05/03/energy/" class="post-title-link" itemprop="url">管理精力,而不是管理时间</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2025-05-03 09:30:39 / Modified: 09:33:23" itemprop="dateCreated datePublished" datetime="2025-05-03T09:30:39+08:00">2025-05-03</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>决定我们生活质量、工作效率和幸福感的,不是表面上的时间,而是我们每天的精力和情绪。</p>
<p>我们真正该管理的,不是时间表,而是我们的<strong>精力和情绪。</strong></p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2025/05/03/energy/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://ustcqidi.github.io/2025/04/26/family/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="祁迪">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="祁迪的博客">
<meta itemprop="description" content="专注企业级客户端应用基础架构设计与性能优化,分享网络通信、数据库、APM等底层技术实践。记录 Troubleshooting、工程效能提升等实战经验,探讨大型应用开发的技术创新。">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 祁迪的博客">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2025/04/26/family/" class="post-title-link" itemprop="url">为什么我们总是把最坏的情绪留给最亲的人?</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2025-04-26 10:01:15 / Modified: 10:07:10" itemprop="dateCreated datePublished" datetime="2025-04-26T10:01:15+08:00">2025-04-26</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>最好的家庭教育,是夫妻关系的稳固,是父母内在情绪的稳定,是家庭系统的健康有序</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2025/04/26/family/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://ustcqidi.github.io/2025/04/04/uncertain/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="祁迪">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="祁迪的博客">
<meta itemprop="description" content="专注企业级客户端应用基础架构设计与性能优化,分享网络通信、数据库、APM等底层技术实践。记录 Troubleshooting、工程效能提升等实战经验,探讨大型应用开发的技术创新。">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 祁迪的博客">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2025/04/04/uncertain/" class="post-title-link" itemprop="url">学会和不确定性和平共处</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2025-04-04 19:56:56 / Modified: 20:04:14" itemprop="dateCreated datePublished" datetime="2025-04-04T19:56:56+08:00">2025-04-04</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>我自己有一个很明显的思维误区,就是非常不愿意接受不确定性,尤其是那些比较糟糕的事情的不确定性。会过度高估小概率事件的影响,灾难化思维。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2025/04/04/uncertain/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://ustcqidi.github.io/2025/03/14/net/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="祁迪">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="祁迪的博客">
<meta itemprop="description" content="专注企业级客户端应用基础架构设计与性能优化,分享网络通信、数据库、APM等底层技术实践。记录 Troubleshooting、工程效能提升等实战经验,探讨大型应用开发的技术创新。">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 祁迪的博客">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2025/03/14/net/" class="post-title-link" itemprop="url">企业级网络请求库开发实践与挑战</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2025-03-14 17:41:30 / Modified: 17:51:41" itemprop="dateCreated datePublished" datetime="2025-03-14T17:41:30+08:00">2025-03-14</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>详细探讨了在企业级环境下开发网络请求库的复杂性和挑战。从多个维度阐述了看似简单的网络请求功能在大规模企业应用中的复杂性。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2025/03/14/net/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://ustcqidi.github.io/2025/03/02/flomo/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="祁迪">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="祁迪的博客">
<meta itemprop="description" content="专注企业级客户端应用基础架构设计与性能优化,分享网络通信、数据库、APM等底层技术实践。记录 Troubleshooting、工程效能提升等实战经验,探讨大型应用开发的技术创新。">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 祁迪的博客">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2025/03/02/flomo/" class="post-title-link" itemprop="url">记录、Review、联结:我的 flomo 笔记使用心得</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2025-03-02 10:11:55 / Modified: 10:18:50" itemprop="dateCreated datePublished" datetime="2025-03-02T10:11:55+08:00">2025-03-02</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>持续不断记录,意义自然浮现</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2025/03/02/flomo/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://ustcqidi.github.io/2025/02/22/net-log/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="祁迪">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="祁迪的博客">
<meta itemprop="description" content="专注企业级客户端应用基础架构设计与性能优化,分享网络通信、数据库、APM等底层技术实践。记录 Troubleshooting、工程效能提升等实战经验,探讨大型应用开发的技术创新。">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 祁迪的博客">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2025/02/22/net-log/" class="post-title-link" itemprop="url">Chromium NetLog 学习与客户端结构化日志的思考</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2025-02-22 16:09:43 / Modified: 16:38:23" itemprop="dateCreated datePublished" datetime="2025-02-22T16:09:43+08:00">2025-02-22</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>思考当前客户端日志存在的问题,并深入学习 Chromium NetLog 的设计与实现细节,从中汲取灵感,打造一套适用于我们客户端产品的结构化事件日志系统。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2025/02/22/net-log/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://ustcqidi.github.io/2025/02/20/future/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="祁迪">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="祁迪的博客">
<meta itemprop="description" content="专注企业级客户端应用基础架构设计与性能优化,分享网络通信、数据库、APM等底层技术实践。记录 Troubleshooting、工程效能提升等实战经验,探讨大型应用开发的技术创新。">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 祁迪的博客">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2025/02/20/future/" class="post-title-link" itemprop="url">这短短几十年,我们仿佛穿越了好几个时代</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2025-02-20 21:39:58 / Modified: 21:41:56" itemprop="dateCreated datePublished" datetime="2025-02-20T21:39:58+08:00">2025-02-20</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>我们经常在想,如果能穿越回某个时间点,我们就知道该如何抓住财富机遇,如何让自己财务自由。但其实,我们现在就处在一个巨变的时间点——AI、大模型、机器人、低空飞行……这些技术正重新塑造世界,我们的生活方式、职业形态、商业格局都将在未来几年发生深刻变化。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2025/02/20/future/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://ustcqidi.github.io/2025/02/07/fi/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="祁迪">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="祁迪的博客">
<meta itemprop="description" content="专注企业级客户端应用基础架构设计与性能优化,分享网络通信、数据库、APM等底层技术实践。记录 Troubleshooting、工程效能提升等实战经验,探讨大型应用开发的技术创新。">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 祁迪的博客">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2025/02/07/fi/" class="post-title-link" itemprop="url">《老后破产》的警示</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2025-02-07 21:45:57 / Modified: 21:49:30" itemprop="dateCreated datePublished" datetime="2025-02-07T21:45:57+08:00">2025-02-07</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>建立被动收入体系对普通人(尤其是程序员)至关重要。虽然初期效果可能不明显,但随着时间推移,稳固的被动收入将成为实现财务自由和应对裁员、行业波动及人工智能冲击风险的关键。因此,越早开始规划和布局,被动收入体系将使未来的风险更易掌控。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2025/02/07/fi/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://ustcqidi.github.io/2025/02/06/llm-pcap/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="祁迪">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="祁迪的博客">
<meta itemprop="description" content="专注企业级客户端应用基础架构设计与性能优化,分享网络通信、数据库、APM等底层技术实践。记录 Troubleshooting、工程效能提升等实战经验,探讨大型应用开发的技术创新。">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 祁迪的博客">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2025/02/06/llm-pcap/" class="post-title-link" itemprop="url">利用大语言模型分析 Wireshark 抓包数据</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2025-02-06 20:29:34 / Modified: 21:53:02" itemprop="dateCreated datePublished" datetime="2025-02-06T20:29:34+08:00">2025-02-06</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>利用大语言模型来辅助分析 Wireshark 网络数据包,从而加深对典型网络协议的理解,提升分析常见网络问题的能力,并进一步建立标准化的分析流程 Prompt,以提高问题排查的效率。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2025/02/06/llm-pcap/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://ustcqidi.github.io/2025/02/02/webservice-refactor/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="祁迪">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="祁迪的博客">
<meta itemprop="description" content="专注企业级客户端应用基础架构设计与性能优化,分享网络通信、数据库、APM等底层技术实践。记录 Troubleshooting、工程效能提升等实战经验,探讨大型应用开发的技术创新。">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 祁迪的博客">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2025/02/02/webservice-refactor/" class="post-title-link" itemprop="url">优化老代码的渐进式方法:以网络模块治理为例</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2025-02-02 21:37:56 / Modified: 22:08:49" itemprop="dateCreated datePublished" datetime="2025-02-02T21:37:56+08:00">2025-02-02</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>在软件开发过程中,随着业务的不断演进,老模块往往会面临代码膨胀、耦合严重、维护成本高等问题。本文以网络模块的治理为例,探讨如何通过解耦、抽象和自动化手段优化架构,提高可维护性和扩展性。我们从网络层与业务层的分离入手,分析当前架构的问题,并提出动态库拆分、API 设计优化、自动化代码生成等解决方案。最终,我们通过实践验证了这些改进措施的有效性,为老模块的治理提供了一套可行的方法论。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2025/02/02/webservice-refactor/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<nav class="pagination">
<span class="page-number current">1</span><a class="page-number" href="/page/2/">2</a><span class="space">…</span><a class="page-number" href="/page/6/">6</a><a class="extend next" rel="next" title="Next page" aria-label="Next page" href="/page/2/"><i class="fa fa-angle-right"></i></a>
</nav>
</div>
</main>
<footer class="footer">
<div class="footer-inner">
<div class="copyright">
©
<span itemprop="copyrightYear">2025</span>
<span class="with-love">
<i class="fa fa-heart"></i>
</span>
<span class="author" itemprop="copyrightHolder">祁迪</span>
</div>
<div class="powered-by">Powered by <a href="https://hexo.io/" rel="noopener" target="_blank">Hexo</a> & <a href="https://theme-next.js.org/pisces/" rel="noopener" target="_blank">NexT.Pisces</a>
</div>
</div>
</footer>
<div class="toggle sidebar-toggle" role="button">
<span class="toggle-line"></span>
<span class="toggle-line"></span>
<span class="toggle-line"></span>
</div>
<div class="sidebar-dimmer"></div>
<div class="back-to-top" role="button" aria-label="Back to top">
<i class="fa fa-arrow-up fa-lg"></i>
<span>0%</span>
</div>
<noscript>
<div class="noscript-warning">Theme NexT works best with JavaScript enabled</div>
</noscript>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js" integrity="sha256-XL2inqUJaslATFnHdJOi9GfQ60on8Wx1C2H8DYiN1xY=" crossorigin="anonymous"></script>
<script src="/js/comments.js"></script><script src="/js/utils.js"></script><script src="/js/motion.js"></script><script src="/js/sidebar.js"></script><script src="/js/next-boot.js"></script>
<script class="next-config" data-name="utterances" type="application/json">{"enable":true,"repo":"ustcqidi/blog-comments","issue_term":"pathname","theme":"github-light","cdn":"https://utteranc.es/client.js"}</script>
<script src="/js/third-party/comments/utterances.js"></script>
</body>
</html>