-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubtitles.en.vtt
3216 lines (2004 loc) · 139 KB
/
subtitles.en.vtt
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
WEBVTT
Kind: captions
Language: en
00:00:00.000 --> 00:00:02.119 align:start position:0%
there's<00:00:00.210><c> no</c><00:00:00.359><c> denying</c><00:00:00.690><c> the</c><00:00:00.870><c> MacBook</c><00:00:01.260><c> Air</c><00:00:01.410><c> 2020</c>
00:00:02.119 --> 00:00:02.129 align:start position:0%
there's no denying the MacBook Air 2020
00:00:02.129 --> 00:00:05.360 align:start position:0%
there's no denying the MacBook Air 2020
is<00:00:02.280><c> a</c><00:00:02.520><c> pretty</c><00:00:03.179><c> sleek</c><00:00:03.780><c> little</c><00:00:04.319><c> machine</c><00:00:04.830><c> except</c>
00:00:05.360 --> 00:00:05.370 align:start position:0%
is a pretty sleek little machine except
00:00:05.370 --> 00:00:07.880 align:start position:0%
is a pretty sleek little machine except
for<00:00:05.609><c> one</c><00:00:05.850><c> small</c><00:00:06.240><c> flaw</c><00:00:06.660><c> instead</c><00:00:07.379><c> of</c><00:00:07.470><c> doing</c><00:00:07.620><c> what</c>
00:00:07.880 --> 00:00:07.890 align:start position:0%
for one small flaw instead of doing what
00:00:07.890 --> 00:00:10.490 align:start position:0%
for one small flaw instead of doing what
every<00:00:08.610><c> other</c><00:00:08.820><c> laptop</c><00:00:09.450><c> manufacturer</c><00:00:10.230><c> ever</c>
00:00:10.490 --> 00:00:10.500 align:start position:0%
every other laptop manufacturer ever
00:00:10.500 --> 00:00:14.270 align:start position:0%
every other laptop manufacturer ever
does<00:00:10.950><c> and</c><00:00:11.309><c> put</c><00:00:12.120><c> a</c><00:00:12.150><c> fan</c><00:00:12.540><c> right</c><00:00:13.080><c> next</c><00:00:13.500><c> to</c><00:00:13.650><c> the</c><00:00:13.830><c> CPU</c>
00:00:14.270 --> 00:00:14.280 align:start position:0%
does and put a fan right next to the CPU
00:00:14.280 --> 00:00:15.530 align:start position:0%
does and put a fan right next to the CPU
where<00:00:14.580><c> the</c><00:00:14.730><c> majority</c><00:00:15.089><c> of</c><00:00:15.150><c> the</c><00:00:15.269><c> heat</c><00:00:15.420><c> is</c>
00:00:15.530 --> 00:00:15.540 align:start position:0%
where the majority of the heat is
00:00:15.540 --> 00:00:17.450 align:start position:0%
where the majority of the heat is
generated<00:00:15.690><c> Apple</c><00:00:16.529><c> opted</c><00:00:16.859><c> to</c><00:00:16.890><c> put</c><00:00:17.100><c> the</c><00:00:17.250><c> fin</c>
00:00:17.450 --> 00:00:17.460 align:start position:0%
generated Apple opted to put the fin
00:00:17.460 --> 00:00:20.480 align:start position:0%
generated Apple opted to put the fin
data<00:00:18.119><c> over</c><00:00:18.480><c> yonder</c><00:00:19.050><c> somewhere</c><00:00:19.619><c> leaving</c><00:00:20.279><c> the</c>
00:00:20.480 --> 00:00:20.490 align:start position:0%
data over yonder somewhere leaving the
00:00:20.490 --> 00:00:23.120 align:start position:0%
data over yonder somewhere leaving the
CPU<00:00:20.939><c> with</c><00:00:21.090><c> only</c><00:00:21.270><c> about</c><00:00:21.570><c> 10</c><00:00:22.080><c> watts</c><00:00:22.470><c> of</c><00:00:22.769><c> cooling</c>
00:00:23.120 --> 00:00:23.130 align:start position:0%
CPU with only about 10 watts of cooling
00:00:23.130 --> 00:00:24.560 align:start position:0%
CPU with only about 10 watts of cooling
capacity<00:00:23.640><c> to</c><00:00:23.789><c> work</c><00:00:23.970><c> with</c><00:00:24.180><c> how</c><00:00:24.420><c> much</c>
00:00:24.560 --> 00:00:24.570 align:start position:0%
capacity to work with how much
00:00:24.570 --> 00:00:26.529 align:start position:0%
capacity to work with how much
performance<00:00:24.840><c> did</c><00:00:25.380><c> they</c><00:00:25.500><c> leave</c><00:00:25.680><c> on</c><00:00:25.830><c> the</c><00:00:25.949><c> table</c>
00:00:26.529 --> 00:00:26.539 align:start position:0%
performance did they leave on the table
00:00:26.539 --> 00:00:30.109 align:start position:0%
performance did they leave on the table
to<00:00:27.539><c> find</c><00:00:27.750><c> out</c><00:00:27.990><c> the</c><00:00:28.140><c> answer</c><00:00:28.470><c> to</c><00:00:28.500><c> that</c><00:00:29.000><c> we</c><00:00:30.000><c> have</c>
00:00:30.109 --> 00:00:30.119 align:start position:0%
to find out the answer to that we have
00:00:30.119 --> 00:00:32.659 align:start position:0%
to find out the answer to that we have
collected<00:00:30.449><c> this</c><00:00:30.929><c> bin</c><00:00:31.289><c> of</c><00:00:31.560><c> cooling</c><00:00:32.340><c> apparatus</c>
00:00:32.659 --> 00:00:32.669 align:start position:0%
collected this bin of cooling apparatus
00:00:32.669 --> 00:00:36.590 align:start position:0%
collected this bin of cooling apparatus
with<00:00:33.510><c> everything</c><00:00:34.170><c> from</c><00:00:34.700><c> upside-down</c><00:00:35.700><c> air</c>
00:00:36.590 --> 00:00:36.600 align:start position:0%
with everything from upside-down air
00:00:36.600 --> 00:00:40.639 align:start position:0%
with everything from upside-down air
things<00:00:37.079><c> to</c><00:00:37.590><c> water</c><00:00:38.280><c> cooling</c><00:00:38.850><c> pumps</c><00:00:39.480><c> to</c><00:00:39.780><c> this</c>
00:00:40.639 --> 00:00:40.649 align:start position:0%
things to water cooling pumps to this
00:00:40.649 --> 00:00:43.459 align:start position:0%
things to water cooling pumps to this
tray<00:00:41.070><c> which</c><00:00:41.910><c> you</c><00:00:42.090><c> guys</c><00:00:42.300><c> might</c><00:00:42.600><c> recognize</c><00:00:42.840><c> from</c>
00:00:43.459 --> 00:00:43.469 align:start position:0%
tray which you guys might recognize from
00:00:43.469 --> 00:00:46.010 align:start position:0%
tray which you guys might recognize from
our<00:00:43.649><c> video</c><00:00:43.950><c> from</c><00:00:44.250><c> several</c><00:00:44.789><c> years</c><00:00:45.149><c> back</c><00:00:45.450><c> water</c>
00:00:46.010 --> 00:00:46.020 align:start position:0%
our video from several years back water
00:00:46.020 --> 00:00:50.510 align:start position:0%
our video from several years back water
cooling<00:00:46.559><c> the</c><00:00:46.829><c> original</c><00:00:47.570><c> MacBook</c><00:00:48.570><c> 2015</c><00:00:49.520><c> by</c>
00:00:50.510 --> 00:00:50.520 align:start position:0%
cooling the original MacBook 2015 by
00:00:50.520 --> 00:00:53.000 align:start position:0%
cooling the original MacBook 2015 by
actually<00:00:51.210><c> submerging</c><00:00:51.780><c> it</c><00:00:51.899><c> in</c><00:00:52.170><c> water</c><00:00:52.500><c> yes</c><00:00:52.739><c> my</c>
00:00:53.000 --> 00:00:53.010 align:start position:0%
actually submerging it in water yes my
00:00:53.010 --> 00:00:56.119 align:start position:0%
actually submerging it in water yes my
friends<00:00:53.430><c> today</c><00:00:53.610><c> is</c><00:00:53.850><c> gonna</c><00:00:54.030><c> be</c><00:00:54.300><c> a</c><00:00:54.739><c> lot</c><00:00:55.739><c> of</c><00:00:55.770><c> fun</c>
00:00:56.119 --> 00:00:56.129 align:start position:0%
friends today is gonna be a lot of fun
00:00:56.129 --> 00:00:59.090 align:start position:0%
friends today is gonna be a lot of fun
and<00:00:56.610><c> it's</c><00:00:56.910><c> brought</c><00:00:57.090><c> to</c><00:00:57.270><c> you</c><00:00:57.360><c> by</c><00:00:57.629><c> ting</c><00:00:58.199><c> why</c><00:00:58.770><c> pay</c>
00:00:59.090 --> 00:00:59.100 align:start position:0%
and it's brought to you by ting why pay
00:00:59.100 --> 00:01:00.920 align:start position:0%
and it's brought to you by ting why pay
for<00:00:59.399><c> what</c><00:00:59.550><c> you're</c><00:00:59.760><c> not</c><00:00:59.940><c> going</c><00:01:00.210><c> to</c><00:01:00.420><c> use</c><00:01:00.629><c> with</c>
00:01:00.920 --> 00:01:00.930 align:start position:0%
for what you're not going to use with
00:01:00.930 --> 00:01:03.110 align:start position:0%
for what you're not going to use with
ting<00:01:01.260><c> you</c><00:01:01.710><c> only</c><00:01:02.039><c> pay</c><00:01:02.340><c> for</c><00:01:02.579><c> the</c><00:01:02.640><c> mobile</c><00:01:02.820><c> data</c>
00:01:03.110 --> 00:01:03.120 align:start position:0%
ting you only pay for the mobile data
00:01:03.120 --> 00:01:05.179 align:start position:0%
ting you only pay for the mobile data
that<00:01:03.390><c> you</c><00:01:03.660><c> use</c><00:01:03.989><c> and</c><00:01:04.229><c> you</c><00:01:04.530><c> can</c><00:01:04.559><c> learn</c><00:01:04.860><c> more</c><00:01:05.129><c> at</c>
00:01:05.179 --> 00:01:05.189 align:start position:0%
that you use and you can learn more at
00:01:05.189 --> 00:01:15.399 align:start position:0%
that you use and you can learn more at
the<00:01:05.400><c> link</c><00:01:05.610><c> in</c><00:01:05.820><c> the</c><00:01:06.119><c> video</c><00:01:06.360><c> description</c>
00:01:15.399 --> 00:01:15.409 align:start position:0%
00:01:15.409 --> 00:01:18.050 align:start position:0%
to<00:01:16.409><c> tell</c><00:01:16.590><c> if</c><00:01:16.740><c> our</c><00:01:16.890><c> wacky</c><00:01:17.280><c> cooling</c><00:01:17.640><c> solutions</c>
00:01:18.050 --> 00:01:18.060 align:start position:0%
to tell if our wacky cooling solutions
00:01:18.060 --> 00:01:19.760 align:start position:0%
to tell if our wacky cooling solutions
are<00:01:18.210><c> doing</c><00:01:18.420><c> anything</c><00:01:18.810><c> we</c><00:01:18.990><c> will</c><00:01:19.140><c> first</c><00:01:19.409><c> need</c><00:01:19.710><c> to</c>
00:01:19.760 --> 00:01:19.770 align:start position:0%
are doing anything we will first need to
00:01:19.770 --> 00:01:22.190 align:start position:0%
are doing anything we will first need to
establish<00:01:20.070><c> a</c><00:01:20.640><c> performance</c><00:01:21.330><c> baseline</c><00:01:21.869><c> running</c>
00:01:22.190 --> 00:01:22.200 align:start position:0%
establish a performance baseline running
00:01:22.200 --> 00:01:24.499 align:start position:0%
establish a performance baseline running
our<00:01:22.320><c> MacBook</c><00:01:22.740><c> Air</c><00:01:22.950><c> which</c><00:01:23.310><c> is</c><00:01:23.430><c> a</c><00:01:23.520><c> quad-core</c><00:01:23.850><c> 8</c>
00:01:24.499 --> 00:01:24.509 align:start position:0%
our MacBook Air which is a quad-core 8
00:01:24.509 --> 00:01:28.490 align:start position:0%
our MacBook Air which is a quad-core 8
thread<00:01:24.960><c> CPU</c><00:01:25.470><c> with</c><00:01:25.830><c> no</c><00:01:26.549><c> AIDS</c><00:01:27.080><c> whatsoever</c><00:01:28.080><c> I'm</c>
00:01:28.490 --> 00:01:28.500 align:start position:0%
thread CPU with no AIDS whatsoever I'm
00:01:28.500 --> 00:01:30.320 align:start position:0%
thread CPU with no AIDS whatsoever I'm
just<00:01:28.650><c> gonna</c><00:01:28.770><c> fire</c><00:01:29.040><c> up</c><00:01:29.190><c> Intel</c><00:01:29.610><c> power</c><00:01:29.850><c> gadget</c>
00:01:30.320 --> 00:01:30.330 align:start position:0%
just gonna fire up Intel power gadget
00:01:30.330 --> 00:01:32.630 align:start position:0%
just gonna fire up Intel power gadget
here<00:01:30.509><c> and</c><00:01:30.750><c> you</c><00:01:31.409><c> can</c><00:01:31.560><c> also</c><00:01:31.680><c> see</c><00:01:32.040><c> we've</c><00:01:32.399><c> got</c><00:01:32.610><c> a</c>
00:01:32.630 --> 00:01:32.640 align:start position:0%
here and you can also see we've got a
00:01:32.640 --> 00:01:35.480 align:start position:0%
here and you can also see we've got a
quad<00:01:33.030><c> core</c><00:01:33.300><c> 8</c><00:01:33.570><c> thread</c><00:01:33.869><c> MacBook</c><00:01:34.320><c> Pro</c><00:01:34.619><c> 13-inch</c>
00:01:35.480 --> 00:01:35.490 align:start position:0%
quad core 8 thread MacBook Pro 13-inch
00:01:35.490 --> 00:01:37.670 align:start position:0%
quad core 8 thread MacBook Pro 13-inch
running<00:01:36.030><c> right</c><00:01:36.180><c> next</c><00:01:36.479><c> to</c><00:01:36.720><c> it</c><00:01:36.780><c> now</c><00:01:36.990><c> it</c><00:01:37.170><c> does</c><00:01:37.409><c> run</c>
00:01:37.670 --> 00:01:37.680 align:start position:0%
running right next to it now it does run
00:01:37.680 --> 00:01:39.620 align:start position:0%
running right next to it now it does run
a<00:01:37.740><c> different</c><00:01:38.310><c> CPU</c><00:01:38.820><c> but</c><00:01:39.060><c> it</c><00:01:39.149><c> should</c><00:01:39.330><c> give</c><00:01:39.509><c> us</c>
00:01:39.620 --> 00:01:39.630 align:start position:0%
a different CPU but it should give us
00:01:39.630 --> 00:01:42.830 align:start position:0%
a different CPU but it should give us
some<00:01:39.840><c> idea</c><00:01:40.380><c> of</c><00:01:41.040><c> what</c><00:01:41.520><c> we</c><00:01:41.640><c> might</c><00:01:41.790><c> strive</c><00:01:42.420><c> for</c>
00:01:42.830 --> 00:01:42.840 align:start position:0%
some idea of what we might strive for
00:01:42.840 --> 00:01:45.170 align:start position:0%
some idea of what we might strive for
with<00:01:42.990><c> a</c><00:01:43.049><c> properly</c><00:01:43.740><c> cooled</c><00:01:44.130><c> chip</c><00:01:44.640><c> looking</c><00:01:45.090><c> at</c>
00:01:45.170 --> 00:01:45.180 align:start position:0%
with a properly cooled chip looking at
00:01:45.180 --> 00:01:47.060 align:start position:0%
with a properly cooled chip looking at
the<00:01:45.270><c> power</c><00:01:45.420><c> draw</c><00:01:45.659><c> these</c><00:01:45.899><c> CPUs</c><00:01:46.080><c> our</c><00:01:46.619><c> MacBook</c>
00:01:47.060 --> 00:01:47.070 align:start position:0%
the power draw these CPUs our MacBook
00:01:47.070 --> 00:01:50.990 align:start position:0%
the power draw these CPUs our MacBook
Pro<00:01:47.340><c> starts</c><00:01:47.789><c> by</c><00:01:47.970><c> shooting</c><00:01:48.539><c> up</c><00:01:48.690><c> to</c><00:01:48.899><c> about</c><00:01:49.170><c> 40</c><00:01:50.000><c> 45</c>
00:01:50.990 --> 00:01:51.000 align:start position:0%
Pro starts by shooting up to about 40 45
00:01:51.000 --> 00:01:54.859 align:start position:0%
Pro starts by shooting up to about 40 45
watts<00:01:51.539><c> and</c><00:01:51.840><c> then</c><00:01:52.350><c> dips</c><00:01:52.649><c> down</c><00:01:52.920><c> closer</c><00:01:53.460><c> to</c><00:01:53.869><c> 3035</c>
00:01:54.859 --> 00:01:54.869 align:start position:0%
watts and then dips down closer to 3035
00:01:54.869 --> 00:01:57.529 align:start position:0%
watts and then dips down closer to 3035
and<00:01:55.710><c> finishes</c><00:01:56.220><c> out</c><00:01:56.340><c> the</c><00:01:56.490><c> test</c><00:01:56.729><c> there</c><00:01:56.970><c> so</c>
00:01:57.529 --> 00:01:57.539 align:start position:0%
and finishes out the test there so
00:01:57.539 --> 00:02:02.570 align:start position:0%
and finishes out the test there so
there's<00:01:58.229><c> no</c><00:01:58.440><c> way</c><00:01:58.679><c> that</c><00:01:58.950><c> a</c><00:02:00.380><c> 25</c><00:02:01.380><c> watt</c><00:02:01.679><c> peak</c><00:02:02.009><c> CPU</c>
00:02:02.570 --> 00:02:02.580 align:start position:0%
there's no way that a 25 watt peak CPU
00:02:02.580 --> 00:02:04.760 align:start position:0%
there's no way that a 25 watt peak CPU
is<00:02:02.850><c> going</c><00:02:03.360><c> to</c><00:02:03.690><c> be</c><00:02:03.810><c> able</c><00:02:03.899><c> to</c><00:02:04.050><c> match</c><00:02:04.350><c> that</c><00:02:04.619><c> in</c>
00:02:04.760 --> 00:02:04.770 align:start position:0%
is going to be able to match that in
00:02:04.770 --> 00:02:07.490 align:start position:0%
is going to be able to match that in
terms<00:02:04.950><c> of</c><00:02:05.100><c> performance</c><00:02:05.580><c> but</c><00:02:05.929><c> you</c><00:02:06.929><c> can</c><00:02:07.229><c> see</c>
00:02:07.490 --> 00:02:07.500 align:start position:0%
terms of performance but you can see
00:02:07.500 --> 00:02:10.850 align:start position:0%
terms of performance but you can see
that<00:02:07.679><c> over</c><00:02:07.979><c> time</c><00:02:08.250><c> we</c><00:02:08.910><c> fall</c><00:02:09.239><c> down</c><00:02:09.479><c> as</c><00:02:09.780><c> low</c><00:02:10.019><c> as</c><00:02:10.050><c> 10</c>
00:02:10.850 --> 00:02:10.860 align:start position:0%
that over time we fall down as low as 10
00:02:10.860 --> 00:02:13.580 align:start position:0%
that over time we fall down as low as 10
watts<00:02:11.250><c> so</c><00:02:11.640><c> I</c><00:02:12.360><c> think</c><00:02:12.720><c> we</c><00:02:12.989><c> should</c><00:02:13.019><c> be</c><00:02:13.350><c> able</c><00:02:13.470><c> to</c>
00:02:13.580 --> 00:02:13.590 align:start position:0%
watts so I think we should be able to
00:02:13.590 --> 00:02:16.070 align:start position:0%
watts so I think we should be able to
close<00:02:13.830><c> the</c><00:02:14.040><c> gap</c><00:02:14.069><c> a</c><00:02:14.250><c> fair</c><00:02:14.610><c> bit</c><00:02:14.760><c> here</c><00:02:15.080><c> 100</c>
00:02:16.070 --> 00:02:16.080 align:start position:0%
close the gap a fair bit here 100
00:02:16.080 --> 00:02:18.170 align:start position:0%
close the gap a fair bit here 100
degrees<00:02:16.410><c> that</c><00:02:17.220><c> seems</c><00:02:17.550><c> perfectly</c><00:02:17.880><c> reasonable</c>
00:02:18.170 --> 00:02:18.180 align:start position:0%
degrees that seems perfectly reasonable
00:02:18.180 --> 00:02:20.270 align:start position:0%
degrees that seems perfectly reasonable
actually<00:02:19.140><c> they</c><00:02:19.260><c> both</c><00:02:19.380><c> run</c><00:02:19.590><c> at</c><00:02:19.709><c> 100</c><00:02:20.010><c> degrees</c>
00:02:20.270 --> 00:02:20.280 align:start position:0%
actually they both run at 100 degrees
00:02:20.280 --> 00:02:22.520 align:start position:0%
actually they both run at 100 degrees
just<00:02:20.850><c> this</c><00:02:21.180><c> one</c><00:02:21.390><c> doesn't</c><00:02:21.600><c> have</c><00:02:21.720><c> a</c><00:02:21.840><c> fan</c>
00:02:22.520 --> 00:02:22.530 align:start position:0%
just this one doesn't have a fan
00:02:22.530 --> 00:02:24.160 align:start position:0%
just this one doesn't have a fan
attached<00:02:22.860><c> to</c><00:02:23.100><c> it</c>
00:02:24.160 --> 00:02:24.170 align:start position:0%
attached to it
00:02:24.170 --> 00:02:27.670 align:start position:0%
attached to it
1016<00:02:25.170><c> points</c><00:02:26.150><c> darn</c><00:02:27.150><c> it</c>
00:02:27.670 --> 00:02:27.680 align:start position:0%
1016 points darn it
00:02:27.680 --> 00:02:30.979 align:start position:0%
1016 points darn it
about<00:02:28.680><c> half</c><00:02:28.890><c> the</c><00:02:28.920><c> speed</c><00:02:29.600><c> let's</c><00:02:30.600><c> try</c><00:02:30.720><c> and</c><00:02:30.840><c> close</c>
00:02:30.979 --> 00:02:30.989 align:start position:0%
about half the speed let's try and close
00:02:30.989 --> 00:02:33.310 align:start position:0%
about half the speed let's try and close
that<00:02:31.019><c> gap</c><00:02:31.320><c> cooling</c><00:02:31.739><c> method</c><00:02:32.100><c> number</c><00:02:32.190><c> one</c><00:02:32.370><c> a</c>
00:02:33.310 --> 00:02:33.320 align:start position:0%
that gap cooling method number one a
00:02:33.320 --> 00:02:36.380 align:start position:0%
that gap cooling method number one a
stand<00:02:34.320><c> well</c><00:02:34.950><c> and</c><00:02:35.190><c> a</c><00:02:35.280><c> fan</c><00:02:35.519><c> oh</c><00:02:35.790><c> and</c><00:02:36.150><c> we're</c><00:02:36.299><c> gonna</c>
00:02:36.380 --> 00:02:36.390 align:start position:0%
stand well and a fan oh and we're gonna
00:02:36.390 --> 00:02:38.960 align:start position:0%
stand well and a fan oh and we're gonna
add<00:02:36.570><c> a</c><00:02:36.600><c> fan</c><00:02:36.840><c> to</c><00:02:37.019><c> it</c><00:02:37.140><c> with</c><00:02:37.380><c> that</c><00:02:37.560><c> there</c><00:02:37.970><c> yeah</c>
00:02:38.960 --> 00:02:38.970 align:start position:0%
add a fan to it with that there yeah
00:02:38.970 --> 00:02:40.759 align:start position:0%
add a fan to it with that there yeah
that's<00:02:39.180><c> why</c><00:02:39.360><c> the</c><00:02:39.420><c> the</c><00:02:39.600><c> rubber</c><00:02:40.290><c> chummy's</c><00:02:40.650><c> are</c>
00:02:40.759 --> 00:02:40.769 align:start position:0%
that's why the the rubber chummy's are
00:02:40.769 --> 00:02:42.949 align:start position:0%
that's why the the rubber chummy's are
on<00:02:40.890><c> it</c><00:02:41.010><c> that's</c><00:02:41.280><c> pretty</c><00:02:41.519><c> cheesy</c><00:02:41.850><c> so</c><00:02:42.360><c> between</c><00:02:42.630><c> 40</c>
00:02:42.949 --> 00:02:42.959 align:start position:0%
on it that's pretty cheesy so between 40
00:02:42.959 --> 00:02:44.630 align:start position:0%
on it that's pretty cheesy so between 40
and<00:02:42.989><c> 45</c><00:02:43.200><c> we'll</c><00:02:43.739><c> consider</c><00:02:43.980><c> that</c><00:02:44.160><c> baseline</c>
00:02:44.630 --> 00:02:44.640 align:start position:0%
and 45 we'll consider that baseline
00:02:44.640 --> 00:02:46.160 align:start position:0%
and 45 we'll consider that baseline
before<00:02:44.790><c> we</c><00:02:44.970><c> start</c><00:02:45.239><c> each</c><00:02:45.329><c> test</c><00:02:45.570><c> yeah</c><00:02:45.930><c> sounds</c>
00:02:46.160 --> 00:02:46.170 align:start position:0%
before we start each test yeah sounds
00:02:46.170 --> 00:02:47.690 align:start position:0%
before we start each test yeah sounds
good<00:02:46.260><c> that</c><00:02:46.530><c> reasonable</c><00:02:47.010><c> okay</c>
00:02:47.690 --> 00:02:47.700 align:start position:0%
good that reasonable okay
00:02:47.700 --> 00:02:50.870 align:start position:0%
good that reasonable okay
so<00:02:48.180><c> here</c><00:02:48.299><c> we</c><00:02:48.420><c> go</c><00:02:48.950><c> 1016</c><00:02:49.950><c> so</c><00:02:50.430><c> score</c><00:02:50.670><c> to</c><00:02:50.760><c> beat</c>
00:02:50.870 --> 00:02:50.880 align:start position:0%
so here we go 1016 so score to beat
00:02:50.880 --> 00:02:53.569 align:start position:0%
so here we go 1016 so score to beat
conspiracy<00:02:51.660><c> theory</c><00:02:51.989><c> time</c><00:02:52.200><c> tell</c><00:02:53.160><c> me</c><00:02:53.280><c> I'm</c><00:02:53.370><c> wrong</c>
00:02:53.569 --> 00:02:53.579 align:start position:0%
conspiracy theory time tell me I'm wrong
00:02:53.579 --> 00:02:56.479 align:start position:0%
conspiracy theory time tell me I'm wrong
here<00:02:53.870><c> Apple</c><00:02:54.870><c> has</c><00:02:55.079><c> been</c><00:02:55.109><c> sandbagging</c><00:02:56.070><c> the</c>
00:02:56.479 --> 00:02:56.489 align:start position:0%
here Apple has been sandbagging the
00:02:56.489 --> 00:02:58.370 align:start position:0%
here Apple has been sandbagging the
performance<00:02:57.090><c> of</c><00:02:57.269><c> their</c><00:02:57.390><c> Intel</c><00:02:57.959><c> based</c><00:02:58.140><c> Mac</c>
00:02:58.370 --> 00:02:58.380 align:start position:0%
performance of their Intel based Mac
00:02:58.380 --> 00:03:02.330 align:start position:0%
performance of their Intel based Mac
books<00:02:59.090><c> for</c><00:03:00.090><c> years</c><00:03:00.450><c> now</c><00:03:00.769><c> so</c><00:03:01.769><c> that</c><00:03:01.980><c> when</c><00:03:02.160><c> they</c>
00:03:02.330 --> 00:03:02.340 align:start position:0%
books for years now so that when they
00:03:02.340 --> 00:03:05.210 align:start position:0%
books for years now so that when they
announce<00:03:02.700><c> the</c><00:03:03.359><c> ARM</c><00:03:03.600><c> based</c><00:03:03.810><c> Mac</c><00:03:04.380><c> books</c><00:03:04.709><c> they</c>
00:03:05.210 --> 00:03:05.220 align:start position:0%
announce the ARM based Mac books they
00:03:05.220 --> 00:03:08.090 align:start position:0%
announce the ARM based Mac books they
can<00:03:05.400><c> be</c><00:03:05.489><c> like</c><00:03:06.140><c> BAM</c><00:03:07.140><c> it</c><00:03:07.350><c> runs</c><00:03:07.530><c> it</c><00:03:07.650><c> like</c><00:03:07.799><c> half</c><00:03:07.950><c> the</c>
00:03:08.090 --> 00:03:08.100 align:start position:0%
can be like BAM it runs it like half the
00:03:08.100 --> 00:03:10.370 align:start position:0%
can be like BAM it runs it like half the
temperature<00:03:08.609><c> no</c><00:03:09.090><c> no</c><00:03:09.359><c> applause</c><00:03:09.630><c> nothing</c><00:03:10.200><c> all</c>
00:03:10.370 --> 00:03:10.380 align:start position:0%
temperature no no applause nothing all
00:03:10.380 --> 00:03:10.550 align:start position:0%
temperature no no applause nothing all
right
00:03:10.550 --> 00:03:10.560 align:start position:0%
right
00:03:10.560 --> 00:03:12.560 align:start position:0%
right
it<00:03:10.859><c> is</c><00:03:11.040><c> amazing</c><00:03:11.640><c> how</c><00:03:11.790><c> quickly</c><00:03:12.209><c> this</c><00:03:12.510><c> thing</c>
00:03:12.560 --> 00:03:12.570 align:start position:0%
it is amazing how quickly this thing
00:03:12.570 --> 00:03:15.470 align:start position:0%
it is amazing how quickly this thing
shoots<00:03:13.019><c> up</c><00:03:13.260><c> to</c><00:03:13.410><c> 100</c><00:03:14.160><c> degrees</c><00:03:14.250><c> isn't</c><00:03:14.880><c> it</c><00:03:15.000><c> it's</c>
00:03:15.470 --> 00:03:15.480 align:start position:0%
shoots up to 100 degrees isn't it it's
00:03:15.480 --> 00:03:17.330 align:start position:0%
shoots up to 100 degrees isn't it it's
pretty<00:03:15.870><c> much</c><00:03:15.930><c> instant</c><00:03:16.500><c> how</c><00:03:16.739><c> can</c><00:03:16.920><c> it</c><00:03:17.010><c> not</c><00:03:17.160><c> love</c>
00:03:17.330 --> 00:03:17.340 align:start position:0%
pretty much instant how can it not love
00:03:17.340 --> 00:03:21.680 align:start position:0%
pretty much instant how can it not love
itself<00:03:17.730><c> of</c><00:03:17.880><c> itself</c><00:03:18.120><c> is</c><00:03:18.329><c> so</c><00:03:18.510><c> hot</c><00:03:18.720><c> a</c><00:03:20.690><c> goddamn</c>
00:03:21.680 --> 00:03:21.690 align:start position:0%
itself of itself is so hot a goddamn
00:03:21.690 --> 00:03:24.470 align:start position:0%
itself of itself is so hot a goddamn
ltte<00:03:22.200><c> starcom</c><00:03:22.920><c> okay</c><00:03:23.489><c> you</c><00:03:23.550><c> told</c><00:03:23.879><c> me</c><00:03:24.060><c> this</c><00:03:24.269><c> was</c>
00:03:24.470 --> 00:03:24.480 align:start position:0%
ltte starcom okay you told me this was
00:03:24.480 --> 00:03:25.970 align:start position:0%
ltte starcom okay you told me this was
gonna<00:03:24.629><c> work</c><00:03:24.930><c> I</c><00:03:25.140><c> don't</c><00:03:25.170><c> think</c><00:03:25.470><c> this</c><00:03:25.590><c> is</c><00:03:25.650><c> working</c>
00:03:25.970 --> 00:03:25.980 align:start position:0%
gonna work I don't think this is working
00:03:25.980 --> 00:03:29.000 align:start position:0%
gonna work I don't think this is working
we're<00:03:26.459><c> down</c><00:03:26.610><c> to</c><00:03:26.819><c> like</c><00:03:27.110><c> 11.6</c><00:03:28.110><c> watts</c><00:03:28.349><c> already</c>
00:03:29.000 --> 00:03:29.010 align:start position:0%
we're down to like 11.6 watts already
00:03:29.010 --> 00:03:31.369 align:start position:0%
we're down to like 11.6 watts already
so<00:03:29.430><c> tell</c><00:03:29.670><c> me</c><00:03:29.700><c> Brandon</c><00:03:30.300><c> where</c><00:03:30.870><c> do</c><00:03:30.989><c> you</c><00:03:31.080><c> think</c>
00:03:31.369 --> 00:03:31.379 align:start position:0%
so tell me Brandon where do you think
00:03:31.379 --> 00:03:36.710 align:start position:0%
so tell me Brandon where do you think
the<00:03:31.709><c> CPU</c><00:03:32.459><c> is</c><00:03:32.670><c> I</c><00:03:33.000><c> don't</c><00:03:33.180><c> know</c><00:03:35.180><c> could</c><00:03:36.180><c> it</c><00:03:36.269><c> be</c><00:03:36.360><c> here</c>
00:03:36.710 --> 00:03:36.720 align:start position:0%
the CPU is I don't know could it be here
00:03:36.720 --> 00:03:42.289 align:start position:0%
the CPU is I don't know could it be here
no<00:03:37.080><c> oh</c><00:03:37.590><c> yeah</c><00:03:39.620><c> 1034</c><00:03:40.620><c> all</c><00:03:41.430><c> right</c><00:03:41.640><c> well</c><00:03:42.030><c> so</c><00:03:42.150><c> much</c>
00:03:42.289 --> 00:03:42.299 align:start position:0%
no oh yeah 1034 all right well so much
00:03:42.299 --> 00:03:44.479 align:start position:0%
no oh yeah 1034 all right well so much
for<00:03:42.510><c> this</c><00:03:42.599><c> idea</c><00:03:42.959><c> working</c><00:03:43.379><c> hey</c><00:03:43.799><c> that's</c><00:03:44.040><c> a</c><00:03:44.190><c> two</c>
00:03:44.479 --> 00:03:44.489 align:start position:0%
for this idea working hey that's a two
00:03:44.489 --> 00:03:46.250 align:start position:0%
for this idea working hey that's a two
percent<00:03:44.819><c> increase</c><00:03:44.970><c> two</c><00:03:45.480><c> percent</c><00:03:45.900><c> all</c><00:03:46.110><c> right</c>
00:03:46.250 --> 00:03:46.260 align:start position:0%
percent increase two percent all right
00:03:46.260 --> 00:03:47.300 align:start position:0%
percent increase two percent all right
we're<00:03:46.379><c> gonna</c><00:03:46.470><c> have</c><00:03:46.530><c> to</c><00:03:46.620><c> get</c><00:03:46.769><c> more</c><00:03:46.920><c> extreme</c>
00:03:47.300 --> 00:03:47.310 align:start position:0%
we're gonna have to get more extreme
00:03:47.310 --> 00:03:49.850 align:start position:0%
we're gonna have to get more extreme
let's<00:03:47.549><c> test</c><00:03:47.760><c> number</c><00:03:48.030><c> two</c><00:03:48.180><c> fan</c><00:03:49.110><c> with</c><00:03:49.410><c> no</c><00:03:49.560><c> bottom</c>
00:03:49.850 --> 00:03:49.860 align:start position:0%
let's test number two fan with no bottom
00:03:49.860 --> 00:03:52.400 align:start position:0%
let's test number two fan with no bottom
so<00:03:50.010><c> this</c><00:03:50.129><c> is</c><00:03:50.280><c> kind</c><00:03:50.519><c> of</c><00:03:50.610><c> the</c><00:03:50.870><c> test</c><00:03:51.870><c> where</c><00:03:52.110><c> like</c>
00:03:52.400 --> 00:03:52.410 align:start position:0%
so this is kind of the test where like
00:03:52.410 --> 00:03:54.619 align:start position:0%
so this is kind of the test where like
if<00:03:53.400><c> they</c><00:03:53.549><c> just</c><00:03:53.730><c> put</c><00:03:53.849><c> a</c><00:03:53.879><c> fan</c><00:03:54.090><c> in</c><00:03:54.120><c> there</c><00:03:54.360><c> this</c><00:03:54.569><c> is</c>
00:03:54.619 --> 00:03:54.629 align:start position:0%
if they just put a fan in there this is
00:03:54.629 --> 00:03:56.420 align:start position:0%
if they just put a fan in there this is
how<00:03:54.720><c> good</c><00:03:54.959><c> it</c><00:03:55.049><c> before</c><00:03:55.349><c> all</c><00:03:55.799><c> right</c><00:03:56.069><c> with</c><00:03:56.310><c> the</c>
00:03:56.420 --> 00:03:56.430 align:start position:0%
how good it before all right with the
00:03:56.430 --> 00:03:58.039 align:start position:0%
how good it before all right with the
unit<00:03:56.700><c> open</c><00:03:56.940><c> we've</c><00:03:57.090><c> got</c><00:03:57.329><c> a</c><00:03:57.360><c> great</c><00:03:57.629><c> look</c><00:03:57.810><c> at</c><00:03:57.930><c> what</c>
00:03:58.039 --> 00:03:58.049 align:start position:0%
unit open we've got a great look at what
00:03:58.049 --> 00:03:59.809 align:start position:0%
unit open we've got a great look at what
we<00:03:58.140><c> were</c><00:03:58.260><c> talking</c><00:03:58.620><c> about</c><00:03:58.709><c> before</c><00:03:58.950><c> so</c><00:03:59.159><c> here's</c>
00:03:59.809 --> 00:03:59.819 align:start position:0%
we were talking about before so here's
00:03:59.819 --> 00:04:03.860 align:start position:0%
we were talking about before so here's
the<00:03:59.970><c> CPU</c><00:04:00.480><c> right</c><00:04:00.780><c> under</c><00:04:01.170><c> this</c><00:04:01.760><c> tiny</c><00:04:02.870><c> little</c>
00:04:03.860 --> 00:04:03.870 align:start position:0%
the CPU right under this tiny little
00:04:03.870 --> 00:04:06.500 align:start position:0%
the CPU right under this tiny little
sort<00:04:04.860><c> of</c><00:04:04.980><c> a</c><00:04:05.190><c> heatsink</c><00:04:05.640><c> so</c><00:04:06.000><c> it's</c><00:04:06.120><c> got</c><00:04:06.269><c> some</c>
00:04:06.500 --> 00:04:06.510 align:start position:0%
sort of a heatsink so it's got some
00:04:06.510 --> 00:04:09.140 align:start position:0%
sort of a heatsink so it's got some
little<00:04:06.660><c> folded</c><00:04:07.530><c> metal</c><00:04:08.040><c> pins</c><00:04:08.489><c> over</c><00:04:08.700><c> it</c><00:04:08.940><c> it's</c>
00:04:09.140 --> 00:04:09.150 align:start position:0%
little folded metal pins over it it's
00:04:09.150 --> 00:04:11.539 align:start position:0%
little folded metal pins over it it's
like<00:04:09.269><c> it's</c><00:04:09.870><c> a</c><00:04:09.989><c> heatsink</c><00:04:10.379><c> and</c><00:04:10.620><c> then</c><00:04:11.129><c> here's</c><00:04:11.489><c> the</c>
00:04:11.539 --> 00:04:11.549 align:start position:0%
like it's a heatsink and then here's the
00:04:11.549 --> 00:04:14.869 align:start position:0%
like it's a heatsink and then here's the
fan<00:04:11.930><c> that</c><00:04:12.930><c> they</c><00:04:13.769><c> went</c><00:04:13.980><c> and</c><00:04:14.129><c> they</c><00:04:14.250><c> they</c><00:04:14.489><c> put</c><00:04:14.760><c> it</c>
00:04:14.869 --> 00:04:14.879 align:start position:0%
fan that they went and they they put it
00:04:14.879 --> 00:04:17.479 align:start position:0%
fan that they went and they they put it
in<00:04:15.030><c> the</c><00:04:15.180><c> laptop</c><00:04:15.629><c> so</c><00:04:15.989><c> like</c><00:04:16.139><c> it</c><00:04:16.260><c> has</c><00:04:16.410><c> a</c><00:04:16.440><c> fan</c><00:04:16.859><c> they</c>
00:04:17.479 --> 00:04:17.489 align:start position:0%
in the laptop so like it has a fan they
00:04:17.489 --> 00:04:19.580 align:start position:0%
in the laptop so like it has a fan they
just<00:04:17.699><c> didn't</c><00:04:18.299><c> bother</c><00:04:18.449><c> to</c><00:04:18.720><c> have</c><00:04:18.870><c> the</c><00:04:19.019><c> fan</c><00:04:19.229><c> draw</c>
00:04:19.580 --> 00:04:19.590 align:start position:0%
just didn't bother to have the fan draw
00:04:19.590 --> 00:04:21.680 align:start position:0%
just didn't bother to have the fan draw
air<00:04:19.799><c> over</c><00:04:20.190><c> the</c><00:04:20.220><c> heatsink</c><00:04:20.760><c> to</c><00:04:21.000><c> cool</c><00:04:21.180><c> the</c><00:04:21.299><c> CPU</c>
00:04:21.680 --> 00:04:21.690 align:start position:0%
air over the heatsink to cool the CPU
00:04:21.690 --> 00:04:23.390 align:start position:0%
air over the heatsink to cool the CPU
before<00:04:21.989><c> exhausting</c><00:04:22.530><c> it</c><00:04:22.650><c> I</c><00:04:22.800><c> don't</c><00:04:23.160><c> think</c>
00:04:23.390 --> 00:04:23.400 align:start position:0%
before exhausting it I don't think
00:04:23.400 --> 00:04:26.050 align:start position:0%
before exhausting it I don't think
anyone<00:04:23.880><c> has</c><00:04:24.120><c> yet</c><00:04:24.360><c> offered</c><00:04:24.810><c> up</c><00:04:24.900><c> a</c><00:04:25.080><c> clear</c><00:04:25.560><c> and</c>
00:04:26.050 --> 00:04:26.060 align:start position:0%
anyone has yet offered up a clear and
00:04:26.060 --> 00:04:28.310 align:start position:0%
anyone has yet offered up a clear and
believable<00:04:27.060><c> explanation</c><00:04:27.300><c> for</c><00:04:27.960><c> why</c><00:04:28.110><c> they</c>
00:04:28.310 --> 00:04:28.320 align:start position:0%
believable explanation for why they
00:04:28.320 --> 00:04:30.200 align:start position:0%
believable explanation for why they
would<00:04:28.440><c> have</c><00:04:28.560><c> done</c><00:04:28.710><c> this</c><00:04:28.889><c> they</c><00:04:29.699><c> they</c><00:04:29.880><c> went</c><00:04:30.030><c> and</c>
00:04:30.200 --> 00:04:30.210 align:start position:0%
would have done this they they went and
00:04:30.210 --> 00:04:31.730 align:start position:0%
would have done this they they went and
they<00:04:30.270><c> they</c><00:04:30.449><c> they</c><00:04:30.479><c> put</c><00:04:30.930><c> the</c><00:04:31.110><c> heatsink</c>
00:04:31.730 --> 00:04:31.740 align:start position:0%
they they they put the heatsink
00:04:31.740 --> 00:04:33.529 align:start position:0%
they they they put the heatsink
and<00:04:31.860><c> the</c><00:04:32.190><c> fan</c><00:04:32.400><c> in</c><00:04:32.639><c> there</c><00:04:32.789><c> they</c><00:04:33.000><c> just</c><00:04:33.030><c> didn't</c>
00:04:33.529 --> 00:04:33.539 align:start position:0%
and the fan in there they just didn't
00:04:33.539 --> 00:04:35.360 align:start position:0%
and the fan in there they just didn't
bring<00:04:33.720><c> them</c><00:04:33.870><c> together</c><00:04:34.050><c> you</c><00:04:34.440><c> know</c><00:04:34.560><c> run</c><00:04:34.979><c> number</c>
00:04:35.360 --> 00:04:35.370 align:start position:0%
bring them together you know run number
00:04:35.370 --> 00:04:37.670 align:start position:0%
bring them together you know run number
three<00:04:35.660><c> definitely</c><00:04:36.660><c> going</c><00:04:36.930><c> slower</c><00:04:37.260><c> it's</c>
00:04:37.670 --> 00:04:37.680 align:start position:0%
three definitely going slower it's
00:04:37.680 --> 00:04:39.080 align:start position:0%
three definitely going slower it's
making<00:04:38.099><c> its</c><00:04:38.220><c> way</c><00:04:38.400><c> to</c><00:04:38.460><c> a</c><00:04:38.669><c> hundred</c><00:04:38.970><c> degrees</c>
00:04:39.080 --> 00:04:39.090 align:start position:0%
making its way to a hundred degrees
00:04:39.090 --> 00:04:41.060 align:start position:0%
making its way to a hundred degrees
slower<00:04:39.690><c> now</c><00:04:40.200><c> we're</c><00:04:40.380><c> having</c><00:04:40.650><c> a</c><00:04:40.710><c> look</c><00:04:40.860><c> at</c><00:04:41.039><c> the</c>
00:04:41.060 --> 00:04:41.070 align:start position:0%
slower now we're having a look at the
00:04:41.070 --> 00:04:43.850 align:start position:0%
slower now we're having a look at the
heart<00:04:41.430><c> of</c><00:04:41.580><c> the</c><00:04:41.669><c> system</c><00:04:42.090><c> here</c><00:04:42.330><c> that</c><00:04:42.599><c> is</c><00:04:42.870><c> almost</c>
00:04:43.850 --> 00:04:43.860 align:start position:0%
heart of the system here that is almost
00:04:43.860 --> 00:04:47.330 align:start position:0%
heart of the system here that is almost
10<00:04:44.700><c> degrees</c><00:04:45.120><c> lower</c><00:04:45.720><c> not</c><00:04:46.410><c> ten</c><00:04:46.740><c> but</c><00:04:46.979><c> more</c><00:04:47.160><c> than</c>
00:04:47.330 --> 00:04:47.340 align:start position:0%
10 degrees lower not ten but more than
00:04:47.340 --> 00:04:48.140 align:start position:0%
10 degrees lower not ten but more than
five<00:04:47.580><c> for</c><00:04:47.970><c> sure</c>
00:04:48.140 --> 00:04:48.150 align:start position:0%
five for sure
00:04:48.150 --> 00:04:51.980 align:start position:0%
five for sure
dang<00:04:48.810><c> MacBook</c><00:04:49.530><c> you</c><00:04:50.070><c> fly</c><00:04:50.370><c> our</c><00:04:51.120><c> package</c><00:04:51.750><c> power</c>
00:04:51.980 --> 00:04:51.990 align:start position:0%
dang MacBook you fly our package power
00:04:51.990 --> 00:04:53.420 align:start position:0%
dang MacBook you fly our package power
consumption<00:04:52.530><c> is</c><00:04:52.650><c> higher</c><00:04:52.889><c> than</c><00:04:53.099><c> last</c><00:04:53.280><c> time</c>
00:04:53.420 --> 00:04:53.430 align:start position:0%
consumption is higher than last time
00:04:53.430 --> 00:04:54.680 align:start position:0%
consumption is higher than last time
which<00:04:53.789><c> means</c><00:04:53.970><c> I'm</c><00:04:54.090><c> expecting</c><00:04:54.539><c> better</c>
00:04:54.680 --> 00:04:54.690 align:start position:0%
which means I'm expecting better
00:04:54.690 --> 00:04:56.779 align:start position:0%
which means I'm expecting better
performance<00:04:55.229><c> but</c><00:04:55.440><c> our</c><00:04:55.650><c> utilization</c><00:04:55.979><c> is</c><00:04:56.610><c> only</c>
00:04:56.779 --> 00:04:56.789 align:start position:0%
performance but our utilization is only
00:04:56.789 --> 00:05:00.050 align:start position:0%
performance but our utilization is only
about<00:04:57.030><c> 87%</c><00:04:57.780><c> and</c><00:04:58.400><c> of</c><00:04:59.400><c> course</c><00:04:59.610><c> we</c><00:04:59.760><c> did</c><00:04:59.910><c> hit</c><00:05:00.030><c> a</c>
00:05:00.050 --> 00:05:00.060 align:start position:0%
about 87% and of course we did hit a
00:05:00.060 --> 00:05:01.879 align:start position:0%
about 87% and of course we did hit a
hundred<00:05:00.240><c> degrees</c><00:05:00.479><c> here</c><00:05:00.870><c> so</c><00:05:01.080><c> it</c><00:05:01.260><c> looks</c><00:05:01.500><c> like</c><00:05:01.710><c> it</c>
00:05:01.879 --> 00:05:01.889 align:start position:0%
hundred degrees here so it looks like it
00:05:01.889 --> 00:05:03.680 align:start position:0%
hundred degrees here so it looks like it
looks<00:05:02.250><c> like</c><00:05:02.370><c> any</c><00:05:02.760><c> way</c><00:05:02.940><c> that</c><00:05:03.090><c> we</c><00:05:03.180><c> are</c><00:05:03.300><c> thermally</c>
00:05:03.680 --> 00:05:03.690 align:start position:0%
looks like any way that we are thermally
00:05:03.690 --> 00:05:06.110 align:start position:0%
looks like any way that we are thermally
limited<00:05:04.050><c> right</c><00:05:04.200><c> now</c><00:05:04.229><c> why</c><00:05:04.919><c> is</c><00:05:05.250><c> it</c><00:05:05.520><c> asking</c><00:05:05.910><c> for</c>
00:05:06.110 --> 00:05:06.120 align:start position:0%
limited right now why is it asking for
00:05:06.120 --> 00:05:07.730 align:start position:0%
limited right now why is it asking for
three<00:05:06.330><c> point</c><00:05:06.570><c> four</c><00:05:06.810><c> gigahertz</c><00:05:07.110><c> it's</c><00:05:07.440><c> got</c><00:05:07.560><c> a</c><00:05:07.590><c> no</c>
00:05:07.730 --> 00:05:07.740 align:start position:0%
three point four gigahertz it's got a no
00:05:07.740 --> 00:05:10.190 align:start position:0%
three point four gigahertz it's got a no
it's<00:05:07.889><c> not</c><00:05:07.979><c> going</c><00:05:08.160><c> to</c><00:05:08.250><c> get</c><00:05:08.400><c> that</c><00:05:08.990><c> there</c><00:05:09.990><c> it</c><00:05:10.080><c> is</c>
00:05:10.190 --> 00:05:10.200 align:start position:0%
it's not going to get that there it is
00:05:10.200 --> 00:05:13.460 align:start position:0%
it's not going to get that there it is
ten<00:05:10.380><c> eighty</c><00:05:10.620><c> eight</c><00:05:11.750><c> whoa</c><00:05:12.750><c> what's</c><00:05:13.139><c> that</c><00:05:13.320><c> like</c>
00:05:13.460 --> 00:05:13.470 align:start position:0%
ten eighty eight whoa what's that like
00:05:13.470 --> 00:05:15.350 align:start position:0%
ten eighty eight whoa what's that like
another<00:05:13.680><c> four</c><00:05:13.979><c> percent</c><00:05:14.340><c> but</c><00:05:14.580><c> we</c><00:05:15.120><c> can</c><00:05:15.270><c> do</c>
00:05:15.350 --> 00:05:15.360 align:start position:0%
another four percent but we can do
00:05:15.360 --> 00:05:17.930 align:start position:0%
another four percent but we can do
better<00:05:15.539><c> so</c><00:05:15.960><c> far</c><00:05:16.740><c> we've</c><00:05:16.950><c> got</c><00:05:17.130><c> about</c><00:05:17.370><c> an</c><00:05:17.639><c> eight</c>
00:05:17.930 --> 00:05:17.940 align:start position:0%
better so far we've got about an eight
00:05:17.940 --> 00:05:19.909 align:start position:0%
better so far we've got about an eight
percent<00:05:18.210><c> uplift</c><00:05:18.780><c> in</c><00:05:18.930><c> performance</c><00:05:19.470><c> over</c><00:05:19.770><c> our</c>
00:05:19.909 --> 00:05:19.919 align:start position:0%
percent uplift in performance over our
00:05:19.919 --> 00:05:23.150 align:start position:0%
percent uplift in performance over our
stock<00:05:20.610><c> configuration</c><00:05:21.419><c> but</c><00:05:22.410><c> that's</c><00:05:22.620><c> without</c>