-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1467 lines (1059 loc) · 62.3 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,en,default">
<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.2.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/portrait32.jpeg">
<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="/lib/font-awesome/css/all.min.css">
<link rel="stylesheet" href="/lib/pace/pace-theme-minimal.min.css">
<script src="/lib/pace/pace.min.js"></script>
<script id="hexo-configurations">
var NexT = window.NexT || {};
var CONFIG = {"hostname":"yoursite.com","root":"/","scheme":"Gemini","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":false,"style":null},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":true,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"style":"tabs","active":null,"storage":true,"lazyload":false,"nav":null},"algolia":{"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},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}}};
</script>
<meta name="description" content="Stay hungry, Stay foolish">
<meta property="og:type" content="website">
<meta property="og:title" content="Eric's Blog">
<meta property="og:url" content="http://yoursite.com/index.html">
<meta property="og:site_name" content="Eric's Blog">
<meta property="og:description" content="Stay hungry, Stay foolish">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="Eric Yin">
<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,
lang : 'zh-CN'
};
</script>
<title>Eric's Blog</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-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 class="site-meta">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<h1 class="site-title">Eric's Blog</h1>
<span class="logo-line-after"><i></i></span>
</a>
<p class="site-subtitle" itemprop="description">Learn and Share</p>
</div>
<div class="site-nav-right">
<div class="toggle popup-trigger">
</div>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="main-menu menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a>
</li>
</ul>
</nav>
</div>
</header>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
<span>0%</span>
</div>
<a role="button" class="book-mark-link book-mark-link-fixed"></a>
<main class="main">
<div class="main-inner">
<div class="content-wrap">
<div class="content index posts-expand">
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2021/06/23/LeetCode%E6%80%BB%E7%BB%93-Array/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/portrait.JPG">
<meta itemprop="name" content="Eric Yin">
<meta itemprop="description" content="Stay hungry, Stay foolish">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Eric's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2021/06/23/LeetCode%E6%80%BB%E7%BB%93-Array/" class="post-title-link" itemprop="url">技术人员的发展之路</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2021-06-23 21:46:04" itemprop="dateCreated datePublished" datetime="2021-06-23T21:46:04+08:00">2021-06-23</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">更新于</span>
<time title="修改时间:2021-08-08 11:17:10" itemprop="dateModified" datetime="2021-08-08T11:17:10+08:00">2021-08-08</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/Programming/" itemprop="url" rel="index"><span itemprop="name">Programming</span></a>
</span>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine:</span>
<a title="valine" href="/2021/06/23/LeetCode%E6%80%BB%E7%BB%93-Array/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2021/06/23/LeetCode%E6%80%BB%E7%BB%93-Array/" itemprop="commentCount"></span>
</a>
</span>
<br>
<span class="post-meta-item" title="本文字数">
<span class="post-meta-item-icon">
<i class="far fa-file-word"></i>
</span>
<span class="post-meta-item-text">本文字数:</span>
<span>6.5k</span>
</span>
<span class="post-meta-item" title="阅读时长">
<span class="post-meta-item-icon">
<i class="far fa-clock"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span>6 分钟</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="前言"><a href="#前言" class="headerlink" title="前言"></a>前言</h2><blockquote>
<p>程序员老了怎么办?而在年底这段时间,也和几个朋友在交流中不断地重复谈到个人发展的这个话题。我的人生过半,活到“不惑”的年纪,自然经常性的对什么事都会回头看看总结归纳,所以,在交谈过程中和交谈过后,自己也有一些思考想记录下来。因为我本人也是在这条路上的人,所以,谈不上给他人指导,我同样也是在瞎乱折腾同样每天在思考自己要去哪儿的“一尘世间迷途老生”。况且,我的经历和眼界非常有限,因此,下面的这些关于个人发展的文字和思考必然是受我的眼界和经历所局限的。也欢迎大家补充和指正。</p>
</blockquote>
<p>转载一篇很不错的文章,给了我很多相关方面的思考,时不时翻出来读一下。<a href="https://coolshell.cn/articles/17583.html" target="_blank" rel="noopener">原文地址点此直达</a>(未授权的转载,如侵,即删)</p>
<p>以下是全文。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2021/06/23/LeetCode%E6%80%BB%E7%BB%93-Array/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2020/11/13/%E8%A7%A3%E5%86%B3MacOS%E5%8D%87%E7%BA%A7big-sur-%E5%90%8E%E5%87%BA%E7%8E%B0xcrun-error-invalid-active-developer-path-%E7%9A%84%E9%97%AE%E9%A2%98/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/portrait.JPG">
<meta itemprop="name" content="Eric Yin">
<meta itemprop="description" content="Stay hungry, Stay foolish">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Eric's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2020/11/13/%E8%A7%A3%E5%86%B3MacOS%E5%8D%87%E7%BA%A7big-sur-%E5%90%8E%E5%87%BA%E7%8E%B0xcrun-error-invalid-active-developer-path-%E7%9A%84%E9%97%AE%E9%A2%98/" class="post-title-link" itemprop="url">解决MacOS升级 Big Sur 后出现xcrun: error: invalid active developer path 的问题</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-11-13 22:37:47" itemprop="dateCreated datePublished" datetime="2020-11-13T22:37:47+08:00">2020-11-13</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">更新于</span>
<time title="修改时间:2020-11-20 21:33:42" itemprop="dateModified" datetime="2020-11-20T21:33:42+08:00">2020-11-20</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/macOS%E7%BC%96%E7%A8%8B/" itemprop="url" rel="index"><span itemprop="name">macOS编程</span></a>
</span>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine:</span>
<a title="valine" href="/2020/11/13/%E8%A7%A3%E5%86%B3MacOS%E5%8D%87%E7%BA%A7big-sur-%E5%90%8E%E5%87%BA%E7%8E%B0xcrun-error-invalid-active-developer-path-%E7%9A%84%E9%97%AE%E9%A2%98/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2020/11/13/%E8%A7%A3%E5%86%B3MacOS%E5%8D%87%E7%BA%A7big-sur-%E5%90%8E%E5%87%BA%E7%8E%B0xcrun-error-invalid-active-developer-path-%E7%9A%84%E9%97%AE%E9%A2%98/" itemprop="commentCount"></span>
</a>
</span>
<br>
<span class="post-meta-item" title="本文字数">
<span class="post-meta-item-icon">
<i class="far fa-file-word"></i>
</span>
<span class="post-meta-item-text">本文字数:</span>
<span>439</span>
</span>
<span class="post-meta-item" title="阅读时长">
<span class="post-meta-item-icon">
<i class="far fa-clock"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span>1 分钟</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>今天升级macOS Big Sur,终端里使用git的时候,弹出一行错误:</p>
<blockquote>
<p>xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun</p>
</blockquote>
<p>解决方法,更新 Xcode Command-line Tools 即可。</p>
<p>进入终端,写下如下命令即可:</p>
<figure class="highlight plain"><figcaption><span>--installxcode-select --installxcode-select --install</span></figcaption><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">xcode-select --install</span><br></pre></td></tr></table></figure>
<p>你会看到这个返回:</p>
<blockquote>
<p>xcode-select: note: install requested for command line developer tools</p>
</blockquote>
<p>然后就会有新窗口跳转出来,按提示更新即可。</p>
<h2 id="后记"><a href="#后记" class="headerlink" title="后记"></a>后记</h2><p>更新 macOS Big Sur 后,有一些些 bug ,如果手头 Mac 是主力机的朋友们,建议观望一个月后再更新。</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2020/11/08/iTerm-oh-my-zsh-%E6%89%93%E9%80%A0Mac%E5%BC%BA%E5%A4%A7%E7%BB%88%E7%AB%AF/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/portrait.JPG">
<meta itemprop="name" content="Eric Yin">
<meta itemprop="description" content="Stay hungry, Stay foolish">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Eric's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2020/11/08/iTerm-oh-my-zsh-%E6%89%93%E9%80%A0Mac%E5%BC%BA%E5%A4%A7%E7%BB%88%E7%AB%AF/" class="post-title-link" itemprop="url">iTerm2 + oh-my-zsh 打造Mac强大终端</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-11-08 20:19:24" itemprop="dateCreated datePublished" datetime="2020-11-08T20:19:24+08:00">2020-11-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">更新于</span>
<time title="修改时间:2021-06-23 21:49:54" itemprop="dateModified" datetime="2021-06-23T21:49:54+08:00">2021-06-23</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/macOS%E7%BC%96%E7%A8%8B/" itemprop="url" rel="index"><span itemprop="name">macOS编程</span></a>
</span>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine:</span>
<a title="valine" href="/2020/11/08/iTerm-oh-my-zsh-%E6%89%93%E9%80%A0Mac%E5%BC%BA%E5%A4%A7%E7%BB%88%E7%AB%AF/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2020/11/08/iTerm-oh-my-zsh-%E6%89%93%E9%80%A0Mac%E5%BC%BA%E5%A4%A7%E7%BB%88%E7%AB%AF/" itemprop="commentCount"></span>
</a>
</span>
<br>
<span class="post-meta-item" title="本文字数">
<span class="post-meta-item-icon">
<i class="far fa-file-word"></i>
</span>
<span class="post-meta-item-text">本文字数:</span>
<span>2.3k</span>
</span>
<span class="post-meta-item" title="阅读时长">
<span class="post-meta-item-icon">
<i class="far fa-clock"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span>2 分钟</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="前言"><a href="#前言" class="headerlink" title="前言"></a>前言</h2><p>最近想优化一下 macOS 命令行使用体验;找了一圈,发现网上大都推荐 iTerm2 + oh-my-zsh 的组合;遂尝试一番,主要因为<strong>时效性</strong>的问题,遇到了不少坑。因此记录一下,希望能给看到的人一些参考和帮助。</p>
<p>注:我的系统是 <u>macOS 10.15.17</u>(macOS 11 更新后命令可能不适用,但我都放了官网的链接,应该能正常进行。如果不行我更新到macOS11后再来修改这篇文章)</p>
<p>以下是正文。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2020/11/08/iTerm-oh-my-zsh-%E6%89%93%E9%80%A0Mac%E5%BC%BA%E5%A4%A7%E7%BB%88%E7%AB%AF/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2020/09/05/%E5%BC%80%E5%8F%91%E8%80%85%E7%9A%84%E8%B0%AC%E8%AE%BA%E8%BF%98%E6%98%AF%E7%9C%9F%E7%90%86%EF%BC%9F/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/portrait.JPG">
<meta itemprop="name" content="Eric Yin">
<meta itemprop="description" content="Stay hungry, Stay foolish">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Eric's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2020/09/05/%E5%BC%80%E5%8F%91%E8%80%85%E7%9A%84%E8%B0%AC%E8%AE%BA%E8%BF%98%E6%98%AF%E7%9C%9F%E7%90%86%EF%BC%9F/" class="post-title-link" itemprop="url">开发者的谬论还是真理?</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-09-05 14:57:53" itemprop="dateCreated datePublished" datetime="2020-09-05T14:57:53+08:00">2020-09-05</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">更新于</span>
<time title="修改时间:2020-11-08 20:25:04" itemprop="dateModified" datetime="2020-11-08T20:25:04+08:00">2020-11-08</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E5%A5%BD%E6%96%87/" itemprop="url" rel="index"><span itemprop="name">好文</span></a>
</span>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine:</span>
<a title="valine" href="/2020/09/05/%E5%BC%80%E5%8F%91%E8%80%85%E7%9A%84%E8%B0%AC%E8%AE%BA%E8%BF%98%E6%98%AF%E7%9C%9F%E7%90%86%EF%BC%9F/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2020/09/05/%E5%BC%80%E5%8F%91%E8%80%85%E7%9A%84%E8%B0%AC%E8%AE%BA%E8%BF%98%E6%98%AF%E7%9C%9F%E7%90%86%EF%BC%9F/" itemprop="commentCount"></span>
</a>
</span>
<br>
<span class="post-meta-item" title="本文字数">
<span class="post-meta-item-icon">
<i class="far fa-file-word"></i>
</span>
<span class="post-meta-item-text">本文字数:</span>
<span>10k</span>
</span>
<span class="post-meta-item" title="阅读时长">
<span class="post-meta-item-icon">
<i class="far fa-clock"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span>9 分钟</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="前言"><a href="#前言" class="headerlink" title="前言"></a>前言</h2><p>又发现一篇好文,想自己翻译留存;如果你是将要走上编程,或已经在编程路上的人,相信这篇文章会给你很大的启发。</p>
<p>与我翻译的上一篇文章一样,我也选择放双语,供有英文能力的人参照, 毕竟我的翻译会带有我的主观色彩,并且也可能误翻,所以有能力的话还是建议去读原版(点击下方标题直达)。</p>
<h2 id="The-Greatest-Developer-Fallacy-Or-The-Wisest-Words-You’ll-Ever-Hear"><a href="#The-Greatest-Developer-Fallacy-Or-The-Wisest-Words-You’ll-Ever-Hear" class="headerlink" title="The Greatest Developer Fallacy Or The Wisest Words You’ll Ever Hear?"></a><a href="https://skorks.com/2011/02/the-greatest-developer-fallacy-or-the-wisest-words-youll-ever-hear/" target="_blank" rel="noopener">The Greatest Developer Fallacy Or The Wisest Words You’ll Ever Hear?</a></h2><h2 id="“我会在我需要的时候再学!“-开发者最大的谬论还是真理?"><a href="#“我会在我需要的时候再学!“-开发者最大的谬论还是真理?" class="headerlink" title="“我会在我需要的时候再学!“ 开发者最大的谬论还是真理?"></a><strong>“我会在我需要的时候再学!</strong>“ 开发者最大的谬论还是真理?</h2><p>(注:直译标题是不通的,要结合文章第一句一起看,所以中文标题这样翻译了)</p>
<p>“<em>I will learn it when I need it</em>”! I’ve heard that phrase a lot over the years; it seems like a highly pragmatic attitude to foster when you’re in an industry as fast-paced as software development. On some level it actually IS quite pragmatic, but on another level I am annoyed by the phrase. It has become a mantra for our whole industry which hasn’t changed said industry for the better. The problem is this, <strong>in the guise of sounding like a wise and practical developer, people use it as an excuse to coast</strong>. There is too much stuff to know, it is necessary to be able to pick certain things up as you go along – part of the job. But, there is a difference between having to “pick up” some knowledge as you go along and doing absolutely everything just-in-time.</p>
<p>“<em>我会在我需要的时候再学</em>“!过去几年中,我听到这句话很多遍了。在软件开发这样快节奏的行业中,养成这种高度务实的态度似乎是非常实用的。在某种程度上,它确实非常实用,但是在另一方面,我对这句话非常不爽。它已成为我们整个行业的准则,但并没有改变行业使其更好。问题在于,表面上听起来像是一个明智而务实的开发者说的,但人们把它当做一种应付的借口。 有太多的东西要知道,在工作中确实有必要”学习“特定的知识。但是,在工作中”学习“知识和准时完成工作有区别。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2020/09/05/%E5%BC%80%E5%8F%91%E8%80%85%E7%9A%84%E8%B0%AC%E8%AE%BA%E8%BF%98%E6%98%AF%E7%9C%9F%E7%90%86%EF%BC%9F/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2020/06/17/%E5%8D%81%E5%B9%B4%E5%AD%A6%E4%BC%9A%E7%BC%96%E7%A8%8B%E5%8F%8C%E8%AF%AD%E7%89%88/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/portrait.JPG">
<meta itemprop="name" content="Eric Yin">
<meta itemprop="description" content="Stay hungry, Stay foolish">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Eric's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2020/06/17/%E5%8D%81%E5%B9%B4%E5%AD%A6%E4%BC%9A%E7%BC%96%E7%A8%8B%E5%8F%8C%E8%AF%AD%E7%89%88/" class="post-title-link" itemprop="url">十年自学编程双语版</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-06-17 15:50:55" itemprop="dateCreated datePublished" datetime="2020-06-17T15:50:55+08:00">2020-06-17</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">更新于</span>
<time title="修改时间:2020-11-08 20:24:50" itemprop="dateModified" datetime="2020-11-08T20:24:50+08:00">2020-11-08</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E5%A5%BD%E6%96%87/" itemprop="url" rel="index"><span itemprop="name">好文</span></a>
</span>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine:</span>
<a title="valine" href="/2020/06/17/%E5%8D%81%E5%B9%B4%E5%AD%A6%E4%BC%9A%E7%BC%96%E7%A8%8B%E5%8F%8C%E8%AF%AD%E7%89%88/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2020/06/17/%E5%8D%81%E5%B9%B4%E5%AD%A6%E4%BC%9A%E7%BC%96%E7%A8%8B%E5%8F%8C%E8%AF%AD%E7%89%88/" itemprop="commentCount"></span>
</a>
</span>
<br>
<span class="post-meta-item" title="本文字数">
<span class="post-meta-item-icon">
<i class="far fa-file-word"></i>
</span>
<span class="post-meta-item-text">本文字数:</span>
<span>14k</span>
</span>
<span class="post-meta-item" title="阅读时长">
<span class="post-meta-item-icon">
<i class="far fa-clock"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span>12 分钟</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="写在前面"><a href="#写在前面" class="headerlink" title="写在前面"></a>写在前面</h2><p>这篇文章可以说是程序员必读了,虽然离初次发表已经好几十年了,但很多人都应该发自内心的同意它的说法。直到今天,这篇经典的文章依然很有借鉴意义,网上也有各种翻译,但是后来又读原文,感觉很多中文翻译跟原文意思有些许不符,所以我自己翻译了一个版本(我虽不是什么英语大师,但有些地方我的翻译应该更准确一点),希望给读到的人一些参考,也让自己复习一下这篇文章。<br>同时,我也放上了原文,做了一个双语版本,一定会有英语大师读到,每个人都会有每个人的理解吧。</p>
<h1 id="Teach-Yourself-Programming-in-Ten-Years"><a href="#Teach-Yourself-Programming-in-Ten-Years" class="headerlink" title="Teach Yourself Programming in Ten Years"></a>Teach Yourself Programming in Ten Years</h1><p>— Peter Norvig</p>
<h2 id="Why-is-everyone-in-such-a-rush"><a href="#Why-is-everyone-in-such-a-rush" class="headerlink" title="Why is everyone in such a rush?"></a>Why is everyone in such a rush?</h2><p>为什么每个人都急于求成?</p>
<p>Walk into any bookstore, and you’ll see how to <em>Teach Yourself Java in 24 Hours</em> alongside endless variations offering to teach C, SQL, Ruby, Algorithms, and so on in a few days or hours. The Amazon advanced search for <a href="http://www.amazon.com/gp/search/ref=sr_adv_b/?search-alias=stripbooks&unfiltered=1&field-keywords=&field-author=&field-title=teach+yourself+hours&field-isbn=&field-publisher=&node=&field-p_n_condition-type=&field-feature_browse-bin=&field-subject=&field-language=&field-dateop=After&field-datemod=&field-dateyear=2000&sort=relevanceexprank&Adv-Srch-Books-Submit.x=16&Adv-Srch-Books-Submit.y=5" target="_blank" rel="noopener">title: teach, yourself, hours, since: 2000</a> and found 512 such books. Of the top ten, nine are programming books (the other is about bookkeeping). Similar results come from replacing “teach yourself” with “learn” or “hours” with “days.”</p>
<p>随便走进一家书店,都会看到类似《在24小时内自学Java》这样的书,旁边也都摆着诸如在几天、几小时之内学会 C 语言,SQL,Ruby,算法等等的书。如果用 Amazon 上的高级搜索,输入: <u>title: teach, yourself, hours, since: 2000</u> 这些关键字来搜索,将会返回512本类似的书。最靠前的10本书中,有9本是编程的书(唯一的例外是一本关于记账的书)。如果把关键字 ”teach yourself” 替换成 ”learn” ,或者将 ”hours” 替换成 ”days” ,返回的结果大同小异。</p>
<p>The conclusion is that either people are in a big rush to learn about programming, or that programming is somehow fabulously easier to learn than anything else. Felleisen <em>et al.</em> give a nod to this trend in their book <em><a href="http://www.ccs.neu.edu/home/matthias/HtDP2e/index.html" target="_blank" rel="noopener">How to Design Programs</a></em>, when they say “Bad programming is easy. <em>Idiots</em> can learn it in <em>21 days</em>, even if they are <em>dummies</em>.” The Abtruse Goose comic also had <a href="http://abstrusegoose.com/249" target="_blank" rel="noopener">their take</a>.</p>
<p>这些都告诉我们:人们在学习编程的时候妄图一口吃成胖子,或者认为编程相比起其它事情来,是很容易学的。Felleisen等人编写的《如何设计程序》一书中说道“劣质编程很容易。白痴也可以在21天内学会,就算他们是哑巴。” Abtruse Goose的漫画也表达了同样的看法。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2020/06/17/%E5%8D%81%E5%B9%B4%E5%AD%A6%E4%BC%9A%E7%BC%96%E7%A8%8B%E5%8F%8C%E8%AF%AD%E7%89%88/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2020/05/29/2020-Macbook-%E9%80%89%E8%B4%AD%E6%8C%87%E5%8D%97/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/portrait.JPG">
<meta itemprop="name" content="Eric Yin">
<meta itemprop="description" content="Stay hungry, Stay foolish">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Eric's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2020/05/29/2020-Macbook-%E9%80%89%E8%B4%AD%E6%8C%87%E5%8D%97/" class="post-title-link" itemprop="url">2020 Macbook 选购指南</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-05-29 13:03:36" itemprop="dateCreated datePublished" datetime="2020-05-29T13:03:36+08:00">2020-05-29</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">更新于</span>
<time title="修改时间:2020-11-08 20:23:22" itemprop="dateModified" datetime="2020-11-08T20:23:22+08:00">2020-11-08</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/MacBook%E9%80%89%E8%B4%AD%E6%8C%87%E5%8D%97/" itemprop="url" rel="index"><span itemprop="name">MacBook选购指南</span></a>
</span>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine:</span>
<a title="valine" href="/2020/05/29/2020-Macbook-%E9%80%89%E8%B4%AD%E6%8C%87%E5%8D%97/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2020/05/29/2020-Macbook-%E9%80%89%E8%B4%AD%E6%8C%87%E5%8D%97/" itemprop="commentCount"></span>
</a>
</span>
<br>
<span class="post-meta-item" title="本文字数">
<span class="post-meta-item-icon">
<i class="far fa-file-word"></i>
</span>
<span class="post-meta-item-text">本文字数:</span>
<span>1.2k</span>
</span>
<span class="post-meta-item" title="阅读时长">
<span class="post-meta-item-icon">
<i class="far fa-clock"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span>1 分钟</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h4 id="前言:"><a href="#前言:" class="headerlink" title="前言:"></a>前言:</h4><p>截止2020-5-4,2020 全系 MacBook 都更新完毕,这次的 MacBook 可以说是近几年来最值得购买的,所以本篇文章就是 2020 MacBook 系列选购指南。包括(1. MBA,2. MBP-13.3-2,3. MBP-13.3-4,4. MBP-16)</p>
<h4 id="综述:"><a href="#综述:" class="headerlink" title="综述:"></a>综述:</h4><ol>
<li>键盘:全系 Magic keyboard,打字舒服,也不会出现像蝶式键盘的各种问题。</li>
<li>扬声器:都非常棒,虽然四个系列扬声器都不太一样,但是相比前代都有很高的提升,且比市面上大部分电脑扬声器都要好,16寸是最好,总之价格越贵的款越好。</li>
<li>选配:在能负担范围买配置最高的。MacBook 因为全系的T2芯片,后续不能自己改装配置,所以不确定自己需求的时候,宁可多配,也不要省钱。同时也能让这台电脑多用几年。</li>
<li>比较会着重在 MacBook Air 和13寸的 MacBook Pro,16寸版本跟他们区别很大。</li>
<li>MacBook Air 和 13寸 MacBook Pro 的重量区别真的可以忽略不计!</li>
<li>没有必要刻意关注性能,因为你买回来不是去跑分的,实际使用的时候,你怎么知道快了还是慢了呢?跑分的性能也不是你日常使用的性能呀。</li>
</ol>
<h4 id="分述:"><a href="#分述:" class="headerlink" title="分述:"></a>分述:</h4>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2020/05/29/2020-Macbook-%E9%80%89%E8%B4%AD%E6%8C%87%E5%8D%97/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2020/04/24/%E7%BB%99Mac%E5%8E%9F%E7%94%9F%E8%AF%8D%E5%85%B8%E6%89%A9%E5%B1%95/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/portrait.JPG">
<meta itemprop="name" content="Eric Yin">
<meta itemprop="description" content="Stay hungry, Stay foolish">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Eric's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2020/04/24/%E7%BB%99Mac%E5%8E%9F%E7%94%9F%E8%AF%8D%E5%85%B8%E6%89%A9%E5%B1%95/" class="post-title-link" itemprop="url">给Mac原生词典扩展</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-04-24 20:06:56" itemprop="dateCreated datePublished" datetime="2020-04-24T20:06:56+08:00">2020-04-24</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">更新于</span>
<time title="修改时间:2020-11-08 20:23:46" itemprop="dateModified" datetime="2020-11-08T20:23:46+08:00">2020-11-08</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/Mac%E6%8A%80%E5%B7%A7/" itemprop="url" rel="index"><span itemprop="name">Mac技巧</span></a>
</span>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine:</span>
<a title="valine" href="/2020/04/24/%E7%BB%99Mac%E5%8E%9F%E7%94%9F%E8%AF%8D%E5%85%B8%E6%89%A9%E5%B1%95/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2020/04/24/%E7%BB%99Mac%E5%8E%9F%E7%94%9F%E8%AF%8D%E5%85%B8%E6%89%A9%E5%B1%95/" itemprop="commentCount"></span>
</a>
</span>
<br>
<span class="post-meta-item" title="本文字数">
<span class="post-meta-item-icon">
<i class="far fa-file-word"></i>
</span>
<span class="post-meta-item-text">本文字数:</span>
<span>783</span>
</span>
<span class="post-meta-item" title="阅读时长">
<span class="post-meta-item-icon">
<i class="far fa-clock"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span>1 分钟</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h3 id="前言"><a href="#前言" class="headerlink" title="前言"></a>前言</h3><p>使用Mac的小伙伴,经常会用到各种词典(比如欧陆,有道等等)来查询英文单词,但是我用过后都觉得他们都不太好用,主要是跟Mac不太融合,或者要记住各种快捷键,或者要频繁开关。</p>
<p>直到前几天偶然问了另一个用Mac的小伙伴,她给我推荐了苹果自带的词典软件,用过之后发现真的很方便!只需要把光标置于你想释义的词上面,再用三个指头同时按下触摸板,就会跳出词典的解释。超级帅的有木有!【如图:查询与数据监测器】</p>
<p><img src="/img/d1.png" alt=""></p>
<p>唯一的不足可能是内置词典不够多,但是找了一圈发现词典包可以完美解决这个问题。有了词典包,你可以随心所欲的添加牛津、朗文、英汉、汉英、法汉、德汉、汉法、汉德、日汉、汉日;甚至康熙大辞典,以及湘雅医学专业词典。只要你能找到合适的词典包即可进行扩展。</p>
<p>写这篇文章的原因是网上大部分的教程,不是要收费,就是要自己解析词典变成可以添加到Mac词典里的文件。对小白非常不友好,所以本篇提供可以直接下载的文件,拖拽到<code>Dictionary</code>文件夹即可。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2020/04/24/%E7%BB%99Mac%E5%8E%9F%E7%94%9F%E8%AF%8D%E5%85%B8%E6%89%A9%E5%B1%95/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2020/04/22/%E4%B8%80%E4%BA%A9%E4%B8%89%E5%88%86%E5%9C%B0%E6%AF%8F%E6%97%A5%E7%AD%94%E9%A2%98%EF%BC%88%E6%9B%B4%E6%96%B0%E4%B8%AD%EF%BC%89/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/portrait.JPG">
<meta itemprop="name" content="Eric Yin">
<meta itemprop="description" content="Stay hungry, Stay foolish">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Eric's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2020/04/22/%E4%B8%80%E4%BA%A9%E4%B8%89%E5%88%86%E5%9C%B0%E6%AF%8F%E6%97%A5%E7%AD%94%E9%A2%98%EF%BC%88%E6%9B%B4%E6%96%B0%E4%B8%AD%EF%BC%89/" class="post-title-link" itemprop="url">一亩三分地每日答题(更新中)</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-04-22 16:46:19" itemprop="dateCreated datePublished" datetime="2020-04-22T16:46:19+08:00">2020-04-22</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">更新于</span>
<time title="修改时间:2020-10-25 13:44:43" itemprop="dateModified" datetime="2020-10-25T13:44:43+08:00">2020-10-25</time>
</span>
<span class="post-meta-item">