-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
980 lines (641 loc) · 52.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
<!DOCTYPE html>
<html lang="zh-Hans" dir="ltr">
<head>
<meta name="generator" content="Hugo 0.128.1"><script src="/livereload.js?mindelay=10&v=2&port=7447&path=livereload" data-no-instant defer></script><meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'><meta name='description' content="人生得意须尽欢,莫使金樽空对月!">
<title>SanmuDang的博客</title>
<link rel='canonical' href='http://localhost:7447/'>
<link rel="stylesheet" href="/scss/style.min.e8c7fca7d1c9294aa7a4f3426c225ee26540f7d94e39be0b5a4a5c8a49ca5a25.css"><meta property='og:title' content="SanmuDang的博客">
<meta property='og:description' content="人生得意须尽欢,莫使金樽空对月!">
<meta property='og:url' content='http://localhost:7447/'>
<meta property='og:site_name' content='SanmuDang的博客'>
<meta property='og:type' content='website'><meta property='og:updated_time' content=' 2024-08-17T22:02:50+08:00 '/>
<meta name="twitter:site" content="@shenghongzha">
<meta name="twitter:creator" content="@shenghongzha"><meta name="twitter:title" content="SanmuDang的博客">
<meta name="twitter:description" content="人生得意须尽欢,莫使金樽空对月!"><link rel="alternate" type="application/rss+xml" href="http://localhost:7447/index.xml">
<link rel="shortcut icon" href="https://img2.imgtp.com/2024/03/24/sF6l4JAT.png" />
</head>
<body class="">
<script>
(function() {
const colorSchemeKey = 'StackColorScheme';
if(!localStorage.getItem(colorSchemeKey)){
localStorage.setItem(colorSchemeKey, "auto");
}
})();
</script><script>
(function() {
const colorSchemeKey = 'StackColorScheme';
const colorSchemeItem = localStorage.getItem(colorSchemeKey);
const supportDarkMode = window.matchMedia('(prefers-color-scheme: dark)').matches === true;
if (colorSchemeItem == 'dark' || colorSchemeItem === 'auto' && supportDarkMode) {
document.documentElement.dataset.scheme = 'dark';
} else {
document.documentElement.dataset.scheme = 'light';
}
})();
</script>
<div class="container main-container flex on-phone--column extended"><aside class="sidebar left-sidebar sticky ">
<button class="hamburger hamburger--spin" type="button" id="toggle-menu" aria-label="切换菜单">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
<header>
<figure class="site-avatar">
<a href="/">
<img src="/img/logo_huf54e575327a09cbd969f2f6ead2cc5e6_63235_300x0_resize_q75_box.jpg" width="300"
height="300" class="site-logo" loading="lazy" alt="Avatar">
</a>
<span class="emoji">😄</span>
</figure>
<div class="site-meta">
<h1 class="site-name"><a href="/">SanmuDang的博客</a></h1>
<h2 class="site-description">人生得意须尽欢,莫使金樽空对月!</h2>
</div>
</header><ol class="menu-social">
<li>
<a
href='/page/rss/'
target="_blank"
title="RSS订阅"
rel="me"
>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-rss" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="5" cy="19" r="1" />
<path d="M4 4a16 16 0 0 1 16 16" />
<path d="M4 11a9 9 0 0 1 9 9" />
</svg>
</a>
</li>
<li>
<a
href='/page/wechat/'
target="_blank"
title="微信公众号"
rel="me"
>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1714185477018" class="icon" viewBox="0 0 1194 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="14204" xmlns:xlink="http://www.w3.org/1999/xlink" width="27.984375" height="24"><path d="M728.064 535.296a35.498667 35.498667 0 1 1-70.912 0 35.498667 35.498667 0 0 1 70.912 0M974.08 535.296a35.498667 35.498667 0 1 1-70.997333 0 35.498667 35.498667 0 0 1 70.997333 0" fill="#8a8a8a" p-id="14205"></path><path d="M902.144 930.133333l-6.656 1.450667a594.176 594.176 0 0 1-18.602667 3.669333c-26.453333 4.778667-44.629333 6.826667-64 6.144-167.850667-5.546667-298.666667-87.893333-351.061333-218.709333a446.464 446.464 0 0 1-6.826667-19.114667l-1.962666-6.058666a199.68 199.68 0 0 1-3.84-13.653334 338.858667 338.858667 0 0 1-9.216-75.690666c0-171.008 157.013333-305.92 354.304-314.709334l8.874666-0.682666c7.850667-0.597333 12.970667-0.853333 18.773334-0.853334H836.693333l9.301334 0.170667c188.16 14.677333 340.394667 156.672 340.394666 323.925333 0 78.336-38.826667 155.733333-109.653333 222.293334a303.530667 303.530667 0 0 1-7.082667 6.4l9.984 71.082666a49.152 49.152 0 0 1-69.12 58.453334l-98.816-46.421334a582.485333 582.485333 0 0 1-9.472 2.304z m220.16-314.026666c0-131.754667-124.586667-247.978667-279.125333-260.096H821.930667c-3.754667 0-7.68 0.085333-13.994667 0.597333l-10.666667 0.768C631.466667 364.8 503.978667 474.453333 503.978667 608.256c0 18.773333 2.730667 40.874667 7.509333 60.842667 0.597333 2.474667 1.450667 5.632 2.56 9.216l1.706667 4.949333c2.133333 6.570667 4.266667 12.629333 5.632 15.957333 42.325333 105.728 149.930667 173.397333 293.717333 178.176 13.738667 0.512 28.16-1.109333 50.346667-5.12a531.626667 531.626667 0 0 0 16.64-3.242666l5.632-1.28c4.693333-1.109333 8.448-1.962667 19.370666-4.778667a32 32 0 0 1 21.418667 2.133333l85.248 40.106667-9.984-69.290667a32 32 0 0 1 13.909333-31.232c1.194667-0.853333 8.618667-6.912 15.189334-13.056 58.709333-55.210667 89.429333-116.394667 89.429333-175.616z m-1109.333333-237.909334C12.970667 171.52 206.677333 5.376 442.709333 5.376c208.384 0 394.24 130.304 431.872 306.090667 1.28 5.973333 1.28 11.264 0.512 16.896a32 32 0 0 1-63.658666-5.973334C779.178667 179.2 621.482667 69.376 442.709333 69.376 240.042667 69.376 76.970667 209.152 76.970667 378.282667c0 89.941333 46.165333 171.52 136.021333 237.568a32 32 0 0 1 11.434667 35.84l-23.296 69.973333 104.96-48.896a32 32 0 0 1 22.442666-1.706667l5.461334 1.706667c54.357333 11.093333 76.288 14.506667 108.714666 14.506667a200.789333 200.789333 0 0 0 32.256-4.010667c-0.512 0.170667-1.536 0.512-2.730666 1.536a33.109333 33.109333 0 0 1 39.253333 1.109333 32 32 0 0 1 5.376 44.970667c-11.776 14.848-47.36 20.309333-74.24 20.309333-37.12 0-62.037333-3.584-119.893333-15.530666L198.570667 793.6a49.493333 49.493333 0 0 1-68.949334-59.733333l26.88-80.64C62.976 577.706667 12.970667 482.986667 12.970667 378.197333z" fill="#8a8a8a" p-id="14206"></path><path d="M344.576 254.378667a44.373333 44.373333 0 1 1-88.746667 0.085333 44.373333 44.373333 0 0 1 88.746667 0M636.586667 254.378667a44.373333 44.373333 0 1 1-88.746667 0.085333 44.373333 44.373333 0 0 1 88.746667 0" fill="#515151" p-id="14207"></path></svg>
</a>
</li>
<li>
<a
href='mailto:[email protected]'
target="_blank"
title="Email"
rel="me"
>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1713538770719" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4280" width="24" height="24" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M874.666667 181.333333H149.333333c-40.533333 0-74.666667 34.133333-74.666666 74.666667v512c0 40.533333 34.133333 74.666667 74.666666 74.666667h725.333334c40.533333 0 74.666667-34.133333 74.666666-74.666667V256c0-40.533333-34.133333-74.666667-74.666666-74.666667z m-725.333334 64h725.333334c6.4 0 10.666667 4.266667 10.666666 10.666667v25.6L512 516.266667l-373.333333-234.666667V256c0-6.4 4.266667-10.666667 10.666666-10.666667z m725.333334 533.333334H149.333333c-6.4 0-10.666667-4.266667-10.666666-10.666667V356.266667l356.266666 224c4.266667 4.266667 10.666667 4.266667 17.066667 4.266666s12.8-2.133333 17.066667-4.266666l356.266666-224V768c0 6.4-4.266667 10.666667-10.666666 10.666667z" fill="#666666" p-id="4281"></path></svg>
</a>
</li>
<li>
<a
href='https://github.com/shenghongzha'
target="_blank"
title="GitHub"
rel="me"
>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-brand-github" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5" />
</svg>
</a>
</li>
</ol><ol class="menu" id="main-menu">
<li >
<a href='/' >
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-home" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<polyline points="5 12 3 12 12 3 21 12 19 12" />
<path d="M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7" />
<path d="M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6" />
</svg>
<span>主页</span>
</a>
</li>
<li >
<a href='/page/about/' >
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-user" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="7" r="4" />
<path d="M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2" />
</svg>
<span>关于</span>
</a>
</li>
<li >
<a href='/page/archives/' >
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-archive" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<rect x="3" y="4" width="18" height="4" rx="2" />
<path d="M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-10" />
<line x1="10" y1="12" x2="14" y2="12" />
</svg>
<span>归档</span>
</a>
</li>
<li >
<a href='/page/saying/' >
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1715600508234" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7607" xmlns:xlink="http://www.w3.org/1999/xlink" width="256" height="256"><path d="M128 472.896h341.344v341.344H128zM128 472.896L272.096 192h110.08l-144.128 280.896z" fill="#8a8a8a" p-id="7608"></path><path d="M544 472.896h341.344v341.344H544zM544 472.896L688.096 192h110.08l-144.128 280.896z" fill="#8a8a8a" p-id="7609"></path></svg>
<span>语录</span>
</a>
</li>
<li >
<a href='/page/search/' >
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-search" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="10" cy="10" r="7" />
<line x1="21" y1="21" x2="15" y2="15" />
</svg>
<span>搜索</span>
</a>
</li>
<li >
<a href='/page/links/' >
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5" />
<path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" />
</svg>
<span>友情链接</span>
</a>
</li>
<li class="menu-bottom-section">
<ol class="menu">
<li id="dark-mode-toggle">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-toggle-left" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="8" cy="12" r="2" />
<rect x="2" y="6" width="20" height="12" rx="6" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-toggle-right" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="16" cy="12" r="2" />
<rect x="2" y="6" width="20" height="12" rx="6" />
</svg>
<span>深色模式</span>
</li>
</ol>
</li>
</ol>
</aside>
<aside class="sidebar right-sidebar sticky">
<form action="/page/search/" class="search-form widget" >
<p>
<label>搜索</label>
<input name="keyword" required placeholder="输入关键词..." />
<button title="搜索">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-search" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="10" cy="10" r="7" />
<line x1="21" y1="21" x2="15" y2="15" />
</svg>
</button>
</p>
</form>
<section class="widget archives">
<div class="widget-icon">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-infinity" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M9.828 9.172a4 4 0 1 0 0 5.656 a10 10 0 0 0 2.172 -2.828a10 10 0 0 1 2.172 -2.828 a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828" />
</svg>
</div>
<h2 class="widget-title section-title">归档</h2>
<div class="widget-archive--list">
<div class="archives-year">
<a href="/page/archives/#2024">
<span class="year">2024</span>
<span class="count">6</span>
</a>
</div>
</div>
</section>
<section class="widget tagCloud">
<div class="widget-icon">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-hash" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<line x1="5" y1="9" x2="19" y2="9" />
<line x1="5" y1="15" x2="19" y2="15" />
<line x1="11" y1="4" x2="7" y2="20" />
<line x1="17" y1="4" x2="13" y2="20" />
</svg>
</div>
<h2 class="widget-title section-title">分类</h2>
<div class="tagCloud-tags">
<a href="/categories/jotting/" class="font_size_3">
杂记
</a>
<a href="/categories/tech/" class="font_size_3">
技术
</a>
<a href="/categories/game/" class="font_size_1">
游戏
</a>
</div>
</section>
<section class="widget tagCloud">
<div class="widget-icon">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-tag" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11 3L20 12a1.5 1.5 0 0 1 0 2L14 20a1.5 1.5 0 0 1 -2 0L3 11v-4a4 4 0 0 1 4 -4h4" />
<circle cx="9" cy="9" r="2" />
</svg>
</div>
<h2 class="widget-title section-title">标签云</h2>
<div class="tagCloud-tags">
<a href="/tags/%E5%A4%A7%E5%AD%A6/" class="font_size_3">
大学
</a>
<a href="/tags/blog/" class="font_size_2">
Blog
</a>
<a href="/tags/hugo/" class="font_size_2">
Hugo
</a>
<a href="/tags/stack/" class="font_size_2">
Stack
</a>
<a href="/tags/%E7%94%B5%E8%B5%9B/" class="font_size_2">
电赛
</a>
<a href="/tags/%E7%AB%9E%E8%B5%9B/" class="font_size_2">
竞赛
</a>
<a href="/tags/linux/" class="font_size_1">
Linux
</a>
<a href="/tags/minecraft/" class="font_size_1">
Minecraft
</a>
<a href="/tags/%E4%BD%9C%E5%BC%8A/" class="font_size_1">
作弊
</a>
<a href="/tags/%E5%90%90%E6%A7%BD/" class="font_size_1">
吐槽
</a>
</div>
</section>
</aside>
<main class="main full-width">
<section class="article-list">
<article class="has-image">
<header class="article-header">
<div class="article-image">
<a href="/post/minecraft-server/">
<img src="/post/minecraft-server/MCSM_hua53b24a914c0965eb29dcab640f21793_115643_800x0_resize_box_3.png"
srcset="/post/minecraft-server/MCSM_hua53b24a914c0965eb29dcab640f21793_115643_800x0_resize_box_3.png 800w, /post/minecraft-server/MCSM_hua53b24a914c0965eb29dcab640f21793_115643_1600x0_resize_box_3.png 1600w"
width="800"
height="296"
loading="lazy"
alt="Featured image of post 搭建Minecraft联机服务器教程" />
</a>
</div>
<div class="article-details">
<header class="article-category">
<a href="/categories/game/" style="background-color: #9370DB; color: #fff;">
游戏
</a>
</header>
<div class="article-title-wrapper">
<h2 class="article-title">
<a href="/post/minecraft-server/">搭建Minecraft联机服务器教程</a>
</h2>
<h3 class="article-subtitle">
在Linux服务器上利用MCSManager搭建一个良好的Minecraft联机服务器
</h3>
</div>
<footer class="article-time">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time" width="56" height="56" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<time class="article-time--published">Aug 11, 2024</time>
</div>
<div>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1714148450099" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1651" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24"><path d="M853.333333 501.333333c-17.066667 0-32 14.933333-32 32v320c0 6.4-4.266667 10.666667-10.666666 10.666667H170.666667c-6.4 0-10.666667-4.266667-10.666667-10.666667V213.333333c0-6.4 4.266667-10.666667 10.666667-10.666666h320c17.066667 0 32-14.933333 32-32s-14.933333-32-32-32H170.666667c-40.533333 0-74.666667 34.133333-74.666667 74.666666v640c0 40.533333 34.133333 74.666667 74.666667 74.666667h640c40.533333 0 74.666667-34.133333 74.666666-74.666667V533.333333c0-17.066667-14.933333-32-32-32z" fill="#8a8a8a" p-id="1652"></path><path d="M405.333333 484.266667l-32 125.866666c-2.133333 10.666667 0 23.466667 8.533334 29.866667 6.4 6.4 14.933333 8.533333 23.466666 8.533333h8.533334l125.866666-32c6.4-2.133333 10.666667-4.266667 14.933334-8.533333l300.8-300.8c38.4-38.4 38.4-102.4 0-140.8-38.4-38.4-102.4-38.4-140.8 0L413.866667 469.333333c-4.266667 4.266667-6.4 8.533333-8.533334 14.933334z m59.733334 23.466666L761.6 213.333333c12.8-12.8 36.266667-12.8 49.066667 0 12.8 12.8 12.8 36.266667 0 49.066667L516.266667 558.933333l-66.133334 17.066667 14.933334-68.266667z" fill="#8a8a8a" p-id="1653"></path></svg>
<time class="article-lastmod">
Aug 17, 2024 22:02
</time>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="12" r="9" />
<polyline points="12 7 12 12 15 15" />
</svg>
<time class="article-time--reading">
阅读时长: 6 分钟
</time>
</div>
<div>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1714145413837" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1673" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24"><path d="M889.412267 101.0944c-8.785067-9.6384-21.960533-9.6384-30.7456 0L628.078933 349.269333a24.8832 24.8832 0 0 0 0 33.732267c4.394667 4.821333 10.978133 7.227733 15.3728 7.227733 6.587733 0 10.978133-2.410667 15.3728-7.227733L889.412267 134.826667a24.8832 24.8832 0 0 0 0-33.732267z m-116.394667 265.0368v481.877333c0 7.232-6.587733 14.464-13.175467 14.464H206.429867c-6.587733 2.4064-13.175467-4.821333-13.175467-12.049066V204.6976c0-7.227733 6.587733-14.455467 13.175467-14.455467h423.8464c13.175467 0 21.960533-9.6384 21.960533-24.093866 0-14.455467-8.789333-24.093867-21.960533-24.093867H206.429867C175.684267 142.0544 149.333333 170.9696 149.333333 204.6976v645.725867C149.333333 884.155733 175.684267 913.066667 206.429867 913.066667h553.412266c32.938667 0 57.1008-28.910933 57.1008-62.6432V368.5376c0-14.455467-8.789333-26.500267-21.960533-26.500267-13.179733 0-21.9648 9.634133-21.9648 24.093867zM551.214933 416.725333h-256.938666c-13.179733 0-21.960533 9.634133-21.960534 24.093867 0 14.455467 8.7808 24.093867 21.960534 24.093867h254.7456c13.175467 0 21.960533-9.642667 21.960533-24.093867 0-14.459733-8.789333-24.093867-19.767467-24.093867z m-278.8992 255.394134c0 14.459733 8.7808 24.093867 21.960534 24.093866h377.728c13.1712 0 21.956267-9.634133 21.956266-24.093866 0-14.455467-8.785067-24.093867-21.960533-24.093867H294.272c-10.978133 0-21.956267 9.642667-21.956267 24.093867z" fill="#707070" p-id="1674"></path></svg>
<time class="article-words">
2625字
</time>
</div>
</footer>
</div>
</header>
</article>
<article class="has-image">
<header class="article-header">
<div class="article-image">
<a href="/post/electronic-design-competition/">
<img src="/post/electronic-design-competition/EDC-2024-post-question_huc1b8e66398db87122196693a24fe899f_1142742_800x0_resize_box_3.png"
srcset="/post/electronic-design-competition/EDC-2024-post-question_huc1b8e66398db87122196693a24fe899f_1142742_800x0_resize_box_3.png 800w, /post/electronic-design-competition/EDC-2024-post-question_huc1b8e66398db87122196693a24fe899f_1142742_1600x0_resize_box_3.png 1600w"
width="800"
height="376"
loading="lazy"
alt="Featured image of post 各怀鬼胎" />
</a>
</div>
<div class="article-details">
<header class="article-category">
<a href="/categories/tech/" style="background-color: #df705e; color: #fff;">
技术
</a>
<a href="/categories/jotting/" style="background-color: #2a9d8f; color: #fff;">
杂记
</a>
</header>
<div class="article-title-wrapper">
<h2 class="article-title">
<a href="/post/electronic-design-competition/">各怀鬼胎</a>
</h2>
<h3 class="article-subtitle">
分享我从零开始的三次电赛之旅,讲述一些我个人的想法,包括但不限于2024年C题全套解决方案、2023年未落地实践的H题方案,选择竞赛队友的一些注意事项,希望这篇文章能为各位有志于参加竞赛并取得成绩的各位提供一些简单的建议与参考。
</h3>
</div>
<footer class="article-time">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time" width="56" height="56" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<time class="article-time--published">Aug 09, 2024</time>
</div>
<div>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1714148450099" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1651" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24"><path d="M853.333333 501.333333c-17.066667 0-32 14.933333-32 32v320c0 6.4-4.266667 10.666667-10.666666 10.666667H170.666667c-6.4 0-10.666667-4.266667-10.666667-10.666667V213.333333c0-6.4 4.266667-10.666667 10.666667-10.666666h320c17.066667 0 32-14.933333 32-32s-14.933333-32-32-32H170.666667c-40.533333 0-74.666667 34.133333-74.666667 74.666666v640c0 40.533333 34.133333 74.666667 74.666667 74.666667h640c40.533333 0 74.666667-34.133333 74.666666-74.666667V533.333333c0-17.066667-14.933333-32-32-32z" fill="#8a8a8a" p-id="1652"></path><path d="M405.333333 484.266667l-32 125.866666c-2.133333 10.666667 0 23.466667 8.533334 29.866667 6.4 6.4 14.933333 8.533333 23.466666 8.533333h8.533334l125.866666-32c6.4-2.133333 10.666667-4.266667 14.933334-8.533333l300.8-300.8c38.4-38.4 38.4-102.4 0-140.8-38.4-38.4-102.4-38.4-140.8 0L413.866667 469.333333c-4.266667 4.266667-6.4 8.533333-8.533334 14.933334z m59.733334 23.466666L761.6 213.333333c12.8-12.8 36.266667-12.8 49.066667 0 12.8 12.8 12.8 36.266667 0 49.066667L516.266667 558.933333l-66.133334 17.066667 14.933334-68.266667z" fill="#8a8a8a" p-id="1653"></path></svg>
<time class="article-lastmod">
Aug 09, 2024 17:24
</time>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="12" r="9" />
<polyline points="12 7 12 12 15 15" />
</svg>
<time class="article-time--reading">
阅读时长: 8 分钟
</time>
</div>
<div>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1714145413837" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1673" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24"><path d="M889.412267 101.0944c-8.785067-9.6384-21.960533-9.6384-30.7456 0L628.078933 349.269333a24.8832 24.8832 0 0 0 0 33.732267c4.394667 4.821333 10.978133 7.227733 15.3728 7.227733 6.587733 0 10.978133-2.410667 15.3728-7.227733L889.412267 134.826667a24.8832 24.8832 0 0 0 0-33.732267z m-116.394667 265.0368v481.877333c0 7.232-6.587733 14.464-13.175467 14.464H206.429867c-6.587733 2.4064-13.175467-4.821333-13.175467-12.049066V204.6976c0-7.227733 6.587733-14.455467 13.175467-14.455467h423.8464c13.175467 0 21.960533-9.6384 21.960533-24.093866 0-14.455467-8.789333-24.093867-21.960533-24.093867H206.429867C175.684267 142.0544 149.333333 170.9696 149.333333 204.6976v645.725867C149.333333 884.155733 175.684267 913.066667 206.429867 913.066667h553.412266c32.938667 0 57.1008-28.910933 57.1008-62.6432V368.5376c0-14.455467-8.789333-26.500267-21.960533-26.500267-13.179733 0-21.9648 9.634133-21.9648 24.093867zM551.214933 416.725333h-256.938666c-13.179733 0-21.960533 9.634133-21.960534 24.093867 0 14.455467 8.7808 24.093867 21.960534 24.093867h254.7456c13.175467 0 21.960533-9.642667 21.960533-24.093867 0-14.459733-8.789333-24.093867-19.767467-24.093867z m-278.8992 255.394134c0 14.459733 8.7808 24.093867 21.960534 24.093866h377.728c13.1712 0 21.956267-9.634133 21.956266-24.093866 0-14.455467-8.785067-24.093867-21.960533-24.093867H294.272c-10.978133 0-21.956267 9.642667-21.956267 24.093867z" fill="#707070" p-id="1674"></path></svg>
<time class="article-words">
3634字
</time>
</div>
</footer>
</div>
</header>
</article>
<article class="has-image">
<header class="article-header">
<div class="article-image">
<a href="/post/hard-work-leads-to-success/">
<img src="/post/hard-work-leads-to-success/the-harder-the-luck_hu0846e0a669bc8419c90343e77ff096d3_1431295_800x0_resize_box_3.png"
srcset="/post/hard-work-leads-to-success/the-harder-the-luck_hu0846e0a669bc8419c90343e77ff096d3_1431295_800x0_resize_box_3.png 800w, /post/hard-work-leads-to-success/the-harder-the-luck_hu0846e0a669bc8419c90343e77ff096d3_1431295_1600x0_resize_box_3.png 1600w"
width="800"
height="800"
loading="lazy"
alt="Featured image of post 努力一定有结果吗?" />
</a>
</div>
<div class="article-details">
<header class="article-category">
<a href="/categories/jotting/" style="background-color: #2a9d8f; color: #fff;">
杂记
</a>
</header>
<div class="article-title-wrapper">
<h2 class="article-title">
<a href="/post/hard-work-leads-to-success/">努力一定有结果吗?</a>
</h2>
<h3 class="article-subtitle">
截至目前,我在大学也算过了将近一半。最近的经历也让我有所反思。努力一定会有结果吗?
</h3>
</div>
<footer class="article-time">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time" width="56" height="56" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<time class="article-time--published">May 05, 2024</time>
</div>
<div>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1714148450099" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1651" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24"><path d="M853.333333 501.333333c-17.066667 0-32 14.933333-32 32v320c0 6.4-4.266667 10.666667-10.666666 10.666667H170.666667c-6.4 0-10.666667-4.266667-10.666667-10.666667V213.333333c0-6.4 4.266667-10.666667 10.666667-10.666666h320c17.066667 0 32-14.933333 32-32s-14.933333-32-32-32H170.666667c-40.533333 0-74.666667 34.133333-74.666667 74.666666v640c0 40.533333 34.133333 74.666667 74.666667 74.666667h640c40.533333 0 74.666667-34.133333 74.666666-74.666667V533.333333c0-17.066667-14.933333-32-32-32z" fill="#8a8a8a" p-id="1652"></path><path d="M405.333333 484.266667l-32 125.866666c-2.133333 10.666667 0 23.466667 8.533334 29.866667 6.4 6.4 14.933333 8.533333 23.466666 8.533333h8.533334l125.866666-32c6.4-2.133333 10.666667-4.266667 14.933334-8.533333l300.8-300.8c38.4-38.4 38.4-102.4 0-140.8-38.4-38.4-102.4-38.4-140.8 0L413.866667 469.333333c-4.266667 4.266667-6.4 8.533333-8.533334 14.933334z m59.733334 23.466666L761.6 213.333333c12.8-12.8 36.266667-12.8 49.066667 0 12.8 12.8 12.8 36.266667 0 49.066667L516.266667 558.933333l-66.133334 17.066667 14.933334-68.266667z" fill="#8a8a8a" p-id="1653"></path></svg>
<time class="article-lastmod">
May 10, 2024 23:23
</time>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="12" r="9" />
<polyline points="12 7 12 12 15 15" />
</svg>
<time class="article-time--reading">
阅读时长: 10 分钟
</time>
</div>
<div>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1714145413837" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1673" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24"><path d="M889.412267 101.0944c-8.785067-9.6384-21.960533-9.6384-30.7456 0L628.078933 349.269333a24.8832 24.8832 0 0 0 0 33.732267c4.394667 4.821333 10.978133 7.227733 15.3728 7.227733 6.587733 0 10.978133-2.410667 15.3728-7.227733L889.412267 134.826667a24.8832 24.8832 0 0 0 0-33.732267z m-116.394667 265.0368v481.877333c0 7.232-6.587733 14.464-13.175467 14.464H206.429867c-6.587733 2.4064-13.175467-4.821333-13.175467-12.049066V204.6976c0-7.227733 6.587733-14.455467 13.175467-14.455467h423.8464c13.175467 0 21.960533-9.6384 21.960533-24.093866 0-14.455467-8.789333-24.093867-21.960533-24.093867H206.429867C175.684267 142.0544 149.333333 170.9696 149.333333 204.6976v645.725867C149.333333 884.155733 175.684267 913.066667 206.429867 913.066667h553.412266c32.938667 0 57.1008-28.910933 57.1008-62.6432V368.5376c0-14.455467-8.789333-26.500267-21.960533-26.500267-13.179733 0-21.9648 9.634133-21.9648 24.093867zM551.214933 416.725333h-256.938666c-13.179733 0-21.960533 9.634133-21.960534 24.093867 0 14.455467 8.7808 24.093867 21.960534 24.093867h254.7456c13.175467 0 21.960533-9.642667 21.960533-24.093867 0-14.459733-8.789333-24.093867-19.767467-24.093867z m-278.8992 255.394134c0 14.459733 8.7808 24.093867 21.960534 24.093866h377.728c13.1712 0 21.956267-9.634133 21.956266-24.093866 0-14.455467-8.785067-24.093867-21.960533-24.093867H294.272c-10.978133 0-21.956267 9.642667-21.956267 24.093867z" fill="#707070" p-id="1674"></path></svg>
<time class="article-words">
4811字
</time>
</div>
</footer>
</div>
</header>
</article>
<article class="has-image">
<header class="article-header">
<div class="article-image">
<a href="/post/blog-config/">
<img src="/post/blog-config/hugo-stack_hua6aba75d348ec105a136606f2e7c2811_733460_800x0_resize_box_3.png"
srcset="/post/blog-config/hugo-stack_hua6aba75d348ec105a136606f2e7c2811_733460_800x0_resize_box_3.png 800w, /post/blog-config/hugo-stack_hua6aba75d348ec105a136606f2e7c2811_733460_1600x0_resize_box_3.png 1600w"
width="800"
height="267"
loading="lazy"
alt="Featured image of post 优雅的博客界面" />
</a>
</div>
<div class="article-details">
<header class="article-category">
<a href="/categories/tech/" style="background-color: #df705e; color: #fff;">
技术
</a>
</header>
<div class="article-title-wrapper">
<h2 class="article-title">
<a href="/post/blog-config/">优雅的博客界面</a>
</h2>
<h3 class="article-subtitle">
本文将介绍一些Hugo主题Stack的配置,从而让自己的博客
</h3>
</div>
<footer class="article-time">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time" width="56" height="56" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<time class="article-time--published">May 01, 2024</time>
</div>
<div>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1714148450099" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1651" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24"><path d="M853.333333 501.333333c-17.066667 0-32 14.933333-32 32v320c0 6.4-4.266667 10.666667-10.666666 10.666667H170.666667c-6.4 0-10.666667-4.266667-10.666667-10.666667V213.333333c0-6.4 4.266667-10.666667 10.666667-10.666666h320c17.066667 0 32-14.933333 32-32s-14.933333-32-32-32H170.666667c-40.533333 0-74.666667 34.133333-74.666667 74.666666v640c0 40.533333 34.133333 74.666667 74.666667 74.666667h640c40.533333 0 74.666667-34.133333 74.666666-74.666667V533.333333c0-17.066667-14.933333-32-32-32z" fill="#8a8a8a" p-id="1652"></path><path d="M405.333333 484.266667l-32 125.866666c-2.133333 10.666667 0 23.466667 8.533334 29.866667 6.4 6.4 14.933333 8.533333 23.466666 8.533333h8.533334l125.866666-32c6.4-2.133333 10.666667-4.266667 14.933334-8.533333l300.8-300.8c38.4-38.4 38.4-102.4 0-140.8-38.4-38.4-102.4-38.4-140.8 0L413.866667 469.333333c-4.266667 4.266667-6.4 8.533333-8.533334 14.933334z m59.733334 23.466666L761.6 213.333333c12.8-12.8 36.266667-12.8 49.066667 0 12.8 12.8 12.8 36.266667 0 49.066667L516.266667 558.933333l-66.133334 17.066667 14.933334-68.266667z" fill="#8a8a8a" p-id="1653"></path></svg>
<time class="article-lastmod">
May 05, 2024 21:09
</time>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="12" r="9" />
<polyline points="12 7 12 12 15 15" />
</svg>
<time class="article-time--reading">
阅读时长: 4 分钟
</time>
</div>
<div>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1714145413837" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1673" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24"><path d="M889.412267 101.0944c-8.785067-9.6384-21.960533-9.6384-30.7456 0L628.078933 349.269333a24.8832 24.8832 0 0 0 0 33.732267c4.394667 4.821333 10.978133 7.227733 15.3728 7.227733 6.587733 0 10.978133-2.410667 15.3728-7.227733L889.412267 134.826667a24.8832 24.8832 0 0 0 0-33.732267z m-116.394667 265.0368v481.877333c0 7.232-6.587733 14.464-13.175467 14.464H206.429867c-6.587733 2.4064-13.175467-4.821333-13.175467-12.049066V204.6976c0-7.227733 6.587733-14.455467 13.175467-14.455467h423.8464c13.175467 0 21.960533-9.6384 21.960533-24.093866 0-14.455467-8.789333-24.093867-21.960533-24.093867H206.429867C175.684267 142.0544 149.333333 170.9696 149.333333 204.6976v645.725867C149.333333 884.155733 175.684267 913.066667 206.429867 913.066667h553.412266c32.938667 0 57.1008-28.910933 57.1008-62.6432V368.5376c0-14.455467-8.789333-26.500267-21.960533-26.500267-13.179733 0-21.9648 9.634133-21.9648 24.093867zM551.214933 416.725333h-256.938666c-13.179733 0-21.960533 9.634133-21.960534 24.093867 0 14.455467 8.7808 24.093867 21.960534 24.093867h254.7456c13.175467 0 21.960533-9.642667 21.960533-24.093867 0-14.459733-8.789333-24.093867-19.767467-24.093867z m-278.8992 255.394134c0 14.459733 8.7808 24.093867 21.960534 24.093866h377.728c13.1712 0 21.956267-9.634133 21.956266-24.093866 0-14.455467-8.785067-24.093867-21.960533-24.093867H294.272c-10.978133 0-21.956267 9.642667-21.956267 24.093867z" fill="#707070" p-id="1674"></path></svg>
<time class="article-words">
1980字
</time>
</div>
</footer>
</div>
</header>
</article>
<article class="has-image">
<header class="article-header">
<div class="article-image">
<a href="/post/roast-research-engineering-and-practice/">
<img src="/post/roast-research-engineering-and-practice/roast-research-engineering-and-practice_hu1119ca2d29748a11c86611faef1b5192_1128527_800x0_resize_box_3.png"
srcset="/post/roast-research-engineering-and-practice/roast-research-engineering-and-practice_hu1119ca2d29748a11c86611faef1b5192_1128527_800x0_resize_box_3.png 800w, /post/roast-research-engineering-and-practice/roast-research-engineering-and-practice_hu1119ca2d29748a11c86611faef1b5192_1128527_1600x0_resize_box_3.png 1600w"
width="800"
height="800"
loading="lazy"
alt="Featured image of post 吐槽一下科研工程与实践(不止)" />
</a>
</div>
<div class="article-details">
<header class="article-category">
<a href="/categories/jotting/" style="background-color: #2a9d8f; color: #fff;">
杂记
</a>
</header>
<div class="article-title-wrapper">
<h2 class="article-title">
<a href="/post/roast-research-engineering-and-practice/">吐槽一下科研工程与实践(不止)</a>
</h2>
<h3 class="article-subtitle">
科研工程与实践是我大学时一门课程,美其名曰:“提高学生科研能力,让学生提前进入科研”,想法是美妙的,可现实是残酷的,我认为这门课程不仅成为了学生的负担,而且也增加了老师的负担(或许吧),是一个极度重视形式化的形式主义化课程。
</h3>
</div>
<footer class="article-time">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time" width="56" height="56" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<time class="article-time--published">Apr 20, 2024</time>
</div>
<div>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1714148450099" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1651" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24"><path d="M853.333333 501.333333c-17.066667 0-32 14.933333-32 32v320c0 6.4-4.266667 10.666667-10.666666 10.666667H170.666667c-6.4 0-10.666667-4.266667-10.666667-10.666667V213.333333c0-6.4 4.266667-10.666667 10.666667-10.666666h320c17.066667 0 32-14.933333 32-32s-14.933333-32-32-32H170.666667c-40.533333 0-74.666667 34.133333-74.666667 74.666666v640c0 40.533333 34.133333 74.666667 74.666667 74.666667h640c40.533333 0 74.666667-34.133333 74.666666-74.666667V533.333333c0-17.066667-14.933333-32-32-32z" fill="#8a8a8a" p-id="1652"></path><path d="M405.333333 484.266667l-32 125.866666c-2.133333 10.666667 0 23.466667 8.533334 29.866667 6.4 6.4 14.933333 8.533333 23.466666 8.533333h8.533334l125.866666-32c6.4-2.133333 10.666667-4.266667 14.933334-8.533333l300.8-300.8c38.4-38.4 38.4-102.4 0-140.8-38.4-38.4-102.4-38.4-140.8 0L413.866667 469.333333c-4.266667 4.266667-6.4 8.533333-8.533334 14.933334z m59.733334 23.466666L761.6 213.333333c12.8-12.8 36.266667-12.8 49.066667 0 12.8 12.8 12.8 36.266667 0 49.066667L516.266667 558.933333l-66.133334 17.066667 14.933334-68.266667z" fill="#8a8a8a" p-id="1653"></path></svg>
<time class="article-lastmod">
Apr 26, 2024 19:46
</time>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="12" r="9" />
<polyline points="12 7 12 12 15 15" />
</svg>
<time class="article-time--reading">
阅读时长: 11 分钟
</time>
</div>
<div>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1714145413837" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1673" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24"><path d="M889.412267 101.0944c-8.785067-9.6384-21.960533-9.6384-30.7456 0L628.078933 349.269333a24.8832 24.8832 0 0 0 0 33.732267c4.394667 4.821333 10.978133 7.227733 15.3728 7.227733 6.587733 0 10.978133-2.410667 15.3728-7.227733L889.412267 134.826667a24.8832 24.8832 0 0 0 0-33.732267z m-116.394667 265.0368v481.877333c0 7.232-6.587733 14.464-13.175467 14.464H206.429867c-6.587733 2.4064-13.175467-4.821333-13.175467-12.049066V204.6976c0-7.227733 6.587733-14.455467 13.175467-14.455467h423.8464c13.175467 0 21.960533-9.6384 21.960533-24.093866 0-14.455467-8.789333-24.093867-21.960533-24.093867H206.429867C175.684267 142.0544 149.333333 170.9696 149.333333 204.6976v645.725867C149.333333 884.155733 175.684267 913.066667 206.429867 913.066667h553.412266c32.938667 0 57.1008-28.910933 57.1008-62.6432V368.5376c0-14.455467-8.789333-26.500267-21.960533-26.500267-13.179733 0-21.9648 9.634133-21.9648 24.093867zM551.214933 416.725333h-256.938666c-13.179733 0-21.960533 9.634133-21.960534 24.093867 0 14.455467 8.7808 24.093867 21.960534 24.093867h254.7456c13.175467 0 21.960533-9.642667 21.960533-24.093867 0-14.459733-8.789333-24.093867-19.767467-24.093867z m-278.8992 255.394134c0 14.459733 8.7808 24.093867 21.960534 24.093866h377.728c13.1712 0 21.956267-9.634133 21.956266-24.093866 0-14.455467-8.785067-24.093867-21.960533-24.093867H294.272c-10.978133 0-21.956267 9.642667-21.956267 24.093867z" fill="#707070" p-id="1674"></path></svg>
<time class="article-words">
5407字
</time>
</div>
</footer>
</div>
</header>
</article>
</section>
<nav class='pagination'>
<span class='page-link current'>1</span>
<a class='page-link' href='/page/2/'>2</a>
</nav>
<footer class="site-footer">
<section class="copyright">
©
2024 SanmuDang的博客
</section>
<section class="powerby">
感谢各位老爷的支持 <br/>
<a href="https://icp.gov.moe/?keyword=20240417" target="_blank">萌ICP备20240417号</a>
</section>
</footer>
</main>
</div>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vibrant.min.js"integrity="sha256-awcR2jno4kI5X0zL8ex0vi2z+KMkF24hUW8WePSA9HM="crossorigin="anonymous"
>
</script><script type="text/javascript" src="/ts/main.js" defer></script>
<script>
(function () {
const customFont = document.createElement('link');
customFont.href = "https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap";
customFont.type = "text/css";
customFont.rel = "stylesheet";
document.head.appendChild(customFont);
}());
</script>
</body>
</html>