summaryrefslogtreecommitdiff
path: root/blog/post/2017-12-21.html
blob: 51268fef686d8fadefeede7945c1099f1736a453 (plain) (blame)
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
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="theme-color" content="#000000">
<title>Chrisoft::Blog</title>
<script type="text/javascript" src="/panel.js"></script>
<script type="text/javascript" src="/blog/footnoter.js"></script>
<script type="text/javascript" src="/blog/aes-js.js"></script>
<script type="text/javascript" src="/blog/scrypt.js"></script>
<script type="text/javascript" src="/blog/sha256.js"></script>
<script type="text/javascript" src="/blog/decryptor.js"></script>
<link rel="stylesheet" type="text/css" href="/common.css">
<link rel="stylesheet" type="text/css" href="/panel.css">
<link rel="stylesheet" type="text/css" href="/theme0a.css" id="theme0a">
<link rel="stylesheet" type="text/css" href="/theme0b.css" id="theme0b">
<link rel="stylesheet" type="text/css" href="/theme1a.css" id="theme1a">
<link rel="stylesheet" type="text/css" href="/theme1b.css" id="theme1b">
<link rel="stylesheet" type="text/css" href="/theme2a.css" id="theme2a">
<link rel="stylesheet" type="text/css" href="/theme2b.css" id="theme2b">
<link rel="stylesheet" type="text/css" href="/theme3a.css" id="theme3a">
<link rel="stylesheet" type="text/css" href="/theme3b.css" id="theme3b">
<link rel="stylesheet" type="text/css" href="/blog/blogext.css">
<script>
function ol()
{
	window.onresize=function()
	{
		if(window.innerWidth<768)
		setupevents();
		else unsetevents();
	}
	window.onresize();
	_decryptonload();
}
function loadTheme(){
	var thm=document.cookie.replace(new RegExp("(?:(?:^|.*;\\s*)thm\\s*\\=\\s*([^;]*).*$)|^.*$"),"$1");
	if(thm.length<2||'0123z'.indexOf(thm[0])==-1||'abz'.indexOf(thm[1])==-1)thm='zz';
	var ent="";
	var d=new Date();
	if(thm[0]=='z')
	{
		var m=d.getMonth()+1;
		if(m>=3&&m<6)thm='0'+thm[1];
		else if(m>=6&&m<9)thm='1'+thm[1];
		else if(m>=9&&m<12)thm='2'+thm[1];
		else thm='3'+thm[1];
	}
	if(thm[1]=='z')
	{if(d.getHours()>=18||d.getHours()<6)thm=thm[0]+'b';else thm=thm[0]+'a';}
	ent=`theme${thm}`;
	var R=new RegExp('theme[0-4][ab]');
	for(var i=0;i<document.styleSheets.length;++i)
	{
		if(R.exec(document.styleSheets[i].ownerNode.id)!==null&&document.styleSheets[i].ownerNode.id!=ent)
		document.styleSheets[i].disabled=true;
		else document.styleSheets[i].disabled=false;
	}
	var thmcolor="";
	switch(thm[0])
	{
		case '0':thmcolor=thm[1]=='a'?'#f59dda':'#2f0933';break;
		case '1':thmcolor=thm[1]=='a'?'#9df59d':'#090933';break;
		case '2':thmcolor=thm[1]=='a'?'#edb47b':'#1f1205';break;
		case '3':thmcolor=thm[1]=='a'?'#a0cdfa':'#051933';break;
	}
	document.querySelector("meta[name=theme-color]").setAttribute('content',thmcolor);
}
loadTheme();
</script>
</head>
<body onload="ol()" style="overflow-x:hidden;">
	<div id="panel" class="TText">
		<ul id="panellist">
			<li><a href="/"><h1>Chrisoft</h1></a></li>
			<li><a href="/blog"><h2>Blog</h2></a></li>
			<li><a href="#"><h3 id="title">为什么我<i>就是不</i>使用Mac</h3></a></li>
			<li><span>Tags</span>
			<ul id="tagslist">
			<li><a href="/blog/list/garbage/">garbage</a></li><li><a href="/blog/list/device-review/">device-review</a></li></ul>
			</li>
			<li id="tocouter">
				<span>Table of Contents</span>
				<ul id="tocroot">
				<li><a class="toctarg" href="#tocanch0">前言</a></li><li><a class="toctarg" href="#tocanch1">美观与显示效果</a></li><li><a class="toctarg" href="#tocanch2">系统功能</a></li><li><a class="toctarg" href="#tocanch3">生产力应用支持与兼容性</a></li><li><a class="toctarg" href="#tocanch4">系统稳定性</a></li><li><a class="toctarg" href="#tocanch5">可扩展性</a></li><li><a class="toctarg" href="#tocanch6">其他有关用户体验的部分</a></li><li><ul class="tocnode"><li><a class="toctarg" href="#tocanch7">关于字体</a></li><li><a class="toctarg" href="#tocanch8">关于程序安装</a></li><li><a class="toctarg" href="#tocanch9">关于“清理内存”</a></li><li><a class="toctarg" href="#tocanch10">硬件部分</a></li></ul></li><li><a class="toctarg" href="#tocanch11">结论</a></li><li><a class="toctarg" href="#tocanch12">后记</a></li><li><a class="toctarg" href="#tocanch13">附:关于Mac的使用体验</a></li><li><a class="toctarg" href="#tocanch14">真正的结论</a></li></ul>
			</li>
			<li style="margin-left:-0.5em"><a id="prevp" href="2017-11-25.html">Prev post</a></li>
			<li style="margin-left:-0.5em"><a id="nextp" href="2018-01-05.html">Next post</a></li>
		</ul>
	</div>
	<div id="content">
		<h2 id="titleh" class="TText" style="font-wight:normal;">为什么我<i>就是不</i>使用Mac</h2>
		<div id="datetags" class="TText" style="margin-bottom:1em;">2017-12-21<br>#garbage #device-review</div>
		<hr><div id="article" class="TText">
<article>
<p>
<a id="disclaimer"></a>
声明:本文的写作仅是为了陈述<i></i>为何不使用Mac的原因。如果你认为我在试图说服你
(或者其他人)不要使用Mac,你可能需要<a href="http://cn.uncyclopedia.wikia.com/wiki/%E5%B0%84%E6%9D%80">接受治疗</a></p>
<p>
前段时间<s>(嗯……大约有半年了吧)</s>一个在中南大学的朋友给我发了一篇他的同学的文章。
当时并没有注意。最近在地址栏里却又发现了这篇文章。读后感到自己的受到了「冒犯」
(开个玩笑)。于是现在就写这么一篇某种程度上类似《檄英王鸡》的玩笑文章。
仅仅是为了表达一点自己的想法(以及娱乐)。
</p>
<p>
<a href="https://www.tail0r.com/why-choose-mac/">原文链接</a>
</p>
<style>
table,td,th{border:1px solid grey;}
table{border-collapse:collapse;width:98%;}
td{padding:1em;}
</style>
<table>
<tbody><tr>
<td width="56%"><p>
最近很多同学来问我下一台电脑是否应该购买 Mac,于是我决定写一篇文章说一说。
</p></td>
<td width="44%"><p>
如果是我的话,我会直接让他们<s>滚蛋</s>买啊,看别人花大钱什么的是最令人愉快的事情之一了。
</p></td>
</tr>
<tr>
<td><p>
我一直认为,电脑是手机之外最重要的生产力工具,
</p></td>
<td><p>
wat? 手机是生产力工具?请用您的iPhone X制作一张报名表,或者用它写一段树分治?
(窃笑)
<a id="n1" href="#note1" class="note">[1]</a>
</p></td>
</tr>
<tr>
<td><u>一个先进的生产力工具应该具备的特性是:强大的生产力、愉快的用户体验、高度可定制性、
较低的维护成本</u></td>
<td>
1. 喂,这个其实是看人而不是看设备的吧(<br>
2. 「此网页遇到了问题」<br>
3. 听说你跟LFS比<a href="#customization" id="custa">可定制性</a>(逃<br>
4. Do you want to install the updates now or try tonight?
</td>
</tr>
<tr>
<td>
对于操作系统平台而言,即是<u>优秀的用户体验(美观性和功能性)、丰富的生产力 App 支持、
坚固的系统内核以及系统的自动维护能力</u></td>
<td>
1. <a href="#tocanch13">见下</a><br>
2. vim(和emacs)用户:被称为「App」的东西竟然有生产力?<br>
3. 听说不需要密码就能登陆root账户的系统内核很坚固(<br>
4. Do you want to install the updates now or try tonight? ×2
</td>
</tr>
<tr>
<td>
因为操作系统从底层决定了一台电脑是否是合格的生产力工具,因此本文将着重于比较 Windows
和 macOS 操作系统(考虑到大多数人不会使用 Linux),并在篇末用较少的篇幅提及硬件的部分。
</td>
<td>
真不巧,我不是这位作者所说的「大多数人」(<br>
<a href="http://harmful.cat-v.org/software/operating-systems/osx/">
worst *nix variant still in use</a>
</td>
</tr>
<tr>
<td>
<h2 id="tocanch0" class="tvis">前言</h2>
<p>
本文作者 Frederic,致力于通过各种折腾提高效率、优化体验。三年前前一直使用 Windows
系统,之后在 MacBook Pro 上使用 macOS 至今。
对两个操作系统的特性及应用支持均具有较为深厚的了解。
(声明:由于这三年基本没有接触过 Windows 了,部分观点可能具有一定局限性)
</p>
</td>
<td>
<h2 class="notoc">前言</h2>
<p>
本文作者 Chris,致力于乱搞和写bug。6年前主要使用Windows系统,此后入坑Linux
并将其作为自己的主要工作环境。(发行版使用路线: Ubuntu -&gt; Debian -&gt; Arch -&gt;
Gentoo)。期间无数次帮助操作自己的电脑甚至不如我熟练的Mac用户解决各种问题。
(声明:<a href="#disclaimer">上面已经写过了</a></p>
</td>
</tr>
<tr>
<td>
<h2 id="tocanch1" class="tvis">美观与显示效果</h2>
<p>
作为一个有着美学执念的人,我决定美观性放在第一个来说。下图为 Windows 10 和 macOS
Sierra 的 UI 对比图。总体来说,Windows的界面已经被彻底扁平化,运用简单的图标、
大面积的色块,层级表现不明显,主色调为“科技蓝”;而 macOS Sierra
基本保持了拟物化的的风格和比较浓郁的阴影效果(这是与 iOS 不同的地方),
更加注重细节的精美,主色调为灰色。
</p>
<div style="margin:auto;text-align:center;"><a href="//filestorage.chrisoft.org/blog/img/wcm_a.png">
<img src="//filestorage.chrisoft.org/blog/img/wcm_a.png" width="90%" decoding="async"></a>
<br>系统桌面对比图(左为 Windows 10,右为 macOS Sierra)</div>
<p>
如果你能接受微软的直男审美呢,选择 Windows 倒也不错,否则还是选择 macOS 吧。
</p>
</td>
<td>
<h2 class="notoc">美观与显示效果</h2>
<blockquote>
<p>
"shiny jails"
</p>
<div class="rightaligned">--Richard Stallman
<a id="n2" href="#note2" class="note">[2]</a>
</div>
</blockquote>
<p>
恕我直言,用电脑这么多年,我还没有找到真正符合我的审美的设计理念。如果非要说的话,
Haiku和Mac OS 9可能有这种资格。于是,我选择破罐破摔。
</p>
<div style="margin:auto;text-align:center;"><a href="//filestorage.chrisoft.org/blog/img/gentoodesktop.png"><img style="width: 80%;" src="//filestorage.chrisoft.org/blog/img/ssbsthumb_1280x1280_gentoodesktop.png"></a>
<br>我的桌面</div>
</td>
</tr>
<tr>
<td>
<p>
此外,<u>Windows 10 没有色彩管理系统</u>,这对于影像和设计工作者来说简直是噩梦,
而 macOS 拥有完善的色彩管理功能,这也是为什么影像与设计工作者大多采用 Mac 的原因之一。
颇为有趣的是,曾经的 Windows Vista 是有色彩管理功能的,不过微软后来居然把它取消了。
</p>
</td>
<td>
<p>
Fiction. 微软从1998年添加此功能之后从未取消过。
所以这并不是为什么影像与设计工作者大多采用 Mac 的原因之一。
</p>
<div style="margin:auto;text-align:center;"><a href="//filestorage.chrisoft.org/blog/img/fiction.png">
<img src="//filestorage.chrisoft.org/blog/img/fiction.png" width="80%" decoding="async"></a>
<br>Windows 10 的色彩管理系统</div>
</td>
</tr>
<tr>
<td><p>
值得一提的是,目前在售的 MacBook 全部配备了视网膜 IPS 屏,这意味着无论从哪个角度看,
屏幕色彩总是一致的,并且显示效果清晰细腻;相比之下,许多在售的其他笔记本不仅分辨率过低、
甚至没有配备 IPS 屏。(当然也脱不开价格因素的影响)
</p></td>
<td><p>
如果用买MacBook的钱,买一台屏幕辣鸡的笔记本,在2017年也不是什么容易事。
</p></td>
</tr>
<tr>
<td>
<h2 id="tocanch2" class="tvis">系统功能</h2>
<p>
macOS 和 Windows 的操作习惯确有诸多不相似之处,不过在经过了一段时间过后,
最终都会慢慢适应。举例来说,macOS 没有提供文件的剪切功能(Cmd+X)而仅仅提供了复制
(Cmd+C),这使得我们在移动文件时只能先拷贝再删除、或者直接在两个文件夹间拖动文件。
不过,macOS 并不像 iOS 一样封闭,你可以安装 TotalFinder
等插件给你的系统加上文件剪切功能。
</p>
</td>
<td>
<h2 class="notoc">系统功能</h2>
<p>
我只需要以下3样东西就可以完成我的工作:
</p>
<ul>
<li>编辑器</li>
<li>工具链</li>
<li>www浏览器</li>
</ul>
<p>
……至于操作习惯的问题,如果遇到一个系统要求用户适应系统的情况,这个系统的<a id="customization" href="#custa">可定制性</a>,
就大打折扣了:真正可定制性高的系统应当允许用户改变系统的行为以适应自己的操作习惯,而不是强迫用户去适应系统。
</p>
</td>
</tr>
<tr>
<td>
<p>
要说 macOS 的大杀器,就不得不提到时光机:Time Machine。Time Machine
不仅仅实现了自动的的系统完整备份,它更可以让你随时找到同一份文件在几天前的版本,
从此写文档不用再把文件名改成 v1.0、v1.1、v1.2 了,以前的版本想找回随时可以找回。
同样可以找回多天前误删的文件哦。也许这样听着并不是很伟大的功能,但关键时刻可以救命。
</p>
</td>
<td>
<div style="margin:auto;text-align:center;"><a href="https://i.redd.it/05b6u19pseoz.png">
<img src="https://i.redd.it/05b6u19pseoz.png" width="80%" decoding="async"></a>
<br><i>real</i> version control <br><reduced>(使用Time Machine应当被视为最后一个的变种)</reduced></div>
<p>
另外,微软早在Windows ME<a id="n3" href="#note3" class="note">[3]</a>里就加入了类似的功能(虽然没有人用)……
</p>
</td>
</tr>
<tr>
<td>
<p>
此外,macOS 有一个你用了再也离不开的功能:Spotlight 搜索。它其实就是一个全局的搜索功能,
不过它可以在几秒钟之内找遍你电脑上所有的文件,不仅支持搜索文件名、文件内容,
更可以进行各种类型的筛选。除此之外,它还能提供词典释义、货币转换和快速计算等功能。
</p>
<div style="margin:auto;text-align:center;"><a href="//filestorage.chrisoft.org/blog/img/wcm_b.png">
<img src="//filestorage.chrisoft.org/blog/img/wcm_b.png" width="50%" decoding="async"></a>
<br>Spotlight 搜索文件</div>
<div style="margin:auto;text-align:center;"><a href="//filestorage.chrisoft.org/blog/img/wcm_c.png">
<img src="//filestorage.chrisoft.org/blog/img/wcm_c.png" width="50%" decoding="async"></a>
<br>Spotlight 快速进行货币计算</div>
<p>
Spotlight 可以通过键盘快捷键迅速唤出,让你快速找到你想找的内容。
</p>
</td>
<td>
<p>
I have that exact shit called krunner.
</p>
<div style="margin:auto;text-align:center;"><a href="//filestorage.chrisoft.org/blog/img/krunner.png">
<img src="//filestorage.chrisoft.org/blog/img/krunner.png" width="50%" decoding="async"></a>
<br>KRunner</div>
</td>
</tr>
<tr>
<td><p>
今年秋天,macOS 的更新将会开始采用 <u>APFS 文件系统</u>。作为苹果最新研发的文件系统,
它的性能已经在 iOS 设备上得到了充分证明。加持了 APFS 文件系统的 macOS
在文件读写方面将会与 Windows 拉开很大的一段距离,并且难以超越。
</p></td>
<td>
<p>
<a href="https://www.phoronix.com/scan.php?page=article&amp;item=macos-sierra-ubuntu&amp;num=2"></a>
<a href="http://www.insanelymac.com/forum/topic/308077-file-system-speed-test-hfs-ntfs-extfat-fat32/"></a>
<a href="https://www.phoronix.com/scan.php?page=article&amp;item=macos-1013-linux&amp;num=2">数据</a>
说话。
</p>
<p>
简单地做几点分析:
</p>
<ul>
<li>OSX 10.10和2015年的Windows系统在自家文件系统上的性能都不如外来的文件系统</li>
<li>macOS 10.12被Ubuntu 16.04 LTS吊着打</li>
<li>「加持」了APFS的macOS 10.13依然在除SQLite以外的所有项目上被使用ext4的Ubuntu吊打</li>
</ul>
<p>
虽然可以看出Apple从用户体验的角度对APFS做了专门的改进,但是在与ext4这种10年「高龄」
的文件系统的对决中依然惨败的结果下,我还真不敢相信「macOS 在文件读写方面将会与 Windows
拉开很大的一段距离,并且难以超越」这样的论断,毕竟微软也不是吃素的。
</p>
</td>
</tr>
<tr>
<td>
<h2 id="tocanch3" class="tvis">生产力应用支持与兼容性</h2>
<p>
谈到 macOS 与 Windows,有一个绕不开的话题就是软件的兼容性。
这在许多年前是一个挺大的问题,不过现在已经基本不存在了。不仅你需要的大多数 App 都在
Mac 上有对应的版本,甚至比 Windows 版更加好用。就连大多数银行也支持在 Mac
上登陆网银了。(具体支持请百度查询)即使没有 Mac 版,通常你也能找到功能相似的工具。
退一万步说,如果你一定要用一个 Windows 上的应用,VMware Fusion 虚拟机也能帮你实现。
</p>
<div style="margin:auto;text-align:center;"><a href="//filestorage.chrisoft.org/blog/img/wcm_d.jpg">
<img src="//filestorage.chrisoft.org/blog/img/wcm_d.jpg" width="30%" decoding="async"></a>
<br>VMware Fusion 实现的 macOS 中运行 Windows</div>
</td>
<td>
<h2 class="notoc">生产力应用支持与兼容性</h2>
<ul>
<li>Mac上的vim比Windows版更加好用吗?</li>
<li>VMWare Fusion……买不起买不起。<s>我用Virtualbox。</s></li>
<li>(我的工作已经很大程度上脱离了Windows)</li>
</ul>
</td>
</tr>
<tr>
<td>
<p>
相反,很多优秀的生产力应用仅仅有 macOS 版本而没有 Windows 版本,有了这些应用的加持,
你的 Mac 会变得非常好用,比如:Alfred、MindNode、Reeder、Daisy Disk、Bartender、
Divvy、Paste、aText……之后我会单独写几篇文章来介绍我使用的优秀生产力工具。
在我的寻找和调教后,<u>即使是挑剔的我也要感慨:这真的是一台效率神器</u>。
如果你是开发者或者设计师,强烈推荐一个好工具库:<a href="https://github.com/jaywcjlove/awesome-mac">awesome-mac – GitHub</a>
(如访问速度过慢,<a href="https://git.admirable.one/mirror/Awesome-Mac">点此访问镜像</a>)
它列出了诸多 macOS 上的神器。截止这篇文章发表前,它已经有 13,000 个 star 数,
可见其受欢迎的程度。
</p>
<div style="margin:auto;text-align:center;"><a href="//filestorage.chrisoft.org/blog/img/wcm_e.png">
<img src="//filestorage.chrisoft.org/blog/img/wcm_e.png" width="60%" decoding="async"></a>
<br>我的一部分效率工具</div>
</td>
<td>
<p>
因为并没有一台可以自己随意折腾的Mac,所以这些名字对我来说都十分陌生,
但是我随便挑了一个看起来有意思的名字谷歌了一下之后……有点想笑。
</p>
<div style="margin:auto;text-align:center;"><a href="//filestorage.chrisoft.org/blog/img/filelight.png">
<img src="//filestorage.chrisoft.org/blog/img/filelight.png" width="80%" decoding="async"></a>
<br>Daisy Disk vs Filelight</div>
<p>仅这一个应用,就有以下诸多槽点:</p>
<ul>
<li>界面与Filelight几乎一模一样。</li>
<li>挑剔的您认为查看磁盘使用情况的应用是生产力工具?</li>
<li>4年后,会不会有人把我的自由软件「移植」到Mac上然后卖钱?</li>
</ul>
</td>
</tr>
<tr>
<td>
<p>
就像 iOS 之于安卓,相比 Windows 来说,macOS 的应用支持不仅完全不输 Windows,
并且质量更加优秀。
</p>
</td>
<td>
<p>
得益于苹果的严格监管,App Store里的平均应用质量确实高出一截。然而,App Store
之外就是一番熟悉的景象了。
<a id="n4" href="#note4" class="note">[4]</a>
</p>
</td>
</tr>
<tr>
<td>
<p>
另外一个不能忽略的问题是,即使是同款软件,在 Windows 和 macOS
上的设计逻辑也天差地别。有个古老的段子,形容 macOS 和 Windows 的区别:
</p>
<blockquote>
PC 用户有三宝:补丁、皮肤、注册表;<br><br>
Mac 用户折腾少:触控、热键、免打扰。</blockquote>
</td>
<td>
<p>
首先,以PC和Mac区分电脑是一种过时的方式。这种方式起源于IBM PC时代,
而「PC」一词早已早已不再是IBM PC的代称。依我来看,所有「个人计算机」都应被称为PC,
而PC和Mac的区别,如今不过是苹果的营销用语罢了。
</p>
<p>
至于那个段子,<a href="https://support.apple.com/en-us/HT208315">看看就好</a></p>
</td>
</tr>
<tr>
<td>
<p>
这样的情况源于 macOS 约定俗成的开发原则——效率。macOS 的效率优先级非常高,
而繁复冗杂的娱乐功能恰恰和效率对立,想要融入 macOS 的生态体系,必须遵循苹果的要求,
和效率无关的内容自然成为被砍掉的对象。以 QQ 举例,大家都知道腾讯什么功能都往 PC QQ
上堆,以至于腾讯最后为厌倦了复杂的、效率为首的用户单独推出了轻聊版;而<u>在 QQ for Mac
上,至今没有 QQ 秀等功能,一切功能以聊天为中心,爱钱如命的腾讯甚至丝毫不推销增值服务。</u>
</p>
<p>
哦,顺便一说,<u>macOS 上所有软件都是没有弹窗的</u>。是的,尽管这很难相信,
但基本所有国内流氓厂商到 Mac 上都安分了。
</p>
</td>
<td>
<p>
因为即使是国产厂商也懂得「放弃广告比放弃用户值」这种非常浅显的道理吧(
<a id="n5" href="#note5" class="note">[5]</a>
</p>
<p>
另外,一同学天天抱怨Mac上的QQ辣鸡(比如天天掉线啦,没有群视频啦之类)。
<s>可见其信仰不足,急需充值。</s>
</p>
</td>
</tr>
<tr>
<td>
<h2 id="tocanch4" class="tvis">系统稳定性</h2>
<p>
众所周知,Windows 是最容易崩溃、重装频繁、饱受病毒和恶意软件困扰的操作系统之一。
客观的说,一个合格的生产力工具不应该总是需要你去维护(包括杀毒、重装系统等)。
从这个角度,给 Windows 打负分也不为过。相比之下,macOS <u>更稳定、更少被病毒侵扰、
几乎不需要重新安装系统</u>。这同样是你抛弃 Windows、投入 Mac 怀抱的原因之一。
</p>
</td>
<td>
<h2 class="notoc">系统稳定性</h2>
<p>
因为恶意软件的作者也知道用哪个操作系统的人多啊(</p><p>
<s>假如原文的传教十分成功,macOS的份额和Windows交换之后,是谁更容易出问题还说不定呢。</s>
</p>
</td>
</tr>
<tr>
<td><p>
我的 MacBook 用了三年,来除了一次因为排查问题而重装了一次之外,没有重新安装过操作系统
(那次是因为雷蛇云驱动,这是我见过史上最糟糕的驱动)。三年的时间,如果是 Windows
系统已经被折腾的重装几遍了吧。这几乎说得上是生活方式上的差异了(偷笑)
</p></td>
<td><p>
非常抱歉打击这位作者的自信,但是我家里的台式机(目前主要是家里人在用)的Windows 7已经
7年没有重装过了——是的,从第一次安装系统以来。但是,我想这主要还是个人的使用习惯问题。
如果你非要用电脑做奇怪的事情,三天两头重装个系统也就不值得奇怪了。
<a id="n6" href="#note6" class="note">[6]</a>
</p><p>
另外,这是一台联网的电脑,而且上面没有装杀毒软件喔。
</p><p>
<reduced>最后我认为,不论一个人是因为什么原因而逃离Windows,
如果连Windows的日常维护都无法做到的话,可能不太适合从事这个行业的工作。
</reduced>
<s>我怎么又开始把其他人都想得跟自己一样了。</s>
</p></td>
</tr>
<tr>
<td><p>
如你所见,<u>几乎所有的大规模网络攻击都是针对 Windows 的。</u>在我三年使用 Mac 的时间里,
并没有安装杀毒软件(事实上Mac 几乎不需要杀毒软件,当然 360 不会这么告诉你【摊手】),
却用的比那些安装了一堆杀软的同学安稳的多。
</p>
<div style="margin:auto;text-align:center;"><a href="//filestorage.chrisoft.org/blog/img/wcm_f.jpg">
<img src="//filestorage.chrisoft.org/blog/img/wcm_f.jpg" width="60%" decoding="async"></a>
<br>前阵子肆虐的勒索病毒</div>
</td>
<td><p>
而Linux上就连数量可怜的几个恶意软件都有重大bug,比如<a href="https://labs.bitdefender.com/2015/11/linux-ransomware-debut-fails-on-predictable-encryption-key/">某勒索软件</a>,
它竟然像我一样写<code>srand(time(NULL));</code>,最终导致这个可怜的作者也许连一分钱都没有收到。好惨啊。
</p></td>
</tr>
<tr>
<td>
<h2 id="tocanch5" class="tvis">可扩展性</h2>
<p>
对于极客来说,可扩展性是很有必要的。在 macOS 上,有 brew 等优秀的包管理工具,
它类似于其他 Linux 操作系统中的easy_install、yum 等等。它省去了繁琐的安装和配置步骤,
让你愉快地体验开发者的智慧;而在 Windows 下……我记得是没有的。如果有的话,欢迎在评论区留言。
</p>
</td>
<td>
<h2 class="notoc">可扩展性</h2>
<p>
「其他Linux操作系统」,macOS……也是Linux吗?(facepalm)
</p>
<p>
抱歉我不能在您的评论区留言,但是Windows有nuget(以及WSL)。
</p>
</td>
</tr>
<tr>
<td>
<p>
考虑到 macOS 是类 UNIX 操作系统,基本上你的 Linux 知识都可以用在你的 MacBook 上,
非常美妙。并且,很多适用于 Linux 的神器都能在 macOS 上运行。对于极客和开发者来说,
这无疑是非常令人激动的。
</p>
<p>
重新强调一次:虽然都是苹果的亲儿子,但 macOS 比 iOS 开放多了。
macOS 有一系列自我保护机制,保证系统功能不被恶意程序破坏,但你可以“合法”地关闭这些保护,
并进行高级定制。
</p>
<div style="margin:auto;text-align:center;"><a href="//filestorage.chrisoft.org/blog/img/wcm_g.png">
<img src="//filestorage.chrisoft.org/blog/img/wcm_g.png" width="60%" decoding="async"></a>
<br>关闭系统完整性保护(SIP)</div>
</td>
<td>
<p>
<b>注意了!果粉看过来!OS X早在2007年就<a href="https://arstechnica.com/gadgets/2007/08/mac-os-x-leopard-receives-unix-03-certification/">取得了UNIX 03认证</a></b>
所以把macOS称为「类UNIX」是对这个伟大的操作系统的贬低(
</p>
<p>至于Linux的兼容性的话,微软的WSL可能是一个更好的选择,因为macOS是macOS,
而WSL是以兼容Linux为目的的。</p>
<div style="margin:auto;text-align:center;"><a href="//filestorage.chrisoft.org/blog/img/apple-bc.jpg">
<img src="//filestorage.chrisoft.org/blog/img/apple-bc.jpg" width="60%" decoding="async"></a>
<br><reduced>是啊,Linux的知识都可以应用过来,成功率甚至更高呢(</reduced></div>
<p><reduced>顺便,您的zsh提示符主题的powerline字体显示有点小问题,看着有点难受。
<s>可能这才是这个主题本来的样子?</s></reduced></p>
</td>
</tr>
<tr>
<td>
<h2 id="tocanch6" class="tvis">其他有关用户体验的部分</h2>
<h3 id="tocanch7" class="tvis">关于字体</h3>
<p>
客观的说,尽管微软也做出了一些努力,即使到了 2017 年,<u>Windows
在字体渲染方面也依然被 macOS 完爆十条街</u>。macOS 的字体渲染精美、忠于字形,
像印刷品一般精致;而微软为了兼容低端设备,则对字体进行了诸多不合理的调整,
并且显示效果非常差劲。相信使用过 macOS 和 Windows 的同学一眼就能认出来同样一款字体的截图,
哪张来自 Windows,哪张来自 Mac。
</p>
</td>
<td>
<h2 class="notoc">其他有关用户体验的部分</h2>
<h3 class="notoc">关于字体</h3>
<div style="margin:auto;text-align:center;"><a href="//filestorage.chrisoft.org/blog/img/apple-aa.png">
<img src="//filestorage.chrisoft.org/blog/img/apple-aa.png" width="80%" decoding="async"></a>
<br><reduced>请问这是什么印刷品,非法出版物?</reduced></div>
<p>
看到上图的时候我甚至曾经怀疑了我的眼睛,但是……
<s>毕竟Apple也是用FreeType的,我们不要开这种无聊的玩笑了。</s>
</p>
</td>
</tr>
<tr>
<td>
<h3 id="tocanch8" class="tvis">关于程序安装</h3>
<p>
此外,<u>大多数 macOS 的应用程序安装流程是直接拖动 app 到“应用程序”文件夹,然后就完成了。</u>
如果需要删除,把 app 拖到废纸篓即可。这是其他操作系统都没有的愉悦体验,<u>即使是国内软件,
也不用担心被安装全家桶</u>。(坦诚地说,我还是建议安装一个 AppDelete,它能帮你找到 App
在其他目录下生成的文件,并把它们一并清理掉。使用方法也很简单,拖进去就行了,不用像
Windows 一样走一遍“卸载向导”之类的)
</p>
<div style="margin:auto;text-align:center;"><a href="//filestorage.chrisoft.org/blog/img/wcm_h.png">
<img src="//filestorage.chrisoft.org/blog/img/wcm_h.png" width="60%" decoding="async"></a>
<br>拖动安装 App</div>
</td>
<td>
<h3 class="notoc">关于程序安装</h3>
<p>
如果读者不清楚macOS为何能实现这样的安装方式,我可以在此对着左边的果粉班门弄斧一把,
任何不当之处请不吝赐教:macOS中文件夹也存在类型,文件名以.app结尾的文件夹实质上是程序包,
里面含有程序的可执行文件,依赖的库以及资源等等。
</p>
<p>
但这种安装方式在解决了(苹果当年当众嘲笑过的)DLL Hell的同时,带来了另一个问题,
如果毫不相干的应用A和B同时使用了系统并为提供的库libX,那么libX将在磁盘上有两个版本。
这样也彻底抵消了动态链接为数不多的几个好处之一。(最近Linux上兴起的snap,flatpak等等也有类似的情况。)
</p>
<p>
所以我并不能看到这种安装方式的任何好处。<s>我选择Portage。</s>
</p>
</td>
</tr>
<tr>
<td>
<h3 id="tocanch9" class="tvis">关于“清理内存”</h3>
<p>“清理内存”大概算是国内各个奇葩厂商培养出来的用户习惯:在桌面上强行放个按钮,
点一下清理内存,还时不时提醒你电脑又可以提速了【滑稽】。电脑是提速了,
可你他喵的总是烦我,我工作效率下降了啊。macOS 会自动调配内存资源,无需手动干预
(而且内存管理逻辑和 Windows 完全不同),因此完全不需要弄个小气泡小火箭什么的清理内存。
</p></td>
<td>
<h3 class="notoc">关于“清理内存”</h3>
<p>
我现在的RAM内存使用率连超过20%的时候都很少有。<s>等于我这台电脑,花了八千块,用到的功能,
连八分之一都不到!</s>
</p>
</td>
</tr>
<tr>
<td>
<h3 id="tocanch10" class="tvis">硬件部分</h3>
<p>首先说说触摸板吧。相信每个用过 MacBook 的人都会有这样的体会:MacBook
的触摸板是世界上最好用的触摸板,没有之一。它的触摸感非常美妙、手势功能也非常实用。
在不干重活儿的情况下,使用 MacBook 可以几个月不用鼠标,
而这对于其他厂商的笔记本来说是很难想象的。
</p>
<div style="margin:auto;text-align:center;"><a href="//filestorage.chrisoft.org/blog/img/wcm_i.png">
<img src="//filestorage.chrisoft.org/blog/img/wcm_i.png" width="60%" decoding="async"></a>
<br>MacBook Pro</div>
</td>
<td>
<h3 class="notoc">硬件部分</h3>
<p>
MacBook的触摸板<i>确实</i>非常好用。尤其是手势操作的整合度,令人印象十分深刻。
<b>但是!</b>这一切其实都得归功于软件(macOS),而不是硬件。因为从硬件的角度来讲,
那不过是一块相当普通的Synaptics触摸板<a id="n7" href="#note7" class="note">[7]</a>而已。
对于一些Linux发行版来说,touchegg可以实现同样的功能(然而整合度并没有macOS那么高)。
</p>
<p>
另外,几个月不用鼠标这件事,大概作者是不知道或者不习惯ThinkPad的「小红点」指点杆
<a id="n8" href="#note8" class="note">[8]</a>。
如果熟练运用小红点的话手几乎不用动就能让鼠标跑遍整个屏幕,我还用它打Minecraft呢(
</p>
</td>
</tr>
<tr>
<td>
<p>
其次是硬件外观。MacBook 的轻便程度很难有能与之比肩的竞争对手。即便有,
在工业设计的美观度上它们也统统输给了 MacBook,尽管我不得不承认最近苹果为了让 MacBook
Pro 更薄而缩水硬件配置的做法非常愚蠢。
</p>
<div style="margin:auto;text-align:center;"><a href="//filestorage.chrisoft.org/blog/img/wcm_j.png">
<img src="//filestorage.chrisoft.org/blog/img/wcm_j.png" width="60%" decoding="async"></a>
<br>MacBook Pro</div>
</td>
<td>
<p>
首先,这段话作为作者的个人看法,是没有什么好评价的。但是当我每次将我的
ThinkPad X1 Yoga变为平板,从机器侧面抽出笔来做笔记的时候,总能看到附近几个Mac
用户投来的羡慕的眼光。顺便,14寸的X1y比当前13寸的MBP要轻100g喔。
</p>
<p>
然后就是有关Touch Bar的起源……
</p>
<div style="margin:auto;text-align:center;"><a href="//filestorage.chrisoft.org/blog/img/x1c2kb.png">
<img src="//filestorage.chrisoft.org/blog/img/x1c2kb.png" width="60%" decoding="async"></a>
<br>Keyboard of ThinkPad X1 Carbon 2nd Gen.</div>
<p>
上图是2014年发布的ThinkPad X1 Carbon第二代的键盘。
这个被联想称作「Adaptive Keyboard」的东西,一开始与Touch Bar一样,毁誉参半。
然而非常不幸的是联想为了保留某些按键而对键盘布局做出的智障改动
<a id="n9" href="#note9" class="note">[9]</a>
使得负面评价很快就压过了正面的评价。因此联想在下一代的X1 Carbon当中不得不取消了这个「改进」。
</p>
<p>
客观地讲,苹果经常不是第一个使用某种技术或者设计的公司,但几乎总是第一个取得成功的公司,
这是非常有趣的一个事实。
</p>
</td>
</tr>
<tr>
<td>
<p>
最后提一下安全性:得益于软硬件的结合,理论上即便你的 MacBook 丢失,盗贼也无法提取数据。
你还可以开启固件密码,它能阻止 Mac 从启动磁盘以外的任何设备启动。
这样盗贼既无法获得你的数据、又无法从其他设备启动,可以说是一点用都没有了。
如果资金充裕的话,你大可以直接去 Apple Store 购买一台新的 MacBook,然后通过 Time
Machine 恢复备份,你就得到了一台一模一样的电脑。
</p>
</td>
<td>
<ul>
<li>基于Intel ME的防丢失,<a href="https://en.wikipedia.org/wiki/Intel_Management_Engine#SA-00086">恐怕</a><a href="https://www.theregister.co.uk/2017/12/06/intel_management_engine_pwned_by_buffer_overflow/">不是什么好东西</a>
<a id="n10" href="#note10" class="note">[10]</a>
</li>
<li>「资金充裕的话」,假设不成立。</li>
</ul>
<p>
顺便提一个几个月前发生的小事,某同学崭新的MacBookPro13,2被<a id="n11" href="#note11" class="note">[11]</a>浇上了一点(&lt;100ml)水,
吓得3天没敢开机,结果开机之后发现还是挂了,于是只好<s>强忍着疼痛</s>去Genius Bar修。
</p>
<p>
我有一次不小心打翻了杯子把半杯热水浇到了电脑上,水自己从排水孔流了出来。
半小时不到我就继续我的工作了。<s>高下立判。</s>
</p>
</td>
</tr>
<tr>
<td><p>
友情提醒一下:现代的 MacBook 内部结构已经全部焊死,因此你无法进行添加内存和硬盘、更换
CPU等操作。建议购买时直接升级到够用的配置,免得以后后悔:MacBook 的闪存是苹果订制的,
性能非常好,但 256GB 可能不够用,强烈建议升级到512GB 或更高;8GB
内存对于一般用户已经够用,不过对于专业用户,强烈建议升级到 16GB。
</p>
<p>
客观的说,Mac 是为工作而生的,在你做出了诸多个性化的设置之后,
它会成为你非常美妙的工作伙伴。然而,它并不适合大型 PC 游戏玩家,因此对于这部分重度
PC 游戏玩家来说,我的建议是换成 MacBook + PS4 的搭配。如果你执意要用 PC 玩大型游戏,
或许还是应该考虑购买一台专门的游戏本(或台式机)。说到底,鱼和熊掌从来都不是兼得的。
</p>
</td>
<td>
<p>
这里我来做一个消费者经常做的简单的对比(显然我在买电脑前也做过这种对比)。
下面有四台电脑的配置单。所有图片均制作于2017-12-23。
</p>
<p>
(顺便羡慕一下可以同时买得起MacBook+PS4的,这已经远远超越Pay Station级别了。)
</p>
</td>
</tr>
<tr>
<td colspan="2">
<table>
<tbody><tr>
<th>Configuration Item</th>
<th><a href="//filestorage.chrisoft.org/blog/img/mbp15-config.png">MacBook Pro 15</a></th>
<th></th>
<th><a href="//filestorage.chrisoft.org/blog/img/p51-config.png">ThinkPad P51 Workstation</a></th>
</tr>
<tr>
<th>CPU</th>
<td><a href="https://ark.intel.com/products/97462/Intel-Core-i7-7920HQ-Processor-8M-Cache-up-to-4_10-GHz">Intel Core i7-7920HQ 4C8T, 3.1GHz, 4.1GHz, 8MB</a></td>
<td>&lt;&lt;</td>
<td><a href="https://ark.intel.com/products/97468/Intel-Xeon-Processor-E3-1535M-v6-8M-Cache-3_10-GHz">Intel Xeon E3-1535M v6 4C8T, 3.1GHz, 4.2GHz, 8MB</a></td>
</tr>
<tr>
<th>RAM</th>
<td>16GiB LPDDR3 2133MHz</td>
<td>&lt;&lt;</td>
<td>64GiB DDR4 2400MHz with ECC</td>
</tr>
<tr>
<th>Graphics</th>
<td>Radeon Pro 560</td>
<td><a id="n12" href="#note12" class="note">[12]</a></td>
<td>Quadro M2200 Mobile</td>
</tr>
<tr>
<th>Display</th>
<td>15.4", 2880×1800, Wide colour (P3) gamut</td>
<td>&lt;</td>
<td>15.6", 3840×2160, IPS</td>
</tr>
<tr>
<th>Storage</th>
<td>2TB PCIe NVMe SSD</td>
<td>&lt;&lt;</td>
<td>2*1TB PCIe NVMe SSD+1TB HDD, optional RAID</td>
</tr>
<tr>
<th>Extra Features</th>
<td>macOS</td>
<td>??</td>
<td>Color Sensor, WWAN</td>
</tr>
<tr>
<th>Price</th>
<td>$4,199.00</td>
<td>&gt;</td>
<td>$3,851.10<a id="n13" href="#note13" class="note">[13]</a></td>
</tr>
</tbody></table><br>
<table>
<tbody><tr>
<th>Configuration Item</th>
<th><a href="//filestorage.chrisoft.org/blog/img/mbp13-config.png">MacBook Pro 13</a></th>
<th></th>
<th><a href="//filestorage.chrisoft.org/blog/img/spectre-config.png">HP Spectre x360</a></th>
</tr>
<tr>
<th>CPU</th>
<td><a href="https://ark.intel.com/products/97541/Intel-Core-i7-7567U-Processor-4M-Cache-up-to-4_00-GHz">Intel Core i7-7567U 2C4T, 3.5GHz, 4.0GHz, 4MB</a></td>
<td>&lt;</td>
<td><a href="https://ark.intel.com/products/122589/Intel-Core-i7-8550U-Processor-8M-Cache-up-to-4_00-GHz">Intel Core i7-8550U 4C8T, 1.8GHz, 4.2GHz, 8MB</a></td>
</tr>
<tr>
<th>RAM</th>
<td>16GiB LPDDR3 2133MHz</td>
<td></td>
<td>16GiB LPDDR3 2133MHz</td>
</tr>
<tr>
<th>Graphics</th>
<td>Intel Iris Plus Graphics 650</td>
<td>&gt;</td>
<td>Intel UHD Graphics 620</td>
</tr>
<tr>
<th>Display</th>
<td>13.3", 2560×1600, Wide colour (P3) gamut</td>
<td>&lt;</td>
<td>13.3", 3840×2160, touch screen</td>
</tr>
<tr>
<th>Storage</th>
<td>1TB PCIe NVMe SSD</td>
<td></td>
<td>1TB PCIe NVMe SSD</td>
</tr>
<tr>
<th>Extra Features</th>
<td>macOS</td>
<td>??</td>
<td>Convertible, Pen</td>
</tr>
<tr>
<th>Price</th>
<td>$2,899.00</td>
<td>&gt;&gt;</td>
<td>$1,669.99</td>
</tr>
</tbody></table>
</td>
</tr>
<tr>
<td></td>
<td>
<p>
在对macOS没有需求的情况下,我不知道什么人<a id="n14" href="#note14" class="note">[14]</a>
会购买MacBook。(尽管许多MacBook用户告诉我macOS &gt;&gt; everything,
但是这与我的个人体验并不完全相符。)
</p>
</td>
</tr>
<tr>
<td>
<h2 id="tocanch11" class="tvis">结论</h2>
<p>
对于多媒体和设计、以及计算机行业学习者、工作者(事实上 Mac 是这些行业里的标配),
我强烈建议购买一台 Mac 作为工作机。坦诚地说,我建议所有不用电脑玩游戏的用户都购买一台
Mac,因为它真的是一款易用、优雅、省心的生产力机器。
</p>
</td>
<td>
<p>
原作者所说确为事实。我曾经见过中南大学苹果实验室的照片。<s>隔着屏幕都能闻到钱味。</s>
即使像我所在的穷人实验室MacBook的份额也高达30%左右。
</p>
<p>但是我的结论嘛……很显然当然是我不会使用Mac啦!</p>
</td>
</tr>
<tr>
<td>
<p>无意冒犯,但<u>买了 MacBook 之后就别双系统安装 Windows 了,因为真的不需要,
而且看起来真的很 unprofessional。</u></p>
</td>
<td>
<p>
这个我可以说1000个同意。尤其是看到数字图像处理老师在MacBook Pro
上运行Windows 10使用MS Office 2003之后。因此每次有MacBook用户找我安装Windows系统时
<a id="n15" href="#note15" class="note">[15]</a>,
我都会先花10分钟来劝说他们不要这样做。
</p>
<p>
顺便我也建议Mac用户不要双系统安装Linux,因为这样你会失去使用Mac的唯一好处。
</p>
</td>
</tr>
<tr>
<td>
「:grin:只有两者都用过才有权利谈好与不好。神烦那种都没用过 Mac 的天天喷苹果。」
</td>
<td>
<p><reduced>(本来这个格子应该和下面合为一体的,奈何我水平太低,做不到啊)</reduced></p>
</td>
</tr><tr>
<td colspan="2">
<h2 id="tocanch12" class="tvis">后记</h2>
<p>
我用过的第一台Mac是家里人办公室的一台运行Mac OS 9的Power Macintosh G3。
(如果作者没有留级的话)这台电脑的岁数可能比原文的作者都大呢:)。它有一个<a href="https://en.wikipedia.org/wiki/Apple_USB_Mouse">圆形的鼠标</a></p>
<p>
后来我因为各种各样的原因,或长或短地使用过以下Mac型号:
</p>
<ul>
<li>MacBookPro8,1</li>
<li>MacBookPro10,2</li>
<li>MacBookAir5,1</li>
<li>MacBookPro12,1</li>
</ul>
<p>
单纯从系统用户的角度讲,OS X(macOS)做得还是相当出色的,比如我就觉得Finder
的使用方式十分顺手,甚至想在Linux下也拥有类似操作逻辑的文件管理器(与此同时,
也有很多人觉得这种设计反人类),Mission Control有助于提升工作效率等等
<a id="n16" href="#note16" class="note">[16]</a></p>
<p>
然而到了我真正需要工作的地方时,我甚至开始怀疑我会不会用电脑了<reduced><s>大概就是不会</s></reduced>。
我曾经在上面提到的一台MacBook上试图将我的工程移植到OS X(当时的称呼)。然后就有了我「不堪回首的」、
「有史以来最差的C++开发体验」(XCode不听使唤,QtCreator bug层出不穷等等,
最后我用qmake+make生成了一个根本不能用的可执行文件)。
</p>
<p>
我在高中最后一年时,曾经(用接近一年的时间)非常认真地考虑过下一台电脑会不会是
MacBook Pro。纠结之处当然还是集中在价格上(当时还有可以自己加内存的MBP卖,
所以不需要像现在一样加8GB RAM就要多$200,或者1520人民币)。然而当 ThinkPad X1 Carbon 4th Gen.
和ThinkPad X1 Yoga 1st Gen. 亮相CES 2016<a id="n17" href="#note17" class="note">[17]</a>
的时候,我大概就有了最终的决定了。
</p>
<div style="margin:auto;text-align:center;"><a href="//filestorage.chrisoft.org/blog/img/applecurse.png">
<img src="//filestorage.chrisoft.org/blog/img/applecurse.png" width="50%" decoding="async"></a>
<br><reduced>乱入的花絮</reduced></div>
<h2 id="tocanch13" class="tvis">附:关于Mac的使用体验</h2>
<div style="margin:auto;text-align:center;"><a href="//filestorage.chrisoft.org/blog/img/brokenmac.jpg">
<img src="//filestorage.chrisoft.org/blog/img/brokenmac.jpg" width="50%" decoding="async"></a>
<br><reduced><s>broken mac</s></reduced></div>
<p>除了不愉快的开发经验之外,我使用Mac的其他经历还算正常。但是在reddit的softwaregore
subbredit中,来自macOS的software gore和来自Windows的software gore明显不成比例……
按道理来说应该与用户比例类似才对,然而刷那个subreddit给我的感受是……Mac用户和其他电脑用户比例可达1:1。
<s>强烈建议苹果的测试人员多刷一刷reddit。</s>
</p>
<h2 id="tocanch14" class="tvis">真正的结论</h2>
<p>
<s>穷人就是事多。要我也是Pay Station,管它什么配置性价比系统的,
先把所有品牌的顶配笔记本全都买到手再说。哪个用着不爽砸哪个。</s>
</p>
</td>
</tr>
</tbody></table>
</article>
</div><br><hr>
		<div class="TText" id="notediv" style="font-size:80%;"><span class="TText"><a id="note1" href="#n1">[1]</a>: <a href="https://www.reddit.com/r/softwaregore/comments/6jjfik/111_84_call_911_thanks_siri/"><s>现在的siri是不是只需要说一声「给我写个树分治」就行啊</s></a><br></span><span class="TText"><a id="note2" href="#n2">[2]</a>: <a href="https://youtu.be/fkkDvKGcNSo?t=1081">https://youtu.be/fkkDvKGcNSo?t=1081</a><br></span><span class="TText"><a id="note3" href="#n3">[3]</a>: 史上最辣鸡的操作系统之一。<br></span><span class="TText"><a id="note4" href="#n4">[4]</a>: 顺便,我为数不多的Mac App Store使用体验几乎全是噩梦级的,
可能是苹果发现了我是用不起苹果的低端人口了吧。<br></span><span class="TText"><a id="note5" href="#n5">[5]</a>: 尽管他们不在意我这样的Linux用户,但我也不在意他们呀(<br></span><span class="TText"><a id="note6" href="#n6">[6]</a>: 认识一个不愿透露姓名的dalao,一天可以重装7次系统,还不是Windows。<br></span><span class="TText"><a id="note7" href="#n7">[7]</a>: 虽然它面积超大,还有Taptic Engine的配合(尽管Taptic Engine的效果并没有给我留下深刻的印象)<br></span><span class="TText"><a id="note8" href="#n8">[8]</a>: 不习惯小红点的ThinkPad用户实在太多,以至于联想现在甚至认为小红点只为情怀而存在的了<br></span><span class="TText"><a id="note9" href="#n9">[9]</a>: 还有一个不能忽视的原因是ThinkPad死忠粉似乎不多<br></span><span class="TText"><a id="note10" href="#n10">[10]</a>: 我的辣鸡电脑上也有Intel的AMT,现在我正试图想办法屏蔽掉它。<br></span><span class="TText"><a id="note11" href="#n11">[11]</a>: 非常有意思的是,
这里的主语是「另一个崭新的MacBookPro13,2用户」<br></span><span class="TText"><a id="note12" href="#n12">[12]</a>: <a href="https://technical.city/en/video/Radeon-Pro-560-vs-Quadro-M2200-Mobile">https://technical.city/en/video/Radeon-Pro-560-vs-Quadro-M2200-Mobile</a><br></span><span class="TText"><a id="note13" href="#n13">[13]</a>: Base Price是逗人玩的,不需要注册直接Checkout购买就是Your Price的价格<br></span><span class="TText"><a id="note14" href="#n14">[14]</a>: 上半年,一个学长抱着
「不准自己打游戏」的思路买了一台MacBookPro11,4,现在他表示十分后悔。<br></span><span class="TText"><a id="note15" href="#n15">[15]</a>: 并且我在安装完毕后从来都不给他们使用非法方式激活,
因为我没有理由怀疑一个MacBook用户负担不起Windows7旗舰版的授权费用<br></span><span class="TText"><a id="note16" href="#n16">[16]</a>: 虽然这个东西其实应该视为UNIX系系统常有的工作区的一种<br></span><span class="TText"><a id="note17" href="#n17">[17]</a>: <s>并且看到美帝良心想在美帝的售价之后</s><br></span></div>
		<div id="insanch" style="height:3em;"></div>
		<div id="footer" style="">
		<div id="pagesw" class="TText" style="width:100%;height:0.5em;"></div>
			<div style="text-align:center;" class="TText">
				Proudly powered by SSBS <reduced style="font-size:70%;">(the static stupid blogging system)</reduced> 2.5
				<br>
				Content licensed under CC BY-SA 4.0. <span id="purgep" style="display:none;font-size:70%;">This page has passphrase(s) stored. Click <a href="javascript:_purgep()">here</a> to purge.</span>
			</div>
		</div>
		<div id="cmdbuf" class="TText" style="transition:500ms;padding:1em;font-size:2em;color:white;position:absolute;background-color:rgba(0,0,0,0.6);left:50%;top:50%;transform:translate(-50%,-50%);pointer-events:none;opacity:0;">
		</div>
	</div>
	<div id="decryptui" style="display:none;opacity:0;color:white;z-index:1000;position:fixed;left:0;top:0;width:100%;height:100%;background-color:rgba(0,0,0,0.4);transition:opacity 0.5s;">
		<div id="decryptdlg" class="TText" style="padding:10px 20px;position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);background-color:rgba(0,0,0,0.6);">
			<div id="keyhint" style="margin-bottom:8px;"></div>
			<div style="margin-bottom:8px;">Key: <input id="keyinp" type="text" style="color:#fff;"></div>
			<div style="height:2.25em;">
			<button id="btndecrypt" onclick="decryptor(decid,document.getElementById('keyinp').value);" style="position:absolute;left:20px;">Decrypt</button>
			<button onclick="hidedecryptui();" style="position:absolute;right:20px;">Cancel</button>
			</div>
		
	</div>


</div></body></html>