-
Notifications
You must be signed in to change notification settings - Fork 37
/
ApacheInnovation.srt
4378 lines (3502 loc) · 115 KB
/
ApacheInnovation.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:00,870 --> 00:00:37,140
[Music]
[音乐]
2
00:00:41,320 --> 00:00:58,079
[Music]
[音乐]
3
00:00:58,680 --> 00:01:01,630
at its very simplest Tomcat is a web
最简单的Tomcat是Web服务器,可以在此基础上进行一点扩展
4
00:01:01,630 --> 00:01:05,710
server to expand on that a little bit
最简单的Tomcat是Web服务器,可以在此基础上进行一点扩展
5
00:01:05,710 --> 00:01:08,920
there are a series of Java
有一系列Java规范定义了一种
6
00:01:08,920 --> 00:01:13,030
specifications that define a way that
有一系列Java规范定义了一种
7
00:01:13,030 --> 00:01:14,790
web applications can be written and
可以编写Web应用程序,而Tomcat实现这些规范
8
00:01:14,790 --> 00:01:17,590
Tomcat implements those specifications
可以编写Web应用程序,而Tomcat实现这些规范
9
00:01:17,590 --> 00:01:20,229
and it's one of a number of servers that
它是众多服务器的其中之一,因此Web应用程序开发人员可以
10
00:01:20,229 --> 00:01:23,020
do so a web application developer can
它是众多服务器的其中之一,因此Web应用程序开发人员可以
11
00:01:23,020 --> 00:01:25,360
write their web application using the
使用标准API编写其Web应用程序,然后就可以在
12
00:01:25,360 --> 00:01:28,090
standard API and then it can run on
使用标准API编写其Web应用程序,然后就可以在
13
00:01:28,090 --> 00:01:33,060
Tomcat it can run on jetty it can run on
Tomcat,可以在Jetty上运行,可以在WebSphere上运行,可以在WebLogic和
14
00:01:33,060 --> 00:01:36,460
WebSphere it can run on WebLogic and
Tomcat,可以在Jetty上运行,可以在WebSphere上运行,可以在WebLogic和
15
00:01:36,460 --> 00:01:38,890
because it's the same interface the same
因为在任何地方都可以移动相同的界面和相同的标准
16
00:01:38,890 --> 00:01:40,390
standard everywhere you can move your
因为在任何地方都可以移动相同的界面和相同的标准
17
00:01:40,390 --> 00:01:42,160
application from one to the other and it
从一个应用程序到另一个应用程序,它将可以正常工作,但是最简单
18
00:01:42,160 --> 00:01:44,950
will just work but at its simplest
从一个应用程序到另一个应用程序,它将可以正常工作,但是最简单
19
00:01:44,950 --> 00:01:47,140
Tomcat is a way of running websites is
Tomcat是一种运行网站的方法,与Apache Web完全分开
20
00:01:47,140 --> 00:01:48,850
completely separate from the Apache web
Tomcat是一种运行网站的方法,与Apache Web完全分开
21
00:01:48,850 --> 00:01:51,850
server however if you wish you can get
服务器,但是,如果您希望,您可以使两者进行某种合作
22
00:01:51,850 --> 00:01:53,979
the two to sort of working cooperation
服务器,但是,如果您希望,您可以使两者进行某种合作
23
00:01:53,979 --> 00:01:57,760
so one of the things that Tomcat doesn't
因此,Tomcat本身内部不做的一件事就是负载概念
24
00:01:57,760 --> 00:02:00,250
do within itself is the idea of load
因此,Tomcat本身内部不做的一件事就是负载概念
25
00:02:00,250 --> 00:02:03,159
balancing so if you've got more load
进行平衡,因此如果您的负载超过一台物理服务器无法处理的负载
26
00:02:03,159 --> 00:02:05,290
than one physical server can't handle
进行平衡,因此如果您的负载超过一台物理服务器无法处理的负载
27
00:02:05,290 --> 00:02:06,400
and you need to spread it between
您需要将其分散在多个对象之间
28
00:02:06,400 --> 00:02:07,930
multiple ones you need something to
您需要将其分散在多个对象之间
29
00:02:07,930 --> 00:02:09,489
spread that load what we often see
分散负载我们经常看到人们正在做的事情就是将Apache网站
30
00:02:09,489 --> 00:02:12,010
people doing is putting Apache web
分散负载我们经常看到人们正在做的事情就是将Apache网站
31
00:02:12,010 --> 00:02:13,959
server in front of it because it can do
服务器在它前面,因为它可以进行负载平衡,然后坐在
32
00:02:13,959 --> 00:02:15,940
the load balancing and then it sits in
服务器在它前面,因为它可以进行负载平衡,然后坐在
33
00:02:15,940 --> 00:02:17,530
front of Tomcat and it spreads the load
Tomcat的前端,它将负载分散到不同的Tomcat实例之间
34
00:02:17,530 --> 00:02:19,209
between the different Tomcat instances
Tomcat的前端,它将负载分散到不同的Tomcat实例之间
35
00:02:19,209 --> 00:02:20,470
and then brings the responses back
然后将响应汇总在一起,然后发送给用户
36
00:02:20,470 --> 00:02:22,720
together and sends them off to the users
然后将响应汇总在一起,然后发送给用户
37
00:02:22,720 --> 00:02:25,299
and we have quite close cooperation
而且我们在Tomcat项目的各个部分和
38
00:02:25,299 --> 00:02:27,519
between bits of the Tomcat project and
而且我们在Tomcat项目的各个部分和
39
00:02:27,519 --> 00:02:30,790
bits of the Apache web server project
Apache Web服务器项目的一部分,因为我们有效地拥有了自己的
40
00:02:30,790 --> 00:02:33,220
because we have effectively our own
Apache Web服务器项目的一部分,因为我们有效地拥有了自己的
41
00:02:33,220 --> 00:02:34,930
protocol that we use to do some of that
我们用来进行某些通信的协议,因此我们共同致力于新的
42
00:02:34,930 --> 00:02:39,850
communication so we work together on new
我们用来进行某些通信的协议,因此我们共同致力于新的
43
00:02:39,850 --> 00:02:41,890
features developing that integration of
开发整合功能的功能我专注于您的特定功能
44
00:02:41,890 --> 00:02:44,170
that I am focused on your particular
开发整合功能的功能我专注于您的特定功能
45
00:02:44,170 --> 00:02:46,959
projects so I am currently a committer
项目,因此我目前是PMC的提交者和比索的成员
46
00:02:46,959 --> 00:02:49,329
PMC member and a member of the peso
项目,因此我目前是PMC的提交者和比索的成员
47
00:02:49,329 --> 00:02:52,360
software foundation I have been that for
我从事软件工作很长一段时间,一直致力于
48
00:02:52,360 --> 00:02:54,340
a long time I've been a committer for
我从事软件工作很长一段时间,一直致力于
49
00:02:54,340 --> 00:02:56,470
the camel product for yeah as I said
我说过的骆驼产品大约是12年,我目前的角色是
50
00:02:56,470 --> 00:02:59,260
about 12 years my current role is as a
我说过的骆驼产品大约是12年,我目前的角色是
51
00:02:59,260 --> 00:03:01,120
professional open source developer I'm
我受雇于red的专业开源开发人员
52
00:03:01,120 --> 00:03:02,540
employed by red
我受雇于red的专业开源开发人员
53
00:03:02,540 --> 00:03:05,689
and redhead uses camel in in the middle
和红发在我们的产品中间使用骆驼,所以我目前
54
00:03:05,689 --> 00:03:08,120
of our products so I am currently
和红发在我们的产品中间使用骆驼,所以我目前
55
00:03:08,120 --> 00:03:10,489
heavily involved with camel their camel
大量参与骆驼活动的骆驼基本上是用于整合
56
00:03:10,489 --> 00:03:13,010
is basically used for integration is to
大量参与骆驼活动的骆驼基本上是用于整合
57
00:03:13,010 --> 00:03:14,840
switch I mean I for integration
开关我的意思是说,我参加了集成高科技大会吗?
58
00:03:14,840 --> 00:03:16,459
hi-c algunas ation do they have so many
开关我的意思是说,我参加了集成高科技大会吗?
59
00:03:16,459 --> 00:03:18,739
different IT systems and they need to be
不同的IT系统,它们需要集成在一起,您需要知道数据
60
00:03:18,739 --> 00:03:20,480
integrated connected you know it data
不同的IT系统,它们需要集成在一起,您需要知道数据
61
00:03:20,480 --> 00:03:22,129
need to be transfer from different
需要从不同的系统转移,其中有很多,所以有很多
62
00:03:22,129 --> 00:03:23,750
system many of them so there are so many
需要从不同的系统转移,其中有很多,所以有很多
63
00:03:23,750 --> 00:03:26,209
different protocols languages and IT
不同的协议语言,IT系统和操作系统以及
64
00:03:26,209 --> 00:03:28,400
systems and operating systems and
不同的协议语言,IT系统和操作系统以及
65
00:03:28,400 --> 00:03:30,739
whatnot and data formats and camel is
whatnot和数据格式以及骆驼有点像介于两者之间的胶水
66
00:03:30,739 --> 00:03:32,150
sort of like the glue that sits between
whatnot和数据格式以及骆驼有点像介于两者之间的胶水
67
00:03:32,150 --> 00:03:34,069
and you can easily more easily integrate
您可以更轻松地集成它们,我从更多系统开始
68
00:03:34,069 --> 00:03:36,290
them I started with more system
您可以更轻松地集成它们,我从更多系统开始
69
00:03:36,290 --> 00:03:39,250
integration so more project related to
集成,因此有更多与应用程序运行时相关的项目,因此可以运行一些
70
00:03:39,250 --> 00:03:43,010
application runtimes so running some
集成,因此有更多与应用程序运行时相关的项目,因此可以运行一些
71
00:03:43,010 --> 00:03:47,780
stuff and application easily for you and
东西和应用程序很容易为您提供许多功能,您可以
72
00:03:47,780 --> 00:03:49,430
providing a lot of features you can
东西和应用程序很容易为您提供许多功能,您可以
73
00:03:49,430 --> 00:03:53,659
leverage so I started with this kind of
杠杆,所以我从Apache这样的项目开始,现在我仍在从事
74
00:03:53,659 --> 00:03:56,689
project Apache now I'm still working on
杠杆,所以我从Apache这样的项目开始,现在我仍在从事
75
00:03:56,689 --> 00:03:59,510
this project still very happy and and
这个项目仍然很开心,是的,这仍然是我的项目,但是我
76
00:03:59,510 --> 00:04:02,989
and yeah it's still my project but I
这个项目仍然很开心,是的,这仍然是我的项目,但是我
77
00:04:02,989 --> 00:04:06,409
like a lot I'm also working on big data
像很多人一样,我也在开发与大数据相关的产品,像Apache这样的大数据
78
00:04:06,409 --> 00:04:11,180
related products so big data like Apache
像很多人一样,我也在开发与大数据相关的产品,像Apache这样的大数据
79
00:04:11,180 --> 00:04:15,039
carbon data for instances is a database
碳数据实例是为大数据设计的数据库,我真的很高兴
80
00:04:15,039 --> 00:04:18,560
designed for big data I'm really happy
碳数据实例是为大数据设计的数据库,我真的很高兴
81
00:04:18,560 --> 00:04:20,389
about this product because it's one of
关于这个产品,因为这是我做过的第一个项目
82
00:04:20,389 --> 00:04:21,949
the first project that I did with
关于这个产品,因为这是我做过的第一个项目
83
00:04:21,949 --> 00:04:25,060
Chinese guys and it was really great
中国人,我正在研究的大数据真的很棒
84
00:04:25,060 --> 00:04:28,039
around big data I'm also working on
中国人,我正在研究的大数据真的很棒
85
00:04:28,039 --> 00:04:32,650
Apache beam which is a very key project
Apache Beam是一个非常关键的项目,提供了针对以下语言的API
86
00:04:32,650 --> 00:04:35,300
providing an API for a language that
Apache Beam是一个非常关键的项目,提供了针对以下语言的API
87
00:04:35,300 --> 00:04:39,020
allows you to design some big data
允许您设计一些大数据管道或分布式处理
88
00:04:39,020 --> 00:04:42,530
pipelines or distributed processing of
允许您设计一些大数据管道或分布式处理
89
00:04:42,530 --> 00:04:46,820
data so this project historically on
数据,因此该项目历来在哪个项目上进行
90
00:04:46,820 --> 00:04:48,860
which are working on another project
数据,因此该项目历来在哪个项目上进行
91
00:04:48,860 --> 00:04:51,770
which is nama Apache you know me is more
那是纳玛·阿帕奇,你知道我更多关于用户配置文件,gdpr之类的东西
92
00:04:51,770 --> 00:04:55,370
about user profiling and gdpr and stuff
那是纳玛·阿帕奇,你知道我更多关于用户配置文件,gdpr之类的东西
93
00:04:55,370 --> 00:04:58,250
like that and the thing that I really
这样,我真正喜欢的东西之间存在某种联系
94
00:04:58,250 --> 00:05:00,139
like is there some connection between
这样,我真正喜欢的东西之间存在某种联系
95
00:05:00,139 --> 00:05:02,990
all these products the connection is
所有这些产品的连接是一些项目用户之间的联系
96
00:05:02,990 --> 00:05:05,780
between some project user others for
所有这些产品的连接是一些项目用户之间的联系
97
00:05:05,780 --> 00:05:07,550
example you know me is based on Apache
例如,您知道我基于Apache Cara,而Apache Cara是我所负责的项目之一
98
00:05:07,550 --> 00:05:10,130
Cara which is one of project arm I'm
例如,您知道我基于Apache Cara,而Apache Cara是我所负责的项目之一
99
00:05:10,130 --> 00:05:13,700
working on for a long time beam using
使用扫射和火花对光束进行长时间工作,因此有很多
100
00:05:13,700 --> 00:05:15,919
fling and spark so there are a lot of
使用扫射和火花对光束进行长时间工作,因此有很多
101
00:05:15,919 --> 00:05:17,930
connection between the products it's
产品之间的联系是我所喜欢的东西
102
00:05:17,930 --> 00:05:19,729
what I like you I've been involved with
产品之间的联系是我所喜欢的东西
103
00:05:19,729 --> 00:05:22,039
a few projects but I think the ones I've
一些项目,但我认为这些项目是我通过千斤顶Apache演变而来的
104
00:05:22,039 --> 00:05:24,110
been evolved over a jackrabbit Apache
一些项目,但我认为这些项目是我通过千斤顶Apache演变而来的
105
00:05:24,110 --> 00:05:26,979
Jackrabbit and Apache you know me so
Jackrabbit和Apache,您知道我,所以我知道Jackrabbit是很多基础
106
00:05:26,979 --> 00:05:30,560
Jackrabbit I know is foundation of a lot
Jackrabbit和Apache,您知道我,所以我知道Jackrabbit是很多基础
107
00:05:30,560 --> 00:05:34,069
of different they say content management
他们说内容管理系统不同,所以您拥有像我这样的公司
108
00:05:34,069 --> 00:05:38,449
systems so you have companies like my
他们说内容管理系统不同,所以您拥有像我这样的公司
109
00:05:38,449 --> 00:05:43,550
own jaya adobe magnolia that are all
自己的jaya adobe玉兰,都以此为基础
110
00:05:43,550 --> 00:05:46,370
using this as the infrastructure for
自己的jaya adobe玉兰,都以此为基础
111
00:05:46,370 --> 00:05:48,349
building content management systems for
为您了解我的Apache构建内容管理系统
112
00:05:48,349 --> 00:05:49,879
apache you know me
为您了解我的Apache构建内容管理系统
113
00:05:49,879 --> 00:05:52,490
we started this really as a project for
我们开始这个项目实际上是为了满足我们自己的需求,所以我们的需求很简单
114
00:05:52,490 --> 00:05:54,680
our own needs so our needs were simple
我们开始这个项目实际上是为了满足我们自己的需求,所以我们的需求很简单
115
00:05:54,680 --> 00:05:56,740
at first it was just to be able to
起初只是为了能够实时收集
116
00:05:56,740 --> 00:06:00,650
collect in real time the the behavior of
起初只是为了能够实时收集
117
00:06:00,650 --> 00:06:04,819
people using our CMS and so that was
人们使用我们的CMS,这就是最初的用例
118
00:06:04,819 --> 00:06:06,379
sort of the initial use case what was
人们使用我们的CMS,这就是最初的用例
119
00:06:06,379 --> 00:06:09,409
really fascinating was to see that once
真正令人着迷的是,一旦这个项目进入了Apache内部
120
00:06:09,409 --> 00:06:11,930
this project was inside the Apache
真正令人着迷的是,一旦这个项目进入了Apache内部
121
00:06:11,930 --> 00:06:14,629
foundation people found new uses for it
基金会的人们发现了它的新用途,其中最令人惊讶的是
122
00:06:14,629 --> 00:06:18,110
and one of the most surprising one was a
基金会的人们发现了它的新用途,其中最令人惊讶的是
123
00:06:18,110 --> 00:06:20,150
project we just learned about a few
我们几个月前才刚刚了解的项目,
124
00:06:20,150 --> 00:06:23,180
months ago and it's somebody that built
我们几个月前才刚刚了解的项目,
125
00:06:23,180 --> 00:06:27,319
an integration with slack and SMS
与Slack和SMS系统集成,它们将使用Apache
126
00:06:27,319 --> 00:06:30,020
systems and they would use Apache you
与Slack和SMS系统集成,它们将使用Apache
127
00:06:30,020 --> 00:06:33,740
know me as sort of the orchestrating
知道我是这两个外部系统之间的协调系统
128
00:06:33,740 --> 00:06:36,710
system between those two external
知道我是这两个外部系统之间的协调系统
129
00:06:36,710 --> 00:06:40,909
systems and this was all done to manage
系统,这基本上是为了管理医疗保健而试图遵循的
130
00:06:40,909 --> 00:06:44,180
healthcare basically trying to follow
系统,这基本上是为了管理医疗保健而试图遵循的
131
00:06:44,180 --> 00:06:45,800
people that are suffering from
上瘾的人,只是为了确保
132
00:06:45,800 --> 00:06:48,469
addictions and just to make sure that
上瘾的人,只是为了确保
133
00:06:48,469 --> 00:06:51,050
you're actually using the system to make
您实际上是在使用系统来确保他们不会迷路,我的意思是
134
00:06:51,050 --> 00:06:53,120
sure that they don't get lost I mean
您实际上是在使用系统来确保他们不会迷路,我的意思是
135
00:06:53,120 --> 00:06:54,889
they don't they'll get forgotten in a
他们不是,他们会以某种方式被遗忘,所以这确实是相当
136
00:06:54,889 --> 00:06:59,120
way and so that's really something quite
他们不是,他们会以某种方式被遗忘,所以这确实是相当
137
00:06:59,120 --> 00:07:00,889
incredible because you design a system
令人难以置信,因为您针对特定用例设计了系统,然后
138
00:07:00,889 --> 00:07:02,990
for a specific use case and then
令人难以置信,因为您针对特定用例设计了系统,然后
139
00:07:02,990 --> 00:07:04,669
suddenly somebody surprises you with
突然有人用一个完全不同的东西给你一个惊喜
140
00:07:04,669 --> 00:07:06,589
with a completely different one and
突然有人用一个完全不同的东西给你一个惊喜
141
00:07:06,589 --> 00:07:08,629
that's that's what I love about Apache
那就是我对Apache项目ofb的热爱,本质上就是这样开放
142
00:07:08,629 --> 00:07:11,719
projects ofb is essentially this open
那就是我对Apache项目ofb的热爱,本质上就是这样开放
143
00:07:11,719 --> 00:07:14,689
source ERP application development
源ERP应用程序开发框架,可能会有点
144
00:07:14,689 --> 00:07:17,569
framework and it can be a little bit
源ERP应用程序开发框架,可能会有点
145
00:07:17,569 --> 00:07:20,360
intimidating it has a broad scope of
恐吓它具有广泛的功能范围,并且是其中之一
146
00:07:20,360 --> 00:07:22,639
functionality and and it's one of those
恐吓它具有广泛的功能范围,并且是其中之一
147
00:07:22,639 --> 00:07:25,250
cases where if you're not careful people
如果您不小心的话,人们会问您哦,f是做什么的,您说
148
00:07:25,250 --> 00:07:27,469
ask you what does oh f is do and you say
如果您不小心的话,人们会问您哦,f是做什么的,您说
149
00:07:27,469 --> 00:07:29,500
oh it does everything
哦,它做了所有的事情,但这不是最好的答案
150
00:07:29,500 --> 00:07:31,620
but that's not the best answer
哦,它做了所有的事情,但这不是最好的答案
151
00:07:31,620 --> 00:07:35,080
surprisingly what we do is take of' is
令人惊讶的是,我们要做的是',然后我们将其成形并形成满足
152
00:07:35,080 --> 00:07:38,500
and then we shape it and form it to meet
令人惊讶的是,我们要做的是',然后我们将其成形并形成满足
153
00:07:38,500 --> 00:07:40,720
the specific needs of our clients so
客户的特定需求,因此最终我们从事的业务是
154
00:07:40,720 --> 00:07:43,450
ultimately we are in the business of
客户的特定需求,因此最终我们从事的业务是
155
00:07:43,450 --> 00:07:45,760
executing strategies right
执行策略吧,我们希望业务人员能够
156
00:07:45,760 --> 00:07:48,820
we like the business person to be able
执行策略吧,我们希望业务人员能够
157
00:07:48,820 --> 00:07:50,800
to set the strategy and then we have a
制定策略,然后获得技术策略支持,因此我们希望
158
00:07:50,800 --> 00:07:54,010
technology strategy support so we want
制定策略,然后获得技术策略支持,因此我们希望
159
00:07:54,010 --> 00:07:55,420
to understand that business strategy
要非常了解业务战略,我们希望相信
160
00:07:55,420 --> 00:07:58,480
really well we want to believe in it if
要非常了解业务战略,我们希望相信
161
00:07:58,480 --> 00:08:00,040
we're going to commit to the project we
我们将致力于该项目我们希望您成功,然后我们将
162
00:08:00,040 --> 00:08:02,290
want you to be successful and then we'll
我们将致力于该项目我们希望您成功,然后我们将
163
00:08:02,290 --> 00:08:04,570
take off this and we'll shape it and
脱掉它,我们将对其进行整形,自定义,扩展和配置
164
00:08:04,570 --> 00:08:07,300
customize it and extend it and configure
脱掉它,我们将对其进行整形,自定义,扩展和配置
165
00:08:07,300 --> 00:08:10,450
it and adjust it to make this bespoke
并对其进行调整以为我们的客户提供此定制解决方案
166
00:08:10,450 --> 00:08:12,700
solution for our client that does
并对其进行调整以为我们的客户提供此定制解决方案
167
00:08:12,700 --> 00:08:14,860
exactly what this business strategy
正是这个商业策略所决定的,我认为这是一件伟大的事情
168
00:08:14,860 --> 00:08:17,110
dictates I think one of the great things
正是这个商业策略所决定的,我认为这是一件伟大的事情
169
00:08:17,110 --> 00:08:19,840
about RDF and even I did not realize
关于RDF,甚至我在深入了解这一点之前都没有意识到
170
00:08:19,840 --> 00:08:22,180
before getting too much into this is
关于RDF,甚至我在深入了解这一点之前都没有意识到
171
00:08:22,180 --> 00:08:24,100
that you can express anything in this
您可以用这种格式表达任何内容,所以我认为这确实导致了
172
00:08:24,100 --> 00:08:27,400
format so I think that really leads to a
您可以用这种格式表达任何内容,所以我认为这确实导致了
173
00:08:27,400 --> 00:08:29,170
lot of applications or possible
大量应用程序或此数据的可能应用程序,因此您可以
174
00:08:29,170 --> 00:08:32,110
applications for this data so you can
大量应用程序或此数据的可能应用程序,因此您可以
175
00:08:32,110 --> 00:08:35,229
say the sky is blue or you can say Edina
说天空是蓝色,或者您可以说Edina是副教授,但您可以
176
00:08:35,229 --> 00:08:37,599
is an associate professor but you can
说天空是蓝色,或者您可以说Edina是副教授,但您可以
177
00:08:37,599 --> 00:08:41,380
also say stored data that is financial
还说存储数据是财务数据或只是文档,并说这
178
00:08:41,380 --> 00:08:44,560
data or just documents and say this
还说存储数据是财务数据或只是文档,并说这
179
00:08:44,560 --> 00:08:46,330
document was modified at a particular
文档在特定日期被修改,您可以在这些日期的基础上进行构建
180
00:08:46,330 --> 00:08:49,000
date and you can build on top of these
文档在特定日期被修改,您可以在这些日期的基础上进行构建
181
00:08:49,000 --> 00:08:51,430
applications for example that keep track
例如跟踪数据来源的应用程序之一
182
00:08:51,430 --> 00:08:53,230
of data provenance one of the
例如跟踪数据来源的应用程序之一
183
00:08:53,230 --> 00:08:57,600
applications of RIA in the Navy is
RIA在海军中的应用是具有人工智能的无人机
184
00:08:57,600 --> 00:09:02,800
drones with intelligence artificial
RIA在海军中的应用是具有人工智能的无人机
185
00:09:02,800 --> 00:09:05,470
intelligence and image recognition so
智能和图像识别,因此您可以让这些无人机飞翔
186
00:09:05,470 --> 00:09:07,930
you can have these drones that fly
智能和图像识别,因此您可以让这些无人机飞翔
187
00:09:07,930 --> 00:09:12,580
around and they can try to do image
他们可以尝试进行图像识别,例如,这是一个
188
00:09:12,580 --> 00:09:14,920
recognition for example this was a
他们可以尝试进行图像识别,例如,这是一个
189
00:09:14,920 --> 00:09:17,710
reconnaissance and target acquirement so
侦察和目标获取,所以他们试图在这个领域认识人
190
00:09:17,710 --> 00:09:19,930
they tried to recognize people in this
侦察和目标获取,所以他们试图在这个领域认识人
191
00:09:19,930 --> 00:09:22,780
case of course they ran image
他们当然使用了图像识别算法,并尝试
192
00:09:22,780 --> 00:09:26,050
recognition algorithms and they try to
他们当然使用了图像识别算法,并尝试
193
00:09:26,050 --> 00:09:28,800
find a particular person or a particular
找到一个特定的人或一个特定的建筑目标或其他
194
00:09:28,800 --> 00:09:32,320
target for building or whatever the
找到一个特定的人或一个特定的建筑目标或其他
195
00:09:32,320 --> 00:09:36,040
target is and then you can communicate
目标是,然后您可以与可以进行通信的无人机进行通信
196
00:09:36,040 --> 00:09:39,370
with the drones that you can communicate
目标是,然后您可以与可以进行通信的无人机进行通信
197
00:09:39,370 --> 00:09:41,740
with other computers which are on ships
与船上的其他计算机或
198
00:09:41,740 --> 00:09:42,190
or
与船上的其他计算机或
199
00:09:42,190 --> 00:09:44,920
or down on the ground and they can
或在地面上,他们可以协调整个行动,
200
00:09:44,920 --> 00:09:46,990
coordinate an entire action and
或在地面上,他们可以协调整个行动,