-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1198 lines (424 loc) · 28.3 KB
/
index.html
File metadata and controls
1198 lines (424 loc) · 28.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
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 class="theme-next pisces use-motion" lang="en">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta name="theme-color" content="#222">
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=5.1.4" rel="stylesheet" type="text/css" />
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png?v=5.1.4">
<link rel="mask-icon" href="/images/logo.svg?v=5.1.4" color="#222">
<meta name="keywords" content="Hexo, NexT" />
<meta property="og:type" content="website">
<meta property="og:title" content="Gzd's Blog">
<meta property="og:url" content="http://yoursite.com/index.html">
<meta property="og:site_name" content="Gzd's Blog">
<meta property="og:locale" content="en_US">
<meta property="article:author" content="Zhendong Guo">
<meta name="twitter:card" content="summary">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Pisces',
version: '5.1.4',
sidebar: {"position":"left","display":"hide","offset":12,"b2t":false,"scrollpercent":false,"onmobile":false},
fancybox: true,
tabs: true,
motion: {"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},
duoshuo: {
userId: '0',
author: 'Author'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="http://yoursite.com/"/>
<title>Gzd's Blog</title>
<meta name="generator" content="Hexo 4.2.1"></head>
<body itemscope itemtype="http://schema.org/WebPage" lang="en">
<div class="container sidebar-position-left
page-home">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">Gzd's Blog</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle"></p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />
Home
</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags/" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br />
Tags
</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories/" rel="section">
<i class="menu-item-icon fa fa-fw fa-th"></i> <br />
Categories
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />
Archives
</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<section id="posts" class="posts-expand">
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2021/02/12/%E8%AF%91%E6%96%87/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Zhendong Guo">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Gzd's Blog">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2021/02/12/%E8%AF%91%E6%96%87/" itemprop="url">译文</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2021-02-12T22:02:44+08:00">
2021-02-12
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="引言"><a href="#引言" class="headerlink" title="引言"></a>引言</h1><p>计算负载在不同处理元素之间的分配是并行计算中的一个重要问题。事实上,由于负载较少的进程等待负载较多的进程,导致同步空闲时间过长,不平衡的负载分配会强烈影响并行系统的性能。在本文中,我们重点讨论空间相关应用的并行执行中的负载平衡问题,其中域空间被分割成区域,分配给不同的处理元素。特别是,在不失通用性的前提下,我们考虑了著名的空间相关的蜂窝自动机计算范式来评估所提出的动态负载平衡方法。本文的主要贡献是推导了简单的闭式表达式,这些表达式允许以动态的方式计算最佳的工作负载分配,目标是保证在并行执行过程中完全平衡的工作负载分配。基于这些表达式,提出了一种细胞自动机平衡执行的算法,并利用MPI技术实现了该算法。最后,实验部分实际展示了所提出的动态负载均衡方法的行为,并证明了它与非均衡版本相比在性能上的改进,这一点可以从执行时间的明显减少中看出。<img src="译文.assets/image-20210212213537403.png" alt="image-20210212213537403"></p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2020/05/18/%E5%A6%82%E4%BD%95%E8%AE%BE%E7%BD%AE%E4%B8%A4%E5%8F%B0%E8%B7%AF%E7%94%B1%E5%99%A8%EF%BC%9F/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Zhendong Guo">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Gzd's Blog">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2020/05/18/%E5%A6%82%E4%BD%95%E8%AE%BE%E7%BD%AE%E4%B8%A4%E5%8F%B0%E8%B7%AF%E7%94%B1%E5%99%A8%EF%BC%9F/" itemprop="url">如何设置两台路由器?</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2020-05-18T10:17:33+08:00">
2020-05-18
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>因为路由器突然上不去网了,我的路由器在我的屋子里,连接的是第一台路由器,也就是主路由器。经过检查,主路由器是可以上网的。应该只是我这边的问题。</p>
<p>1.重置路由器</p>
<p>我的路由器是按住reset按钮5s重置</p>
<p>2.设置wan口</p>
<p>wan口是连接到主路由器的lan口上面的,所以首先需要把wan口设置为静态,设置一个合适的ip,比如说我的路由器,主路由器的ip地址为192.168.1.1(默认),那么我就把wan口设置为192.168.1.33,随便设置最后一个数字,只要没被占用就可以。</p>
<p>3.设置lan口</p>
<p>lan口更改ip地址为192.168.2.1,网管也更改为192.168.2.1。dns服务器为8.8.8.8。DHCP不需要改,默认就好</p>
<p>4.设置本机</p>
<p>我使用的是win10系统,所以操作流程如下:右键那个WLAN图标->打开网络和Internet设置->网络共享中心->连接的WLAN,点击这段蓝字->属性->双击 internet协议4->更改ip地址为192.168.2.125,网关为192.168.2.1,dns服务器为8.8.8.8。点击确定即可</p>
<p>至此,我的电脑能够正常上网了。</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2020/05/17/%E5%85%B3%E4%BA%8Ehexo-Next%E4%B8%BB%E9%A2%98%E7%9A%84%E4%B8%80%E7%95%AA%E6%8A%98%E8%85%BE/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Zhendong Guo">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Gzd's Blog">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2020/05/17/%E5%85%B3%E4%BA%8Ehexo-Next%E4%B8%BB%E9%A2%98%E7%9A%84%E4%B8%80%E7%95%AA%E6%8A%98%E8%85%BE/" itemprop="url">关于hexo Next主题的一番折腾</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2020-05-17T22:51:37+08:00">
2020-05-17
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>在按照教程安装完Next主题后,一直折腾两个问题:</p>
<p>1.开启了Next的tags后,使用hexo new page “tags”,修改index.html后,点击tags仍然无法访问,显示error:can not get xxx</p>
<p>解决办法:<br>将这个error转换为URL后,发现是因为站点设置的_config.yaml文件中的menu中的tags后有空格,把空格删去即可。</p>
<p>2.sidebar侧边栏的posts点进去也是显示error。</p>
<p>解决办法:<br>和上面一样,先转换为正常的URL连接,发现是sidebar.swig中的split函数无法正常工作。直接删掉这个判断,直接执行else中的语句即可。</p>
<p>至此,算是折腾完了Next主题,能正常使用了。</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2020/05/17/%E8%80%83%E7%A0%94%E6%95%B0%E5%AD%A6/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Zhendong Guo">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Gzd's Blog">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2020/05/17/%E8%80%83%E7%A0%94%E6%95%B0%E5%AD%A6/" itemprop="url">考研高数</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2020-05-17T15:36:29+08:00">
2020-05-17
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>本博文主要记载一些备考途中遇到的一些不会的,以防忘记,本篇博文会持续更新下去。</p>
<h1 id="积分知识"><a href="#积分知识" class="headerlink" title="积分知识"></a>积分知识</h1><h2 id="1-未知积分"><a href="#1-未知积分" class="headerlink" title="1.未知积分"></a>1.未知积分</h2><script type="math/tex; mode=display">
\int \sqrt{\frac{1-x}{1+x}} \ dx</script><p>解法:</p>
<script type="math/tex; mode=display">\begin{array}{l}
\int \sqrt{\frac{(1-x)}{(1+x)} /} d x \\
=\int\sqrt{\frac{(1-x)^{2}}{(1+x)(1-x)} } d x \\
=\int\frac{1}{(1-x^{2})} d x- \int\frac{x}{(1-x^2)} d x \\
=\arcsin x+\sqrt{( 1-x^{2})} +C
\end{array}</script><h2 id="2-积分对称"><a href="#2-积分对称" class="headerlink" title="2.积分对称"></a>2.积分对称</h2><p>二重积分当中</p>
<ul>
<li>如果被积函数f(x)关于x为奇函数,当积分区域关于y轴对称时,积分结果为0</li>
<li>如果被积函数f(x)关于y为奇函数,当积分区域关于x轴对称时,积分结果为0</li>
</ul>
<p>如何判断二元函数关于某个自变量是否为奇函数?<br>将另一个自变量看做一个常数,利用奇函数性质判断即可。</p>
<h2 id="3-积分轮换对称性"><a href="#3-积分轮换对称性" class="headerlink" title="3.积分轮换对称性"></a>3.积分轮换对称性</h2><p><strong>任何积分都具有轮转对称性!</strong></p>
<p>对于二元积分而言,轮转对称性表示:被积函数x和y相互替换,重新画出积分区域(两积分区域关于y=x对称)后,积分结果仍然不变。本质是自变量的转换。</p>
<ul>
<li>如果两积分区域组成一个矩形,且该函数可以分离x,y。则有:该积分等于对x的积分和y的积分的乘积。</li>
<li>如果积分的积分区域正好关于y=x对称,显然,经过转换后积分,积分区域并不需要改变。</li>
</ul>
<h1 id="多元函数的积分"><a href="#多元函数的积分" class="headerlink" title="多元函数的积分"></a>多元函数的积分</h1><h2 id="1-玫瑰曲线的面积"><a href="#1-玫瑰曲线的面积" class="headerlink" title="1.玫瑰曲线的面积"></a>1.玫瑰曲线的面积</h2><p>已知玫瑰曲线的方程为</p>
<script type="math/tex; mode=display">r=acos(k\theta)</script><p>当k为偶数的时候:</p>
<script type="math/tex; mode=display">\frac{1}{2} \int_{0}^{2 \pi}(a \cos (k \theta))^{2} d \theta=\frac{a^{2}}{2}\left(\pi+\frac{\sin (4 k \pi)}{4 k}\right)=\frac{\pi a^{2}}{2}</script><p>当k为奇数的时候:</p>
<script type="math/tex; mode=display">\frac{1}{2} \int_{0}^{ \pi}(a \cos (k \theta))^{2} d \theta=\frac{a^{2}}{4}\left(\pi+\frac{\sin (4 k \pi)}{4 k}\right)=\frac{\pi a^{2}}{4}</script><p>为什么k为奇数的时候,面积只有一半呢?</p>
<p>因为参数为k的玫瑰线,在区间上会形成2k个花瓣,其中k个极径为正,k个极径为负。<br>极径为负的花瓣也是存在的,一样能算面积,所以要包括在积分之内。<br>当k为奇数时,k个正极径花瓣和k个负极径花瓣两两重叠,所以面积少了一半。这个自己画一画就知道了。</p>
<h2 id="2-三重积分"><a href="#2-三重积分" class="headerlink" title="2.三重积分"></a>2.三重积分</h2><p>三重积分转换为求面坐标的时候需要注意一下几点:</p>
<ul>
<li>按照课本上的 $\theta$ 和 $\varphi$,其中$\theta$为z轴到z轴负方向所能转向的最大角度。$\varphi$为几何体在xoy平面上的投影所涵盖的角度。</li>
</ul>
<h2 id="3-极坐标转换"><a href="#3-极坐标转换" class="headerlink" title="3.极坐标转换"></a>3.极坐标转换</h2><p>极坐标转换后的积分角度不是正常的0-2$\pi$,目前已知一下情况:</p>
<ul>
<li>被积分函数存在根号,通过转换后可以消除根号。</li>
</ul>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2020/05/17/hello-world/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Zhendong Guo">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Gzd's Blog">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2020/05/17/hello-world/" itemprop="url">Hello World</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2020-05-17T11:07:09+08:00">
2020-05-17
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>Welcome to <a href="https://hexo.io/" target="_blank" rel="noopener">Hexo</a>! This is your very first post. Check <a href="https://hexo.io/docs/" target="_blank" rel="noopener">documentation</a> for more info. If you get any problems when using Hexo, you can find the answer in <a href="https://hexo.io/docs/troubleshooting.html" target="_blank" rel="noopener">troubleshooting</a> or you can ask me on <a href="https://github.com/hexojs/hexo/issues" target="_blank" rel="noopener">GitHub</a>.</p>
<h2 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h2><h3 id="Create-a-new-post"><a href="#Create-a-new-post" class="headerlink" title="Create a new post"></a>Create a new post</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo new <span class="string">"My New Post"</span></span><br></pre></td></tr></table></figure>
<p>More info: <a href="https://hexo.io/docs/writing.html" target="_blank" rel="noopener">Writing</a></p>
<h3 id="Run-server"><a href="#Run-server" class="headerlink" title="Run server"></a>Run server</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo server</span><br></pre></td></tr></table></figure>
<p>More info: <a href="https://hexo.io/docs/server.html" target="_blank" rel="noopener">Server</a></p>
<h3 id="Generate-static-files"><a href="#Generate-static-files" class="headerlink" title="Generate static files"></a>Generate static files</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo generate</span><br></pre></td></tr></table></figure>
<p>More info: <a href="https://hexo.io/docs/generating.html" target="_blank" rel="noopener">Generating</a></p>
<h3 id="Deploy-to-remote-sites"><a href="#Deploy-to-remote-sites" class="headerlink" title="Deploy to remote sites"></a>Deploy to remote sites</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo deploy</span><br></pre></td></tr></table></figure>
<p>More info: <a href="https://hexo.io/docs/one-command-deployment.html" target="_blank" rel="noopener">Deployment</a></p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
</section>
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<section class="site-overview-wrap sidebar-panel sidebar-panel-active">
<div class="site-overview">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<p class="site-author-name" itemprop="name">Zhendong Guo</p>
<p class="site-description motion-element" itemprop="description"></p>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">5</span>
<span class="site-state-item-name">posts</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/index.html">
<span class="site-state-item-count">5</span>
<span class="site-state-item-name">tags</span>
</a>
</div>
</nav>
</div>
</section>
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright">© <span itemprop="copyrightYear">2021</span>
<span class="with-love">
<i class="fa fa-user"></i>
</span>
<span class="author" itemprop="copyrightHolder">Zhendong Guo</span>
</div>
<div class="powered-by">Powered by <a class="theme-link" target="_blank" href="https://hexo.io">Hexo</a></div>