-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1160 lines (748 loc) · 40.2 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=1">
<meta name="keywords" content="加速器, 科学上网, VPN, IT技巧, IT资讯 , AI , ChatGPT ">
<meta name="description" content="专注于科技IT、 人工智能、博客建站、工作生活和读书思考的博客">
<meta name="author" content="Nick Yam">
<title>
涯木博客
</title>
<link rel="stylesheet" href="/css/style.css">
<link rel="shortcut icon" href="/images/logo.svg">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/[email protected]/source/font/css/fontawesome.min.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/[email protected]/source/font/css/regular.min.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/[email protected]/source/font/css/solid.min.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/[email protected]/source/font/css/brands.min.css">
<script id="hexo-configurations">
let KEEP = window.KEEP || {}
KEEP.hexo_config = {"hostname":"blog.nickyam.com","root":"/","language":"zh-CN","path":"search.json"}
KEEP.theme_config = {"toc":{"enable":true,"number":true,"expand_all":false,"init_open":true},"style":{"primary_color":"#0066cc","logo":"/images/logo.svg","favicon":"/images/logo.svg","avatar":"/images/avatar.svg","font_size":null,"font_family":null,"hover":{"shadow":true,"scale":true},"first_screen":{"enable":true,"header_transparent":false,"background_img":"/images/bg.svg","description":"Keep writing and Keep loving.","font_color":null,"hitokoto":true},"scroll":{"progress_bar":false,"percent":true}},"local_search":{"enable":true,"preload":true},"code_copy":{},"code_block":{"tools":{"enable":true,"style":"mac"},"highlight_theme":"default"},"side_tools":{},"pjax":{"enable":true},"lazyload":{"enable":false},"comment":{"enable":true,"use":"waline","valine":{"appid":null,"appkey":null,"server_urls":null,"placeholder":null},"gitalk":{"github_id":null,"github_admins":null,"repository":null,"client_id":null,"client_secret":null,"proxy":null},"twikoo":{"env_id":null,"region":null,"version":"1.6.8"},"waline":{"server_url":"https://waline.nickyam.com","reaction":true,"version":2}},"post":{"author_label":{"enable":true,"auto":true,"custom_label_list":["Trainee","Engineer","Architect"]},"word_count":{"enable":true,"wordcount":true,"min2read":true},"img_align":"left","copyright_info":true},"version":"3.6.1"}
KEEP.language_ago = {"second":"%s 秒前","minute":"%s 分钟前","hour":"%s 小时前","day":"%s 天前","week":"%s 周前","month":"%s 个月前","year":"%s 年前"}
KEEP.language_code_block = {"copy":"复制代码","copied":"已复制","fold":"折叠代码块","folded":"已折叠"}
KEEP.language_copy_copyright = {"copy":"复制版权信息","copied":"已复制","title":"原文标题","author":"原文作者","link":"原文链接"}
</script>
<meta name="generator" content="Hexo 6.3.0"><link rel="alternate" href="/atom.xml" title="涯木博客" type="application/atom+xml">
</head>
<body>
<div class="progress-bar-container">
<span class="pjax-progress-bar"></span>
<i class="pjax-progress-icon fas fa-circle-notch fa-spin"></i>
</div>
<main class="page-container">
<div class="first-screen-container flex-center fade-in-down-animation">
<div class="content flex-center">
<div class="description hitokoto">
<div class="desc-item">Keep writing and Keep loving.</div>
</div>
<script async data-pjax
src="https://v1.hitokoto.cn/?encode=js"
>
</script>
<div class="s-icon-list">
<div class="tooltip s-icon-item "
data-content="GitHub"
data-name="github"
>
<a target="_blank" href="https://github.com/nickyam">
<i class="fab fa-github"></i>
</a>
</div>
<div class="tooltip s-icon-item tooltip-img clear"
data-content="微信"
data-name="weixin"
data-img-url=./images/wechat.png
>
<i class="fab fa-weixin"></i>
</div>
<div class="tooltip s-icon-item "
data-content="推特"
data-name="twitter"
>
<a target="_blank" href="https://twitter.com/nickyam513">
<i class="fab fa-twitter"></i>
</a>
</div>
<div class="tooltip s-icon-item "
data-content="Email"
data-name="email"
>
<a href="mailto:[email protected]">
<i class="fas fa-envelope"></i>
</a>
</div>
</div>
</div>
</div>
<div class="page-main-content is-home">
<div class="page-main-content-top">
<header class="header-wrapper">
<div class="header-content has-first-screen">
<div class="left">
<a class="logo-image" href="/">
<img src="/images/logo.svg">
</a>
<a class="logo-title" href="/">
涯木博客
</a>
</div>
<div class="right">
<div class="pc">
<ul class="menu-list">
<li class="menu-item">
<a class="active"
href="/"
>
首页
</a>
</li>
<li class="menu-item">
<a class=""
target="_blank" rel="noopener" href="https://app.nickyam.com/"
>
APP
</a>
</li>
<li class="menu-item">
<a class=""
target="_blank" rel="noopener" href="https://i.nickyam.com/tag/VPN"
>
VPN
</a>
</li>
<li class="menu-item">
<a class=""
href="/archives"
>
归档
</a>
</li>
<li class="menu-item">
<a class=""
href="/tags"
>
标签
</a>
</li>
<li class="menu-item">
<a class=""
target="_blank" rel="noopener" href="https://book.nickyam.com/"
>
藏书
</a>
</li>
<li class="menu-item">
<a class=""
href="/links"
>
友链
</a>
</li>
<li class="menu-item">
<a class=""
href="/about"
>
关于
</a>
</li>
<li class="menu-item search search-popup-trigger">
<i class="fas fa-search"></i>
</li>
</ul>
</div>
<div class="mobile">
<div class="icon-item search search-popup-trigger"><i class="fas fa-search"></i></div>
<div class="icon-item menu-bar">
<div class="menu-bar-middle"></div>
</div>
</div>
</div>
</div>
<div class="header-drawer">
<ul class="drawer-menu-list">
<li class="drawer-menu-item flex-center">
<a class="active"
href="/">首页</a>
</li>
<li class="drawer-menu-item flex-center">
<a class=""
target="_blank" rel="noopener" href="https://app.nickyam.com/">APP</a>
</li>
<li class="drawer-menu-item flex-center">
<a class=""
target="_blank" rel="noopener" href="https://i.nickyam.com/tag/VPN">VPN</a>
</li>
<li class="drawer-menu-item flex-center">
<a class=""
href="/archives">归档</a>
</li>
<li class="drawer-menu-item flex-center">
<a class=""
href="/tags">标签</a>
</li>
<li class="drawer-menu-item flex-center">
<a class=""
target="_blank" rel="noopener" href="https://book.nickyam.com/">藏书</a>
</li>
<li class="drawer-menu-item flex-center">
<a class=""
href="/links">友链</a>
</li>
<li class="drawer-menu-item flex-center">
<a class=""
href="/about">关于</a>
</li>
</ul>
</div>
<div class="window-mask"></div>
</header>
</div>
<div class="page-main-content-middle">
<div class="main-content">
<div class="home-content-container fade-in-down-animation">
<ul class="home-article-list">
<li class="home-article-item">
<h3 class="home-article-title">
<a href="/tech/how-to-resolve-abnormal-display-of-192-in-mac-terminal-hostname.html">
Mac终端主机名不正常显示192的解决方法
</a>
</h3>
<!-- 在适当的位置插入谷歌广告代码 -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7114121088728794" crossorigin="anonymous"></script>
<div class="home-article-content keep-markdown-body">
一般来说,Mac终端正常情况下是显示用户名的。终端的主机名实际上是和“系统偏好设置-通用-关于本机”中的电脑名称是一致的。
不过,有时候会出现打开终端后,主机名变为“192”的异常现象。
该问题出现的原因主要是当路由器的DNS使用默认的192.16...
</div>
<div class="home-article-meta-info-container">
<div class="home-article-meta-info">
<span>
<i class="fas fa-history"></i>
<span class="home-article-date" data-updated="Thu Feb 01 2024 12:31:32 GMT+0800">
2024-02-01
</span>
</span>
<span class="home-article-category"><i class="fas fa-folder"></i>
<ul>
<li>
<a href="/categories/tech/">⓶科技</a>
</li>
</ul>
</span>
<span class="home-article-tag">
<i class="fas fa-tags"></i>
<ul>
<li>
<a href="/tags/Mac/">Mac</a>
</li>
</ul>
</span>
</div>
<a class="read-more" href="/tech/how-to-resolve-abnormal-display-of-192-in-mac-terminal-hostname.html">阅读全文 <i class="fas fa-angle-right"></i></a>
</div>
</li>
<li class="home-article-item">
<h3 class="home-article-title">
<a href="/tech/Recommended-Markdown-Editor-for-Best-Use.html">
两款最好用的Markdown编辑器推荐
</a>
</h3>
<!-- 在适当的位置插入谷歌广告代码 -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7114121088728794" crossorigin="anonymous"></script>
<div class="home-article-content keep-markdown-body">
今天又看到有小伙伴在争论 Markdown 到底好不好用。
私以为,如果觉得不好用,那你本身就不是 Markdown 的受众。Markdown从设计之初就无法满足譬如页眉页脚页码,水印目录居中、标宋仿宋红头等等的功能需求。
Markdown 语言在 ...
</div>
<div class="home-article-meta-info-container">
<div class="home-article-meta-info">
<span>
<i class="fas fa-history"></i>
<span class="home-article-date" data-updated="Sat Nov 04 2023 21:08:56 GMT+0800">
2023-11-04
</span>
</span>
<span class="home-article-category"><i class="fas fa-folder"></i>
<ul>
<li>
<a href="/categories/tech/">⓶科技</a>
</li>
</ul>
</span>
<span class="home-article-tag">
<i class="fas fa-tags"></i>
<ul>
<li>
<a href="/tags/Markdown/">Markdown</a>
</li>
</ul>
</span>
</div>
<a class="read-more" href="/tech/Recommended-Markdown-Editor-for-Best-Use.html">阅读全文 <i class="fas fa-angle-right"></i></a>
</div>
</li>
<li class="home-article-item">
<h3 class="home-article-title">
<a href="/tech/suggest-of-four-digits-com-domain.html">
四位数com后缀域名全新注册推荐·第二弹
</a>
</h3>
<!-- 在适当的位置插入谷歌广告代码 -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7114121088728794" crossorigin="anonymous"></script>
<div class="home-article-content keep-markdown-body">
之前,零点君发布了《四位数com后缀域名全新注册推荐·第一弹》,介绍了域名的重要性和怎么样的域名是有价值的。
今天我要介绍第二弹。
ID类:32/41/60/70/73/79/83id.co...
</div>
<div class="home-article-meta-info-container">
<div class="home-article-meta-info">
<span>
<i class="fas fa-history"></i>
<span class="home-article-date" data-updated="Fri Nov 03 2023 23:07:14 GMT+0800">
2023-11-03
</span>
</span>
<span class="home-article-category"><i class="fas fa-folder"></i>
<ul>
<li>
<a href="/categories/tech/">⓶科技</a>
</li>
</ul>
</span>
<span class="home-article-tag">
<i class="fas fa-tags"></i>
<ul>
<li>
<a href="/tags/Domain/">Domain</a>
</li>
</ul>
</span>
</div>
<a class="read-more" href="/tech/suggest-of-four-digits-com-domain.html">阅读全文 <i class="fas fa-angle-right"></i></a>
</div>
</li>
<li class="home-article-item">
<h3 class="home-article-title">
<a href="/tech/nice-url-for-google-seo.html">
怎样设置URL对谷歌SEO友好
</a>
</h3>
<!-- 在适当的位置插入谷歌广告代码 -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7114121088728794" crossorigin="anonymous"></script>
<div class="home-article-content keep-markdown-body">
我们建站的时候,每一篇文章都是我们的心血,总是希望让更多的小伙伴能够看到,对小伙伴有用。
如何让小伙伴能够看到我们的文章,一个很大的要素就是被搜索引擎收录。这就涉及到SEO。而最基础的SEO就是为每一篇文章命名地对SEO友好。
下面,我们一步一步来做...
</div>
<div class="home-article-meta-info-container">
<div class="home-article-meta-info">
<span>
<i class="fas fa-history"></i>
<span class="home-article-date" data-updated="Fri Nov 03 2023 23:06:02 GMT+0800">
2023-11-03
</span>
</span>
<span class="home-article-category"><i class="fas fa-folder"></i>
<ul>
<li>
<a href="/categories/tech/">⓶科技</a>
</li>
</ul>
</span>
<span class="home-article-tag">
<i class="fas fa-tags"></i>
<ul>
<li>
<a href="/tags/SEO/">SEO</a>
</li>
</ul>
</span>
</div>
<a class="read-more" href="/tech/nice-url-for-google-seo.html">阅读全文 <i class="fas fa-angle-right"></i></a>
</div>
</li>
<li class="home-article-item">
<h3 class="home-article-title">
<a href="/tech/WP-Super-Cache.html">
WordPress优化缓存插件WP Super Cache
</a>
</h3>
<!-- 在适当的位置插入谷歌广告代码 -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7114121088728794" crossorigin="anonymous"></script>
<div class="home-article-content keep-markdown-body">
与 WP-Cache 相同,WP Super Cache也是一款 WordPress “静态化”插件,可以通过缓存来提高大负载下 WP 的性能。
相比 WP-Cache 最大的改进,WP Super Cache 的优点在于加入了 Super Cach...
</div>
<div class="home-article-meta-info-container">
<div class="home-article-meta-info">
<span>
<i class="fas fa-history"></i>
<span class="home-article-date" data-updated="Thu Nov 02 2023 16:16:32 GMT+0800">
2023-11-02
</span>
</span>
<span class="home-article-category"><i class="fas fa-folder"></i>
<ul>
<li>
<a href="/categories/tech/">⓶科技</a>
</li>
</ul>
</span>
<span class="home-article-tag">
<i class="fas fa-tags"></i>
<ul>
<li>
<a href="/tags/wordpress/">wordpress</a>
</li>
</ul>
</span>
</div>
<a class="read-more" href="/tech/WP-Super-Cache.html">阅读全文 <i class="fas fa-angle-right"></i></a>
</div>
</li>
<li class="home-article-item">
<h3 class="home-article-title">
<a href="/tech/deadlinks-wordpress-handle.html">
Wordpress网站出现死链的处理神器
</a>
</h3>
<!-- 在适当的位置插入谷歌广告代码 -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7114121088728794" crossorigin="anonymous"></script>
<div class="home-article-content keep-markdown-body">
网站死链(Dead link)是什么,一般指因为某些原因导致我们网站内的某些链接、图片、css、js打不开,网站返回状态码为404的链接。死链对于网站的用户体验和SEO优化都会产生负面影响。站长们应该定期检查网站的链接,避免自己的网站出现死链。
那么...
</div>
<div class="home-article-meta-info-container">
<div class="home-article-meta-info">
<span>
<i class="fas fa-history"></i>
<span class="home-article-date" data-updated="Thu Nov 02 2023 16:11:00 GMT+0800">
2023-11-02
</span>
</span>
<span class="home-article-category"><i class="fas fa-folder"></i>
<ul>
<li>
<a href="/categories/tech/">⓶科技</a>
</li>
</ul>
</span>
<span class="home-article-tag">
<i class="fas fa-tags"></i>
<ul>
<li>
<a href="/tags/wordpress/">wordpress</a>
</li>
</ul>
</span>
</div>
<a class="read-more" href="/tech/deadlinks-wordpress-handle.html">阅读全文 <i class="fas fa-angle-right"></i></a>
</div>
</li>
<li class="home-article-item">
<h3 class="home-article-title">
<a href="/tech/googlesview-about-ai-generate-contents.html">
如何看待 Google 搜索关于 AI 生成内容的指南
</a>
</h3>
<!-- 在适当的位置插入谷歌广告代码 -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7114121088728794" crossorigin="anonymous"></script>
<div class="home-article-content keep-markdown-body">
最近看到很多站长都在让AI帮忙生成网站内容,但 Google搜索对AI生成的内容的态度是需要明确的。毕竟对于广大站长而言,谷歌是我们的衣食父母。
2023年2月份,谷歌发布了一个文档,表明了谷歌对于AI生成内容的态度。
具体链接:https://d...
</div>
<div class="home-article-meta-info-container">
<div class="home-article-meta-info">
<span>
<i class="fas fa-history"></i>
<span class="home-article-date" data-updated="Wed Nov 01 2023 12:33:10 GMT+0800">
2023-11-01
</span>
</span>
<span class="home-article-category"><i class="fas fa-folder"></i>
<ul>
<li>
<a href="/categories/tech/">⓶科技</a>
</li>
</ul>
</span>
<span class="home-article-tag">
<i class="fas fa-tags"></i>
<ul>
<li>
<a href="/tags/AI/">AI</a>
</li>
<li>
|
<a href="/tags/Google/">Google</a>
</li>
</ul>
</span>
</div>
<a class="read-more" href="/tech/googlesview-about-ai-generate-contents.html">阅读全文 <i class="fas fa-angle-right"></i></a>
</div>
</li>
<li class="home-article-item">
<h3 class="home-article-title">
<a href="/tech/how-to-use-onion-to-setup-website.html">
如何使用.onion域名创建匿名网站
</a>
</h3>
<!-- 在适当的位置插入谷歌广告代码 -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7114121088728794" crossorigin="anonymous"></script>
<div class="home-article-content keep-markdown-body">
零点君很早对暗网有所了解,但也没有进一步的去搞事情。同时,我觉得还是有必要把一些资料记录下来,方便查阅。
想使用.onion域名需要用到Tor,也就是洋葱头。根据公开资料,洋葱头(The Onion Router)是一种软件,是第二代洋葱路由(oni...
</div>
<div class="home-article-meta-info-container">
<div class="home-article-meta-info">
<span>
<i class="fas fa-history"></i>
<span class="home-article-date" data-updated="Wed Nov 01 2023 12:13:16 GMT+0800">
2023-11-01
</span>
</span>
<span class="home-article-category"><i class="fas fa-folder"></i>
<ul>
<li>
<a href="/categories/tech/">⓶科技</a>
</li>
</ul>
</span>
<span class="home-article-tag">
<i class="fas fa-tags"></i>
<ul>
<li>
<a href="/tags/Onion/">Onion</a>
</li>
</ul>
</span>
</div>
<a class="read-more" href="/tech/how-to-use-onion-to-setup-website.html">阅读全文 <i class="fas fa-angle-right"></i></a>
</div>
</li>
<li class="home-article-item">
<h3 class="home-article-title">
<a href="/tech/yuque-claim-membership.html">
23号语雀宕机的赔偿,赶紧领取
</a>
</h3>
<!-- 在适当的位置插入谷歌广告代码 -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7114121088728794" crossorigin="anonymous"></script>
<div class="home-article-content keep-markdown-body">
10月23日14时左右,蚂蚁集团旗下的在线文档编辑与协同工具语雀发生服务器故障,在线文档和官网均无法打开,宕机 8 小时被网友怒喷,史称语雀突发 P0 级事故。
事后,语雀声称,将向所有受到故障影响的用户提供赔偿,针对语雀个人用户将赠送6个月的会员服...
</div>
<div class="home-article-meta-info-container">
<div class="home-article-meta-info">
<span>
<i class="fas fa-history"></i>
<span class="home-article-date" data-updated="Fri Oct 27 2023 08:26:46 GMT+0800">
2023-10-27
</span>
</span>
<span class="home-article-category"><i class="fas fa-folder"></i>
<ul>
<li>
<a href="/categories/tech/">⓶科技</a>
</li>
</ul>
</span>
</div>
<a class="read-more" href="/tech/yuque-claim-membership.html">阅读全文 <i class="fas fa-angle-right"></i></a>
</div>
</li>
<li class="home-article-item">
<h3 class="home-article-title">
<a href="/tech/archive-Wayback-Machine.html">
时光机|如何查看一个网站10年前的样子
</a>
</h3>
<!-- 在适当的位置插入谷歌广告代码 -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7114121088728794" crossorigin="anonymous"></script>
<div class="home-article-content keep-markdown-body">
有小伙伴问我,如何查看一个网站10年前的样子。这是一个有意思的话题。互联网发展30多年,回过头去看以前网站的UI,真的有一种考古的感觉。
一般而言,大家会使用百度快照等快照服务来查询历史网页,但这种办法无法回溯太早,也没有条理性可言。
今天小编推荐大...
</div>
<div class="home-article-meta-info-container">
<div class="home-article-meta-info">
<span>
<i class="fas fa-history"></i>
<span class="home-article-date" data-updated="Wed Aug 23 2023 00:28:30 GMT+0800">
2023-08-23
</span>
</span>
<span class="home-article-category"><i class="fas fa-folder"></i>
<ul>
<li>
<a href="/categories/tech/">⓶科技</a>
</li>
</ul>
</span>
<span class="home-article-tag">
<i class="fas fa-tags"></i>
<ul>
<li>
<a href="/tags/Web/">Web</a>
</li>
</ul>
</span>
</div>
<a class="read-more" href="/tech/archive-Wayback-Machine.html">阅读全文 <i class="fas fa-angle-right"></i></a>
</div>
</li>
</ul>
<div class="home-paginator">
<div class="paginator">
<a class="next btn"
href="/page/2/"
>下一页</a>
</div>
</div>
</div>
</div>
</div>
<!-- 在适当的位置插入谷歌广告代码 -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7114121088728794" crossorigin="anonymous"></script>
<div class="page-main-content-bottom">
<footer class="footer">
<div class="info-container">
<div class="copyright-info info-item">
©
<span>2006</span> -
2024
<i class="fas fa-heart icon-animate"></i>
<a href="/">Nick Yam</a>
</div>
<script async data-pjax
src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<div class="website-count info-item">
访问人数 <span id="busuanzi_value_site_uv"></span> 
总访问量 <span id="busuanzi_value_site_pv"></span>
</div>
<div class="theme-info info-item">
由 <a target="_blank" href="https://hexo.io">Hexo</a> 驱动 | 主题 <a class="theme-version" target="_blank" href="https://github.com/XPoet/hexo-theme-keep">Keep v3.6.1</a>
</div>
<div class="deploy-info info-item">
<a target="_blank" rel="nofollow" href="[email protected]:nickyam/nickyam.github.io.git,main">
本站由 <span class="tooltip" data-content="GitHub Pages"><img src="/images/deploy-provider/github.png"></span> 提供部署服务
</a>
</div>
</div>
</footer>