-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1029 lines (628 loc) · 40.1 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, initial-scale=1, maximum-scale=2">
<meta name="theme-color" content="#222">
<meta name="generator" content="Hexo 4.0.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="//fonts.googleapis.com/css?family=EB Garamond:300,300italic,400,400italic,700,700italic&display=swap&subset=latin,latin-ext">
<link rel="stylesheet" href="/lib/font-awesome/css/font-awesome.min.css">
<script id="hexo-configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Muse',
version: '7.5.0',
exturl: false,
sidebar: {"position":"left","display":"post","offset":12,"onmobile":false},
copycode: {"enable":false,"show_result":false,"style":null},
back2top: {"enable":true,"sidebar":false,"scrollpercent":false},
bookmark: {"enable":false,"color":"#222","save":"auto"},
fancybox: false,
mediumzoom: false,
lazyload: false,
pangu: false,
algolia: {
appID: '',
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"}
},
localsearch: {"enable":false,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},
path: '',
motion: {"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},
translation: {
copy_button: '复制',
copy_success: '复制成功',
copy_failure: '复制失败'
},
sidebarPadding: 40
};
</script>
<meta property="og:type" content="website">
<meta property="og:title" content="Yan-Blog/Github">
<meta property="og:url" content="http://yoursite.com/index.html">
<meta property="og:site_name" content="Yan-Blog/Github">
<meta property="og:locale" content="zh-CN">
<meta name="twitter:card" content="summary">
<link rel="canonical" href="http://yoursite.com/">
<script id="page-configurations">
// https://hexo.io/docs/variables.html
CONFIG.page = {
sidebar: "",
isHome: true,
isPost: false,
isPage: false,
isArchive: false
};
</script>
<title>Yan-Blog/Github</title>
<noscript>
<style>
.use-motion .brand,
.use-motion .menu-item,
.sidebar-inner,
.use-motion .post-block,
.use-motion .pagination,
.use-motion .comments,
.use-motion .post-header,
.use-motion .post-body,
.use-motion .collection-header { opacity: initial; }
.use-motion .site-title,
.use-motion .site-subtitle {
opacity: initial;
top: initial;
}
.use-motion .logo-line-before i { left: initial; }
.use-motion .logo-line-after i { right: initial; }
</style>
</noscript>
</head>
<body itemscope itemtype="http://schema.org/WebPage">
<div class="container use-motion">
<div class="headband"></div>
<header class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-container">
<div class="site-meta">
<div>
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">Yan-Blog/Github</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
</div>
<div class="site-nav-toggle">
<div class="toggle" aria-label="切换导航栏">
<span class="toggle-line toggle-line-first"></span>
<span class="toggle-line toggle-line-middle"></span>
<span class="toggle-line toggle-line-last"></span>
</div>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section"><i class="fa fa-fw fa-home"></i>首页</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section"><i class="fa fa-fw fa-archive"></i>归档</a>
</li>
</ul>
</nav>
</div>
</header>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
<span>0%</span>
</div>
<main class="main">
<div class="main-inner">
<div class="content-wrap">
<div class="content">
<div class="posts-expand">
<article itemscope itemtype="http://schema.org/Article" class="post-block home" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2020/08/15/Show-me-your-CODE/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/touxiang.jpg">
<meta itemprop="name" content="Yan">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Yan-Blog/Github">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a href="/2020/08/15/Show-me-your-CODE/" class="post-title-link" itemprop="url">Show me your CODE</a>
</h1>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-08-15 00:17:20 / 修改时间:00:25:43" itemprop="dateCreated datePublished" datetime="2020-08-15T00:17:20+08:00">2020-08-15</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<span class="post-meta-item-text">Valine:</span>
<a title="valine" href="/2020/08/15/Show-me-your-CODE/#comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2020/08/15/Show-me-your-CODE/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>Finding…</p>
<h2 id="远方的最后一段"><a href="#远方的最后一段" class="headerlink" title="远方的最后一段"></a>远方的最后一段</h2><h3 id="节选自海子的诗"><a href="#节选自海子的诗" class="headerlink" title="-节选自海子的诗"></a>-节选自海子的诗</h3><p>这些不能触摸的 姐妹<br>这些不能触摸的 血<br>这些不能触摸的 远方的幸福</p>
<p>远方的幸福 是多少痛苦</p>
<p>想买一件衣服叫做Show me your code…要换手机了..</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block home" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2020/07/19/%E6%9C%BA%E6%A2%B0%E9%9D%A9%E5%91%BD%E6%B7%BB%E5%8A%A0%E5%86%85%E5%AD%98%E6%9D%A1/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/touxiang.jpg">
<meta itemprop="name" content="Yan">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Yan-Blog/Github">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a href="/2020/07/19/%E6%9C%BA%E6%A2%B0%E9%9D%A9%E5%91%BD%E6%B7%BB%E5%8A%A0%E5%86%85%E5%AD%98%E6%9D%A1/" class="post-title-link" itemprop="url">机械革命添加内存条清灰</a>
</h1>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-07-19 11:40:02 / 修改时间:11:50:30" itemprop="dateCreated datePublished" datetime="2020-07-19T11:40:02+08:00">2020-07-19</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<span class="post-meta-item-text">Valine:</span>
<a title="valine" href="/2020/07/19/%E6%9C%BA%E6%A2%B0%E9%9D%A9%E5%91%BD%E6%B7%BB%E5%8A%A0%E5%86%85%E5%AD%98%E6%9D%A1/#comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2020/07/19/%E6%9C%BA%E6%A2%B0%E9%9D%A9%E5%91%BD%E6%B7%BB%E5%8A%A0%E5%86%85%E5%AD%98%E6%9D%A1/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>今天给笔记本电脑加了内存条,那速度哈哈哈哈.<br>注:(我笔记本型号为Z2-air)<br>咳咳,话不多说,直接开整,下面说一下要注意的一些点:</p>
<h1 id="1-拆电脑"><a href="#1-拆电脑" class="headerlink" title="1.拆电脑"></a>1.拆电脑</h1><p>首先电脑我们都会拆,但是有个坑就是你螺丝刀的选择,要尽量选择偏大一点的,要不然可能出现拧不动的情况,还有尽可能一开始就使用最大力气去拧开.</p>
<h1 id="2-加内存条"><a href="#2-加内存条" class="headerlink" title="2.加内存条"></a>2.加内存条</h1><p>这一步比较简单,从淘宝找到你需要的内存条然后按照b站教程安装.</p>
<h1 id="3-清灰"><a href="#3-清灰" class="headerlink" title="3.清灰"></a>3.清灰</h1><p>清灰这个拆风扇,我是在b站学的,小伙伴们可以去b站自己搜教程.搜到之后,可以用一些酒精棉或者酒精巾来擦拭,然后用刷子沾水,再用嘴吹,泥水就会出来了,吹完之后用纸或酒精棉擦拭,干的太慢可以去太阳晒一下.</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block home" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2020/06/24/%E5%B2%81%E6%9C%88/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/touxiang.jpg">
<meta itemprop="name" content="Yan">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Yan-Blog/Github">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a href="/2020/06/24/%E5%B2%81%E6%9C%88/" class="post-title-link" itemprop="url">岁月</a>
</h1>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-06-24 20:30:51 / 修改时间:20:49:01" itemprop="dateCreated datePublished" datetime="2020-06-24T20:30:51+08:00">2020-06-24</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<span class="post-meta-item-text">Valine:</span>
<a title="valine" href="/2020/06/24/%E5%B2%81%E6%9C%88/#comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2020/06/24/%E5%B2%81%E6%9C%88/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="今天听了赵海洋的一首钢琴曲-很喜欢"><a href="#今天听了赵海洋的一首钢琴曲-很喜欢" class="headerlink" title="今天听了赵海洋的一首钢琴曲,很喜欢."></a>今天听了赵海洋的一首钢琴曲,很喜欢.</h2><h3 id="岁月"><a href="#岁月" class="headerlink" title="岁月"></a>岁月</h3><p>链接:<a href="http://music.163.com/song?id=522081421&userid=331161461" target="_blank" rel="noopener">岁月</a></p>
<h2 id="话说我音乐播放器没弄成功啊-kao-这次放假回家一定搞出来"><a href="#话说我音乐播放器没弄成功啊-kao-这次放假回家一定搞出来" class="headerlink" title="话说我音乐播放器没弄成功啊,kao,这次放假回家一定搞出来."></a>话说我音乐播放器没弄成功啊,kao,这次放假回家一定搞出来.</h2><h2 id="比漆黑更漆黑-比孤寂更孤寂-我不多的星辰"><a href="#比漆黑更漆黑-比孤寂更孤寂-我不多的星辰" class="headerlink" title="比漆黑更漆黑,比孤寂更孤寂,我不多的星辰."></a>比漆黑更漆黑,比孤寂更孤寂,我不多的星辰.</h2><p>突然听到这首也挺好听,其实我并不介意跑题.收藏了,奥利给,背单词!</p>
<p>链接:<a href="http://music.163.com/song?id=558114878&userid=331161461" target="_blank" rel="noopener">Hide To Hide</a></p>
<p>ps:(一天不背单词,金爷我就浑身难受)</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block home" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2020/05/28/%E8%A6%81%E5%BC%80%E5%AD%A6%E4%BA%86/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/touxiang.jpg">
<meta itemprop="name" content="Yan">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Yan-Blog/Github">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a href="/2020/05/28/%E8%A6%81%E5%BC%80%E5%AD%A6%E4%BA%86/" class="post-title-link" itemprop="url">'要开学了'</a>
</h1>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-05-28 11:24:37 / 修改时间:11:53:15" itemprop="dateCreated datePublished" datetime="2020-05-28T11:24:37+08:00">2020-05-28</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<span class="post-meta-item-text">Valine:</span>
<a title="valine" href="/2020/05/28/%E8%A6%81%E5%BC%80%E5%AD%A6%E4%BA%86/#comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2020/05/28/%E8%A6%81%E5%BC%80%E5%AD%A6%E4%BA%86/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="又要上学了"><a href="#又要上学了" class="headerlink" title="又要上学了"></a>又要上学了</h1><h3 id="更新博客一篇"><a href="#更新博客一篇" class="headerlink" title="更新博客一篇"></a>更新博客一篇</h3><h3 id="总结自己的技术栈"><a href="#总结自己的技术栈" class="headerlink" title="总结自己的技术栈:"></a>总结自己的技术栈:</h3><h3 id="前端css会一点-JavaScript基础的事件绑定还有原型属性方法基本没问题-还有nodejs的异步-回调函数async等等"><a href="#前端css会一点-JavaScript基础的事件绑定还有原型属性方法基本没问题-还有nodejs的异步-回调函数async等等" class="headerlink" title="前端css会一点,JavaScript基础的事件绑定还有原型属性方法基本没问题,还有nodejs的异步,回调函数async等等."></a>前端css会一点,JavaScript基础的事件绑定还有原型属性方法基本没问题,还有nodejs的异步,回调函数async等等.</h3><h3 id="vue的学习组件传值-路由问题-还有ui组件的简单使用-还看了一点jquery的源码"><a href="#vue的学习组件传值-路由问题-还有ui组件的简单使用-还看了一点jquery的源码" class="headerlink" title="vue的学习组件传值,路由问题,还有ui组件的简单使用,还看了一点jquery的源码,"></a>vue的学习组件传值,路由问题,还有ui组件的简单使用,还看了一点jquery的源码,</h3><h3 id="前端源码解析"><a href="#前端源码解析" class="headerlink" title="前端源码解析"></a><a href="https://zhuanlan.zhihu.com/p/97813399" target="_blank" rel="noopener">前端源码解析</a></h3><h1 id="开始学习c-微软的亲儿子-嗯-真香"><a href="#开始学习c-微软的亲儿子-嗯-真香" class="headerlink" title="开始学习c#微软的亲儿子,嗯,真香!"></a>开始学习c#微软的亲儿子,嗯,真香!</h1><h1 id="短歌行-(陆机诗作)"><a href="#短歌行-(陆机诗作)" class="headerlink" title="短歌行 (陆机诗作)"></a>短歌行 (陆机诗作)</h1><p>置酒高堂,悲歌临觞。<br>人生几何,逝如朝霜。<br>时无重至,华不再扬。<br>蘋以春晖,兰以秋芳。<br>来日苦短,去日苦长。<br>今我不乐,蟋蟀在房。<br>乐以会兴,悲以别章。<br>岂曰无感,忧为子忘。<br>我酒既旨,我肴既臧。<br>短歌可咏,长夜无荒。</p>
<h3 id="因为人的寿命短促,虽然临觞作乐,也只能悲歌慷慨,难以忘怀忧愁。人生在人世间,就好像早晨的露珠一样,转瞬就会逝去。时间不会重新再来,花也不可能再次开放。苹只在春天绽放光彩,兰只在秋天发出芬芳。剩下的日子苦短难耐,过去的日子让人感到苦闷惆怅。人应当及时享乐,因与友人相会而快乐,以分别而感到悲伤。哪里会没有这样的人生感触,只是因为见到我的朋友而忘却忧愁了。我的酒肴十分美好,就让自己尽情地品尝享受吧!去吟咏短歌,及时取乐,而不至于荒废岁月。"><a href="#因为人的寿命短促,虽然临觞作乐,也只能悲歌慷慨,难以忘怀忧愁。人生在人世间,就好像早晨的露珠一样,转瞬就会逝去。时间不会重新再来,花也不可能再次开放。苹只在春天绽放光彩,兰只在秋天发出芬芳。剩下的日子苦短难耐,过去的日子让人感到苦闷惆怅。人应当及时享乐,因与友人相会而快乐,以分别而感到悲伤。哪里会没有这样的人生感触,只是因为见到我的朋友而忘却忧愁了。我的酒肴十分美好,就让自己尽情地品尝享受吧!去吟咏短歌,及时取乐,而不至于荒废岁月。" class="headerlink" title="因为人的寿命短促,虽然临觞作乐,也只能悲歌慷慨,难以忘怀忧愁。人生在人世间,就好像早晨的露珠一样,转瞬就会逝去。时间不会重新再来,花也不可能再次开放。苹只在春天绽放光彩,兰只在秋天发出芬芳。剩下的日子苦短难耐,过去的日子让人感到苦闷惆怅。人应当及时享乐,因与友人相会而快乐,以分别而感到悲伤。哪里会没有这样的人生感触,只是因为见到我的朋友而忘却忧愁了。我的酒肴十分美好,就让自己尽情地品尝享受吧!去吟咏短歌,及时取乐,而不至于荒废岁月。"></a>因为人的寿命短促,虽然临觞作乐,也只能悲歌慷慨,难以忘怀忧愁。人生在人世间,就好像早晨的露珠一样,转瞬就会逝去。时间不会重新再来,花也不可能再次开放。苹只在春天绽放光彩,兰只在秋天发出芬芳。剩下的日子苦短难耐,过去的日子让人感到苦闷惆怅。人应当及时享乐,因与友人相会而快乐,以分别而感到悲伤。哪里会没有这样的人生感触,只是因为见到我的朋友而忘却忧愁了。我的酒肴十分美好,就让自己尽情地品尝享受吧!去吟咏短歌,及时取乐,而不至于荒废岁月。</h3>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block home" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2020/04/27/%E9%9F%B3%E4%B9%90%E6%92%AD%E6%94%BE%E5%99%A8%E6%94%B9%E9%80%A0/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/touxiang.jpg">
<meta itemprop="name" content="Yan">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Yan-Blog/Github">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a href="/2020/04/27/%E9%9F%B3%E4%B9%90%E6%92%AD%E6%94%BE%E5%99%A8%E6%94%B9%E9%80%A0/" class="post-title-link" itemprop="url">音乐播放器改造</a>
</h1>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-04-27 16:40:13" itemprop="dateCreated datePublished" datetime="2020-04-27T16:40:13+08:00">2020-04-27</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<span class="post-meta-item-text">Valine:</span>
<a title="valine" href="/2020/04/27/%E9%9F%B3%E4%B9%90%E6%92%AD%E6%94%BE%E5%99%A8%E6%94%B9%E9%80%A0/#comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2020/04/27/%E9%9F%B3%E4%B9%90%E6%92%AD%E6%94%BE%E5%99%A8%E6%94%B9%E9%80%A0/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block home" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2019/11/12/%E5%AD%A4%E8%BA%AB/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/touxiang.jpg">
<meta itemprop="name" content="Yan">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Yan-Blog/Github">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a href="/2019/11/12/%E5%AD%A4%E8%BA%AB/" class="post-title-link" itemprop="url">孤身</a>
</h1>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2019-11-12 23:01:24 / 修改时间:23:31:49" itemprop="dateCreated datePublished" datetime="2019-11-12T23:01:24+08:00">2019-11-12</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<span class="post-meta-item-text">Valine:</span>
<a title="valine" href="/2019/11/12/%E5%AD%A4%E8%BA%AB/#comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2019/11/12/%E5%AD%A4%E8%BA%AB/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>1.今天茂茂额,希望他之后能好点吧.</p>
<p>2.阮一峰回复我了哈哈,就是不知道是不是本人呢.</p>
<p>3.vue的学习还要继续巩固,现在对前后端的交互已经很了解了,我想学后端了,但是又对Java无感,也看不太上php,python在后端也不太行啊啊.<br>也服了.</p>
<p>4.下载了docker,还没用上,Hbuilder真是国内编辑器的一股清流啊,uniapp好像挺火?目前对于框架的误解已经消失,脚踏实地学技术啊啊.</p>
<p>5.要怎么说呢,要怎么办呢,生活依然继续,我也还要努力啊,争取月薪过万哈哈哈.</p>
<p>6.新学习的Markdown语法,练习下,嘿嘿</p>
<p><del>送上一首孤身</del><br><a href="http://music.163.com/song/1365393542/?userid=331161461" target="_blank" rel="noopener">网易云音乐</a><br><del>还有一个激励人的(<em>^▽^</em>)</del><br><a href="http://music.163.com/song/546724077/?userid=331161461" target="_blank" rel="noopener">网易云音乐</a><br><a href="http://music.163.com/song/610735/?userid=331161461" target="_blank" rel="noopener">白色相簿的季节</a></p>
<h2 id="不小心又分享了几个"><a href="#不小心又分享了几个" class="headerlink" title="不小心又分享了几个,,"></a>不小心又分享了几个,,</h2><h3 id="At-last-For-my-dear-people"><a href="#At-last-For-my-dear-people" class="headerlink" title="At last,For my dear people."></a>At last,For my dear people.</h3>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block home" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2019/11/11/%E7%BE%8E%E5%8C%96%E5%8D%9A%E5%AE%A2%E8%BF%87%E7%A8%8B/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/touxiang.jpg">
<meta itemprop="name" content="Yan">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Yan-Blog/Github">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a href="/2019/11/11/%E7%BE%8E%E5%8C%96%E5%8D%9A%E5%AE%A2%E8%BF%87%E7%A8%8B/" class="post-title-link" itemprop="url">美化博客过程</a>
</h1>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2019-11-11 18:01:41" itemprop="dateCreated datePublished" datetime="2019-11-11T18:01:41+08:00">2019-11-11</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-check-o"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2020-04-27 16:44:31" itemprop="dateModified" datetime="2020-04-27T16:44:31+08:00">2020-04-27</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<span class="post-meta-item-text">Valine:</span>
<a title="valine" href="/2019/11/11/%E7%BE%8E%E5%8C%96%E5%8D%9A%E5%AE%A2%E8%BF%87%E7%A8%8B/#comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2019/11/11/%E7%BE%8E%E5%8C%96%E5%8D%9A%E5%AE%A2%E8%BF%87%E7%A8%8B/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="wow-好累啊-明天再搞吧"><a href="#wow-好累啊-明天再搞吧" class="headerlink" title="wow,好累啊,明天再搞吧"></a>wow,好累啊,明天再搞吧</h2><h2 id=""><a href="#" class="headerlink" title="(+=+)"></a>(+=+)</h2>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block home" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2019/11/10/%E6%88%91%E7%9A%84%E7%AC%AC%E4%B8%80%E7%AF%87%E5%8D%9A%E5%AE%A2-2019-11-10/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/touxiang.jpg">
<meta itemprop="name" content="Yan">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Yan-Blog/Github">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a href="/2019/11/10/%E6%88%91%E7%9A%84%E7%AC%AC%E4%B8%80%E7%AF%87%E5%8D%9A%E5%AE%A2-2019-11-10/" class="post-title-link" itemprop="url">我的第一篇博客-2019/11/10</a>
</h1>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2019-11-10 15:40:45 / 修改时间:15:43:55" itemprop="dateCreated datePublished" datetime="2019-11-10T15:40:45+08:00">2019-11-10</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<span class="post-meta-item-text">Valine:</span>
<a title="valine" href="/2019/11/10/%E6%88%91%E7%9A%84%E7%AC%AC%E4%B8%80%E7%AF%87%E5%8D%9A%E5%AE%A2-2019-11-10/#comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2019/11/10/%E6%88%91%E7%9A%84%E7%AC%AC%E4%B8%80%E7%AF%87%E5%8D%9A%E5%AE%A2-2019-11-10/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="介绍"><a href="#介绍" class="headerlink" title="介绍"></a>介绍</h2><h2 id="基本使用"><a href="#基本使用" class="headerlink" title="基本使用"></a>基本使用</h2><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"><span class="built_in">print</span>(<span class="string">"Hello,World"</span>)</span><br></pre></td></tr></table></figure>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block home" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2019/11/10/hello-world/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/touxiang.jpg">
<meta itemprop="name" content="Yan">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Yan-Blog/Github">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a href="/2019/11/10/hello-world/" class="post-title-link" itemprop="url">Hello World</a>
</h1>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2019-11-10 15:33:06" itemprop="dateCreated datePublished" datetime="2019-11-10T15:33:06+08:00">2019-11-10</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<span class="post-meta-item-text">Valine:</span>
<a title="valine" href="/2019/11/10/hello-world/#comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2019/11/10/hello-world/" itemprop="commentCount"></span>
</a>
</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>
</article>
</div>
</div>
</div>
<div class="toggle sidebar-toggle">
<span class="toggle-line toggle-line-first"></span>
<span class="toggle-line toggle-line-middle"></span>
<span class="toggle-line toggle-line-last"></span>
</div>
<aside class="sidebar">
<div class="sidebar-inner">
<ul class="sidebar-nav motion-element">
<li class="sidebar-nav-toc">
文章目录
</li>
<li class="sidebar-nav-overview">
站点概览
</li>
</ul>
<!--noindex-->
<div class="post-toc-wrap sidebar-panel">
</div>
<!--/noindex-->
<div class="site-overview-wrap sidebar-panel">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image" alt="Yan"
src="/images/touxiang.jpg">
<p class="site-author-name" itemprop="name">Yan</p>
<div class="site-description" itemprop="description"></div>
</div>
<div class="site-state-wrap motion-element">
<nav class="site-state">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">9</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
</nav>
</div>
<div class="links-of-author motion-element">
<span class="links-of-author-item">
<a href="https://github.com/yanabcd" title="GitHub &rarr; https://github.com/yanabcd" rel="noopener" target="_blank"><i class="fa fa-fw fa-github"></i>GitHub</a>
</span>
<span class="links-of-author-item">
<a href="/mailto:[email protected]" title="E-Mail &rarr; mailto:[email protected]" rel="noopener" target="_blank"><i class="fa fa-fw fa-envelope"></i>E-Mail</a>
</span>
</div>
</div>
<div id="music163player">
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=330 height=450 src="https://music.163.com/outchain/player?type=0&id=5152040223&auto=1&height=430"></iframe>
</div>
</div>
</aside>
<div id="sidebar-dimmer"></div>
</div>
</main>
<footer class="footer">
<div class="footer-inner">
<div class="copyright">
©
<span itemprop="copyrightYear">2020</span>
<span class="with-love">
<i class="fa fa-user"></i>
</span>
<span class="author" itemprop="copyrightHolder">Yan</span>
</div>
<div class="powered-by">由 <a href="https://hexo.io/" class="theme-link" rel="noopener" target="_blank">Hexo</a> 强力驱动 v4.0.0
</div>
<span class="post-meta-divider">|</span>
<div class="theme-info">主题 – <a href="https://muse.theme-next.org/" class="theme-link" rel="noopener" target="_blank">NexT.Muse</a> v7.5.0
</div>
</div>
</footer>
</div>
<script color='115,182,211' opacity='0.8' zIndex='-1' count='99' src="/lib/canvas-nest/canvas-nest.min.js"></script>
<script src="/lib/anime.min.js"></script>
<script src="/lib/velocity/velocity.min.js"></script>
<script src="/lib/velocity/velocity.ui.min.js"></script>
<script src="/js/utils.js"></script><script src="/js/motion.js"></script>
<script src="/js/schemes/muse.js"></script>
<script src="/js/next-boot.js"></script>