-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1002 lines (403 loc) · 23.5 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 itemscope itemtype="https://schema.org/WebPage" class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="siteBaseUrl" content="https://woodwen.github.io">
<meta name="author" content="woodwen">
<meta name="description" content="为了安心写C#,就需要会的多点">
<meta name="keywords" content="C#,Flutter, Kotlin ,python ,js ,Go语言(golang),winform , android ,小程序 ,逆向 ,软件架构, docker, k8s, 垃圾佬">
<meta name="generator" content="Hugo 0.111.3">
<title>
刷个牙,洗个脸,新的一天,又开始了! | 木头的小屋
</title>
<meta itemprop="name" content="刷个牙,洗个脸,新的一天,又开始了!">
<meta itemprop="description" content="为了安心写C#,就需要会的多点">
<meta property="og:site_name" content="木头的小屋">
<meta property="og:title" content="木头的小屋" />
<meta property="og:description" content="为了安心写C#,就需要会的多点" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://woodwen.github.io/" />
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/favicon/site.webmanifest">
<link rel="mask-icon" href="/favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<link href="https://woodwen.github.io/index.xml" rel="alternate" type="application/rss+xml" title="木头的小屋" />
<link href="https://woodwen.github.io/index.xml" rel="feed" type="application/rss+xml" title="木头的小屋" />
<link rel="canonical" href="https://woodwen.github.io/">
<link rel="stylesheet" href="https://woodwen.github.io/theme.min.593af16ba859eac7317a14b4aa65b308d011037d975a1dae8a016b304af3cbc6.css" integrity="sha256-WTrxa6hZ6scxehS0qmWzCNARA32XWh2uigFrMErzy8Y=" media="screen">
</head>
<body class="bilberry-hugo-theme">
<nav>
<div class="container">
<ul class="topnav">
<li><a href="/page/about/">About</a></li>
<li><a href="https://github.com/woodwen"
target="_blank">Github</a></li>
<li><a href="/page/archive/">Archive</a></li>
</ul>
</div>
</nav>
<header>
<a id="back-to-top-button">
<i class="fas fa-angle-up"></i>
</a>
<div class="container">
<div class="logo">
<a href="/" class="logo">
<img src="/base/head.jpeg" alt="">
<span class="overlay"><i class="fa fa-home"></i></span>
</a>
</div>
<div class="titles">
<h3 class="title">
<a href="/">
木头的小屋
</a>
</h3>
<span class="subtitle">刷个牙,洗个脸,新的一天,又开始了!</span>
</div>
<div class="toggler">
<i class="fa fa-bars" aria-hidden="true"></i>
</div>
</div>
</div>
</header>
<div class="main container">
<div class="article-wrapper u-cf">
<a class="bubble" href="https://woodwen.github.io/code/ai-code-gen/">
<i class="fas fa-fw fa-code"></i>
</a>
<article class="default article">
<div class="content">
<h1 class="article-title">
<a href="https://woodwen.github.io/code/ai-code-gen/">
Code Copilot AI生成代码浅测
</a>
</h1>
<div class="meta">
<span class="date moment">2023-07-03</span>
<span class="categories">
<a href="https://woodwen.github.io/categories/ai/">ai</a>
</span>
<span class="author">
<a href="https://woodwen.github.io/author/woodwen/">woodwen</a>
</span>
</div>
<h4 id="评测背景">评测背景</h4>
<p>近年来,人工智能技术在软件开发领域取得了显著的进展,其中包括AI生成代码的应用。AI生成代码是指利用机器学习和自然语言处理等技术,让计算机能够根据给定的问题或需求自动生成代码。</p>
<p>AI生成代码的概念引发了广泛的研究和探索。传统的编码过程需要开发人员具备深入的编程知识和经验,而AI生成代码则提供了一种更加便捷和高效的方式来创建代码。它可以自动化部分编码任务,减少人为的错误和繁琐的重复工作,同时提高开发效率和生产力。</p>
<a href="https://woodwen.github.io/code/ai-code-gen/" class="more">Continue reading</a>
</div>
<div class="footer">
<div class="tags">
<i class="fa fa-tags"></i>
<div class="links">
<a href="https://woodwen.github.io/tags/ai/">ai</a>
<a href="https://woodwen.github.io/tags/code-gen/">code gen</a>
</div>
</div>
</div>
</article>
</div>
<div class="article-wrapper u-cf">
<a class="bubble" href="https://woodwen.github.io/article/jianlizhenchengderenjiguanxi-suibi/">
<i class="fas fa-fw fa-pencil-alt"></i>
</a>
<article class="default article">
<div class="content">
<h1 class="article-title">
<a href="https://woodwen.github.io/article/jianlizhenchengderenjiguanxi-suibi/">
建立真诚的人际关系:远离情感PUA
</a>
</h1>
<div class="meta">
<span class="date moment">2023-05-18</span>
<span class="categories">
<a href="https://woodwen.github.io/categories/%E9%9A%8F%E7%AC%94/">随笔</a>
</span>
<span class="author">
<a href="https://woodwen.github.io/author/woodwen/">woodwen</a>
</span>
</div>
<p>随着社交技巧的发展和吸引异性的技巧越来越多,情感PUA(Pick-Up Artist)成为了一种备受争议的话题。情感PUA以吸引异性为目的,使用一系列的技巧和伎俩来操纵、欺骗和控制对方的情感。然而,这种做法与建立真诚、健康的人际关系背道而驰。在我们追求真正的爱和连接时,我们应该远离情感PUA的伎俩,而选择真诚和尊重。</p>
<a href="https://woodwen.github.io/article/jianlizhenchengderenjiguanxi-suibi/" class="more">Continue reading</a>
</div>
<div class="footer">
<div class="tags">
<i class="fa fa-tags"></i>
<div class="links">
<a href="https://woodwen.github.io/tags/suibi/">suibi</a>
</div>
</div>
</div>
</article>
</div>
<div class="article-wrapper u-cf">
<a class="bubble" href="https://woodwen.github.io/article/dizhiliangdenuli-suibi/">
<i class="fas fa-fw fa-pencil-alt"></i>
</a>
<article class="default article">
<div class="content">
<h1 class="article-title">
<a href="https://woodwen.github.io/article/dizhiliangdenuli-suibi/">
低质量的努力:价值与反思
</a>
</h1>
<div class="meta">
<span class="date moment">2023-05-17</span>
<span class="categories">
<a href="https://woodwen.github.io/categories/%E9%9A%8F%E7%AC%94/">随笔</a>
</span>
<span class="author">
<a href="https://woodwen.github.io/author/woodwen/">woodwen</a>
</span>
</div>
<p>努力是我们追求目标、实现梦想的重要途径,但并非所有的努力都能达到高质量的水平。有时候,我们会陷入低质量的努力中,缺乏明确的目标、效率低下,甚至走入死胡同。然而,正是通过对低质量的努力进行反思和改进,我们才能逐步提升自己,迈向更高的成就。</p>
<a href="https://woodwen.github.io/article/dizhiliangdenuli-suibi/" class="more">Continue reading</a>
</div>
<div class="footer">
<div class="tags">
<i class="fa fa-tags"></i>
<div class="links">
<a href="https://woodwen.github.io/tags/suibi/">suibi</a>
</div>
</div>
</div>
</article>
</div>
<div class="article-wrapper u-cf">
<a class="bubble" href="https://woodwen.github.io/code/youhou-js/">
<i class="fas fa-fw fa-code"></i>
</a>
<article class="default article">
<div class="content">
<h1 class="article-title">
<a href="https://woodwen.github.io/code/youhou-js/">
油猴入门
</a>
</h1>
<div class="meta">
<span class="date moment">2023-03-24</span>
<span class="categories">
<a href="https://woodwen.github.io/categories/%E6%B2%B9%E7%8C%B4/">油猴</a>
</span>
<span class="author">
<a href="https://woodwen.github.io/author/woodwen/">woodwen</a>
</span>
</div>
<p>油猴(Tampermonkey)是一款浏览器扩展,它允许用户编写和运行自定义脚本来修改网页的行为和样式。油猴最初是为谷歌浏览器开发的,但现在也支持其他浏览器,例如火狐浏览器、Safari和微软边缘等。</p>
<p>用户可以使用油猴来自定义网页,例如在网页中添加自己的功能、过滤网页中的广告、修改网页的布局、增加快捷方式等。通过使用 JavaScript 编写自己的脚本,用户可以在网页上添加交互性的元素,例如按钮、下拉菜单、弹出窗口等。</p>
<p>油猴还支持用户自定义脚本的存储和同步,这意味着用户可以在不同设备上使用相同的脚本,并确保它们保持同步和最新。油猴还提供了一个脚本库,用户可以在其中找到和安装其他人编写的脚本,并在自己的网页中使用。</p>
<a href="https://woodwen.github.io/code/youhou-js/" class="more">Continue reading</a>
</div>
<div class="footer">
<div class="tags">
<i class="fa fa-tags"></i>
<div class="links">
<a href="https://woodwen.github.io/tags/youhou/">youhou</a>
<a href="https://woodwen.github.io/tags/js/">js</a>
</div>
</div>
</div>
</article>
</div>
<div class="article-wrapper u-cf">
<a class="bubble" href="https://woodwen.github.io/code/build-docker-organizr/">
<i class="fas fa-fw fa-code"></i>
</a>
<article class="default article">
<div class="content">
<h1 class="article-title">
<a href="https://woodwen.github.io/code/build-docker-organizr/">
玩转云桌面(organizr)
</a>
</h1>
<div class="meta">
<span class="date moment">2023-03-23</span>
<span class="categories">
<a href="https://woodwen.github.io/categories/build/">build</a>
</span>
<span class="author">
<a href="https://woodwen.github.io/author/woodwen/">woodwen</a>
</span>
</div>
<p>Organizr,绝不止是漂亮的导航页这么简单</p>
<a href="https://woodwen.github.io/code/build-docker-organizr/" class="more">Continue reading</a>
</div>
<div class="footer">
<div class="tags">
<i class="fa fa-tags"></i>
<div class="links">
<a href="https://woodwen.github.io/tags/build/">build</a>
<a href="https://woodwen.github.io/tags/docker/">docker</a>
<a href="https://woodwen.github.io/tags/organizr/">organizr</a>
</div>
</div>
</div>
</article>
</div>
<div class="article-wrapper u-cf">
<a class="bubble" href="https://woodwen.github.io/code/flutter-fvm/">
<i class="fas fa-fw fa-code"></i>
</a>
<article class="default article">
<div class="content">
<h1 class="article-title">
<a href="https://woodwen.github.io/code/flutter-fvm/">
Flutter fvm
</a>
</h1>
<div class="meta">
<span class="date moment">2022-05-13</span>
<span class="categories">
<a href="https://woodwen.github.io/categories/flutter/">flutter</a>
</span>
<span class="author">
<a href="https://woodwen.github.io/author/woodwen/">woodwen</a>
</span>
</div>
<p>fvm 通过引用每个项目使用的 Flutter SDK 版本来帮助满足一致的应用程序构建的需求。它还允许您安装多个 Flutter 版本,以便使用您的应用程序快速验证和测试即将发布的 Flutter 版本,而无需每次都等待 Flutter 安装</p>
<p>fvm 可以两种模式使用 全局/虚拟环境</p>
<a href="https://woodwen.github.io/code/flutter-fvm/" class="more">Continue reading</a>
</div>
<div class="footer">
<div class="tags">
<i class="fa fa-tags"></i>
<div class="links">
<a href="https://woodwen.github.io/tags/flutter/">flutter</a>
<a href="https://woodwen.github.io/tags/fvm/">fvm</a>
</div>
</div>
</div>
</article>
</div>
<div class="article-wrapper u-cf">
<a class="bubble" href="https://woodwen.github.io/code/build-github-vscode-picgo/">
<i class="fas fa-fw fa-code"></i>
</a>
<article class="default article">
<div class="content">
<h1 class="article-title">
<a href="https://woodwen.github.io/code/build-github-vscode-picgo/">
Github搭建图床
</a>
</h1>
<div class="meta">
<span class="date moment">2022-05-11</span>
<span class="categories">
<a href="https://woodwen.github.io/categories/build/">build</a>
</span>
<span class="author">
<a href="https://woodwen.github.io/author/woodwen/">woodwen</a>
</span>
</div>
<p>使用GitHub搭建Markdown图床</p>
<a href="https://woodwen.github.io/code/build-github-vscode-picgo/" class="more">Continue reading</a>
</div>
<div class="footer">
<div class="tags">
<i class="fa fa-tags"></i>
<div class="links">
<a href="https://woodwen.github.io/tags/build/">build</a>
<a href="https://woodwen.github.io/tags/github/">github</a>
<a href="https://woodwen.github.io/tags/picture/">picture</a>
<a href="https://woodwen.github.io/tags/vscode/">vscode</a>
<a href="https://woodwen.github.io/tags/picgo/">picgo</a>
</div>
</div>
</div>
</article>
</div>
<div class="paginator">
<a href="/page/2/" class="older"><i class="fa fa-angle-double-left"></i> Older posts</a>
</div>
</div>
<footer>
<div class="container">
<div class="recent-posts">
<strong>Latest posts</strong>
<ul>
<li>
<a href="https://woodwen.github.io/code/ai-code-gen/">Code Copilot AI生成代码浅测</a>
</li>
<li>
<a href="https://woodwen.github.io/article/jianlizhenchengderenjiguanxi-suibi/">建立真诚的人际关系:远离情感PUA</a>
</li>
<li>
<a href="https://woodwen.github.io/article/dizhiliangdenuli-suibi/">低质量的努力:价值与反思</a>
</li>
<li>
<a href="https://woodwen.github.io/code/youhou-js/">油猴入门</a>
</li>
<li>
<a href="https://woodwen.github.io/code/build-docker-organizr/">玩转云桌面(organizr)</a>
</li>
<li>
<a href="https://woodwen.github.io/code/flutter-fvm/">Flutter fvm</a>
</li>
<li>
<a href="https://woodwen.github.io/code/build-github-vscode-picgo/">Github搭建图床</a>
</li>
</ul>
</div>
<div class="categories">
<a href="https://woodwen.github.io/categories/"><strong>Categories</strong></a>
<ul>
<li>
<a href="https://woodwen.github.io/categories/build/">build (4)</a>
</li>
<li>
<a href="https://woodwen.github.io/categories/flutter/">flutter (2)</a>
</li>
<li>
<a href="https://woodwen.github.io/categories/%E9%9A%8F%E7%AC%94/">随笔 (2)</a>
</li>
<li>
<a href="https://woodwen.github.io/categories/ai/">ai (1)</a>
</li>
<li>
<a href="https://woodwen.github.io/categories/android/">android (1)</a>
</li>
<li>
<a href="https://woodwen.github.io/categories/jellyfin/">jellyfin (1)</a>
</li>
<li>
<a href="https://woodwen.github.io/categories/%E6%B2%B9%E7%8C%B4/">油猴 (1)</a>
</li>
</ul>
</div>
<div class="right">
<div class="external-profiles">
<strong>Social media</strong>
<a href="https://github.com/woodwen" target="_blank" rel=""><em class="fab fa-github"></em></a>
</div>
<div class="archive">
<a href="https://woodwen.github.io/archive/"><strong>Archive</strong></a>
</div>
</div>
</div>
</footer>
<div class="credits">
<div class="container">
<div class="copyright">
<a href="https://github.com/woodwen" target="_blank">
©
2023
by woodwen
</a>
-
<a href="https://woodwen.github.io/index.xml">RSS</a>
</div>
<div class="author">
<a href="https://github.com/Lednerb/bilberry-hugo-theme"
target="_blank">Bilberry Hugo Theme</a>
</div>
</div>
</div>
<script src="https://woodwen.github.io/theme.min.554cc26597f542993dbad988345e0236fa5249fe5f2928ec084571fbb0d4d5ad.js" integrity="sha256-VUzCZZf1Qpk9utmINF4CNvpSSf5fKSjsCEVx+7DU1a0="></script>
</body>