-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1251 lines (718 loc) · 41.3 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 name="generator" content="Hugo 0.123.7">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>世风十三学堂 | 终身成长、正念编程的全栈架构师,TDD极限敏捷教练咨询师,企业长期增长咨询师</title>
<meta property="og:title" content="世风十三学堂 | 终身成长、正念编程的全栈架构师,TDD极限敏捷教练咨询师,企业长期增长咨询师">
<meta property="og:type" content="website">
<meta name="Keywords" content="Programing">
<meta name="description" content="This is the blog of Wind13">
<meta property="og:url" content="/">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href='/css/normalize.css'>
<link rel="stylesheet" href='/css/style.css'>
<link rel="alternate" type="application/rss+xml" href="/index.xml" title="世风十三学堂" />
<meta name="MediaType" content="application/octet-stream">
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link href="/kityminder/mindmap.css?_=1416390706100" type="text/css" rel="stylesheet" />
<link href="/kityminder/kityminder.core.css?_=1416390706100" type="text/css" rel="stylesheet" />
<script src="/kityminder/kity.min.js?_=1416390706100" charset="utf-8"></script>
<script src="/kityminder/kityminder.core.min.js?_=1416390706100" charset="utf-8"></script>
<script src="/kityminder/mindmap.min.js?_=1416390706100" charset="utf-8"></script>
</head>
<body>
<header id="header" class="clearfix">
<div class="container">
<div class="col-group">
<div class="site-name ">
<h1>
<a id="logo" href="/">
世风十三学堂
</a>
</h1>
<p class="description">终身成长、正念编程的全栈架构师,TDD极限敏捷教练咨询师,企业长期增长咨询师</p>
</div>
<div>
<nav id="nav-menu" class="clearfix">
<a class="current" href="/">首页</a>
<a href="/page/recommend/" title="推荐">推荐</a>
<a href="/page/painting/" title="绘画">绘画</a>
<a href="/archives/" title="归档">归档</a>
<a href="/page/about/" title="关于">关于</a>
</nav>
</div>
</div>
</div>
</header>
<div id="body">
<div class="container">
<div class="col-group">
<div class="col-8" id="main">
<div class="res-cons">
<article class="post">
<header>
<h1 class="post-title">
<a href="/post/2024/cross-platform-client-develop-choise/" title="跨平台开发技术选型:Flutter、Tauri和Dioxus比较与未来展望">跨平台开发技术选型:Flutter、Tauri和Dioxus比较与未来展望</a>
</h1>
</header>
<date class="post-meta meta-date">
2024年12月14日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/%E8%BD%AF%E4%BB%B6%E4%B8%8E%E6%8A%80%E6%9C%AF'>软件与技术</a></span>
<span class="meta-category"><a href='/categories/%E6%94%B6%E9%9B%86%E4%B8%8E%E8%AE%B0%E5%BD%95'>收集与记录</a></span>
</div>
<div class="post-content">
引言 目前主要的客户端就是 Android/iOS/Windows/Linux/Mac/Web,而跨平台开发技术就是将这些客户端的开发技术进行统一,从而达到一次开发,多端运行的效果。 以前我知道的跨平台开发技术主要还是 React Native, Flutter 以及 Uni-App 之类的,自从开始了解 Rust 语言以后, 发现 Rust 语言的……
</div>
<p class="readmore"><a href="/post/2024/cross-platform-client-develop-choise/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="/post/2024/acreom-developer-pkm-task-tool/" title="Acreom 开发者的知识库和任务工具">Acreom 开发者的知识库和任务工具</a>
</h1>
</header>
<date class="post-meta meta-date">
2024年12月8日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/%E8%BD%AF%E4%BB%B6%E4%B8%8E%E6%8A%80%E6%9C%AF'>软件与技术</a></span>
<span class="meta-category"><a href='/categories/%E6%94%B6%E9%9B%86%E4%B8%8E%E8%AE%B0%E5%BD%95'>收集与记录</a></span>
</div>
<div class="post-content">
Acreom是一个专为开发者设计的知识库和任务管理工具,它的核心特点包括: 本地Markdown知识库:Acreom允许用户通过本地Markdown文件来管理和存储知识,确保数据的安全性和隐私性。 无需安装:Acreom不需要复杂的安装过程,可以轻松集成到现有的项目结构中,实现即插即……
</div>
<p class="readmore"><a href="/post/2024/acreom-developer-pkm-task-tool/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="/post/2024/flatnotes-self-note-server/" title="Flatnotes 自托管无库笔记应用">Flatnotes 自托管无库笔记应用</a>
</h1>
</header>
<date class="post-meta meta-date">
2024年12月7日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/%E8%BD%AF%E4%BB%B6%E4%B8%8E%E6%8A%80%E6%9C%AF'>软件与技术</a></span>
<span class="meta-category"><a href='/categories/%E6%94%B6%E9%9B%86%E4%B8%8E%E8%AE%B0%E5%BD%95'>收集与记录</a></span>
</div>
<div class="post-content">
Flatnotes 是一个自托管的、不需要数据库的笔记应用,它使用一个纯平的文件夹来存储Markdown文件。 以下是它的一些主要功能和特点: 无干扰的笔记体验:设计简洁,专注于笔记内容,无文件夹、笔记本等复杂结构,依赖强大的搜索和标签功能。 全文搜索:从应用的任何位置都能快速访问全文搜索功能(快捷键“……
</div>
<p class="readmore"><a href="/post/2024/flatnotes-self-note-server/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="/post/2024/how-to-publish-doc-by-wx-api/" title="如何使用微信公众号API发布文章 How to Publish Doc by Wx Api">如何使用微信公众号API发布文章 How to Publish Doc by Wx Api</a>
</h1>
</header>
<date class="post-meta meta-date">
2024年12月5日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/%E5%AE%9E%E8%B7%B5%E4%B8%8E%E7%BB%8F%E9%AA%8C'>实践与经验</a></span>
<span class="meta-category"><a href='/categories/%E6%94%B6%E9%9B%86%E4%B8%8E%E8%AE%B0%E5%BD%95'>收集与记录</a></span>
</div>
<div class="post-content">
使用微信公众号API发布文章需要遵循微信公众平台的开发规范和接口要求。 以下是使用微信公众号API发布文章的基本步骤: 步骤 1:注册微信公众号 前往微信公众平台官网(mp.weixin.qq.com)注册一个公众号。根据指引完成注册流程,获取公众号的AppID和AppSecret。 步骤……
</div>
<p class="readmore"><a href="/post/2024/how-to-publish-doc-by-wx-api/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="/post/2024/wsl-hugo-blog/" title="使用 WSL 启动 Hugo 搭建博客">使用 WSL 启动 Hugo 搭建博客</a>
</h1>
</header>
<date class="post-meta meta-date">
2024年12月1日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/%E8%BD%AF%E4%BB%B6%E4%B8%8E%E6%8A%80%E6%9C%AF'>软件与技术</a></span>
<span class="meta-category"><a href='/categories/%E6%94%B6%E9%9B%86%E4%B8%8E%E8%AE%B0%E5%BD%95'>收集与记录</a></span>
</div>
<div class="post-content">
使用 Windows Subsystem for Linux (WSL) 来启动 Hugo 并建立自己的博客是一个不错的选择,因为 Hugo 是一个强大的静态网站生成器,非常适合快速搭建个人博客。以下是使用 WSL 启动 Hugo 建立博客的步骤: 步骤 1: 安装 WSL 打开 Windows 功能开关: 打开“控制面板” > “程序” > “程序和功能” > “启用或关闭Windows功能”。 找到“适用于Linux的……
</div>
<p class="readmore"><a href="/post/2024/wsl-hugo-blog/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="/post/2024/agile-project-tools/" title="敏捷项目管理工具比较 Agile Project Tools Compare">敏捷项目管理工具比较 Agile Project Tools Compare</a>
</h1>
</header>
<date class="post-meta meta-date">
2024年11月30日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/%E8%BD%AF%E4%BB%B6%E4%B8%8E%E6%8A%80%E6%9C%AF'>软件与技术</a></span>
<span class="meta-category"><a href='/categories/%E6%94%B6%E9%9B%86%E4%B8%8E%E8%AE%B0%E5%BD%95'>收集与记录</a></span>
</div>
<div class="post-content">
Agile Project Tools Compare 以下是几个目前网上比较敏捷、先进的项目管理工具的比较分析: 1. Taiga.io 敏捷支持:Taiga.io 是一个开源项目管理工具,专为敏捷开发团队设计。它支持Scrum和Kanban框架,帮助团队高效管理项目和任务。 用户界面:Taiga.io 提供简洁直观的用户界面,易于上手,减少学习成本。……
</div>
<p class="readmore"><a href="/post/2024/agile-project-tools/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="/post/2023/front-end-ui-hero-before-after/" title="前端UI的江湖风云">前端UI的江湖风云</a>
</h1>
</header>
<date class="post-meta meta-date">
2023年4月1日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/%E8%BD%AF%E4%BB%B6%E4%B8%8E%E6%8A%80%E6%9C%AF'>软件与技术</a></span>
<span class="meta-category"><a href='/categories/%E6%94%B6%E9%9B%86%E4%B8%8E%E8%AE%B0%E5%BD%95'>收集与记录</a></span>
</div>
<div class="post-content">
前端技术已经发展到什么阶段了?百花齐放,同时也逐渐分出了高下吧,回看前端技术的演化,还真是春秋战国 + 三国群英啊! 相关文章很多,就不多言了。 现如今连 React 都似乎成了垂垂老者,从性能和未来潜力来看,我会关注这两个: Solid.js Svelte.js 如果非要用 React 技术栈,我也会用 Preact.js 这个轻量级方案。 当然 Vue.js 也很优秀,与 React 不同……
</div>
<p class="readmore"><a href="/post/2023/front-end-ui-hero-before-after/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="/post/2022/da-qiao-wang-zhe-rong-yao-de-wang-zhe/" title="大乔,王者荣耀真正的王者">大乔,王者荣耀真正的王者</a>
</h1>
</header>
<date class="post-meta meta-date">
2022年12月15日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/%E6%84%9F%E5%8F%97%E4%B8%8E%E6%80%9D%E8%80%83'>感受与思考</a></span>
<span class="meta-category"><a href='/categories/%E6%94%B6%E9%9B%86%E4%B8%8E%E8%AE%B0%E5%BD%95'>收集与记录</a></span>
</div>
<div class="post-content">
今天 2022年12月15日,我请假在家,最近全国人民都在阳和阳的路上,我也不敢出去瞎逛,就呆在家里玩玩游戏…… 是的,我又双叒叕安装了王者荣耀! 可以回看那篇《别了,王者荣耀》 还有另一篇《不沉迷电子游戏的心法》, 哈哈……这就是人生,相信我这一代是第一代老年人退休打电子游戏的一代吧~ 缘……
</div>
<p class="readmore"><a href="/post/2022/da-qiao-wang-zhe-rong-yao-de-wang-zhe/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="/post/2022/solve-feign-multipart-mixed-post-request-400-error/" title="Solve Feign Multipart Mixed Post Request 400 Error">Solve Feign Multipart Mixed Post Request 400 Error</a>
</h1>
</header>
<date class="post-meta meta-date">
2022年10月30日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/%E8%BD%AF%E4%BB%B6%E4%B8%8E%E6%8A%80%E6%9C%AF'>软件与技术</a></span>
<span class="meta-category"><a href='/categories/%E5%AE%9E%E8%B7%B5%E4%B8%8E%E7%BB%8F%E9%AA%8C'>实践与经验</a></span>
</div>
<div class="post-content">
记一次解决 Feign 提交批量添加请求收到 400 报错的经历 上周在实现用 OpenFeign 提交批量添加请求时,遇到一个奇怪的问题,本来 Post 请求的 body 体,因为是批量请求,内容就比较多,准备起来就比较麻烦,仔细检查了很多次,提交时还是各种失败,最终终于按照官方文档在 Postman 中提交成功了,本以为万事大吉了,于是开始写 Java 代码, 没……
</div>
<p class="readmore"><a href="/post/2022/solve-feign-multipart-mixed-post-request-400-error/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="/post/2022/legacy-system-renew/" title="遗留项目迁移的经验、策略和能力 Legacy System Renew">遗留项目迁移的经验、策略和能力 Legacy System Renew</a>
</h1>
</header>
<date class="post-meta meta-date">
2022年10月23日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/%E8%BD%AF%E4%BB%B6%E4%B8%8E%E6%8A%80%E6%9C%AF'>软件与技术</a></span>
<span class="meta-category"><a href='/categories/%E5%AE%9E%E8%B7%B5%E4%B8%8E%E7%BB%8F%E9%AA%8C'>实践与经验</a></span>
</div>
<div class="post-content">
企业遗留项目改造和迁移有用的经验都有哪些? 之前做过几个遗留项目的迁移工作了, 每一个都有各自的特点, 然而有用的经验却有很多共同点。 归纳起来有以下几点: 首先要深入了解遗留项目的背景、现状和未来期望,包括业务场景、技术框架、历史演进过程等; 其次要有一个富有经验、技术扎实的团队来做支撑,……
</div>
<p class="readmore"><a href="/post/2022/legacy-system-renew/">阅读全文</a></p>
</article>
<ol class="page-navigator">
<li class="current">
<a href="/">1</a>
</li>
<li >
<a href="/page/2/">2</a>
</li>
<li >
<a href="/page/3/">3</a>
</li>
<li>
<span>...</span>
</li>
<li >
<a href="/page/17/">17</a>
</li>
<li class="next">
<a href="/page/2/">下一页</a>
</li>
</ol>
</div>
</div>
<div id="secondary">
<section class="widget">
<form id="search" action='/search' method="get" accept-charset="utf-8" target="_blank" _lpchecked="1">
<input type="text" name="q" maxlength="20" placeholder="Search">
<input type="hidden" name="site" value="/">
<button type="submit" class="submit icon-search"></button>
</form>
</section>
<section class="widget">
<h3 class="widget-title">最近文章</h3>
<ul class="widget-list">
<li>
<a href="/post/2024/cross-platform-client-develop-choise/" title="跨平台开发技术选型:Flutter、Tauri和Dioxus比较与未来展望">跨平台开发技术选型:Flutter、Tauri和Dioxus比较与未来展望</a>
</li>
<li>
<a href="/post/2024/acreom-developer-pkm-task-tool/" title="Acreom 开发者的知识库和任务工具">Acreom 开发者的知识库和任务工具</a>
</li>
<li>
<a href="/post/2024/flatnotes-self-note-server/" title="Flatnotes 自托管无库笔记应用">Flatnotes 自托管无库笔记应用</a>
</li>
<li>
<a href="/post/2024/how-to-publish-doc-by-wx-api/" title="如何使用微信公众号API发布文章 How to Publish Doc by Wx Api">如何使用微信公众号API发布文章 How to Publish Doc by Wx Api</a>
</li>
<li>
<a href="/post/2024/wsl-hugo-blog/" title="使用 WSL 启动 Hugo 搭建博客">使用 WSL 启动 Hugo 搭建博客</a>
</li>
<li>
<a href="/post/2024/agile-project-tools/" title="敏捷项目管理工具比较 Agile Project Tools Compare">敏捷项目管理工具比较 Agile Project Tools Compare</a>
</li>
<li>
<a href="/post/2023/front-end-ui-hero-before-after/" title="前端UI的江湖风云">前端UI的江湖风云</a>
</li>
<li>
<a href="/post/2022/da-qiao-wang-zhe-rong-yao-de-wang-zhe/" title="大乔,王者荣耀真正的王者">大乔,王者荣耀真正的王者</a>
</li>
<li>
<a href="/post/2022/solve-feign-multipart-mixed-post-request-400-error/" title="Solve Feign Multipart Mixed Post Request 400 Error">Solve Feign Multipart Mixed Post Request 400 Error</a>
</li>
<li>
<a href="/post/2022/legacy-system-renew/" title="遗留项目迁移的经验、策略和能力 Legacy System Renew">遗留项目迁移的经验、策略和能力 Legacy System Renew</a>
</li>
</ul>
</section>
<section class="widget">
<h3 class="widget-title">分类</h3>
<ul class="widget-list">
<li><a href="/categories/%E5%AE%9E%E8%B7%B5%E4%B8%8E%E7%BB%8F%E9%AA%8C/">实践与经验 (21)</a></li>
<li><a href="/categories/%E6%84%9F%E5%8F%97%E4%B8%8E%E6%80%9D%E8%80%83/">感受与思考 (27)</a></li>
<li><a href="/categories/%E6%94%B6%E9%9B%86%E4%B8%8E%E8%AE%B0%E5%BD%95/">收集与记录 (33)</a></li>
<li><a href="/categories/%E7%A0%94%E7%A9%B6%E4%B8%8E%E5%AD%A6%E4%B9%A0/">研究与学习 (20)</a></li>
<li><a href="/categories/%E7%AE%A1%E7%90%86%E4%B8%8E%E6%88%98%E7%95%A5/">管理与战略 (14)</a></li>
<li><a href="/categories/%E8%BD%AF%E4%BB%B6%E4%B8%8E%E6%8A%80%E6%9C%AF/">软件与技术 (52)</a></li>
</ul>
</section>
<section class="widget">
<h3 class="widget-title">标签</h3>
<div class="tagcloud">
<a href="/tags/access/">Access</a>
<a href="/tags/acreom/">Acreom</a>
<a href="/tags/agile/">Agile</a>
<a href="/tags/android/">Android</a>
<a href="/tags/android-%E6%B5%8B%E8%AF%95/">Android 测试</a>
<a href="/tags/angular/">Angular</a>
<a href="/tags/angularjs/">Angularjs</a>
<a href="/tags/antd/">Antd</a>
<a href="/tags/api/">API</a>
<a href="/tags/app/">App</a>
<a href="/tags/architect/">Architect</a>
<a href="/tags/aws/">AWS</a>
<a href="/tags/azure/">Azure</a>
<a href="/tags/backbone/">Backbone</a>
<a href="/tags/baidu/">Baidu</a>
<a href="/tags/beeui/">BeeUi</a>
<a href="/tags/blitz/">Blitz</a>
<a href="/tags/blog/">BLog</a>
<a href="/tags/boook/">Boook</a>
<a href="/tags/canvas-app/">Canvas App</a>
<a href="/tags/capslock/">Capslock</a>
<a href="/tags/chado.js/">Chado.js</a>
<a href="/tags/chkdsk/">Chkdsk</a>
<a href="/tags/ci/cd/">CI/CD</a>
<a href="/tags/clojure/">Clojure</a>
<a href="/tags/code/">Code</a>
<a href="/tags/code-review/">Code Review</a>
<a href="/tags/computer-vision/">Computer Vision</a>
<a href="/tags/config/">Config</a>
<a href="/tags/daisyui/">DaisyUI</a>
<a href="/tags/datavers/">Datavers</a>
<a href="/tags/dataverse/">Dataverse</a>
<a href="/tags/db/">DB</a>
<a href="/tags/dendron/">Dendron</a>
<a href="/tags/devops/">DevOps</a>
<a href="/tags/devtech-java/">Devtech Java</a>
<a href="/tags/digital-garden/">Digital-Garden</a>
<a href="/tags/dioxus/">Dioxus</a>
<a href="/tags/docker/">Docker</a>
<a href="/tags/dubbo/">Dubbo</a>
<a href="/tags/easyui/">Easyui</a>
<a href="/tags/editor/">Editor</a>
<a href="/tags/egghead/">Egghead</a>
<a href="/tags/element3/">Element3</a>
<a href="/tags/elementui/">ElementUI</a>
<a href="/tags/elixir/">Elixir</a>
<a href="/tags/emacs/">Emacs</a>
<a href="/tags/erlang/">Erlang</a>
<a href="/tags/es6/">ES6</a>
<a href="/tags/esc/">Esc</a>
<a href="/tags/essay/">Essay</a>
<a href="/tags/evernote/">Evernote</a>
<a href="/tags/feign/">Feign</a>
<a href="/tags/filter/">Filter</a>
<a href="/tags/fizzbuzz/">Fizzbuzz</a>
<a href="/tags/flutter/">Flutter</a>
<a href="/tags/framework/">Framework</a>
<a href="/tags/freebsd/">FreeBSD</a>
<a href="/tags/game/">Game</a>
<a href="/tags/games/">Games</a>
<a href="/tags/getxml/">GetXML</a>
<a href="/tags/git/">Git</a>
<a href="/tags/gitlab/">Gitlab</a>
<a href="/tags/golang/">Golang</a>
<a href="/tags/google/">Google</a>
<a href="/tags/graphic/">Graphic</a>
<a href="/tags/graphql/">Graphql</a>
<a href="/tags/grpc/">Grpc</a>
<a href="/tags/gtd/">GTD</a>
<a href="/tags/hexo/">Hexo</a>
<a href="/tags/https/">Https</a>
<a href="/tags/hugo/">Hugo</a>
<a href="/tags/hypervisor/">Hypervisor</a>
<a href="/tags/idea/">IDEA</a>
<a href="/tags/index/">Index</a>
<a href="/tags/intellij/">Intellij</a>
<a href="/tags/iot/">IoT</a>
<a href="/tags/iterm2/">Iterm2</a>
<a href="/tags/jamstack/">JamStack</a>
<a href="/tags/java/">Java</a>
<a href="/tags/javascript/">JavaScript</a>
<a href="/tags/jenkins/">Jenkins</a>
<a href="/tags/json/">Json</a>
<a href="/tags/julia/">Julia</a>
<a href="/tags/kafka/">Kafka</a>
<a href="/tags/kpi/">KPI</a>
<a href="/tags/learn/">Learn</a>
<a href="/tags/linux/">Linux</a>
<a href="/tags/love/">Love</a>
<a href="/tags/low-code/">Low Code</a>
<a href="/tags/mac-osx/">Mac Osx</a>
<a href="/tags/macos/">MacOS</a>
<a href="/tags/macro/">Macro</a>
<a href="/tags/manjaro/">Manjaro</a>
<a href="/tags/mapapi/">Mapapi</a>
<a href="/tags/markdown/">Markdown</a>
<a href="/tags/midi/">Midi</a>
<a href="/tags/mido/">Mido</a>
<a href="/tags/mindmap/">Mindmap</a>
<a href="/tags/model-driven-app/">Model Driven App</a>
<a href="/tags/module/">Module</a>
<a href="/tags/mounty/">Mounty</a>
<a href="/tags/mqtt/">MQTT</a>
<a href="/tags/multibranch/">Multibranch</a>
<a href="/tags/music/">Music</a>
<a href="/tags/namespace/">Namespace</a>
<a href="/tags/neovim/">NeoVim</a>
<a href="/tags/netlify/">Netlify</a>
<a href="/tags/next/">Next</a>
<a href="/tags/ng/">Ng</a>
<a href="/tags/node.js/">Node.js</a>
<a href="/tags/nodejs/">Nodejs</a>
<a href="/tags/npm/">Npm</a>
<a href="/tags/ntfs/">NTFS</a>
<a href="/tags/nuxt/">Nuxt</a>
<a href="/tags/ocr/">OCR</a>
<a href="/tags/okr/">OKR</a>
<a href="/tags/opencv/">OpenCV</a>
<a href="/tags/openfeign/">OpenFeign</a>
<a href="/tags/openproject/">OpenProject</a>
<a href="/tags/os/">OS</a>
<a href="/tags/osv/">OSv</a>
<a href="/tags/package-lock.json/">Package-Lock.json</a>
<a href="/tags/pact.io/">Pact.io</a>
<a href="/tags/pain-text/">Pain Text</a>
<a href="/tags/para/">Para</a>
<a href="/tags/pc/">Pc</a>
<a href="/tags/piano/">Piano</a>
<a href="/tags/pingcode/">PingCode</a>
<a href="/tags/pipeline/">PipeLine</a>
<a href="/tags/pkm/">PKM</a>
<a href="/tags/play1/">Play1</a>
<a href="/tags/play1x/">Play1x</a>
<a href="/tags/play2-scala/">Play2 Scala</a>
<a href="/tags/playframework/">Playframework</a>
<a href="/tags/playscala/">Playscala</a>
<a href="/tags/post/">POST</a>
<a href="/tags/power-apps/">Power Apps</a>
<a href="/tags/power-platform/">Power Platform</a>
<a href="/tags/powerapps/">PowerApps</a>
<a href="/tags/powermill/">Powermill</a>
<a href="/tags/ppt/">PPT</a>
<a href="/tags/promise/">Promise</a>
<a href="/tags/python/">Python</a>
<a href="/tags/qa/">QA</a>
<a href="/tags/ray-dalio/">Ray Dalio</a>
<a href="/tags/re-natal/">Re-Natal</a>
<a href="/tags/react/">React</a>
<a href="/tags/react-native/">React Native</a>
<a href="/tags/react-route/">React-Route</a>
<a href="/tags/redux/">Redux</a>
<a href="/tags/redwood/">RedWood</a>
<a href="/tags/regex/">Regex</a>
<a href="/tags/restful-apidocker/">RESTful API,Docker</a>
<a href="/tags/rpc/">Rpc</a>
<a href="/tags/ruby/">Ruby</a>
<a href="/tags/rust/">Rust</a>
<a href="/tags/seagate/">Seagate</a>
<a href="/tags/second-brain/">Second-Brain</a>
<a href="/tags/secure/">Secure</a>
<a href="/tags/session/">Session</a>
<a href="/tags/silo/">Silo</a>
<a href="/tags/sitewhere/">SiteWhere</a>
<a href="/tags/smartide/">SmartIDE</a>
<a href="/tags/sops/">Sops</a>
<a href="/tags/spacemacs/">Spacemacs</a>
<a href="/tags/spacevim/">SpaceVim</a>
<a href="/tags/sql/">SQL</a>
<a href="/tags/ssh/">Ssh</a>
<a href="/tags/static-site/">Static Site</a>
<a href="/tags/svelte/">Svelte</a>
<a href="/tags/svg/">SVG</a>
<a href="/tags/taigo/">Taigo</a>
<a href="/tags/tailwind/">Tailwind</a>
<a href="/tags/tauri/">Tauri</a>
<a href="/tags/tdd/">TDD</a>
<a href="/tags/text/">Text</a>
<a href="/tags/toc/">TOC</a>
<a href="/tags/tomorrow-theme/">Tomorrow-Theme</a>
<a href="/tags/tool/">Tool</a>
<a href="/tags/tools/">Tools</a>
<a href="/tags/trello/">Trello</a>
<a href="/tags/typescript/">TypeScript</a>
<a href="/tags/ui%E6%A1%86%E6%9E%B6/">UI框架</a>
<a href="/tags/umi/">Umi</a>
<a href="/tags/uml/">Uml</a>
<a href="/tags/unit-test/">Unit Test</a>
<a href="/tags/unix/">Unix</a>
<a href="/tags/vant/">Vant</a>
<a href="/tags/vi/">Vi</a>
<a href="/tags/vim/">Vim</a>
<a href="/tags/vimac/">Vimac</a>
<a href="/tags/vimium/">Vimium</a>
<a href="/tags/vimrc/">Vimrc</a>
<a href="/tags/vlang/">Vlang</a>
<a href="/tags/vscode/">VSCode</a>
<a href="/tags/vue/">Vue</a>
<a href="/tags/vue3/">Vue3</a>
<a href="/tags/weapp/">Weapp</a>
<a href="/tags/web-resources/">Web Resources</a>
<a href="/tags/webpack/">Webpack</a>
<a href="/tags/weui/">WeUI</a>
<a href="/tags/wind13/">Wind13</a>
<a href="/tags/windows/">Windows</a>
<a href="/tags/word%E6%96%87%E6%A1%A3/">Word文档</a>
<a href="/tags/wux/">Wux</a>
<a href="/tags/xml/">Xml</a>
<a href="/tags/yarn/">Yarn</a>
<a href="/tags/yarn.lock/">Yarn.lock</a>
<a href="/tags/%E4%B8%80%E5%9B%BE/">一图</a>
<a href="/tags/%E4%B8%96%E9%A3%8E%E5%8D%81%E4%B8%89%E5%AD%A6%E5%A0%82/">世风十三学堂</a>
<a href="/tags/%E4%B9%A0%E6%83%AF/">习惯</a>
<a href="/tags/%E4%B9%A6%E7%B1%8D/">书籍</a>
<a href="/tags/%E4%BA%92%E8%81%94%E7%BD%91%E6%97%B6%E4%BB%A3/">互联网时代</a>
<a href="/tags/%E4%BA%A7%E5%93%81%E7%BB%8F%E7%90%86/">产品经理</a>
<a href="/tags/%E4%BA%B2%E5%AD%90%E6%95%99%E8%82%B2/">亲子教育</a>
<a href="/tags/%E4%BA%BA%E5%B7%A5%E6%99%BA%E8%83%BD/">人工智能</a>
<a href="/tags/%E4%BA%BA%E6%9C%88%E7%A5%9E%E8%AF%9D/">人月神话</a>
<a href="/tags/%E4%BA%BA%E7%94%9F/">人生</a>
<a href="/tags/%E4%BB%A5%E7%BB%88%E4%B8%BA%E5%A7%8B/">以终为始</a>
<a href="/tags/%E4%BC%81%E4%B8%9A%E7%AE%A1%E7%90%86/">企业管理</a>
<a href="/tags/%E4%BD%8E%E4%BB%A3%E7%A0%81/">低代码</a>
<a href="/tags/%E5%85%AC%E5%8F%B8%E7%AE%A1%E7%90%86/">公司管理</a>
<a href="/tags/%E5%87%8F%E8%82%A5/">减肥</a>
<a href="/tags/%E5%87%BD%E6%95%B0%E5%BC%8F%E7%BC%96%E7%A8%8B/">函数式编程</a>
<a href="/tags/%E5%88%98%E9%82%A6/">刘邦</a>
<a href="/tags/%E5%88%9B%E6%84%8F%E7%B2%BE%E8%8B%B1/">创意精英</a>
<a href="/tags/%E5%88%9B%E6%96%B0/">创新</a>
<a href="/tags/%E5%88%9D%E5%AD%A6%E8%80%85/">初学者</a>
<a href="/tags/%E5%88%B6%E7%BA%A6%E7%90%86%E8%AE%BA/">制约理论</a>
<a href="/tags/%E5%89%8D%E7%AB%AF/">前端</a>
<a href="/tags/%E5%8C%A0%E5%BF%83/">匠心</a>
<a href="/tags/%E5%8D%8E%E6%99%A8%E5%AE%87/">华晨宇</a>
<a href="/tags/%E5%8D%9A%E5%AE%A2/">博客</a>
<a href="/tags/%E5%8E%9F%E5%88%99/">原则</a>
<a href="/tags/%E5%90%B4%E5%86%9B/">吴军</a>
<a href="/tags/%E5%9B%A2%E9%98%9F%E6%95%88%E7%8E%87/">团队效率</a>
<a href="/tags/%E5%9B%A2%E9%98%9F%E6%95%88%E8%83%BD/">团队效能</a>
<a href="/tags/%E5%9B%B4%E6%A3%8B/">围棋</a>
<a href="/tags/%E5%9B%BE%E5%83%8F%E5%A4%84%E7%90%86/">图像处理</a>
<a href="/tags/%E5%9D%9A%E6%8C%81/">坚持</a>
<a href="/tags/%E5%A4%9A%E7%BA%BF%E7%A8%8B/">多线程</a>
<a href="/tags/%E5%A4%A7%E4%B9%94/">大乔</a>
<a href="/tags/%E5%A4%A7%E6%8E%92%E6%A1%A3/">大排档</a>
<a href="/tags/%E5%A4%A7%E6%95%B0%E6%8D%AE/">大数据</a>
<a href="/tags/%E5%A4%A7%E8%87%AA%E7%84%B6/">大自然</a>
<a href="/tags/%E5%AD%A6%E4%B9%A0/">学习</a>
<a href="/tags/%E5%AD%A6%E4%B9%A0%E6%96%B9%E6%B3%95/">学习方法</a>
<a href="/tags/%E5%AE%8F%E7%BC%96%E7%A8%8B/">宏编程</a>
<a href="/tags/%E5%AE%A2%E6%88%B7%E7%AB%AF/">客户端</a>
<a href="/tags/%E5%B0%8F%E7%A8%8B%E5%BA%8F/">小程序</a>
<a href="/tags/%E5%B4%94%E5%81%A5/">崔健</a>
<a href="/tags/%E5%B7%A5%E4%BD%9C%E5%AE%A4/">工作室</a>
<a href="/tags/%E5%B7%A5%E7%A8%8B%E5%8C%96/">工程化</a>
<a href="/tags/%E5%B7%A5%E7%A8%8B%E5%AE%9E%E8%B7%B5/">工程实践</a>
<a href="/tags/%E5%B7%A5%E7%A8%8B%E6%80%9D%E7%BB%B4/">工程思维</a>
<a href="/tags/%E5%B7%B4%E8%8F%B2%E7%89%B9/">巴菲特</a>
<a href="/tags/%E5%BA%A6%E9%87%8F%E6%8C%87%E6%A0%87/">度量指标</a>
<a href="/tags/%E5%BC%80%E5%8F%91%E7%8E%AF%E5%A2%83/">开发环境</a>
<a href="/tags/%E5%BC%82%E6%AD%A5/">异步</a>
<a href="/tags/%E5%BC%A0%E5%B0%8F%E9%BE%99/">张小龙</a>
<a href="/tags/%E5%BE%97%E5%88%B0/">得到</a>