-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
974 lines (659 loc) · 57.3 KB
/
index.html
File metadata and controls
974 lines (659 loc) · 57.3 KB
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
<!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 6.1.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/favicon-32x32-next.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png">
<link rel="mask-icon" href="/images/logo.svg" color="#222">
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" integrity="sha256-DfWjNxDkM94fVBWx1H5BMMp0Zq7luBlV8QRcSES7s+0=" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/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":"example.com","root":"/","images":"/images","scheme":"Gemini","darkmode":true,"version":"8.11.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12},"copycode":false,"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":{"post_block":"fadeIn","post_header":"fadeInDown","post_body":"fadeInDown","coll_header":"fadeInLeft","sidebar":"fadeInUp"}},"prism":false,"i18n":{"placeholder":"Searching...","empty":"We didn't find any results for the search: ${query}","hits_time":"${hits} results found in ${time} ms","hits":"${hits} results found"}}</script><script src="/js/config.js"></script>
<meta name="description" content="记录一些没什么意义的东西">
<meta property="og:type" content="website">
<meta property="og:title" content="失败青年的摆烂编年史">
<meta property="og:url" content="http://example.com/index.html">
<meta property="og:site_name" content="失败青年的摆烂编年史">
<meta property="og:description" content="记录一些没什么意义的东西">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="jdh">
<meta property="article:tag" content="摆烂">
<meta name="twitter:card" content="summary">
<link rel="canonical" href="http://example.com/">
<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>失败青年的摆烂编年史</title>
<noscript>
<link rel="stylesheet" href="/css/noscript.css">
</noscript>
</head>
<body itemscope itemtype="http://schema.org/WebPage" class="use-motion">
<div class="headband"></div>
<main class="main">
<header class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-container">
<div class="site-nav-toggle">
<div class="toggle" aria-label="Toggle navigation bar" 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">失败青年的摆烂编年史</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">
</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>Home</a></li><li class="menu-item menu-item-archives"><a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>Archives</a></li>
</ul>
</nav>
</div>
<div class="toggle sidebar-toggle" role="button">
<span class="toggle-line"></span>
<span class="toggle-line"></span>
<span class="toggle-line"></span>
</div>
<aside class="sidebar">
<div class="sidebar-inner sidebar-overview-active">
<ul class="sidebar-nav">
<li class="sidebar-nav-toc">
Table of Contents
</li>
<li class="sidebar-nav-overview">
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 site-overview-item animated" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image" alt="jdh"
src="/images/icon.gif">
<p class="site-author-name" itemprop="name">jdh</p>
<div class="site-description" itemprop="description">记录一些没什么意义的东西</div>
</div>
<div class="site-state-wrap site-overview-item animated">
<nav class="site-state">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">8</span>
<span class="site-state-item-name">posts</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<span class="site-state-item-count">13</span>
<span class="site-state-item-name">tags</span>
</div>
</nav>
</div>
<div class="links-of-author site-overview-item animated">
<span class="links-of-author-item">
<a href="https://github.com/FailedFailure" title="GitHub → https://github.com/FailedFailure" rel="noopener" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a>
</span>
<span class="links-of-author-item">
<a href="/fa1lure_jdh@outlook.com" title="E-Mail → fa1lure_jdh@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a>
</span>
</div>
</div>
</div>
</div>
</aside>
<div class="sidebar-dimmer"></div>
</header>
<div class="back-to-top" role="button" aria-label="Back to top">
<i class="fa fa-arrow-up"></i>
<span>0%</span>
</div>
<noscript>
<div class="noscript-warning">Theme NexT works best with JavaScript enabled</div>
</noscript>
<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://example.com/2023/07/17/about%20KMS/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/icon.gif">
<meta itemprop="name" content="jdh">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="失败青年的摆烂编年史">
<meta itemprop="description" content="记录一些没什么意义的东西">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 失败青年的摆烂编年史">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2023/07/17/about%20KMS/" class="post-title-link" itemprop="url">about KMS</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">Posted on</span>
<time title="Created: 2023-07-17 15:47:04 / Modified: 15:56:10" itemprop="dateCreated datePublished" datetime="2023-07-17T15:47:04+08:00">2023-07-17</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
Here's something encrypted, password is required to continue reading.
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2023/07/17/about%20KMS/#more" rel="contents">
Read more »
</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://example.com/2023/07/17/Dynadot%E5%8F%91%E5%9F%9F%E5%90%8D%E4%BA%86/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/icon.gif">
<meta itemprop="name" content="jdh">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="失败青年的摆烂编年史">
<meta itemprop="description" content="记录一些没什么意义的东西">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 失败青年的摆烂编年史">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2023/07/17/Dynadot%E5%8F%91%E5%9F%9F%E5%90%8D%E4%BA%86/" class="post-title-link" itemprop="url">Dynadot发域名了?</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">Posted on</span>
<time title="Created: 2023-07-17 15:24:07 / Modified: 15:40:57" itemprop="dateCreated datePublished" datetime="2023-07-17T15:24:07+08:00">2023-07-17</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="Dynadot发域名了。"><a href="#Dynadot发域名了。" class="headerlink" title="Dynadot发域名了。"></a>Dynadot发域名了。</h1><h2 id="操作"><a href="#操作" class="headerlink" title="操作"></a>操作</h2><p>首先上<a target="_blank" rel="noopener" href="https://www.dynadot.com/register-your-free-link-domain">官网</a>,注册登录即可领取我们的<a target="_blank" rel="noopener" href="http://ktkukuru.link/">新域名</a>,然后访问<a target="_blank" rel="noopener" href="https://www.dynadot.com/account/domain/name/list.html">域名管理页</a>,选择<code>DNS Settings</code>,在<code>Webpage to Forward to</code>处放上之前购买的域名,点击<code>Forward Domain</code>即可实现重定向。注意是年抛。</p>
<h2 id="References"><a href="#References" class="headerlink" title="References"></a>References</h2><p><a target="_blank" rel="noopener" href="https://www.dynadot.com/">Dynadot主页</a></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://example.com/2023/03/11/ffmpeg%E8%AF%B4%E6%98%8E%E4%B9%A6/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/icon.gif">
<meta itemprop="name" content="jdh">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="失败青年的摆烂编年史">
<meta itemprop="description" content="记录一些没什么意义的东西">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 失败青年的摆烂编年史">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2023/03/11/ffmpeg%E8%AF%B4%E6%98%8E%E4%B9%A6/" class="post-title-link" itemprop="url">ffmpeg说明书</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">Posted on</span>
<time title="Created: 2023-03-11 17:48:38" itemprop="dateCreated datePublished" datetime="2023-03-11T17:48:38+08:00">2023-03-11</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2023-07-17 15:46:38" itemprop="dateModified" datetime="2023-07-17T15:46:38+08:00">2023-07-17</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="ffmpeg说明书"><a href="#ffmpeg说明书" class="headerlink" title="ffmpeg说明书"></a>ffmpeg说明书</h1><h2 id="1-前言"><a href="#1-前言" class="headerlink" title="1 前言"></a>1 前言</h2><p>打轴天天脑残忘记ffmpeg的指令,mark一下</p>
<h2 id="2-下载"><a href="#2-下载" class="headerlink" title="2 下载"></a>2 下载</h2><p><a target="_blank" rel="noopener" href="https://ffmpeg.org/download.html">官网</a><br>然后在环境变量里添加<code>ffmpeg\bin</code></p>
<h2 id="3-用的到的指令"><a href="#3-用的到的指令" class="headerlink" title="3 用的到的指令"></a>3 用的到的指令</h2><p>用一个mark一个</p>
<p>压缩硬字幕:</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">ffmpeg -i demo.mp4 -vf ass=subtitle.ass output.mp4</span><br></pre></td></tr></table></figure>
<h2 id="References"><a href="#References" class="headerlink" title="References"></a>References</h2><p><a target="_blank" rel="noopener" href="https://ffmpeg.org/download.html">ffmpeg官网</a></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://example.com/2022/08/30/%E7%95%99%E5%AD%A6%E8%AE%B0%E5%BD%95/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/icon.gif">
<meta itemprop="name" content="jdh">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="失败青年的摆烂编年史">
<meta itemprop="description" content="记录一些没什么意义的东西">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 失败青年的摆烂编年史">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2022/08/30/%E7%95%99%E5%AD%A6%E8%AE%B0%E5%BD%95/" 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">Posted on</span>
<time title="Created: 2022-08-30 10:11:00" itemprop="dateCreated datePublished" datetime="2022-08-30T10:11:00+08:00">2022-08-30</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2023-07-26 16:21:26" itemprop="dateModified" datetime="2023-07-26T16:21:26+08:00">2023-07-26</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="留学记录"><a href="#留学记录" class="headerlink" title="留学记录"></a>留学记录</h1><h2 id="1-写在前面"><a href="#1-写在前面" class="headerlink" title="1 写在前面"></a>1 写在前面</h2><p>为什么要写这么一篇东西呢,很大程度上跟本人经历有关。<br>本人高中的择校心路历程不能说是坎坷吧,只能说是艰难困苦。<br>最终现在还是敲定了方案。感谢一路陪伴我的家长老师朋友,没有你们,我估计老早烂完咯</p>
<h2 id="2-具体规划"><a href="#2-具体规划" class="headerlink" title="2 具体规划"></a>2 具体规划</h2><p>现在初步等待十月初出愿大阪大学<code>海外在住私费外国人留学生特别入试</code>,但是这项目可能明后年就没了,链接在楼下。<br>SGU也会做点打算,比如京都大学的<code>iUP</code>……不报什么期望吧就。<br>然后私立明年6月可能会在国内申一圈。<br><code>EJU</code>和<code>TOEFL</code>自己准备中。<br>明年秋天就看哪里要自己了。如果大阪和SGU都寄了那就进语校咯。</p>
<h3 id="大阪要我了-爽到"><a href="#大阪要我了-爽到" class="headerlink" title="大阪要我了 爽到"></a>大阪要我了 爽到</h3><h3 id="2-1-目前已持有"><a href="#2-1-目前已持有" class="headerlink" title="2.1 目前已持有"></a>2.1 目前已持有</h3><p>2023年7月 国内普通高中毕业证明(合格考均已合格)</p>
<h4 id="TOEFL"><a href="#TOEFL" class="headerlink" title="TOEFL"></a><code>TOEFL</code></h4><p>2021年11月20日 R28+L27+S22+W25 102分</p>
<h4 id="JLPT"><a href="#JLPT" class="headerlink" title="JLPT"></a><code>JLPT</code></h4><p>2021年7月 N1 39+60+43 142分</p>
<h4 id="ACT"><a href="#ACT" class="headerlink" title="ACT"></a><code>ACT</code></h4><p>2022年9月 E33+M36+R26+S36+W9 C33<br>2022年10月 都比之前低 不展示了</p>
<h4 id="EJU"><a href="#EJU" class="headerlink" title="EJU"></a><code>EJU</code></h4><p>2023年6月 166+183+80+81+189=699 W45</p>
<h4 id="校内排名考"><a href="#校内排名考" class="headerlink" title="校内排名考"></a>校内排名考</h4><p>2022年9月 235.5 30%~40% 已Cancel(本来也和留学没多大关系)</p>
<h3 id="2-2-大阪大学海外在住私费外国人留学生特别入试"><a href="#2-2-大阪大学海外在住私费外国人留学生特别入试" class="headerlink" title="2.2 大阪大学海外在住私费外国人留学生特别入试"></a>2.2 大阪大学海外在住私费外国人留学生特别入试</h3><h4 id="2-2-1-学科"><a href="#2-2-1-学科" class="headerlink" title="2.2.1 学科"></a>2.2.1 学科</h4><p>工学部 电子情报工学科</p>
<h4 id="2-2-2-目前进度"><a href="#2-2-2-目前进度" class="headerlink" title="2.2.2 目前进度"></a>2.2.2 目前进度</h4><p>2022.09.30 已递交材料<br>2022.10.05 大阪大学显示已签收<br>2022.10.27 正式受理出愿<br>2022.12.02 收到面试通知<br>2022.12.12 Skype测试<br>2023.02.01 面试<br>2023.03.29 放榜(合了)<br>2023.04.05 入学流程下发,合格通知书下发<br>2023.05.17 交钱,寄材料(毕业证待7月邮寄,还有银行的脑残app真把人坑惨了吧)<br>2023.07.05 这两个月把材料都寄完了,等在留</p>
<h3 id="2-3-SGU"><a href="#2-3-SGU" class="headerlink" title="2.3 SGU"></a>2.3 SGU</h3><h4 id="2-3-1-择校"><a href="#2-3-1-择校" class="headerlink" title="2.3.1 择校"></a>2.3.1 择校</h4><p>京都大学iUP 工学部 工业化学科<br>名古屋大学 工学部 化学生命工学科<br>早稻田大学 政治经济学部 国际政治经济学科</p>
<h4 id="2-3-2-进度"><a href="#2-3-2-进度" class="headerlink" title="2.3.2 进度"></a>2.3.2 进度</h4><p>前略,大概就是交材料<br>2023.01.30 名大一审落<br>2023.02.10 京大一审落</p>
<p>2023.03.30 停止更新</p>
<h2 id="3-提前准备好的一些手续记录"><a href="#3-提前准备好的一些手续记录" class="headerlink" title="3 提前准备好的一些手续记录"></a>3 提前准备好的一些手续记录</h2><ul>
<li>在国内学业准备以外,需要去办一张visa的日元信用卡</li>
<li>语校会给在留 到那边多半会先去住宿舍</li>
<li>拿着在留以后落地 机场办手续后你需要声称“我是留学生,我需要办理资格外活动手续”,领第一张在留卡</li>
<li>去入管局登记汉字,换一张在留卡,此时需要一张照片</li>
<li>去刻印章,以在留卡上的名字为准,跟他们说银行大小即可</li>
<li>区役所办理住民登记、年金、医保、印章登记</li>
<li>先在国内办个移动的<code>CMlink</code>,然后拿着visa卡和你的号码去docomo办理一个携号转网</li>
<li>现在有合法居住身份和手机号,就能去日本的邮政储蓄银行整一张当地借记卡</li>
</ul>
<h2 id="未完待续"><a href="#未完待续" class="headerlink" title="未完待续"></a>未完待续</h2><h2 id="鸣谢-amp-References"><a href="#鸣谢-amp-References" class="headerlink" title="鸣谢 & References"></a>鸣谢 & References</h2><p>鸣谢<a target="_blank" rel="noopener" href="https://space.bilibili.com/15826523">Yaojc</a>在此篇博客编写全过程中的帮助。</p>
<p><a target="_blank" rel="noopener" href="https://chega.osaka-u.ac.jp/examination/">大阪大学海外在住私费外国人留学生特别入试</a></p>
<p><a target="_blank" rel="noopener" href="https://www.cmlink.com/jp/zh/get-sim/">CMlink官网</a></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://example.com/2022/05/09/%E5%88%9D%E8%AF%86VROID/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/icon.gif">
<meta itemprop="name" content="jdh">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="失败青年的摆烂编年史">
<meta itemprop="description" content="记录一些没什么意义的东西">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 失败青年的摆烂编年史">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2022/05/09/%E5%88%9D%E8%AF%86VROID/" class="post-title-link" itemprop="url">初识VROID</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">Posted on</span>
<time title="Created: 2022-05-09 21:39:53" itemprop="dateCreated datePublished" datetime="2022-05-09T21:39:53+08:00">2022-05-09</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2022-10-18 15:15:25" itemprop="dateModified" datetime="2022-10-18T15:15:25+08:00">2022-10-18</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="初识VROID"><a href="#初识VROID" class="headerlink" title="初识VROID"></a>初识VROID</h1><h2 id="1-前言"><a href="#1-前言" class="headerlink" title="1 前言"></a>1 前言</h2><p>机缘巧合下我认识了VROID,之前找绘圈佬约的人设也算没白约了。<br>其实操作比想象中简单,感觉门槛比Live2D低的同时上限肯定远高于Live2D。<br>先试试看罢!</p>
<h2 id="2-安装"><a href="#2-安装" class="headerlink" title="2 安装"></a>2 安装</h2><p>Steam商城搜索VRoid Studio就行,直接安装<br><a target="_blank" rel="noopener" href="https://github.com/xiaoye97/VRoidChinese">汉化插件点这里</a><br><a href="github.com/xiaoye97/VRoidXYTool/releases">一样是这位作者的另一个优秀插件</a><br>把汉化插件的东西全都扔到软件根目录下<br>然后在<code>VRoid Studio\BepInEx\plugins</code>下把第二个插件<code>VRoidXYTool.dll</code>扔进来<br>基本上这个软件就可以满足需要了</p>
<h2 id="3-建模"><a href="#3-建模" class="headerlink" title="3 建模"></a>3 建模</h2><p><a target="_blank" rel="noopener" href="https://www.bilibili.com/video/BV19L4y157aS">参考教程</a></p>
<h2 id="4-导出并使用"><a href="#4-导出并使用" class="headerlink" title="4 导出并使用"></a>4 导出并使用</h2><p>导出<code>.vrm</code>后,可以使用小K直播姬动捕<br><a href="www.yunboai.com">下载地址在这里</a></p>
<h2 id="鸣谢-amp-References"><a href="#鸣谢-amp-References" class="headerlink" title="鸣谢 & References"></a>鸣谢 & References</h2><p>鸣谢LXN大佬整理的部分以上链接<br><a target="_blank" rel="noopener" href="https://www.bilibili.com/video/BV19L4y157aS">建模参考教程</a><br><a target="_blank" rel="noopener" href="https://www.bilibili.com/video/BV1TP4y1V7Qn">宵夜97制作的插件教程</a></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://example.com/2022/04/08/%E9%98%85%E7%89%87%E5%B1%88%E6%8C%87%E5%8F%AF%E6%95%B0%E2%80%94%E2%80%94ACGN%E4%BB%A5%E5%8F%8A%E6%97%A5%E5%89%A7%E8%AE%B0%E5%BD%95/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/icon.gif">
<meta itemprop="name" content="jdh">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="失败青年的摆烂编年史">
<meta itemprop="description" content="记录一些没什么意义的东西">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 失败青年的摆烂编年史">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2022/04/08/%E9%98%85%E7%89%87%E5%B1%88%E6%8C%87%E5%8F%AF%E6%95%B0%E2%80%94%E2%80%94ACGN%E4%BB%A5%E5%8F%8A%E6%97%A5%E5%89%A7%E8%AE%B0%E5%BD%95/" class="post-title-link" itemprop="url">阅片屈指可数——ACGN以及日剧记录</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">Posted on</span>
<time title="Created: 2022-04-08 15:38:31" itemprop="dateCreated datePublished" datetime="2022-04-08T15:38:31+08:00">2022-04-08</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2024-03-24 14:18:18" itemprop="dateModified" datetime="2024-03-24T14:18:18+08:00">2024-03-24</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
Here's something encrypted, password is required to continue reading.
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2022/04/08/%E9%98%85%E7%89%87%E5%B1%88%E6%8C%87%E5%8F%AF%E6%95%B0%E2%80%94%E2%80%94ACGN%E4%BB%A5%E5%8F%8A%E6%97%A5%E5%89%A7%E8%AE%B0%E5%BD%95/#more" rel="contents">
Read more »
</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://example.com/2022/04/08/%E7%BC%9D%E7%BC%9D%E8%A1%A5%E8%A1%A5%E5%8F%88%E4%B8%80%E5%B9%B4%E2%80%94%E2%80%94%E5%8D%9A%E5%AE%A2%E7%BE%8E%E5%8C%96%E5%B7%A5%E4%BD%9C/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/icon.gif">
<meta itemprop="name" content="jdh">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="失败青年的摆烂编年史">
<meta itemprop="description" content="记录一些没什么意义的东西">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 失败青年的摆烂编年史">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2022/04/08/%E7%BC%9D%E7%BC%9D%E8%A1%A5%E8%A1%A5%E5%8F%88%E4%B8%80%E5%B9%B4%E2%80%94%E2%80%94%E5%8D%9A%E5%AE%A2%E7%BE%8E%E5%8C%96%E5%B7%A5%E4%BD%9C/" 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">Posted on</span>
<time title="Created: 2022-04-08 13:53:30" itemprop="dateCreated datePublished" datetime="2022-04-08T13:53:30+08:00">2022-04-08</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2022-08-30 10:45:23" itemprop="dateModified" datetime="2022-08-30T10:45:23+08:00">2022-08-30</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="缝缝补补又一年——博客美化工作"><a href="#缝缝补补又一年——博客美化工作" class="headerlink" title="缝缝补补又一年——博客美化工作"></a>缝缝补补又一年——博客美化工作</h1><h2 id="1-前言"><a href="#1-前言" class="headerlink" title="1 前言"></a>1 前言</h2><p>这篇博客本质上是对 <a target="_blank" rel="noopener" href="http://akar1.xyz/2022/04/08/%E4%BB%8E%E9%9B%B6%E5%BC%80%E5%A7%8B%E7%9A%84%E6%9B%B4%E5%8D%9A%E7%94%9F%E6%B4%BB/">从零开始的更博生活</a>这篇文章中更换主题部分的扩充<br>前文已经提到,我们给主题文件<code>submodule</code>过了<br>所以对<code>/blog/themes/next</code>内的文件改动都需要额外<code>push</code>一遍<br>甚至有时候需要<code>cd</code>到<code>/blog/themes</code>下<code>push</code>代码</p>
<h2 id="2-博客加密"><a href="#2-博客加密" class="headerlink" title="2 博客加密"></a>2 博客加密</h2><p>不可避免地,我们会把博客当备忘录来使<br>给博客加密的话,这边用到了<code>hexo-blog-encrypt</code><br>使用</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">npm install --save hexo-blog-encrypt</span><br></pre></td></tr></table></figure>
<p>即可安装<br>随后在<code>.md</code>的头文件里找个地方写</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">password: </span><br></pre></td></tr></table></figure>
<p>就可以添加密码了</p>
<h2 id="3-动刀NexT"><a href="#3-动刀NexT" class="headerlink" title="3 动刀NexT"></a>3 动刀NexT</h2><h3 id="3-1-字体调整"><a href="#3-1-字体调整" class="headerlink" title="3.1 字体调整"></a>3.1 字体调整</h3><p>NexT的字体确实是过大了,先打开<code>/blog/themes/next/source/css/_variables/base.styl</code><br>找到<code>Font size</code>,将<code>font-size-large</code>改为1.0em<br>打开<code>/blog/themes/next/_config.yml</code>,查找`Font Settings’<br>更改以下内容:</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br><span class="line">7</span><br><span class="line">8</span><br><span class="line">9</span><br><span class="line">10</span><br></pre></td><td class="code"><pre><span class="line">posts:</span><br><span class="line"> external: true</span><br><span class="line"> family:</span><br><span class="line"> size: 0.8125</span><br><span class="line"></span><br><span class="line"> # Font settings for <code> and code blocks.</span><br><span class="line"> codes:</span><br><span class="line"> external: true</span><br><span class="line"> family:</span><br><span class="line"> size: </span><br></pre></td></tr></table></figure>
<h3 id="3-2-界面调整"><a href="#3-2-界面调整" class="headerlink" title="3.2 界面调整"></a>3.2 界面调整</h3><p>建议看官方说明书,这里就不摁抄了</p>
<h2 id="References"><a href="#References" class="headerlink" title="References"></a>References</h2><p><a target="_blank" rel="noopener" href="https://theme-next.js.org/docs/theme-settings/">NexT主题设置官方说明书</a></p>
<p><a target="_blank" rel="noopener" href="https://blog.csdn.net/jsd581/article/details/119821267">hexo及NexT主题配置</a></p>
<p><a target="_blank" rel="noopener" href="https://github.com/D0n9X1n/hexo-blog-encrypt">hexo-blog-encrypt原项目地址</a></p>
<p><a target="_blank" rel="noopener" href="https://www.runoob.com/markdown/md-link.html">菜鸟教程:markdown超链接</a></p>
<p><a target="_blank" rel="noopener" href="https://zhuanlan.zhihu.com/p/113235573">对hexo博客文章进行加密</a></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://example.com/2022/04/08/%E4%BB%8E%E9%9B%B6%E5%BC%80%E5%A7%8B%E7%9A%84%E6%9B%B4%E5%8D%9A%E7%94%9F%E6%B4%BB/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/icon.gif">
<meta itemprop="name" content="jdh">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="失败青年的摆烂编年史">
<meta itemprop="description" content="记录一些没什么意义的东西">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 失败青年的摆烂编年史">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2022/04/08/%E4%BB%8E%E9%9B%B6%E5%BC%80%E5%A7%8B%E7%9A%84%E6%9B%B4%E5%8D%9A%E7%94%9F%E6%B4%BB/" 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">Posted on</span>
<time title="Created: 2022-04-08 08:00:00" itemprop="dateCreated datePublished" datetime="2022-04-08T08:00:00+08:00">2022-04-08</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2023-07-17 16:10:15" itemprop="dateModified" datetime="2023-07-17T16:10:15+08:00">2023-07-17</time>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="从零开始的更博生活"><a href="#从零开始的更博生活" class="headerlink" title="从零开始的更博生活"></a>从零开始的更博生活</h1><h2 id="1-虚拟机安装"><a href="#1-虚拟机安装" class="headerlink" title="1 虚拟机安装"></a>1 虚拟机安装</h2><h3 id="1-1-下载VMware"><a href="#1-1-下载VMware" class="headerlink" title="1.1 下载VMware"></a>1.1 下载VMware</h3><p><a target="_blank" rel="noopener" href="https://customerconnect.vmware.com/en/downloads/details?downloadGroup=WKST-PLAYER-1623-NEW&productId=1039&rPId=85399">https://customerconnect.vmware.com/en/downloads/details?downloadGroup=WKST-PLAYER-1623-NEW&productId=1039&rPId=85399</a></p>
<h3 id="1-2-下载映像"><a href="#1-2-下载映像" class="headerlink" title="1.2 下载映像"></a>1.2 下载映像</h3><p><a target="_blank" rel="noopener" href="https://ubuntu.com/download/desktop">https://ubuntu.com/download/desktop</a> </p>
<h3 id="1-3-创建虚拟机"><a href="#1-3-创建虚拟机" class="headerlink" title="1.3 创建虚拟机"></a>1.3 创建虚拟机</h3><p>新建虚拟机向导中将映像插入,在全名(账户名)、用户名(电脑名)中填写<code>jdh</code>,密码就不公布了</p>
<h2 id="2-虚拟机调试"><a href="#2-虚拟机调试" class="headerlink" title="2 虚拟机调试"></a>2 虚拟机调试</h2><h3 id="2-1-更换apt源"><a href="#2-1-更换apt源" class="headerlink" title="2.1 更换apt源"></a>2.1 更换<code>apt</code>源</h3><p>根据系统指示出了新手村以后,把默认<code>apt</code>源换掉</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">sudo nano /etc/apt/sources.list</span><br></pre></td></tr></table></figure>
<p>查看源</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br></pre></td><td class="code"><pre><span class="line">deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse</span><br><span class="line">deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse</span><br><span class="line">deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse</span><br><span class="line">deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse</span><br></pre></td></tr></table></figure>
<p>如果报错“无法安全地用该源进行更新”,那么是ca证书过期了<br>将上述源的<code>https</code>全部换成<code>http</code><br>然后</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">sudo apt install ca-certificates</span><br></pre></td></tr></table></figure>
<p>然后将上述源的<code>http</code>换回<code>https</code><br>最后</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">sudo apt upgrade</span><br></pre></td></tr></table></figure>
<p>(暂时先改成<code>http</code>,然后用<code>http</code>更新证书<code>ca-certificates</code>,然后再改回<code>https</code>确保平时的安全)</p>
<h3 id="2-2-安装VMware-tools"><a href="#2-2-安装VMware-tools" class="headerlink" title="2.2 安装VMware-tools"></a>2.2 安装VMware-tools</h3><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br></pre></td><td class="code"><pre><span class="line">sudo apt upgrade</span><br><span class="line">sudo apt install open-vm-tools-desktop -y</span><br><span class="line">sudo reboot</span><br></pre></td></tr></table></figure>
<h3 id="2-3-更换语言"><a href="#2-3-更换语言" class="headerlink" title="2.3 更换语言"></a>2.3 更换语言</h3><h3 id="2-4-更换时区"><a href="#2-4-更换时区" class="headerlink" title="2.4 更换时区"></a>2.4 更换时区</h3><p>至此系统差不多收拾妥当了,有些不要的软件去设置里卸载就可以了</p>
<h2 id="3-从git到hexo的安装和部署"><a href="#3-从git到hexo的安装和部署" class="headerlink" title="3 从git到hexo的安装和部署"></a>3 从<code>git</code>到<code>hexo</code>的安装和部署</h2><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br></pre></td><td class="code"><pre><span class="line">sudo apt install git</span><br><span class="line">sudo apt install npm</span><br><span class="line">sudo npm install -g n</span><br><span class="line">sudo n stable </span><br><span class="line">sudo npm install -g hexo-cli</span><br></pre></td></tr></table></figure>
<p>在桌面创建一个文件夹<code>blog</code><br>然后记得挂科学上网</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br><span class="line">7</span><br></pre></td><td class="code"><pre><span class="line">cd Desktop</span><br><span class="line">hexo init blog</span><br><span class="line">cd blog</span><br><span class="line">npm install</span><br><span class="line">npm install hexo-deployer-git --save</span><br><span class="line">hexo g</span><br><span class="line">hexo server</span><br></pre></td></tr></table></figure>
<p>至此打开浏览器,访问<code>localhost:4000</code><br>应该就能看到初始页面了</p>
<h2 id="4-部署博客"><a href="#4-部署博客" class="headerlink" title="4 部署博客"></a>4 部署博客</h2><h3 id="4-1-在Github创建Repository"><a href="#4-1-在Github创建Repository" class="headerlink" title="4.1 在Github创建Repository"></a>4.1 在Github创建Repository</h3><p>创建一个叫FailedFailure.github.io的Repository</p>
<h3 id="4-2-安装Curl"><a href="#4-2-安装Curl" class="headerlink" title="4.2 安装Curl"></a>4.2 安装Curl</h3><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">sudo apt install curl</span><br></pre></td></tr></table></figure>
<h3 id="4-3-利用gh联动Github"><a href="#4-3-利用gh联动Github" class="headerlink" title="4.3 利用gh联动Github"></a>4.3 利用<code>gh</code>联动Github</h3><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br></pre></td><td class="code"><pre><span class="line">curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg</span><br><span class="line">echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null</span><br><span class="line">sudo apt update</span><br><span class="line">sudo apt install gh</span><br><span class="line">gh auth login</span><br></pre></td></tr></table></figure>
<p>记录下临时安全码,打开浏览器登录即可联动</p>
<h3 id="4-4-修改-config-yml"><a href="#4-4-修改-config-yml" class="headerlink" title="4.4 修改_config.yml"></a>4.4 修改<code>_config.yml</code></h3><p>将最后三行改成</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br></pre></td><td class="code"><pre><span class="line">type: git</span><br><span class="line">repo: https://github.com/FailedFailure/FailedFailure.github.io.git</span><br><span class="line">branch: master</span><br></pre></td></tr></table></figure>
<h3 id="4-5-Github修改默认Branch"><a href="#4-5-Github修改默认Branch" class="headerlink" title="4.5 Github修改默认Branch"></a>4.5 Github修改默认<code>Branch</code></h3><p>改成<code>master</code><br>并在<code>Settings</code>里找到<code>Pages</code>,修改<code>Branch</code></p>
<h3 id="4-6-博客内容初始化"><a href="#4-6-博客内容初始化" class="headerlink" title="4.6 博客内容初始化"></a>4.6 博客内容初始化</h3><h4 id="4-6-1-删除默认hello-world-md"><a href="#4-6-1-删除默认hello-world-md" class="headerlink" title="4.6.1 删除默认hello-world.md"></a>4.6.1 删除默认<code>hello-world.md</code></h4><p>先把预先写好的<code>md</code>文件准备好(例如此篇)作为第一篇,复制全文内容,在项目目录下</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">hexo new post 'example'</span><br></pre></td></tr></table></figure>
<p>就新建好了一个叫<code>example</code>的<code>.md</code>文件,将准备好的内容拷贝到预设的这段代码:</p>
<figure class="highlight markdown"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br></pre></td><td class="code"><pre><span class="line">title: test</span><br><span class="line">date: 2022-04-07 09:26:25</span><br><span class="line">tags:</span><br><span class="line">-TAGA</span><br><span class="line">-TAGB</span><br></pre></td></tr></table></figure>
<p>的下方即可。(标签添加如上所示)<br>在拥有了第一个文件以后,直接把默认的<code>helloworld.md</code>肃清即可</p>
<h4 id="4-6-2-上传新的md"><a href="#4-6-2-上传新的md" class="headerlink" title="4.6.2 上传新的md"></a>4.6.2 上传新的<code>md</code></h4><p>现在有了新的页面,只需要执行</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line">hexo g</span><br><span class="line">hexo d</span><br></pre></td></tr></table></figure>
<p>这里的<code>hexo g</code>是生成静态页面<br><code>hexo d</code>则是将其<code>deploy</code>到博客页面上<br>如果发现某些页面没有清除,可能是缓存问题<br>可执行<code>hexo clean</code>来解决</p>
<h3 id="4-7-更换主题"><a href="#4-7-更换主题" class="headerlink" title="4.7 更换主题"></a>4.7 更换主题</h3><p>现在我们有了第一篇博客,可是默认主题未免不太美观<br>这里采用的是<code>NexT</code>,去Github上<code>fork</code>一份<br><a target="_blank" rel="noopener" href="https://github.com/next-theme/hexo-theme-next">https://github.com/next-theme/hexo-theme-next</a><br>然后,<code>cd</code>到<code>blog</code>文件夹下,执行<br><code>git submodule add https://github.com/FailedFailure/hexo-theme-next ./themes/next</code><br>然后分别调整内外<code>_config.yml</code>即可自定义博客版面等内容<br>具体设置可见后续博客</p>
<h3 id="4-8-备份设置"><a href="#4-8-备份设置" class="headerlink" title="4.8 备份设置"></a>4.8 备份设置</h3><p>考虑到更换电脑后这些博客可能全部寄了,将文件全部保存至新的<code>Repository</code><br>在Github上新建一个<code>Private</code>的<code>Repository</code>,用来存放代码<br>同时在桌面目录执行</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br></pre></td><td class="code"><pre><span class="line">git init blog</span><br><span class="line">cd blog</span><br><span class="line">git remote add origin https://github.com/FailedFailure/blogbackup.git</span><br><span class="line">git status</span><br></pre></td></tr></table></figure>
<p>至此可以查看<code>git</code>仓库部署情况<br>然后可以使用</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line">git add .</span><br><span class="line">git commit -m "feat: "</span><br></pre></td></tr></table></figure>
<p>将内容从工作区调转到暂存区,最后准备<code>push</code><br>这里的<code>feat: </code>里的内容是更新的备注,最后会显示在Github的文件旁边<br>第一次时应执行</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">git push --set-upstream origin master</span><br></pre></td></tr></table></figure>
<p>就获得了我们需要的文件<br>后续更改时<code>push</code>以外的内容不变,最后一步仅需</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">git push</span><br></pre></td></tr></table></figure>
<p>即可<br>值得一提的是,如需更改这个备份用仓库的名称<br>在Github更改完名称后<br>记得执行</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">git remote set-url origin https://github.com/FailedFailure/blogbackup</span><br></pre></td></tr></table></figure>
<p>这里<code>blogbackup</code>是我后来改的名字,Github改成什么对应什么就行<br>需要注意的是,<code>theme</code>的内容之前已经作为一个独立的<code>Repository</code><br>储存在了<a target="_blank" rel="noopener" href="https://github.com/FailedFailure/hexo-theme-next">https://github.com/FailedFailure/hexo-theme-next</a><br>如果需要修改主题内容,需单独<code>cd ./themes/next</code><br>然后<code>git</code>一份</p>
<p>值得一提的是,如果你的<code>"feat: "</code>内容写错了<br>可以通过</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">git reset --soft HEAD^</span><br></pre></td></tr></table></figure>
<p>来肃清<br>或是</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">git commit --amend</span><br></pre></td></tr></table></figure>
<p>来更改</p>
<h3 id="4-9-购买域名"><a href="#4-9-购买域名" class="headerlink" title="4.9 购买域名"></a>4.9 购买域名</h3><p>我是在阿里云购入的,实名认证以后<br><a target="_blank" rel="noopener" href="https://dc.console.aliyun.com/next/index">https://dc.console.aliyun.com/next/index</a><br>管理域名解析:</p>
<table>
<thead>
<tr>
<th>记录类型</th>
<th>主机记录</th>
<th>解析线路</th>
<th>记录值</th>
</tr>
</thead>
<tbody><tr>
<td>CNAME</td>
<td>www</td>
<td>默认</td>
<td>failedfailure.github.io</td>
</tr>
<tr>
<td>A</td>
<td>@</td>
<td>默认</td>
<td>192.30.252.153</td>
</tr>
<tr>
<td>A</td>
<td>@</td>
<td>默认</td>
<td>192.30.252.154</td>
</tr>
</tbody></table>
<p>然后去<a target="_blank" rel="noopener" href="https://github.com/FailedFailure/FailedFailure.github.io/settings/pages">https://github.com/FailedFailure/FailedFailure.github.io/settings/pages</a><br>在<code>Custom domain</code>处加上域名<a href="akar1.xyz">akar1.xyz</a><br>然后转到终端</p>
<figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line">cd ./source</span><br><span class="line">touch CNAME</span><br></pre></td></tr></table></figure>
<p>在CNAME内输入<a href="akar1.xyz">akar1.xyz</a>,然后重新<code>deploy</code>一遍就行了</p>
<h2 id="5-杂七杂八的小问题"><a href="#5-杂七杂八的小问题" class="headerlink" title="5 杂七杂八的小问题"></a>5 杂七杂八的小问题</h2><h3 id="5-1-Repository内日期修改"><a href="#5-1-Repository内日期修改" class="headerlink" title="5.1 Repository内日期修改"></a>5.1 <code>Repository</code>内日期修改</h3><p>这里还遇到一个怪问题,主<code>Repository</code>中此篇文章的日期错了(06 -> 07)<br>开了个<code>test.md</code>后发现似乎是时区错误<br>将系统时间调整为CST后再试,目前已修正</p>
<h3 id="5-2-前文4-9处表格显示错误"><a href="#5-2-前文4-9处表格显示错误" class="headerlink" title="5.2 前文4.9处表格显示错误"></a>5.2 前文4.9处表格显示错误</h3><p>表格下面还是空一行吧</p>
<h3 id="5-3-虚拟机无线网卡丢失"><a href="#5-3-虚拟机无线网卡丢失" class="headerlink" title="5.3 虚拟机无线网卡丢失"></a>5.3 虚拟机无线网卡丢失</h3><p>时刻注意一下就行8…</p>
<h3 id="5-4-终端push报错"><a href="#5-4-终端push报错" class="headerlink" title="5.4 终端push报错"></a>5.4 终端push报错</h3><p>挂个魔法,轻松解决</p>
<h3 id="5-5-域名过期"><a href="#5-5-域名过期" class="headerlink" title="5.5 域名过期"></a>5.5 域名过期</h3><p>买好新域名在阿里云上解析一下,然后回到虚拟机上改一下<code>CNAME</code>里的内容</p>
<h2 id="TODO"><a href="#TODO" class="headerlink" title="TODO"></a>TODO</h2><p>研究<a target="_blank" rel="noopener" href="https://github.com/D0n9X1n/hexo-blog-encrypt">加密</a></p>
<h2 id="References"><a href="#References" class="headerlink" title="References"></a>References</h2><p><a target="_blank" rel="noopener" href="https://gyrojeff.top/">https://gyrojeff.top/</a></p>
<p><a target="_blank" rel="noopener" href="https://oreste.moe/">https://oreste.moe/</a></p>
<p><a target="_blank" rel="noopener" href="https://blog.csdn.net/sinat_37781304/article/details/82729029">hexo搭建参考</a></p>
<p><a target="_blank" rel="noopener" href="https://www.runoob.com/markdown/md-code.html">菜鸟教程:markdown代码</a></p>
<p><a target="_blank" rel="noopener" href="https://www.runoob.com/markdown/md-table.html">菜鸟教程:markdown表格</a></p>
<p><a target="_blank" rel="noopener" href="https://blog.csdn.net/qq_21808961/article/details/84476504">hexo d命令报错</a></p>
<p><a target="_blank" rel="noopener" href="https://blog.csdn.net/dxxzst/article/details/76135935">hexo常用命令</a></p>
<p><a target="_blank" rel="noopener" href="https://gyrojeff.moe/2020/09/11/git%E7%9A%84submodule%E7%94%A8%E6%B3%95/">submodule用法</a></p>
<p><a target="_blank" rel="noopener" href="https://gyrojeff.moe/2020/09/11/git%E6%92%A4%E9%94%80commit%E5%92%8C%E6%9B%B4%E6%94%B9commit%E6%B3%A8%E9%87%8A%E7%9A%84%E6%96%B9%E6%B3%95/">git commit修改和删除</a></p>
<p><a target="_blank" rel="noopener" href="https://blog.csdn.net/gxizit/article/details/108190710">url参数</a></p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
</div>
</main>
<footer class="footer">
<div class="footer-inner">
<div class="copyright">
© 2022 –
<span itemprop="copyrightYear">2024</span>
<span class="with-love">
<i class="fa fa-cat"></i>
</span>
<span class="author" itemprop="copyrightHolder">jdh</span>
</div>
<div class="powered-by">Powered by <a href="https://hexo.io/" rel="noopener" target="_blank">Hexo</a> & <a href="https://theme-next.js.org/" rel="noopener" target="_blank">NexT.Gemini</a>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/animejs@3.2.1/lib/anime.min.js" integrity="sha256-XL2inqUJaslATFnHdJOi9GfQ60on8Wx1C2H8DYiN1xY=" crossorigin="anonymous"></script>
<script src="/js/comments.js"></script><script src="/js/utils.js"></script><script src="/js/motion.js"></script><script src="/js/next-boot.js"></script>
</body>
</html>