-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1136 lines (717 loc) · 38.6 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 charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta name="theme-color" content="#222" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#222" media="(prefers-color-scheme: dark)"><meta name="generator" content="Hexo 7.3.0">
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/32.ico">
<link rel="icon" type="image/png" sizes="16x16" href="/images/16.ico">
<link rel="mask-icon" href="/images/logo.svg" color="#222">
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha256-5eIC48iZUHmSlSUz9XtjRyK2mzQkHScZY1WdMaoz74E=" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.1.1/animate.min.css" integrity="sha256-PR7ttpcvz8qrF57fur/yAx1qXMFJeJFiA6pSzWi0OIE=" crossorigin="anonymous">
<script class="next-config" data-name="main" type="application/json">{"hostname":"frienkie.eu.org","root":"/","images":"/images","scheme":"Pisces","darkmode":true,"version":"8.21.0","exturl":false,"sidebar":{"position":"left","width_expanded":320,"width_dual_column":240,"display":"post","padding":18,"offset":12},"hljswrap":true,"copycode":{"enable":false,"style":null},"fold":{"enable":false,"height":500},"bookmark":{"enable":false,"color":"#222","save":"auto"},"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"style":"tabs","active":null,"storage":true,"lazyload":false,"nav":null},"stickytabs":false,"motion":{"enable":true,"async":false,"transition":{"menu_item":"fadeInDown","post_block":"fadeIn","post_header":"fadeInDown","post_body":"fadeInDown","coll_header":"fadeInLeft","sidebar":"fadeInUp"}},"i18n":{"placeholder":"搜索...","empty":"没有找到任何搜索结果:${query}","hits_time":"找到 ${hits} 个搜索结果(用时 ${time} 毫秒)","hits":"找到 ${hits} 个搜索结果"}}</script><script src="/js/config.js"></script>
<meta name="description" content="讨论自由!">
<meta property="og:type" content="website">
<meta property="og:title" content="frienkie的记事本">
<meta property="og:url" content="http://frienkie.eu.org/index.html">
<meta property="og:site_name" content="frienkie的记事本">
<meta property="og:description" content="讨论自由!">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="frienkie">
<meta name="twitter:card" content="summary">
<link rel="canonical" href="http://frienkie.eu.org/">
<script class="next-config" data-name="page" type="application/json">{"sidebar":"","isHome":true,"isPost":false,"lang":"zh-CN","comments":"","permalink":"","path":"index.html","title":""}</script>
<script class="next-config" data-name="calendar" type="application/json">""</script>
<title>frienkie的记事本</title>
<link rel="dns-prefetch" href="https://comment.frienkie.eu.org/">
<noscript>
<link rel="stylesheet" href="/css/noscript.css">
</noscript>
<link rel="alternate" href="/atom.xml" title="frienkie的记事本" type="application/rss+xml">
</head>
<body itemscope itemtype="http://schema.org/WebPage" class="use-motion">
<div class="headband"></div>
<main class="main">
<div class="column">
<header class="header" itemscope itemtype="http://schema.org/WPHeader"><div class="site-brand-container">
<div class="site-nav-toggle">
<div class="toggle" aria-label="切换导航栏" role="button">
<span class="toggle-line"></span>
<span class="toggle-line"></span>
<span class="toggle-line"></span>
</div>
</div>
<div class="site-meta">
<a href="/" class="brand" rel="start">
<i class="logo-line"></i>
<h1 class="site-title">frienkie的记事本</h1>
<i class="logo-line"></i>
</a>
<p class="site-subtitle" itemprop="description">其实就是个记事本</p>
</div>
<div class="site-nav-right">
<div class="toggle popup-trigger" aria-label="搜索" role="button">
</div>
</div>
</div>
<nav class="site-nav">
<ul class="main-menu menu"><li class="menu-item menu-item-home"><a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a></li><li class="menu-item menu-item-tags"><a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a></li><li class="menu-item menu-item-archives"><a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a></li>
</ul>
</nav>
</header>
<aside class="sidebar">
<div class="sidebar-inner sidebar-overview-active">
<ul class="sidebar-nav">
<li class="sidebar-nav-toc">
文章目录
</li>
<li class="sidebar-nav-overview">
站点概览
</li>
</ul>
<div class="sidebar-panel-container">
<!--noindex-->
<div class="post-toc-wrap sidebar-panel">
</div>
<!--/noindex-->
<div class="site-overview-wrap sidebar-panel">
<div class="site-author animated" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image" alt="frienkie"
src="/images/avatar.jpg">
<p class="site-author-name" itemprop="name">frienkie</p>
<div class="site-description" itemprop="description">讨论自由!</div>
</div>
<div class="site-state-wrap animated">
<nav class="site-state">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">102</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/">
<span class="site-state-item-count">8</span>
<span class="site-state-item-name">标签</span></a>
</div>
</nav>
</div>
<div class="links-of-author animated">
<span class="links-of-author-item">
<a href="mailto:[email protected]" title="E-Mail → mailto:[email protected]" rel="noopener me" target="_blank"><i class="iconfont icon-email fa-fw"></i>E-Mail</a>
</span>
<span class="links-of-author-item">
<a href="https://twitter.com/frienkiely" title="Twitter → https://twitter.com/frienkiely" rel="noopener me" target="_blank"><i class="iconfont icon-twitter fa-fw"></i>Twitter</a>
</span>
<span class="links-of-author-item">
<a href="https://help.frienkie.eu.org/" title="help → https://help.frienkie.eu.org" rel="noopener me" target="_blank"><i class="iconfont icon-question fa-fw"></i>help</a>
</span>
<span class="links-of-author-item">
<a href="https://join.skype.com/Yp932LzxbRrI" title="Skype → https://join.skype.com/Yp932LzxbRrI" rel="noopener me" target="_blank"><i class="iconfont icon-skype-fill fa-fw"></i>Skype</a>
</span>
<span class="links-of-author-item">
<a href="/atom.xml" title="RSS → /atom.xml" rel="noopener me"><i class="iconfont icon-dingyue fa-fw"></i>RSS</a>
</span>
<span class="links-of-author-item">
<a href="https://db.frienkie.eu.org/" title="Dashboard → https://db.frienkie.eu.org" rel="noopener me" target="_blank"><i class="fas fa-mobile fa-fw"></i>Dashboard</a>
</span>
</div>
</div>
</div>
</div>
</aside>
</div>
<div class="main-inner index posts-expand">
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="http://frienkie.eu.org/posts/2656567511/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="frienkie">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="frienkie的记事本">
<meta itemprop="description" content="讨论自由!">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | frienkie的记事本">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/posts/2656567511/" class="post-title-link" itemprop="url">frienkie的电台第一期</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2025-01-28 11:35:39" itemprop="dateCreated datePublished" datetime="2025-01-28T11:35:39+00:00">2025-01-28</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Waline:</span>
<a title="waline" href="/posts/2656567511/#waline" itemprop="discussionUrl">
<span class="post-comments-count waline-comment-count" data-path="/posts/2656567511/" itemprop="commentCount"></span>
</a>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<div class="soundcloud-wrapper"><iframe width="100%" height="450" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A%2F%2Fsoundcloud.com%2Ffrienkiely%2Ffrienkie%3Fsi%3D4055f8de520a4e5084be0eb256ca3546%26utm_source%3Dclipboard%26utm_medium%3Dtext%26utm_campaign%3Dsocial_sharing&auto_play=false&hide_related=true&show_comments=true&show_user=true&show_reposts=false&visual=true"></iframe></div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="http://frienkie.eu.org/posts/2813243452/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="frienkie">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="frienkie的记事本">
<meta itemprop="description" content="讨论自由!">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | frienkie的记事本">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/posts/2813243452/" class="post-title-link" itemprop="url">泷本龙彦的人生相谈(faust vol3)</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2025-01-26 16:17:21" itemprop="dateCreated datePublished" datetime="2025-01-26T16:17:21+00:00">2025-01-26</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Waline:</span>
<a title="waline" href="/posts/2813243452/#waline" itemprop="discussionUrl">
<span class="post-comments-count waline-comment-count" data-path="/posts/2813243452/" itemprop="commentCount"></span>
</a>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>就像营养一样,人无法只靠“梦想”活下去。有人说,比起西方的面包,日本传统的粗粮搭配白米、味噌汤和腌菜,营养更均衡。但是,即便只吃米饭,人也不可能健康地生活下去。</p>
<p>梦想,没错,<strong>梦想</strong>。</p>
<p>对人类来说,梦想、希望和爱,不管怎么说都是必要的。如果没有这些,就会失去活着的目的,缩成一团。可如果只有梦想,也无法充满元气地生活下去。</p>
<p><strong>钱——!</strong></p>
<p>没错,如果没有钱,衣食住行都无法维持。</p>
<p>没有钱,就会死!</p>
<p>因此,直到今天,人类也在不断追逐金钱和梦想。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/posts/2813243452/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="http://frienkie.eu.org/posts/2132594619/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="frienkie">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="frienkie的记事本">
<meta itemprop="description" content="讨论自由!">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | frienkie的记事本">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/posts/2132594619/" class="post-title-link" itemprop="url">最近才意识到的office的神奇情况</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2024-11-12 10:35:16" itemprop="dateCreated datePublished" datetime="2024-11-12T10:35:16+00:00">2024-11-12</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Waline:</span>
<a title="waline" href="/posts/2132594619/#waline" itemprop="discussionUrl">
<span class="post-comments-count waline-comment-count" data-path="/posts/2132594619/" itemprop="commentCount"></span>
</a>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>突然发现了一点神奇的事情。<br>在2021年,我在闲鱼上花30购买了正版的office2019家庭学生版,将其安装在surface上。<br>后来开始使用研究室的全新电脑dell inspiron也没有office,不过登陆账户后显示可以下载账户上的office2019。然后一路安装联网使用一点问题都没有?<br>请注意我的这两台设备都没有使用任何KMS工具,也就是说office是走官方验证激活的。<br>可是官网上明明说office2019家庭学生版仅能给一台设备使用不是吗?一般来说,旧设备应该会登出许可才对。<br>登录官网之后发现2019已经停止售卖,而2021还是仅仅提供一台设备的使用权限。<br>难道说停止售卖的版本会提供不限设备数量的福利?希望对微软比较了解的人解答一下我的疑问。</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="http://frienkie.eu.org/posts/3815584892/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="frienkie">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="frienkie的记事本">
<meta itemprop="description" content="讨论自由!">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | frienkie的记事本">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/posts/3815584892/" class="post-title-link" itemprop="url">对于网站留言功能的解释和新NHK的推广+代购广告?</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2024-10-11 20:43:48" itemprop="dateCreated datePublished" datetime="2024-10-11T20:43:48+00:00">2024-10-11</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Waline:</span>
<a title="waline" href="/posts/3815584892/#waline" itemprop="discussionUrl">
<span class="post-comments-count waline-comment-count" data-path="/posts/3815584892/" itemprop="commentCount"></span>
</a>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h4 id="更新到最新的next主题,评论系统变更为waline。部署到vercel,目前可以正常收到评论提醒了。"><a href="#更新到最新的next主题,评论系统变更为waline。部署到vercel,目前可以正常收到评论提醒了。" class="headerlink" title="更新到最新的next主题,评论系统变更为waline。部署到vercel,目前可以正常收到评论提醒了。"></a>更新到最新的next主题,评论系统变更为waline。部署到vercel,目前可以正常收到评论提醒了。</h4><h4 id="本文已过时。"><a href="#本文已过时。" class="headerlink" title="本文已过时。"></a>本文已过时。</h4><p>感觉有必要解释一下网站留言的一些问题。<br>因为事实上,为了网站的零成本投入原则,目前使用valine的留言是对我没有通知的。<br>leancloud的免费服务会有流控,为此只有长期定时访问后台才行。这意味着我至少需要有一个虚拟主机。<br>谁没有一个虚拟主机呢?很抱歉我没有。如果谁能提供给我当然是最好的,但是要饭的事情还没成功过。<br>至于github action的话,现在也只能坚持最多一周。我也还是要点脸的,这确实是action的滥用行为。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/posts/3815584892/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="http://frienkie.eu.org/posts/2853686951/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="frienkie">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="frienkie的记事本">
<meta itemprop="description" content="讨论自由!">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | frienkie的记事本">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/posts/2853686951/" class="post-title-link" itemprop="url">b75平台使用win10的问题总结</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2024-10-06 23:05:00" itemprop="dateCreated datePublished" datetime="2024-10-06T23:05:00+00:00">2024-10-06</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Waline:</span>
<a title="waline" href="/posts/2853686951/#waline" itemprop="discussionUrl">
<span class="post-comments-count waline-comment-count" data-path="/posts/2853686951/" itemprop="commentCount"></span>
</a>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>先来梳理一下所有问题的时间点:<br>1.在2019年时,购入cymoon的翻新贴牌b75m和e3v2。<br>2.在2020年10月时出现什么都亮,但是无输出的情况。经过多方确认,包括网上的报告,最终确认是bios损坏,重刷bios之后,一切正常。在此期间又买了张技嘉二手b75,因为cymoon不提供bios文件。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/posts/2853686951/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="http://frienkie.eu.org/posts/3523304816/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="frienkie">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="frienkie的记事本">
<meta itemprop="description" content="讨论自由!">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | frienkie的记事本">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/posts/3523304816/" class="post-title-link" itemprop="url">对手塚治虫的略微批评</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2024-08-05 22:11:21" itemprop="dateCreated datePublished" datetime="2024-08-05T22:11:21+00:00">2024-08-05</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Waline:</span>
<a title="waline" href="/posts/3523304816/#waline" itemprop="discussionUrl">
<span class="post-comments-count waline-comment-count" data-path="/posts/3523304816/" itemprop="commentCount"></span>
</a>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>也许很多人不知道,手塚治虫的童年是在西宫以北的宝塚度过的,在战争期间,手塚治虫的家庭为了安全考虑,从大阪搬到了山里的宝塚。<br>现在,宝塚也有手塚治虫纪念馆。<br>纪念馆内有手塚治虫动画放映厅,放映厅外面有电视播放其他知名人士对手塚治虫的评价。<br>大部分的评论都是,手塚治虫は漫画の神様です。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/posts/3523304816/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="http://frienkie.eu.org/posts/1304512512/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="frienkie">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="frienkie的记事本">
<meta itemprop="description" content="讨论自由!">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | frienkie的记事本">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/posts/1304512512/" class="post-title-link" itemprop="url">有关于泉和良的杂七杂八</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2024-06-25 13:45:10" itemprop="dateCreated datePublished" datetime="2024-06-25T13:45:10+00:00">2024-06-25</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Waline:</span>
<a title="waline" href="/posts/1304512512/#waline" itemprop="discussionUrl">
<span class="post-comments-count waline-comment-count" data-path="/posts/1304512512/" itemprop="commentCount"></span>
</a>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>泉和良这个名字,如果是稍微深入了解一下泷本的,应该略有耳闻。<br>1997年开始以アンディーメンテ的名义制作独立小游戏,后来参加讲谈社box流水新人赏出道。《我的空气》后记里面也提到当时泉和良和泷本的小说交流十分密切。<br>那么首先,讲谈社box系列肯定很陌生,但说到西尾的物语系列应该就熟悉了。其特点是单行本像字典一样由一个银色的纸盒装着,故名为box。时至今日,二手书店最容易买到的讲谈社box的作品也是物语系列,而其他的作品则很难找到。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/posts/1304512512/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="http://frienkie.eu.org/posts/782142254/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="frienkie">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="frienkie的记事本">
<meta itemprop="description" content="讨论自由!">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | frienkie的记事本">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/posts/782142254/" class="post-title-link" itemprop="url">锐评girls band cry的学历neta</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2024-06-01 20:17:45" itemprop="dateCreated datePublished" datetime="2024-06-01T20:17:45+00:00">2024-06-01</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Waline:</span>
<a title="waline" href="/posts/782142254/#waline" itemprop="discussionUrl">
<span class="post-comments-count waline-comment-count" data-path="/posts/782142254/" itemprop="commentCount"></span>
</a>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>最近在追girls band cry。几乎没有地方不提中专学历neta的。准确来说,每个评论区必有中专乐队的词条。<br>刷这个梗的心态我是完全能理解的,但是我更想提一下中国和日本关于学历教育的差别。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/posts/782142254/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="http://frienkie.eu.org/posts/2219297580/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="frienkie">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="frienkie的记事本">
<meta itemprop="description" content="讨论自由!">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | frienkie的记事本">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/posts/2219297580/" class="post-title-link" itemprop="url">藤田祥平的<日本が中国に完敗した今、26歳の私が全てのオッサンに言いたいこと></a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2024-05-14 22:47:20" itemprop="dateCreated datePublished" datetime="2024-05-14T22:47:20+00:00">2024-05-14</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Waline:</span>
<a title="waline" href="/posts/2219297580/#waline" itemprop="discussionUrl">
<span class="post-comments-count waline-comment-count" data-path="/posts/2219297580/" itemprop="commentCount"></span>
</a>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>继续讨论《青春和连环杀手》的余下一点东西。<br>我最先看的是由连载版翻译过来的前10章:</p>
<p><a target="_blank" rel="noopener" href="https://www.douban.com/note/713789368/?_i=56972647e3MqNT">https://www.douban.com/note/713789368/?_i=56972647e3MqNT</a></p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/posts/2219297580/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="http://frienkie.eu.org/posts/2974393929/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="frienkie">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="frienkie的记事本">
<meta itemprop="description" content="讨论自由!">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | frienkie的记事本">
<meta itemprop="description" content="">
</span>
<header class="post-header">