-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
967 lines (526 loc) · 28 KB
/
404.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
<!doctype html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404 Page not found | 世风十三学堂</title>
<meta property="og:title" content="404 Page not found - 世风十三学堂">
<meta property="og:type" content="article">
<meta name="Keywords" content="Programing">
<meta name="description" content="404 Page not found">
<meta name="author" content="世风十三">
<meta property="og:url" content="/404.html">
<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'>
<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 ">
<a id="logo" href="/">
世风十三学堂
</a>
<p class="description">终身成长、正念编程的全栈架构师,TDD极限敏捷教练咨询师,企业长期增长咨询师</p>
</div>
<div>
<nav id="nav-menu" class="clearfix">
<a class="" 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="body404">
<div class="info404">
<header id="header404" class="clearfix">
<div class="site-name404"><i>404</i></div>
</header>
<section>
<div class="title404">
<p>每一个平凡的日常<br />都是连续发生中的奇迹</p>
</div>
<div class="post-archive">
<h2>See Also</h2>
<ul class="listing">
<li><a href="/post/2024/cross-platform-client-develop-choise/">跨平台开发技术选型:Flutter、Tauri和Dioxus比较与未来展望</a></li>
<li><a href="/post/2024/acreom-developer-pkm-task-tool/">Acreom 开发者的知识库和任务工具</a></li>
<li><a href="/post/2024/flatnotes-self-note-server/">Flatnotes 自托管无库笔记应用</a></li>
<li><a href="/post/2024/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/">使用 WSL 启动 Hugo 搭建博客</a></li>
</ul>
</div>
<a rel="nofollow" href="/" class="index404">回首页看看</a>
</section>
</div>
</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>
<a href="/tags/%E5%BE%97%E5%88%B0-app/">得到 App</a>
<a href="/tags/%E5%BE%97%E5%88%B0app/">得到App</a>
<a href="/tags/%E5%BE%AE%E4%BF%A1%E5%85%AC%E4%BC%97%E5%8F%B7/">微信公众号</a>
<a href="/tags/%E5%BE%AE%E4%BF%A1%E5%B0%8F%E7%A8%8B%E5%BA%8F/">微信小程序</a>
<a href="/tags/%E5%BE%AE%E6%9C%8D%E5%8A%A1/">微服务</a>
<a href="/tags/%E5%BE%AE%E8%BD%AF/">微软</a>
<a href="/tags/%E5%BF%83%E6%99%BA%E6%AE%8B%E7%96%BE/">心智残疾</a>
<a href="/tags/%E5%BF%AB%E5%88%80%E9%9D%92%E8%A1%A3/">快刀青衣</a>
<a href="/tags/%E6%80%9D%E7%BB%B4%E5%AF%BC%E5%9B%BE/">思维导图</a>
<a href="/tags/%E6%80%9D%E7%BB%B4%E8%AE%B0%E5%BD%95/">思维记录</a>
<a href="/tags/%E6%89%8B%E6%9C%BA/">手机</a>
<a href="/tags/%E6%89%8B%E6%B8%B8/">手游</a>
<a href="/tags/%E6%8A%80%E6%9C%AF%E9%80%89%E5%9E%8B/">技术选型</a>
<a href="/tags/%E6%8A%95%E8%B5%84/">投资</a>
<a href="/tags/%E6%8B%96%E5%BB%B6%E7%97%87/">拖延症</a>
<a href="/tags/%E6%8E%98%E9%87%91/">掘金</a>
<a href="/tags/%E6%95%8F%E6%8D%B7/">敏捷</a>
<a href="/tags/%E6%95%8F%E6%8D%B7%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91/">敏捷软件开发</a>
<a href="/tags/%E6%95%99%E8%82%B2/">教育</a>
<a href="/tags/%E6%95%B0%E6%8D%AE%E6%81%A2%E5%A4%8D/">数据恢复</a>
<a href="/tags/%E6%95%B0%E6%8E%A7%E5%8A%A0%E5%B7%A5/">数控加工</a>
<a href="/tags/%E6%96%B0%E5%86%A0%E7%96%AB%E6%83%85/">新冠疫情</a>
<a href="/tags/%E6%97%8B%E8%BD%AE%E7%BA%BF/">旋轮线</a>
<a href="/tags/%E6%97%B6%E9%97%B4%E7%AE%A1%E7%90%86/">时间管理</a>
<a href="/tags/%E6%98%A5%E8%8A%82/">春节</a>
<a href="/tags/%E6%99%BA%E6%85%A7/">智慧</a>
<a href="/tags/%E6%9C%80%E4%BD%B3%E5%AE%9E%E8%B7%B5/">最佳实践</a>
<a href="/tags/%E6%9C%80%E9%80%9F%E9%99%8D%E7%BA%BF/">最速降线</a>
<a href="/tags/%E6%9C%89%E9%81%93%E4%BA%91%E7%AC%94%E8%AE%B0/">有道云笔记</a>
<a href="/tags/%E6%9D%8E%E7%AC%91%E6%9D%A5/">李笑来</a>
<a href="/tags/%E6%9E%81%E9%99%90%E7%BC%96%E7%A8%8B/">极限编程</a>
<a href="/tags/%E6%A8%8A%E7%99%BB/">樊登</a>
<a href="/tags/%E6%A8%8A%E7%99%BB%E8%AF%BB%E4%B9%A6/">樊登读书</a>
<a href="/tags/%E6%AD%8C%E6%89%8B/">歌手</a>
<a href="/tags/%E6%AD%A3%E5%88%99%E8%A1%A8%E8%BE%BE%E5%BC%8F/">正则表达式</a>
<a href="/tags/%E6%AD%A3%E5%BF%B5%E7%BC%96%E7%A8%8B/">正念编程</a>
<a href="/tags/%E6%B1%A0%E5%BB%BA%E5%BC%BA/">池建强</a>
<a href="/tags/%E6%B2%B3%E9%A9%AC/">河马</a>
<a href="/tags/%E6%B3%A8%E6%84%8F%E5%8A%9B/">注意力</a>
<a href="/tags/%E6%B5%81%E7%A8%8B%E5%9B%BE/">流程图</a>
<a href="/tags/%E6%B5%8B%E8%AF%95%E9%87%91%E5%AD%97%E5%A1%94/">测试金字塔</a>
<a href="/tags/%E6%B5%8B%E8%AF%95%E9%A9%B1%E5%8A%A8%E5%BC%80%E5%8F%91/">测试驱动开发</a>
<a href="/tags/%E6%B7%B1%E5%BA%A6%E5%B7%A5%E4%BD%9C/">深度工作</a>
<a href="/tags/%E6%B8%B8%E6%88%8F/">游戏</a>
<a href="/tags/%E7%81%B5%E6%84%9F/">灵感</a>
<a href="/tags/%E7%86%B5%E5%A2%9E/">熵增</a>
<a href="/tags/%E7%89%A9%E8%81%94%E7%BD%91/">物联网</a>
<a href="/tags/%E7%8E%8B%E8%80%85%E8%8D%A3%E8%80%80/">王者荣耀</a>
<a href="/tags/%E7%8E%8B%E9%98%B3%E6%98%8E/">王阳明</a>
<a href="/tags/%E7%91%9E%E8%BE%BE%E5%88%A9%E6%AC%A7/">瑞·达利欧</a>
<a href="/tags/%E7%93%B6%E9%A2%88/">瓶颈</a>
<a href="/tags/%E7%94%98%E7%89%B9%E5%9B%BE/">甘特图</a>
<a href="/tags/%E7%95%AA%E8%8C%84%E5%B7%A5%E4%BD%9C%E6%B3%95/">番茄工作法</a>
<a href="/tags/%E7%96%AB%E6%83%85/">疫情</a>
<a href="/tags/%E7%97%9B%E8%8B%A6/">痛苦</a>
<a href="/tags/%E7%9F%A5%E8%AF%86%E6%98%9F%E7%90%83/">知识星球</a>
<a href="/tags/%E7%9F%B3%E5%A2%A8/">石墨</a>
<a href="/tags/%E7%A2%8E%E7%89%87/">碎片</a>
<a href="/tags/%E7%A4%BA%E6%84%8F%E5%9B%BE/">示意图</a>
<a href="/tags/%E7%A5%9D%E6%84%BF/">祝愿</a>
<a href="/tags/%E7%A6%8F%E6%A0%BC%E8%A1%8C%E4%B8%BA%E6%A8%A1%E5%9E%8B/">福格行为模型</a>
<a href="/tags/%E7%AC%94%E8%AE%B0/">笔记</a>
<a href="/tags/%E7%AC%AC3%E9%80%89%E6%8B%A9/">第3选择</a>
<a href="/tags/%E7%AE%97%E6%B3%95/">算法</a>
<a href="/tags/%E7%AE%A1%E7%90%86%E6%80%9D%E6%83%B3/">管理思想</a>
<a href="/tags/%E7%B3%96%E5%B0%BF%E7%97%85/">糖尿病</a>
<a href="/tags/%E7%B3%BB%E7%BB%9F/">系统</a>
<a href="/tags/%E7%B3%BB%E7%BB%9F%E6%97%B6%E5%8C%BA/">系统时区</a>
<a href="/tags/%E7%BA%AF%E6%96%87%E6%9C%AC/">纯文本</a>
<a href="/tags/%E7%BA%B3%E5%BE%B7%E6%8B%89/">纳德拉</a>
<a href="/tags/%E7%BB%88%E8%BA%AB%E5%AD%A6%E4%B9%A0/">终身学习</a>
<a href="/tags/%E7%BC%96%E7%A8%8B%E5%BC%80%E5%8F%91/">编程开发</a>
<a href="/tags/%E7%BC%96%E8%BE%91%E5%99%A8/">编辑器</a>
<a href="/tags/%E7%BD%97%E8%83%96/">罗胖</a>
<a href="/tags/%E7%BD%97%E8%BE%91%E6%80%9D%E7%BB%B4/">罗辑思维</a>
<a href="/tags/%E8%84%91%E5%9B%BE/">脑图</a>
<a href="/tags/%E8%85%BE%E8%AE%AF/">腾讯</a>
<a href="/tags/%E8%87%AA%E5%BE%8B/">自律</a>
<a href="/tags/%E8%88%92%E9%80%82%E5%8C%BA/">舒适区</a>
<a href="/tags/%E8%8A%B1%E6%9E%9C%E5%B1%B1%E6%8A%80%E6%9C%AF%E5%9B%A2%E9%98%9F/">花果山技术团队</a>
<a href="/tags/%E8%A7%81%E8%AF%86/">见识</a>
<a href="/tags/%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88/">解决方案</a>
<a href="/tags/%E8%AE%A1%E7%AE%97%E6%9C%BA/">计算机</a>
<a href="/tags/%E8%B0%B7%E4%BB%93/">谷仓</a>
<a href="/tags/%E8%B0%B7%E6%AD%8C/">谷歌</a>
<a href="/tags/%E8%B4%A2%E5%AF%8C%E8%87%AA%E7%94%B1/">财富自由</a>
<a href="/tags/%E8%B7%A8%E5%B9%B3%E5%8F%B0/">跨平台</a>
<a href="/tags/%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91/">软件开发</a>
<a href="/tags/%E8%BF%87%E6%BB%A4%E5%99%A8/">过滤器</a>
<a href="/tags/%E8%BF%90%E6%B0%94/">运气</a>
<a href="/tags/%E8%BF%BD%E6%B1%82/">追求</a>
<a href="/tags/%E9%81%97%E7%95%99%E7%B3%BB%E7%BB%9F/">遗留系统</a>
<a href="/tags/%E9%87%8D%E6%9E%84/">重构</a>
<a href="/tags/%E9%98%BF%E5%B0%94%E8%8C%A8%E6%B5%B7%E9%BB%98%E7%97%87/">阿尔茨海默症</a>
<a href="/tags/%E9%9B%B7%E7%94%B5%E6%A8%A1%E6%8B%9F%E5%99%A8/">雷电模拟器</a>
<a href="/tags/%E9%9D%9E%E6%9A%B4%E5%8A%9B%E6%B2%9F%E9%80%9A/">非暴力沟通</a>
<a href="/tags/%E9%A2%86%E5%AF%BC%E5%8A%9B/">领导力</a>
<a href="/tags/%E9%AB%98%E8%B4%A8%E9%87%8F/">高质量</a>
</div>
</section>
<section class="widget">
<h3 class="widget-title">友情链接</h3>
<ul class="widget-list">
<li>
<a target="_blank" href="http://extremeprogramming.cn/" title="极限编程中国">极限编程中国</a>
</li>
<li>
<a target="_blank" href="https://outmanzzq.github.io/" title="outmanzzq">运维朋友的博客</a>
</li>
</ul>
</section>
<section class="widget">
<h3 class="widget-title">其它</h3>
<ul class="widget-list">
<li><a href="/index.xml">文章 RSS</a></li>
</ul>
</section>
</div>
</div>
</div>
</div>
<footer id="footer">
<div class="container">
© 2024 <a href="/">世风十三学堂 By 世风十三</a>.
Powered by <a rel="nofollow noreferer noopener" href="https://gohugo.io" target="_blank">Hugo</a>.
<a href="https://www.flysnow.org/" target="_blank">Theme</a> based on <a href="https://github.com/flysnow-org/maupassant-hugo" target="_blank">maupassant</a>.
</div>
</footer>
<a id="rocket" href="#top"></a>
<script type="text/javascript" src='/js/totop.js?v=0.0.0' async=""></script>
<script type="text/javascript" src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js" async></script>
</body>
</html>