-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLecture 20 Blockstack.srt
5395 lines (4492 loc) · 157 KB
/
Lecture 20 Blockstack.srt
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
1
00:00:01,460 --> 00:00:03,520
您
you
2
00:00:11,000 --> 00:00:16,410
好吧,让我们今天开始,我想谈谈
alright let's get started today I want
to talk about
3
00:00:16,410 --> 00:00:22,320
堆栈,而我们查看本文的原因是它涉及三个方面
stack and the reason we're looking at
this paper is that it touches on three
4
00:00:22,320 --> 00:00:27,689
我觉得很有趣的问题可能是最低层的
questions that I find quite interesting
one is maybe at the lowest level how to
5
00:00:27,689 --> 00:00:32,549
建立一个从名称映射的命名系统或真正的公钥基础结构
build a naming system or really a public
key infrastructure that maps from names
6
00:00:32,549 --> 00:00:38,070
公钥,这就像一个非常重要的问题,没人会遇到
to public keys and this is like a very
important question nobody has ever
7
00:00:38,070 --> 00:00:43,830
真正找到了一种令人信服的方式来建立通用的全球公众
really figured out a convincing way to
build a general-purpose global public
8
00:00:43,830 --> 00:00:49,770
关键基础架构或PKI,因此在此领域的任何进展都是
key infrastructure or PKI so any
progress in this area with the is
9
00:00:49,770 --> 00:00:54,719
有趣的是,我对块堆栈感兴趣的另一个原因是
interesting another reason I'm
interested in block stack is that it's a
10
00:00:54,719 --> 00:00:59,370
您知道的非加密货币使用区块链,所以这只是一个有趣的事情
non cryptocurrency use of a blockchain
you know so it's just an interesting
11
00:00:59,370 --> 00:01:04,739
质疑区块链是否对金融以外的其他有用
question whether block chains are useful
for anything other than than financial
12
00:01:04,739 --> 00:01:11,210
东西,最后,您可能知道最有趣的是:
stuff and finally and you know maybe
most interestingly block sects really a
13
00:01:11,210 --> 00:01:16,259
关于如何提供Internet服务的非常不同的体系结构的建议
proposal for a very different
architecture for how Internet services
14
00:01:16,259 --> 00:01:20,250
或真正的网站应该如何构建非常不同的网站
or really web sites how websites
ought to be constructed very different
15
00:01:20,250 --> 00:01:24,899
从它们现在的构造方式来看,它们的特性完全不同,您知道
from the way they're constructed now is
quite different properties and you know
16
00:01:24,899 --> 00:01:28,470
这个想法是,也许是那种布洛克麻袋
the idea is that maybe the the kind of
approach brock sack
17
00:01:28,470 --> 00:01:34,289
可能会产生一些在某些方面比您更了解的网站
takes might yield websites that are are
better you know in some ways than
18
00:01:34,289 --> 00:01:40,679
当前的网站现在像一个真实的系统一样被阻止,有一家公司
current web sites now blocks likes a
real system there's a company that's
19
00:01:40,679 --> 00:01:46,670
开发一些应用程序正在使用的程序,我只有一些用户
developing it that's in use by some
applications i'm just have some users
20
00:01:46,670 --> 00:01:52,380
但是实际上您知道您应该将其视为道德上的进步,然后
however it's really you know you should
view it as moral work-in-progress then
21
00:01:52,380 --> 00:01:56,390
这是他们一直在开发并使之更好的最终答案
kind of this is the final answer they've
been developing it and making it better
22
00:01:56,390 --> 00:02:01,860
几年过去了,我认为这真的不是很多
over some years now i don't think it's
really to the point where very many
23
00:02:01,860 --> 00:02:05,700
人们会决定放弃现在建立网站的方式,而转向
people would decide to abandon the way
they build websites now and switch to
24
00:02:05,700 --> 00:02:11,670
块堆栈,但重要的是有人在那里探索如何
block stack but it's very important that
somebody out there is exploring how
25
00:02:11,670 --> 00:02:16,709
情况可能会有所不同并且更好,而块堆栈是
things could be different and better and
block stack is one of a number of
26
00:02:16,709 --> 00:02:20,610
试图朝着不同方向推动的不同项目
different projects that are trying to
push in a different direction for the
27
00:02:20,610 --> 00:02:26,880
网站的总体架构还不错,因此块堆栈的优势
overall architecture of web sites all
right so the the pitch from block stack
28
00:02:26,880 --> 00:02:30,360
人们应该建立体面的
is that people ought to be building
decent
29
00:02:30,360 --> 00:02:35,950
应用程序的去中心化是什么意思
applications so what does decentralize
mean sort of an idea that's been in the
30
00:02:35,950 --> 00:02:41,560
播出了几年,我认为也许最好的总结是
air for a couple years now I think maybe
the best summary is that it's
31
00:02:41,560 --> 00:02:46,360
以将数据所有权移出的方式构建的应用程序
applications that are built in a way
that moves ownership of data out of
32
00:02:46,360 --> 00:02:51,790
您知道的集中控制网站,就像普通的Web服务器一样,或者
centrally controlled websites you know
like ordinary web servers and one way or
33
00:02:51,790 --> 00:02:56,410
另一个将对用户信息的控制更多地放到了用户自己的手中
another puts control of users
information more into the users own
34
00:02:56,410 --> 00:03:02,620
以便说用户实际上拥有自己的东西有点现实
hands so that it's sort of realistic to
say that users actually own their own
35
00:03:02,620 --> 00:03:09,730
数据,而不是您知道Facebook或Gmail或本质上是谁
data instead of you know Facebook or
Gmail or whoever sort of essentially
36
00:03:09,730 --> 00:03:16,900
拥有他们的数据对他们的成功和有趣的属性
owning their data for them the success
and the interesting properties of
37
00:03:16,900 --> 00:03:20,800
比特币是推动该领域近期活动的重要因素
Bitcoin have been a lot of what's driven
the recent activity in this area it's
38
00:03:20,800 --> 00:03:25,600
一种古老的想法可以追溯到至少出现在像Nutella这样的计划上
kind of an old idea dates back at least
appeared appear on schemes like Nutella
39
00:03:25,600 --> 00:03:32,069
和Napster距今大约20年前,甚至更远,但是比特币
and Napster from around 20 years ago and
further back than that but Bitcoin
40
00:03:32,069 --> 00:03:38,049
确实促使人们对此进行认真思考,并有点
really prompted people to think hard
about this and to sort of have a bit
41
00:03:38,049 --> 00:03:45,430
更加相信可以实现这些想法,所以我想
more faith that these kinds of ideas
could be realized all right so I want to
42
00:03:45,430 --> 00:03:51,640
首先概述一下,您知道当前网络的一种集中式典型
kind of outline first what a sort of
centralized typical you know current web
43
00:03:51,640 --> 00:03:56,739
该网站看起来像是在谈论为什么有些人不是很满意
site looks like talk a bit about why
some people aren't really pleased with
44
00:03:56,739 --> 00:04:02,950
当前网站的工作方式,然后概述在
the way current websites work and then
outline how things might work under a
45
00:04:02,950 --> 00:04:13,180
像块堆栈这样的分散方案,所以这实际上是当前网站的视图
decentralized scheme like block stack so
this is really current websites the view
46
00:04:13,180 --> 00:04:20,410
您有很多用户坐在浏览器前吗?他们有一个互联网
is you got a much users sitting in front
of browsers and there's a internet they
47
00:04:20,410 --> 00:04:24,940
所有人都在与互联网交谈,您那里有一些网站,您知道也许是
all talk to the internet you have some
website out there you know maybe it's
48
00:04:24,940 --> 00:04:34,060
例如Gmail或其他内容,而Gmail拥有一堆由
say Gmail or something and Gmail has a
bunch of web servers that are owned by
49
00:04:34,060 --> 00:04:40,630
Gmail归任何网络服务所有,并位于网络背后
Gmail right owned by whatever the web
services and sitting behind the web
50
00:04:40,630 --> 00:04:45,740
服务器是某种数据库,对我们来说是一张熟悉的图片
servers is some kind of database
it's kind of familiar picture for us
51
00:04:45,740 --> 00:04:51,720
通过这些个人用户,该数据库保存用户数据,例如
through these individual users this
database holds the users data like if
52
00:04:51,720 --> 00:04:57,540
您使用Gmail,您知道您认识的用户。Gmail位于Gmail的
you use Gmail you know your you know
user ones Gmail is sitting in Gmail's
53
00:04:57,540 --> 00:05:01,740
数据库,您知道这是Gmail拥有的数据库服务器,
database somewhere you know this is a
database server the Gmail owns and
54
00:05:01,740 --> 00:05:10,080
这实际上控制着Gmail运作方式的逻辑
that's control over the kind of logic
for how Gmail operates essentially sits
55
00:05:10,080 --> 00:05:15,390
拥有生物的网络服务器中的所有权归Gmail所有,并且与
in the web servers that own bio are
owned by Gmail and sort of talk to the
56
00:05:15,390 --> 00:05:18,810
数据库以摆脱您的数据,所以完全没有任何东西
database to get out of your data alright
so there's like totally nothing
57
00:05:18,810 --> 00:05:24,450
令人惊讶的是,您知道这是几乎每个网站的工作方式,这是
surprising here and you know this is the
way almost every website works this is
58
00:05:24,450 --> 00:05:28,710
通常是一些JavaScript或其他内容,并位于用户浏览器中,但所有
often some JavaScript or something and
sitting in the users browsers but all
59
00:05:28,710 --> 00:05:33,240
关键的事情是坐在Web服务器或某种
the kind of critical stuff is sitting in
web servers or some kind of servers that
60
00:05:33,240 --> 00:05:37,530
该网站打呵欠,您知道,所以当天有四个不同的网站
the website yawns you know so four
different websites the day on the
61
00:05:37,530 --> 00:05:42,150
数据库将成为博客文章或邮件之类的东西,或者您知道自己的评论
database is gonna be things like blog
posts or mail or you know comments you
62
00:05:42,150 --> 00:05:46,320
在其他人的reddit或其他内容上发布,或者也许是您的照片
post on other people's reddit or
something or maybe it's your photos your
63
00:05:46,320 --> 00:05:50,400
日历我是您的病历或其他很多数据
calendar my is your medical records or
something there's a lot of data that's
64
00:05:50,400 --> 00:05:56,100
在各种不同的网站上都可以找到用户
out there at various different websites
that is in some sense you know the users
65
00:05:56,100 --> 00:06:01,200
数据确实是用户Gmail,但它确实是Gmail或具有控制权的数据
data like it's really the users Gmail
but gosh it's Gmail or that has control
66
00:06:01,200 --> 00:06:07,440
可以控制用户评论和其他人的评论
over it or reddit that has control over
the users comments and other people's
67
00:06:07,440 --> 00:06:10,710
现在的文章,此设置为SuperDuper
articles
now this setups been SuperDuper
68
00:06:10,710 --> 00:06:14,460
成功的原因是坐这很容易的原因之一
successful it's actually and one of the
reasons to sit it's extremely easy to
69
00:06:14,460 --> 00:06:19,440
您知道的程序,所有逻辑都能听到和运行,并且服务器由Gmail控制
program you know all the logic hears and
running and servers controlled by Gmail
70
00:06:19,440 --> 00:06:23,940
他们可以通过诸如续集数据库之类的东西与这些数据库交流
they can talk to these databases trough
in things like sequel databases that
71
00:06:23,940 --> 00:06:28,560
非常灵活的查询界面,对于可以存储的数据没有任何限制
very flexible query interfaces there's
like no restrictions on what data can be
72
00:06:28,560 --> 00:06:36,270
就像您知道的那样被访问,所以假设这是在这里运行的eBay
accessed like you know so supposing this
is a eBay that's running here you know
73
00:06:36,270 --> 00:06:41,130
现在,用户出价位于eBay的数据库服务器中,
the users bids are sitting in eBay's
database server now the bids are quite
74
00:06:41,130 --> 00:06:43,590
如果我要竞标某些我不希望其他用户竞标的东西,则为私人权利
private right if I'm bidding on
something I don't want other users to
75
00:06:43,590 --> 00:06:47,430
看到它,但是对eBay的Web服务器可以看到的内容没有任何限制
see it but there's no restrictions on
what eBay's web servers can look at they
76
00:06:47,430 --> 00:06:52,170
都可以在自己的数据库中查看出价,也可以查看其他
can all look at the bids in the in their
own database they can look at other
77
00:06:52,170 --> 00:06:55,260
人们的出价找到最高出价,实际上没有任何限制,因此
people's bids find the highest bid
there's really no restrictions so it's
78
00:06:55,260 --> 00:07:00,129
对于Web开发人员来说非常非常方便,而且非常
very very convenient
for web developers and is very
79
00:07:00,129 --> 00:07:03,009
成功,因此从这个角度来看,我们应该对您持怀疑态度
successful and so from that point of
view we should be you know skeptical
80
00:07:03,009 --> 00:07:07,809
其他任何事情都可能成功或超越它,但
that anything else could possibly be
this successful or overtake it but the
81
00:07:07,809 --> 00:07:12,549
为什么您可能认为当前的设置不完美的原因是
reason why you might not think this
current setup is perfect well there's a
82
00:07:12,549 --> 00:07:19,029
一堆用户可能不满意的原因之一是,如果我存储我的
bunch of reasons that users might be
dissatisfied one is that if I store my
83
00:07:19,029 --> 00:07:22,479
Gmail中的邮件我真的必须使用Gmail的界面来获取它
mail in Gmail I really have to use
Gmail's interface to get at it
84
00:07:22,479 --> 00:07:24,939
你知道也许他们提供了其他一些途径来实现这一目标,但我通常
you know maybe they provide some other
ways of getting at it but I generally
85
00:07:24,939 --> 00:07:29,439
没有太多的自由,例如Gmail为我自己设定了规则
don't have a lot of freedom like Gmail
sets the rules for how I get at my own
86
00:07:29,439 --> 00:07:34,029
正确的电子邮件,所以我可能有点恼火,这是我的电子邮件,但您知道我
email right so I might be a little bit
irritated it's my email but you know I
87
00:07:34,029 --> 00:07:38,619
不要选择我使用的界面我不能只使用任何软件
don't get to choose what interface I use
I can't just use any software Lee pretty
88
00:07:38,619 --> 00:07:44,609
一定是Gmail提供或Gmail支持的软件
much has to be software that Gmail
provides or Gmail supports for
89
00:07:44,609 --> 00:07:50,229
诸如Facebook之类的情况,其他人有时可能会看到我的数据
situations like maybe Facebook where
other people might sometimes see my data
90
00:07:50,229 --> 00:07:54,099
确实是为谁设置访问我的数据的规则的网站
is really the website that gets to set
the rules for who gets access to my data
91
00:07:54,099 --> 00:07:59,679
或者我怎么能控制访问和网站经常变得晦暗
or how if at all I can control that
access and websites often are bit murky
92
00:07:59,679 --> 00:08:03,759
关于他们对如何执行这些东西的承诺,如果这是
about their promises about how they
enforce this stuff and again if it's the
93
00:08:03,759 --> 00:08:08,199
用户数据,例如是我的照片或帖子还是真的
users data like if it's my photos or my
posts or something it's really kind of
94
00:08:08,199 --> 00:08:12,549
不太好,我对网站的功能没有太多控制权
not that great that I don't have too
much control over what the website can
95
00:08:12,549 --> 00:08:17,529
用它做另一件事,人们抱怨当前的设置
do with it another thing that people
complain about with the current set up
96
00:08:17,529 --> 00:08:21,399
该网站可以嗅探我的东西,例如Gmail想浏览
is that the website can sniff on my
stuff like Gmail wants to look through
97
00:08:21,399 --> 00:08:24,849
我的邮件,他们可能有很好的理由,也许他们正在训练垃圾邮件
my mail they might have good reasons for
maybe they were training their spam
98
00:08:24,849 --> 00:08:28,599
生成器,这样就可以了,但是您知道也许正在看我的电子邮件来思考
generators so that's okay but you know
maybe looking at my email to think about
99
00:08:28,599 --> 00:08:33,279
向我显示广告或您知道告诉他们的广告客户什么
showing me advertisements or to you know
tell their advertising customers what
100
00:08:33,279 --> 00:08:41,159
人们对这几天感兴趣,更糟的是,
people are interested in these days
worse the there's a chance that some of
101
00:08:41,159 --> 00:08:45,730
在网站上工作的员工已经腐败,甚至可能在偷窥
the employees who work at the web site
are corrupt and maybe snooping on
102
00:08:45,730 --> 00:08:50,350
人的数据是出于个人原因,因此可能是公司或公司
people's data for personal reasons so
that maybe the company maybe the company
103
00:08:50,350 --> 00:08:54,189
该网站的运营完全是面面俱到,但不一定能坐下来
that runs the website is perfectly
aboveboard but can't necessarily sit
104
00:08:54,189 --> 00:09:00,399
声称并非所有员工都在或跟随所有员工
claim that it's not always true that all
the employees are or following all the
105
00:09:00,399 --> 00:09:09,830
反正规则,所以人们有很多你知道的,或者有些人有
rules anyway so people have a lot
kind of you know or some people have
106
00:09:09,830 --> 00:09:16,040
对当前系统在更多设计上的工作方式持保留态度
reservations about the way the current
system works at a kind of more design
107
00:09:16,040 --> 00:09:22,040
技术层面来查看正在发生什么的一种方法是主界面
technical level one way to view what's
going on here is that the main interface
108
00:09:22,040 --> 00:09:31,280
这里是整个网站和浏览器之间,所以是HTML
here is between the entire website and
the browser's so there's it's HTML
109
00:09:31,280 --> 00:09:38,360
在这里通常是网站和
that's flowing back and forth between
here typically the websites and the
110
00:09:38,360 --> 00:09:42,080
数据库有点集成在界面的这一侧,并且所有
database are sort of integrated on this
side of the interface and all the
111
00:09:42,080 --> 00:09:46,790
浏览器真正经常看到的是这种HTML的最终打包形式
browser really gets to see often is this
HTML kind of final packaged form of the
112
00:09:46,790 --> 00:09:52,760
数据,并且您知道这是一个非常面向用户界面的表示形式hTML
data and you know it's a very user
interface oriented representation hTML
113
00:09:52,760 --> 00:10:00,140
是,有点点头无话可说,你知道戴夫数据本身还是
is and sort of Nod has nothing to say
about you know Dave the data itself or
114
00:10:00,140 --> 00:10:04,820
如何控制数据以及更有趣的界面以及位置
how the data is controlled and the much
more interesting interface and where
115
00:10:04,820 --> 00:10:09,140
您知道整个讨论都在进行,这是更多
this you know a whole discussion is kind
of going is that this is a much more
116
00:10:09,140 --> 00:10:13,670
有趣的界面,因为它更接近数据,但在标准中
interesting interface because it's much
closer to the data but in the standard
117
00:10:13,670 --> 00:10:17,930
设置那里没有真正的边界,尽管这是内部的
setup there's no real boundary there
though this is sort of the internal
118
00:10:17,930 --> 00:10:23,960
生意如何运作是网站的内部生意好吗
business how this works is the internal
business of the website all right so
119
00:10:23,960 --> 00:10:30,080
这是现有计划,计划是块堆栈的计划
that's the existing plan the plan the
kind of plan that block stack is
120
00:10:30,080 --> 00:10:36,530
提议,因此对于去中心化应用程序有很多想法
proposing and so there's a number of
kind of ideas for how decentralized apps
121
00:10:36,530 --> 00:10:42,710
可能有效,这是其中的一种,所以我还不称之为块堆栈
might work this is kind of one of them
so I'm not gonna call it block stack yet
122
00:10:42,710 --> 00:10:49,280
因为它是一个非常简化的版本,我们只是说这是一个
because it's it's kind of much a very
simplified version we'll just say it's a
123
00:10:49,280 --> 00:10:56,180
分散式架构,这里的游戏是您知道我们仍然有一个
decentralized architecture and here the
game is that you know we still have a
124
00:10:56,180 --> 00:11:02,350
一群用户和用户运行,您知道iPad或浏览器之类的东西
bunch of users and users run you know
iPads or browsers or something
125
00:11:04,180 --> 00:11:09,520
但我们将采用这种新的分散方案,将所有
but we're gonna in this new
decentralized scheme we're gonna put all
126
00:11:09,520 --> 00:11:16,660
的应用程序代码将在用户计算机的客户端计算机中运行
of the app code is gonna run in the
client machines in the users machines
127
00:11:16,660 --> 00:11:20,410
所以这更像是一种传统,或者就像你知道的
and so this is much more like a sort of
traditional or it's like you know
128
00:11:20,410 --> 00:11:28,300
从iPad上的应用程序商店下载应用程序或购买某种老式PC
downloading an app from the app store on
an iPad or buying sort of old-style PC
129
00:11:28,300 --> 00:11:31,959
硬件,例如购买Microsoft Word的副本,它只能在笔记本电脑上运行
hardware like buying a copy of Microsoft
Word this just runs on your laptop just
130
00:11:31,959 --> 00:11:38,560
购买一些在笔记本电脑上运行的软件,以便不再运行该应用程序
buy some software you run on your laptop
so no longer running the application
131
00:11:38,560 --> 00:11:43,839
Web服务器中的代码,那么您知道是否要做的就是使用您的数据
code in web servers well you know if all
you want to do is use data on your
132
00:11:43,839 --> 00:11:49,149
在您自己的笔记本电脑上存储您自己的数据,然后我们完成了,但实际上是什么
laptop your own data on your own laptop
and then we're done but what's really
133
00:11:49,149 --> 00:11:52,420
有趣的是您知道基于Web的基于Internet的应用程序
interesting about you know web-based
what about internet based applications
134
00:11:52,420 --> 00:11:56,350
是您可以将数据存储在云中,这意味着您可以
is that you can store your data in the
cloud and that means you can if you have
135
00:11:56,350 --> 00:12:00,730
大多数人可以使用的多种设备可以从以下任何一种设备获取数据
multiple devices which most people do
you can get at your data from any of
136
00:12:00,730 --> 00:12:05,320
您的设备(可能是iPhone以及笔记本电脑),如果有
your devices from your maybe your iPhone
as well as your laptop and if you've
137
00:12:05,320 --> 00:12:09,400
以某种方式将数据存储在云中意味着您可以与其他人共享数据
stored data in the cloud somehow that
means you can share data with other
138
00:12:09,400 --> 00:12:15,370
人员并构建像您这样的多用户应用程序,您可能知道eBay或您的reddit或
people and build multi-user applications
like you know eBay maybe your reddit or
139
00:12:15,370 --> 00:12:23,380
谁知道什么共享日历,所以去中心化愿景的另一半
who knows what shared calendars so the
other half of the decentralized vision
140
00:12:23,380 --> 00:12:29,250
将会有某种类型的云存储系统的存储系统
is that there's going to be a storage
system some sort of cloud storage system
141
00:12:29,250 --> 00:12:37,390
在那里,我们的意思是说我的意思是您可以购买的某种服务
out there by which we mean I mean some
sort of service that you can buy maybe
142
00:12:37,390 --> 00:12:41,860
您可以从Amazon AWS或谁知道仅在哪里存储的地方知道
you know from Amazon AWS or
who-knows-where which was just store
143
00:12:41,860 --> 00:12:45,940
为您提供数据,您可以将数据保留在其中,这是它们为您存储的数据
data for you you can stick data in it
it's your data they store for you back
144
00:12:45,940 --> 00:12:48,940
它希望杜米某种访问
it up
dumi hopefully some sort of access
145
00:12:48,940 --> 00:12:51,610
控制,以便人们是否无法理解它,然后您可以稍后检索它
control so whether people can't get at
it and then you can retrieve it later
146
00:12:51,610 --> 00:12:58,709
从您的任何设备上获取信息,因此现在,如果我们要建立某种您知道的
from any of your devices and so now if
we're building some sort of you know for
147
00:12:58,709 --> 00:13:03,760
像您这样的单用户应用程序,我只需要编辑一些文档,但是我
single user applications like you know I
just need to edit some documents but I
148
00:13:03,760 --> 00:13:07,839
想要将它们保留在云中,您可能知道用户正在从中购买存储
want to keep them in the cloud you know
maybe user one is buying storage from
149
00:13:07,839 --> 00:13:13,680
该存储服务器可能是亚马逊,而用户2正在购买存储
this storage server maybe it's Amazon
and user two is buying storage from
150
00:13:13,680 --> 00:13:19,330
也许是Google的云存储系统来存储我自己的数据
maybe Google's cloud storage system
for my own data I just talked to my own
151
00:13:19,330 --> 00:13:24,130
我的应用程序代码通过Internet与服务存储服务对话
my application code talks across the
internet to the service storage service
152
00:13:24,130 --> 00:13:29,200
我购买存储空间大概是为我本人和用户讲类似的话
that I buy storage from presumably pay
for it myself and user to talk similarly
153
00:13:29,200 --> 00:13:38,140
到他们的存储服务,但如果我们运行的应用程序允许
to their storage service but if we run
applications that are built to allow
154
00:13:38,140 --> 00:13:42,730
用户共享数据,那么就有可能,如果我会说话
users to share data then there's the
possibility that if I know how to talk
155
00:13:42,730 --> 00:13:47,950
给您存储服务,我可以运行一个应用程序,读取它们
to you to storage service I can run an
application that reads data that they
156
00:13:47,950 --> 00:13:51,160
也请允许我阅读,以便您知道是否要构建某种形式的
allow me to read as well so you know if
you wanted to build some sort of a
157
00:13:51,160 --> 00:13:55,030
Facebook喜欢这个应用程序上的东西会知道谁是我的朋友
Facebook like thing on this the
application would know who my friends
158
00:13:55,030 --> 00:14:01,090
是并联系我的朋友存储区以查找更新或照片,或者谁
are and reach out to my friends storage
looking for updates or photos or who
159
00:14:01,090 --> 00:14:06,730
知道我朋友存储在自己的存储中的内容,这意味着我
knows what that my friends have stored
in their own storage so that means I
160
00:14:06,730 --> 00:14:11,890
而不是在他的新模型中接触Facebook网站,而是
instead of contacting with Facebook's
website instead in his new model I would
161
00:14:11,890 --> 00:14:17,610
从Facebook下载一个应用程序并运行它,该应用程序会知道如何
download an app from Facebook and run it
and that app would sort of know how to
162
00:14:17,610 --> 00:14:24,280
找到我的朋友,看看他们存储的数据,您是否知道我的
find my friends and look at the data
that they are storing and you know if my
163
00:14:24,280 --> 00:14:28,690
朋友将照片上传到他们的存储中,实际上仍然是他们的存储
friend uploads a photo to their storage
it's really still it's their storage
164
00:14:28,690 --> 00:14:33,460
他们为此付款,这是他们的照片,他们可以在Facebook上使用它,或者他们
they're paying for it it's their photo
they can use it with Facebook or they
165
00:14:33,460 --> 00:14:36,700
也可以将其与其他应用程序一起使用,因为这些应用程序确实
could use it with other applications too
because the applications are really
166
00:14:36,700 --> 00:14:42,640
现在与数据完全分开,而不是合并到
quite separate now from the from the
data instead of being combined in the
167
00:14:42,640 --> 00:14:52,450
好的现有架构,所以现在有点技术层面
existing architecture all right so now
sort of a technical level the this is