-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1458 lines (1092 loc) · 67.5 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 5.4.0">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon.png">
<link rel="mask-icon" href="/favicon.png" color="#222">
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/animate.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/nprogress.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/nprogress.js"></script>
<script class="next-config" data-name="main" type="application/json">{"hostname":"pingmin.blog","root":"/","images":"/images","scheme":"Gemini","version":"8.4.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12},"copycode":false,"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"style":"tabs","active":"gitalk","storage":true,"lazyload":false,"nav":null,"activeClass":"gitalk"},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"fadeInDown","post_body":"fadeInDown","coll_header":"fadeInLeft","sidebar":"fadeInUp"}},"prism":false,"i18n":{"placeholder":"搜索...","empty":"没有找到任何搜索结果:${query}","hits_time":"找到 ${hits} 个搜索结果(用时 ${time} 毫秒)","hits":"找到 ${hits} 个搜索结果"},"path":"/search.xml","localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false}}</script>
<meta name="description" content="平民的个人博客(Pingmin Fenlly Liu's Personal Blog)">
<meta property="og:type" content="website">
<meta property="og:title" content="平民·寻梦(Pingmin Fenlly Liu)">
<meta property="og:url" content="https://pingmin.blog/">
<meta property="og:site_name" content="平民·寻梦(Pingmin Fenlly Liu)">
<meta property="og:description" content="平民的个人博客(Pingmin Fenlly Liu's Personal Blog)">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="平民(Pingmin Fenlly Liu)">
<meta property="article:tag" content="平民·寻梦,平民寻梦,平民,寻梦,平,Pingmin Fenlly Liu,Pingmin F. Liu,Pingmin Liu,博客,刘水良,Pingmin">
<meta name="twitter:card" content="summary">
<link rel="canonical" href="https://pingmin.blog/">
<link rel="me" href="https://mastodon.social/@pingmin">
<link rel="me" href="https://hachyderm.io/@pingmin">
<script class="next-config" data-name="page" type="application/json">{"sidebar":"","isHome":true,"isPost":false,"lang":"zh-CN","comments":"","permalink":"","path":"index.html","title":""}</script>
<script class="next-config" data-name="calendar" type="application/json">""</script>
<title>平民·寻梦(Pingmin Fenlly Liu) - 淡泊明志,宁静致远(Longing for My Nature, Always)</title><script src="/js/config.js"></script>
<noscript>
<link rel="stylesheet" href="/css/noscript.css">
</noscript>
<link rel="alternate" href="/atom.xml" title="平民·寻梦(Pingmin Fenlly Liu)" type="application/atom+xml">
</head>
<body itemscope itemtype="http://schema.org/WebPage" class="use-motion">
<div class="headband"></div>
<main class="main">
<header class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-container">
<div class="site-nav-toggle">
<div class="toggle" aria-label="切换导航栏" role="button">
<span class="toggle-line"></span>
<span class="toggle-line"></span>
<span class="toggle-line"></span>
</div>
</div>
<div class="site-meta">
<a href="/" class="brand" rel="start">
<i class="logo-line"></i>
<h1 class="site-title">平民·寻梦(Pingmin Fenlly Liu)</h1>
<i class="logo-line"></i>
</a>
<p class="site-subtitle" itemprop="description">淡泊明志,宁静致远(Longing for My Nature, Always)</p>
</div>
<div class="site-nav-right">
<div class="toggle popup-trigger">
<i class="fa fa-search fa-fw fa-lg"></i>
</div>
</div>
</div>
<nav class="site-nav">
<ul class="main-menu menu">
<li class="menu-item menu-item-home"><a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页(Home)</a></li>
<li class="menu-item menu-item-pingmin"><a href="https://pingmin.me/" rel="noopener" target="_blank"><i class="fas fa-snowflake fa-fw"></i>主页(Pingmin)</a></li>
<li class="menu-item menu-item-about"><a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于(About)</a></li>
<li class="menu-item menu-item-guides"><a href="/guides/" rel="section"><i class="fas fa-hand-point-right fa-fw"></i>指南(Guides)</a></li>
<li class="menu-item menu-item-she"><a href="https://pingmin.blog/post/she.html" rel="section"><i class="fas fa-female fa-fw"></i>寻她(Seeking Her)</a></li>
<li class="menu-item menu-item-tags"><a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签(Tags)</a></li>
<li class="menu-item menu-item-categories"><a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类(Categories)</a></li>
<li class="menu-item menu-item-archives"><a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档(Archives)</a></li>
<li class="menu-item menu-item-sitemap"><a href="/sitemap.xml" rel="section"><i class="fa fa-sitemap fa-fw"></i>站点地图(Sitemap)</a></li>
<li class="menu-item menu-item-search">
<a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索(Search)
</a>
</li>
</ul>
</nav>
<div class="search-pop-overlay">
<div class="popup search-popup"><div class="search-header">
<span class="search-icon">
<i class="fa fa-search"></i>
</span>
<div class="search-input-container">
<input autocomplete="off" autocapitalize="off" maxlength="80"
placeholder="搜索..." spellcheck="false"
type="search" class="search-input">
</div>
<span class="popup-btn-close" role="button">
<i class="fa fa-times-circle"></i>
</span>
</div>
<div class="search-result-container no-result">
<div class="search-result-icon">
<i class="fa fa-spinner fa-pulse fa-5x"></i>
</div>
</div>
</div>
</div>
</div>
<div class="toggle sidebar-toggle" role="button">
<span class="toggle-line"></span>
<span class="toggle-line"></span>
<span class="toggle-line"></span>
</div>
<aside class="sidebar">
<div class="sidebar-inner sidebar-overview-active">
<ul class="sidebar-nav">
<li class="sidebar-nav-toc">
文章目录
</li>
<li class="sidebar-nav-overview">
站点概览
</li>
</ul>
<div class="sidebar-panel-container">
<!--noindex-->
<div class="post-toc-wrap sidebar-panel">
</div>
<!--/noindex-->
<div class="site-overview-wrap sidebar-panel">
<div class="site-author site-overview-item animated" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image" alt="平民(Pingmin Fenlly Liu)"
src="/images/think-copyleft.png">
<p class="site-author-name" itemprop="name">平民(Pingmin Fenlly Liu)</p>
<div class="site-description" itemprop="description">平民的个人博客(Pingmin Fenlly Liu's Personal Blog)</div>
</div>
<div class="site-state-wrap site-overview-item animated">
<nav class="site-state">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">26</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<a href="/categories/">
<span class="site-state-item-count">6</span>
<span class="site-state-item-name">分类</span></a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/">
<span class="site-state-item-count">23</span>
<span class="site-state-item-name">标签</span></a>
</div>
</nav>
</div>
<div class="links-of-author site-overview-item animated">
<span class="links-of-author-item">
<a href="https://twitter.com/iPingmin" title="Twitter → https://twitter.com/iPingmin" rel="noopener" target="_blank"><i class="fab fa-twitter fa-fw"></i>Twitter</a>
</span>
<span class="links-of-author-item">
<a href="https://github.com/Pingmin" title="GitHub → https://github.com/Pingmin" rel="noopener" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a>
</span>
<span class="links-of-author-item">
<a href="https://pingmin.blog/images/wechat-public.jpg" title="WeChat(PingminDream, Blocked on 20220605) → https://pingmin.blog/images/wechat-public.jpg"><i class="fab fa-weixin fa-fw"></i>WeChat(PingminDream, Blocked on 20220605)</a>
</span>
<span class="links-of-author-item">
<a href="https://pingmin.me/img/fenlly-qr-codes/wechat-official-account-fenlly.jpg" title="WeChat(FENLLY) → https://pingmin.me/img/fenlly-qr-codes/wechat-official-account-fenlly.jpg" rel="noopener" target="_blank"><i class="fab fa-weixin fa-fw"></i>WeChat(FENLLY)</a>
</span>
<span class="links-of-author-item">
<a href="https://pingmin.me/img/fenlly-qr-codes/wechat-official-account-fenlly-studio.jpg" title="WeChat(FenllyStudio) → https://pingmin.me/img/fenlly-qr-codes/wechat-official-account-fenlly-studio.jpg" rel="noopener" target="_blank"><i class="fab fa-weixin fa-fw"></i>WeChat(FenllyStudio)</a>
</span>
<span class="links-of-author-item">
<a href="https://weibo.com/LiuZeping" title="Weibo → https://weibo.com/LiuZeping" rel="noopener" target="_blank"><i class="fab fa-weibo fa-fw"></i>Weibo</a>
</span>
</div>
<div class="cc-license site-overview-item animated" itemprop="license">
<a href="https://creativecommons.org/licenses/by-sa/4.0/" class="cc-opacity" rel="noopener" target="_blank"><img src="/images/cc-by-sa.svg" alt="Creative Commons"></a>
</div>
<div class="links-of-blogroll site-overview-item animated">
<div class="links-of-blogroll-title"><i class="fa fa-globe fa-fw"></i>
链接(Links)
</div>
<ul class="links-of-blogroll-list">
<li class="links-of-blogroll-item">
<a href="https://pingmin.me/" title="https://pingmin.me" rel="noopener" target="_blank">平民主页(Pingmin's Homepage)</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</aside>
<div class="sidebar-dimmer"></div>
</header>
<div class="back-to-top" role="button" aria-label="返回顶部">
<i class="fa fa-arrow-up"></i>
<span>0%</span>
</div>
<noscript>
<div class="noscript-warning">Theme NexT works best with JavaScript enabled</div>
</noscript>
<div class="main-inner index posts-expand">
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://pingmin.blog/post/find-what-you-love-by-steve-jobs.html">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/think-copyleft.png">
<meta itemprop="name" content="平民(Pingmin Fenlly Liu)">
<meta itemprop="description" content="平民的个人博客(Pingmin Fenlly Liu's Personal Blog)">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="平民·寻梦(Pingmin Fenlly Liu)">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<span class="post-sticky-flag" title="置顶">
<i class="fa fa-thumbtack"></i>
</span><a href="/post/find-what-you-love-by-steve-jobs.html" class="post-title-link" itemprop="url">乔布斯:找到你所爱(Steve Jobs: Find What You Love)</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2007-11-01 21:30:36" itemprop="dateCreated datePublished" datetime="2007-11-01T21:30:36+08:00">2007-11-01</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-01 12:29:50" itemprop="dateModified" datetime="2020-11-01T12:29:50+08:00">2020-11-01</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/beauty-essays/" itemprop="url" rel="index"><span itemprop="name">美文共赏(Beauty Essays)</span></a>
</span>
</span>
</div>
<div class="post-meta">
<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>15k</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>14 分钟</span>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<blockquote>
<p>Stanford Report, June 14, 2005<br>史丹佛大学公告,2005年6月14日</p>
</blockquote>
<h2 id="“You’ve-got-to-find-what-you-love”-Jobs-says"><a href="#“You’ve-got-to-find-what-you-love”-Jobs-says" class="headerlink" title="“You’ve got to find what you love”, Jobs says"></a>“You’ve got to find what you love”, Jobs says</h2><p>乔布斯:一定要知道自己喜欢什么<br>(原意:你得找到自己所喜爱的生活/事业)</p>
<blockquote>
<p>This is the text of the Commencement address by Steve Jobs, CEO of Apple Computer and of Pixar Animation Studios, delivered on June 12, 2005.<br>这是史蒂夫·乔布斯(Steve Paul Jobs, 19550224-20111005)——苹果电脑公司(注:因2007年发布了iPhone而改名为苹果公司,Apple Inc.)和皮克斯动画工作室(注:已于2006年被迪斯尼收购)首席执行官——2005年6月12日在史丹佛大学毕业典礼上的演讲文稿。</p>
</blockquote>
<iframe height=498 width=510 src='https://player.youku.com/embed/XNDU3OTgyMTky' frameborder=2 'allowfullscreen'></iframe>
<p>Thank you.<br>谢谢大家。</p>
<p>I am honored to be with you today at your commencement from one of the finest universities in the world. Truth be told, I never graduated from college, and this is the closest I’ve ever gotten to a college graduation. Today I want to tell you three stories from my life. That’s it. No big deal. Just three stories.<br>今天,很荣幸与你们一同参加这个世界上最好的学校之一的毕业典礼。我从来没从大学毕业。说实话,这是我离大学毕业最近的一刻。今天,我只说三个故事,不谈大道理,三个故事就好。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/post/find-what-you-love-by-steve-jobs.html#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://pingmin.blog/post/loving-our-greater-china.html">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/think-copyleft.png">
<meta itemprop="name" content="平民(Pingmin Fenlly Liu)">
<meta itemprop="description" content="平民的个人博客(Pingmin Fenlly Liu's Personal Blog)">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="平民·寻梦(Pingmin Fenlly Liu)">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<span class="post-sticky-flag" title="置顶">
<i class="fa fa-thumbtack"></i>
</span><a href="/post/loving-our-greater-china.html" class="post-title-link" itemprop="url">“愛我中華”夢之“兩中華旗”系列(The "Two Flags of China" Series, of The "Loving Our Greater China" Dream)</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2013-10-04 07:13:25" itemprop="dateCreated datePublished" datetime="2013-10-04T07:13:25+08:00">2013-10-04</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-07-13 17:50:32" itemprop="dateModified" datetime="2021-07-13T17:50:32+08:00">2021-07-13</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/pingmin-memory/" itemprop="url" rel="index"><span itemprop="name">平民記憶(Pingmin Memory)</span></a>
</span>
,
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/pingmin-diary/" itemprop="url" rel="index"><span itemprop="name">平民日記(Pingmin Diary)</span></a>
</span>
</span>
</div>
<div class="post-meta">
<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>3.6k</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>3 分钟</span>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<blockquote>
<p><a href="/post/loving-our-greater-china.html#%E6%AD%A3%E9%AB%94%E4%B8%AD%E6%96%87%EF%BC%88Traditional-Chinese%EF%BC%89%EF%BC%88%E6%9C%AA%E6%9C%AC%E5%9C%B0%E5%8C%96%EF%BC%89">正體中文(Traditional Chinese)(未本地化)</a></p>
<p><a href="/post/loving-our-greater-china.html#%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87%EF%BC%88Simplified-Chinese%EF%BC%89%EF%BC%88%E4%B8%AD%E5%8D%8E%E5%85%A7%E5%9C%B0%EF%BC%89">简体中文(Simplified Chinese)(中华內地)</a></p>
<p><a href="/post/loving-our-greater-china.html#English-Unlocalized">English(Unlocalized)</a></p>
</blockquote>
<h2 id="概要-Abstract"><a href="#概要-Abstract" class="headerlink" title="概要(Abstract)"></a>概要(Abstract)</h2><p>“愛我中華”夢之“兩中華旗”系列。<br>The “Two Flags of China” Series, of The “Loving Our Greater China” Dream.</p>
<p>关键词:愛我中華,兩中華旗。<br>Keywords: Loving Our Greater China(LOGC), Two Flags of China(TFC).</p>
<h2 id="正文-Body"><a href="#正文-Body" class="headerlink" title="正文(Body)"></a>正文(Body)</h2><blockquote>
<p><img src="https://pingmin.me/img/loving-our-greater-china/20131004-LOGC-TFC-PRC-Shandong-Mount-Tai-Jade-Emperor-Peak-Photographed-by-Liu-Hongwei.jpg" alt="平民泰山玉皇頂兩中華旗(Pingmin on the Jade Emperor Peak of Mount Tai with Two Flags of China, 20131004)(攝影:紅衛兄)" title="平民泰山玉皇頂兩中華旗(Pingmin on the Jade Emperor Peak of Mount Tai with Two Flags of China, 20131004)(攝影:紅衛兄)"></p>
<p><a target="_blank" rel="noopener" href="https://pingmin.me/img/loving-our-greater-china/20131004-LOGC-TFC-PRC-Shandong-Mount-Tai-Jade-Emperor-Peak-Photographed-by-Liu-Hongwei.jpg">平民泰山玉皇頂兩中華旗(Pingmin on the Jade Emperor Peak of Mount Tai with Two Flags of China, 20131004)(攝影:紅衛兄)</a></p>
</blockquote>
<h3 id="English-Unlocalized"><a href="#English-Unlocalized" class="headerlink" title="English(Unlocalized)"></a>English(Unlocalized)</h3><p>2013-2017: The “Two Flags of China” series, of the “Loving Our Greater China” Dream!</p>
<p>Timeline and locations:</p>
<h4 id="2013"><a href="#2013" class="headerlink" title="2013"></a>2013</h4>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/post/loving-our-greater-china.html#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://pingmin.blog/post/she.html">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/think-copyleft.png">
<meta itemprop="name" content="平民(Pingmin Fenlly Liu)">
<meta itemprop="description" content="平民的个人博客(Pingmin Fenlly Liu's Personal Blog)">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="平民·寻梦(Pingmin Fenlly Liu)">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<span class="post-sticky-flag" title="置顶">
<i class="fa fa-thumbtack"></i>
</span><a href="/post/she.html" class="post-title-link" itemprop="url">寻她(Seeking Her)</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2013-11-24 13:56:57" itemprop="dateCreated datePublished" datetime="2013-11-24T13:56:57+08:00">2013-11-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="修改时间:2022-01-21 12:32:32" itemprop="dateModified" datetime="2022-01-21T12:32:32+08:00">2022-01-21</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/bulletin/" itemprop="url" rel="index"><span itemprop="name">公告(Bulletin)</span></a>
</span>
</span>
</div>
<div class="post-meta">
<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>7.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>7 分钟</span>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="概要-Abstract"><a href="#概要-Abstract" class="headerlink" title="概要(Abstract)"></a>概要(Abstract)</h2><p>本文描述了自己一直在找的那个人,那个可以/愿意与对方共享余生的她。<br>Describe the one of the girls who I’m looking for and then we will share the rest of our lives with each other in the future.</p>
<p>实际上,我这也正是在描述我自己,希望你能看明白……<br>Actually, I am also describing myself, hoping you’ll get it…</p>
<p>关键词:珍爱生命,感恩的心,孝敬长辈,尊敬晚辈,终身教育,终身体育,终身学习,独立(人格独立、经济独立、精神独立、独立思考),勇担责任,坚守良知,崇尚自由与民主,生活自然、简单、真实、快乐和有意义。<br>Keywords: Cherishing lives; Having a grateful heart; Treating elders with filial piety and respect; Respecting children/juniors; Lifelong physical education(conception and practice); Lifelong learning(conception and practice); Independence; Responsibility; Conscience; Advocating and longing for freedom/liberty and democracy; Living in natural, simple, real and valuable happiness and “Living in truth”.</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/post/she.html#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://pingmin.blog/post/the-4-year-and-10-year-style.html">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/think-copyleft.png">
<meta itemprop="name" content="平民(Pingmin Fenlly Liu)">
<meta itemprop="description" content="平民的个人博客(Pingmin Fenlly Liu's Personal Blog)">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="平民·寻梦(Pingmin Fenlly Liu)">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/post/the-4-year-and-10-year-style.html" class="post-title-link" itemprop="url">四年與十年(The 4-year and 10-year Style)</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2022-06-19 18:43:52" itemprop="dateCreated datePublished" datetime="2022-06-19T18:43:52+08:00">2022-06-19</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="修改时间:2022-08-23 12:31:40" itemprop="dateModified" datetime="2022-08-23T12:31:40+08:00">2022-08-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/pingmin-diary/" itemprop="url" rel="index"><span itemprop="name">平民日記(Pingmin Diary)</span></a>
</span>
</span>
</div>
<div class="post-meta">
<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.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>1 分钟</span>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="概要-Abstract"><a href="#概要-Abstract" class="headerlink" title="概要(Abstract)"></a>概要(Abstract)</h2><p>關於個人公眾號“平民梦PingminDream”被封等的一些說明。</p>
<h2 id="正文-Body"><a href="#正文-Body" class="headerlink" title="正文(Body)"></a>正文(Body)</h2><p>月初(20220605)因一標題为《33》的隨筆而踩到雷,原個人公眾號“平民梦PingminDream”(注冊於 20180519)已被微信公眾號後薹“封禁至永久”,其歷時約四週年。</p>
<p>所以,今後,部分“平民日記”和“平民隨筆”等(包括已發的和新的)將發到這個“风灵学园FENLLY”公眾號上來。所以,如果你不喜歡,請隨時取(消)關(注)這個“风灵学园FENLLY”公眾號,當然,也歡迎你隨時再關。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/post/the-4-year-and-10-year-style.html#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://pingmin.blog/post/pingmin-position-20220301.html">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/think-copyleft.png">
<meta itemprop="name" content="平民(Pingmin Fenlly Liu)">
<meta itemprop="description" content="平民的个人博客(Pingmin Fenlly Liu's Personal Blog)">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="平民·寻梦(Pingmin Fenlly Liu)">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/post/pingmin-position-20220301.html" class="post-title-link" itemprop="url">我的立場(Pingmin’s Position, 20220301)</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2022-03-01 23:16:08" itemprop="dateCreated datePublished" datetime="2022-03-01T23:16:08+08:00">2022-03-01</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="修改时间:2022-03-13 17:10:20" itemprop="dateModified" datetime="2022-03-13T17:10:20+08:00">2022-03-13</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/bulletin/" itemprop="url" rel="index"><span itemprop="name">公告(Bulletin)</span></a>
</span>
,
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/pingmin-essays/" itemprop="url" rel="index"><span itemprop="name">平民隨筆(Pingmin Essays)</span></a>
</span>
</span>
</div>
<div class="post-meta">
<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>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="概要-Abstract"><a href="#概要-Abstract" class="headerlink" title="概要(Abstract)"></a>概要(Abstract)</h2><p>平民對八孩鐵鏈女和俄烏戰爭的簡要立場聲明。</p>
<h2 id="正文-Body"><a href="#正文-Body" class="headerlink" title="正文(Body)"></a>正文(Body)</h2><blockquote>
<p><img src="https://pingmin.me/img/meihua-village/20160914-the-threshing-in-rice-fields-of-meihua-village.jpg" alt="雙搶打禾時的照片(20160914 15:31 攝于平民自己家鄉梅花村)" title="雙搶打禾時的照片(20160914 15:31 攝于平民自己家鄉梅花村)"></p>
<p>(此處為家鄉一鄉友鋤土照片,待添加,目前可通過文末的公衆號鏈接文章看到)</p>
<p>開荒南野際,守拙歸園田。<br>苟全性命於亂世,不求聞達於諸侯。</p>
</blockquote>
<p>今年(2022)剛過去的這個二月發生了一些重大事件。正如香港大律師公會經常會針對一些公共事件發表一些公開聲明一樣,於此,平民也來簡單說下自己的立場。當然,人都會有局限性,平民只是根據自己目前的所知所想,作出自己的表達而已。而此文,如果你們看到了,就說明過審了;如果沒收到,就說明被截獲了,同時,此公眾號可能會被禁言甚至刪號。但願你們能看到。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/post/pingmin-position-20220301.html#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://pingmin.blog/post/recent-events-and-new-ideas-in-2021-q4.html">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/think-copyleft.png">
<meta itemprop="name" content="平民(Pingmin Fenlly Liu)">
<meta itemprop="description" content="平民的个人博客(Pingmin Fenlly Liu's Personal Blog)">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="平民·寻梦(Pingmin Fenlly Liu)">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/post/recent-events-and-new-ideas-in-2021-q4.html" class="post-title-link" itemprop="url">一些近況与新想法(Some Recent Events and New Ideas in 2021Q4)</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2022-01-01 01:15:39" itemprop="dateCreated datePublished" datetime="2022-01-01T01:15:39+08:00">2022-01-01</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="修改时间:2022-01-14 20:01:45" itemprop="dateModified" datetime="2022-01-14T20:01:45+08:00">2022-01-14</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/pingmin-diary/" itemprop="url" rel="index"><span itemprop="name">平民日記(Pingmin Diary)</span></a>
</span>
</span>
</div>
<div class="post-meta">
<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>3.1k</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>3 分钟</span>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="概要-Abstract"><a href="#概要-Abstract" class="headerlink" title="概要(Abstract)"></a>概要(Abstract)</h2><p>2021 第四季度的一些事情和新的想法。</p>
<h2 id="正文-Body"><a href="#正文-Body" class="headerlink" title="正文(Body)"></a>正文(Body)</h2><blockquote>
<p>There is only one heroism in the world: to see the world as it is and to love it.</p>
<p>世上只有一種英雄主義:認清生活的真相後依然熱愛生活。</p>
<p> ——羅曼·羅蘭(Romain Rolland)《米開朗基羅傳》</p>
</blockquote>
<p>好久沒更新了。恰好,這一篇的內容,將主要是"元日記",即"描述日記的日記",類似于軟件行業的"元數據",即"描述數據的數據"。</p>
<h3 id="一、關於社交網絡"><a href="#一、關於社交網絡" class="headerlink" title="一、關於社交網絡"></a>一、關於社交網絡</h3><p>平民曾想把寫在公眾號的"平民日記(Pingmin Diary)"做到平均每周更新一次。後來,根據自己從開始到現在的實際情況,發現每兩周記一次是比較適合平民的節奏。原因主要有:(1)普通人的每天或每周所發生的事情,雖然都可以記錄下來,但不一定都需要或值得公開與分享;(2)個人的時間管理(主要指週末的空閒時間),目前還有很多可以改進的地方,同時需要兼顧多個方面;(3)因為是業餘(而非全職)寫作,所以每天或每周能寫的內容量非常有限,尤其是如果只是在地鐵上寫的話。"平民隨筆(Pingmin Essays)"的情況,則基本與"平民日記(Pingmin Diary)"類似,唯一的區別是,隨筆可以不是寫日常生活的日記,而主要是記錄自己的一些思考和想法等,其中,與可成系統化的法治、藝術、運動等相關的內容會發布在"风灵学园FENLLY"公眾號上。"平民記憶(Pingmin Memory)"則主要是用來記錄和回憶過往,并做適當總結等。而所有這些,如果時間管理得當,基本可以保持公眾號每月更新兩到四次。當然,以上如果是要寫長篇內容,則更新頻率自然會有所降低。另,平民有見過一些公眾號作者提倡每天更新(平民更願意理解成"每天寫作"),以從量變積累到質變——這確實是一個很值得踐行的好習慣。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/post/recent-events-and-new-ideas-in-2021-q4.html#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="https://pingmin.blog/post/the-10th-anniversary-of-steve-jobs-death.html">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/think-copyleft.png">
<meta itemprop="name" content="平民(Pingmin Fenlly Liu)">
<meta itemprop="description" content="平民的个人博客(Pingmin Fenlly Liu's Personal Blog)">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="平民·寻梦(Pingmin Fenlly Liu)">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/post/the-10th-anniversary-of-steve-jobs-death.html" class="post-title-link" itemprop="url">喬布斯逝世十週年(The 10th Anniversary of Steve Jobs’ Death)</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2021-10-06 16:18:34" itemprop="dateCreated datePublished" datetime="2021-10-06T16:18:34+08:00">2021-10-06</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="修改时间:2022-01-18 19:01:25" itemprop="dateModified" datetime="2022-01-18T19:01:25+08:00">2022-01-18</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/pingmin-memory/" itemprop="url" rel="index"><span itemprop="name">平民記憶(Pingmin Memory)</span></a>
</span>
,
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/pingmin-essays/" itemprop="url" rel="index"><span itemprop="name">平民隨筆(Pingmin Essays)</span></a>
</span>
</span>
</div>
<div class="post-meta">
<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>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>2 分钟</span>
</span>
</div>
</div>
</header>