-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgerman-english-predicted.txt
6750 lines (6750 loc) · 698 KB
/
german-english-predicted.txt
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
thank you .
thanks .
sort of .
thank you .
creativity .
thank you .
yeah .
thank you .
thank you .
thank you .
thank you .
thank you .
okay .
a@@ wes@@ ome .
yeah .
thank you .
really .
all right .
no .
okay .
thank you .
thank you .
you see ?
you see ?
who@@ a !
hell@@ o !
why ?
right ?
yes .
yes .
have you ?
you see ?
thank you .
right ?
whereas .
right ?
yes ?
right ?
right ?
right ?
yes .
right ?
thank you .
thank you .
thank you .
thank you .
thank you .
thank you .
is that something ?
thank you .
thank you .
thanks .
thank you .
thank you .
unique .
thank you so much .
thank you .
pretty simple .
thank you .
thank you very much .
thank you .
thank you .
yes , well ...
thank you .
thank you very much .
thank you .
woo@@ o !
it 's true .
6@@ 0,000 .
thank you very much .
thank you .
thank you very much .
come on .
thank you .
thank you very much .
just because of that .
thank you .
posi@@ tively .
o@@ le !
maybe not .
thank you .
just one single one ?
thank you so much .
sustainable .
no kid@@ ding .
thank you .
thank you very much .
thank you .
thank you .
fine .
thank you .
it 's possible .
terrible .
thank you .
thank you .
thank you .
1.@@ 5 million .
it 's a lot .
thank you very much , guys .
i 'm tom .
i don 't know .
i can help you .
we 're losing them .
oh , my god !
yeah . okay .
... yet .
thank you guys .
there 's no hospital that can say " no . "
is that all ?
thank you .
we 're taking off .
solar technology is ...
three times out of 10 .
oh , my god .
we love entertain@@ ment .
we love innovation .
from se@@ attle ...
what does this mean ?
this is not ...
go home to where ?
we were poor .
what does it mean ?
which was a@@ wes@@ ome .
it 's interesting .
after one week .
that 's your only chance .
a long time , yes .
music as language .
yes , so to speak .
it is possible though .
that doesn 't happen .
you need time .
it goes fast .
that 's wrong .
fantastic , isn 't it ?
yes , hell@@ o .
the sun is ris@@ ing .
which is sing@@ ing .
this is hard .
nice one .
ta@@ -@@ da !
that was us .
a few less .
and he says ...
we know that .
does that sound good ?
here it is .
it 's horri@@ ble .
i don 't know .
thank you . thank you .
like twice over .
this is ste@@ phen watt .
you could see manhattan .
it is gener@@ ic .
so where do we go ?
here is the video .
you can enter inside it .
i was ex@@ posed to him .
they all matter .
so they know everything .
it has sensor@@ s .
i 've got a question .
i was ama@@ zed .
this would have been fine .
ban is blan@@ k .
play 's essential .
but you know what ?
gam@@ ers don 't sit around .
oh , that guy .
yeah , i know .
how do we know that ?
very different notion .
so , you can do it .
how enga@@ ged you are .
there 's no normal .
so this is for real .
that 's very good .
quite a few more .
he answers the door .
why not live longer ?
explore .
it 's not a country .
1,000 , very good .
well she was back all right .
let me give you an example .
what will these people want ?
hey , why not ?
somehow this isn 't working .
and i thought about that .
but i car@@ ried on with my work .
they had to worry about being bom@@ bed .
and they did .
and i went back to work .
so what happens here ?
this is happening to us today .
i don 't believe that .
why do we do that ?
okay . thank you very much .
and that 's important .
so what happened here ?
centers were establi@@ shed .
i don 't know .
hu@@ h . hang on a moment .
so how does it happen ?
so meet al .
it 's interesting to me .
they 're using their hands .
one of two things is going to happen .
sc@@ ore them again .
so i 'm just going to enter in .
because , you know something ?
thanks so much .
and it must go back .
wonderful , right ?
that 's our present .
yes , milli@@ seconds .
i 'd like to tell you why .
we can do it differently .
they have similar principles .
totally in@@ efficient .
what is the media today ?
that 's efficient .
the whole environmental discussion .
not gu@@ il@@ t management .
what would you say ?
why does this happen in the first place ?
we can do that .
just do your job .
good job ! yeah !
what do you want to do ? "
thank you very much .
this was the result .
can we do this differently ?
all that interests me .
this is the last one .
yes , that 's possible .
fly away , c@@ at .
so let 's have a look .
yes , hell@@ o .
that was all .
there 's nothing po@@ is@@ on@@ ous in it .
and those days are gone .
so this is a wish .
it 's a crisis .
and this was fascinating .
tremend@@ ously exciting .
and so , we need energy mira@@ cles .
that 's super important .
can i be honest ?
b@@ g : thank you .
they 're fe@@ ast@@ ing . "
sound familiar ? right .
what was the result ?
but you know what ?
doesn 't happen very much .
and i was an artist .
pretty good , right ?
that 's the system .
what a fish .
the first two theor@@ em@@ s are logi@@ cally cor@@ rect .
nothing will happen .
yes , hell@@ o .
that is do@@ able .
len@@ to , slow .
robert gu@@ p@@ ta .
the farm 's incredible .
not very sustainable .
let 's call him don .
i actually am .
what did they do ?
these guys make money .
he liked it very much .
so here it is .
is it going to be my size ?
will i like the color ?
thank you very much .
good after@@ noon , everybody .
here you see the city .
so what happened years after@@ ward ?
who are these cou@@ s@@ ins ?
this guy 's name is temp@@ t .
she did it in secret .
i 've lived a good life .
it feels great .
you can see the water coming .
aw@@ w , thank you .
an almost iden@@ tical structure .
conflict is the gen@@ es@@ is of creation .
i don 't think so .
now , this sounds crazy , right ?
we made this game in 2007 .
so , i 'm going to wra@@ p up now .
i want to ask a question .
thank you .
but it gets worse .
be a ment@@ or .
or , is it , perhaps , possible ?
some have come and gone .
maybe 10 times more .
i wanted to keep us healthy .
i swe@@ ar .
and it even got better .
that does not hold for emotions .
after only one trip .
my hun@@ ches again .
this is a ch@@ art of what it looked like .
there were re@@ mix@@ es .
and then it went international .
o@@ h@@ h@@ h@@ h .
he is my grand@@ father .
what am i going to look at ?
okay , a bit more .
or is it photograph@@ y ?
is it something about the light ?
what creates the illusion ?
so here 's another example .
but there 's another thing .
so let me rec@@ ap .
this is an old study .
yeah . all right .
that is a fantastic question .
j@@ k : both .
turn the camera off .
that 's the two-@@ cent tour .
that 's a great question .
it kee@@ ps you fresh .
is that your opini@@ on ?
the first : cut .
my name is am@@ it .
and i grew up in india .
keep going . have fun .
and the answer is no .
so i made one .
it might sound like it 's a bad thing .
now , what does that mean ?
d@@ k : 6@@ 0,000 .
but that 's not protection .
th@@ ank@@ fully , right ?
it won 't .
does anyone see anything specific ?
that 's something we have to understand .
give pe@@ e a chance .
you wouldn 't be able to have b@@ ones .
they didn 't have mass media .
they didn 't have books , after all .
isn 't that sad ?
and that means there are too many of us .
but where are we of use ?
it was different in china .
but the wrong things .
that means that instead of having individual memor@@ ies , we have standar@@ dis@@ ed , wi@@ des@@ pre@@ ad patterns of memor@@ ies , onto which we can atta@@ ch our personal memor@@ ies .
you make compar@@ is@@ ons .
and i always have been .
why not think about it this way ?
very expensive real e@@ state .
here 's another example .
they actually hurt .
why do this ?
i am a writer .
most people here have heard of them .
how do we humans actually function ?
don 't be da@@ un@@ ted .
and this is fe@@ li@@ x , actually .
inv@@ enting his own narra@@ tive .
you can see this at the bottom .
thanks for listening .
the work of the interpre@@ ter .
well , what does that mean ?
people were going crazy .
the data came back .
we need to get the message out .
and it 's pretty amazing .
what do you think happened then ?
and i understand that .
and why is it true ?
who 's going to be sure ?
first , we 've got population .
his name is paul off@@ it .
i 'm totally with you .
you don 't want to do that ?
yes , there it is .
but it hadn 't .
so , what do we have to do ?
he had had the experience .
what needed to be done ?
that 's ex@@ em@@ pl@@ ary .
it goes against justice .
what is the sou@@ l ?
the sou@@ l is something mental , lei@@ b@@ ni@@ z said .
what is decisi@@ ve , if i 'm right , then it 's val@@ id .
we were a group of tw@@ ent@@ y people .
i 'm surprised .
tremend@@ ously challen@@ ging .
let 's call him don too .
but what are your fish eating ?
there is no feed .
i don 't love that question .
this is really cool . "
have you seen these guys ?
actually , i made two more mistakes .
and then it happened again .
crisis . death . disaster .
perhaps instead , of what 's really going on .
and many people forget this .
he 's the du@@ de on the left .
and so i did .
and i felt really good .
he kept pac@@ ing back and forth .
it would be un@@ consci@@ on@@ able .
he kept poin@@ ting here .
and fortunately he didn 't die .
there were still fis@@ hes .
we have three main groups .
we have online crimin@@ als .
priv@@ acy is impli@@ ed .
other than writing a check , what could we do ?
they sort of go like this .
we love technology . we love creativity .
we 've been dis@@ connected .
i represent children .
there are billions of them .
but what are we doing with it ?
and it op@@ ens up a map .
i never will forget it .
i will never forget it .
i was de@@ va@@ st@@ ated .
that 's about all it can do .
i couldn 't bear it .
the only country in the world .
i mean , it 's fascinating .
i mean , it 's fascinating .
it 's not our problem .
it 's not our struggle .
we 're constantly running into each other .
i 'm going to stop that .
it makes them feel good . "
what happens is this .
because , did anyone have meas@@ les here ?
and he actually says it that way .
so , paul 's a terror@@ ist .
no one 's ever said that before .
the data says it all the time .
don 't take anything for gran@@ ted .
i mean , i 'm a journalist .
but the point is ...
and the form has something to do with it .
everybody talks about happiness these days .
and here is a surprise .
you have not changed the story .
very sc@@ ary .
it is a completely different notion .
what should our report card look like ?
this is the one with the greatest impact .
they were seeing something ma@@ gical .
and that 's why i made the movie .
you know , what are the lessons learned ?
and so that 's a big challenge .
this is a lot of volu@@ me .
finally : epi@@ c meaning .
same thing , only bigger .
it shouldn 't take away from other things .
and it was a huge success .
and then they ex@@ ec@@ ute on it .
who does the very best ?
so that 's the good news .
you have that much un@@ certain@@ ty .
want to feed the world ?
this data was not available before .
the whole building is made of water .
it 's morning , before the match .
first over@@ time , second .
it@@ al@@ y w@@ ins . yeah .
you saw the big peak .
and then everybody moved down .
but i don 't buy anything new .
play is not fri@@ vol@@ ous .
so you can have this cloud .
you can play with a different type .
i was in a@@ we .
that 's about a 15@@ -@@ foot boat .
so that started the journey .
they 're becoming like computers in open air .
" yes , " he said .
how many people would choose creativity ?
how about fit@@ ness ?
this is really exciting .
okay , we can do that .
now , who 's normal ?
i as@@ pi@@ red to that kind of normal@@ cy back then .
which one would you like the most ?
they are building an epi@@ c story .
play is not just child 's games .
is it just imag@@ in@@ ary ?
now how could this come about ?
these changes are coming .
and that was 19 ye@@ as ago .
well , i was next .
that was -- the creativity had to find its out@@ let somehow .
let 's make it kog@@ i . "
i almost never co@@ ok with it .
pattern recogni@@ tion should also work .
so it 's a circle .
so what why ha@@ cking ?
what what happened there ?
this is a game for outside .
for example perception in this context .
does anybody know what this is ?
they really loved it .
this happened around christ@@ mas .
and then i can trans@@ fer the whole thing .
and you wouldn 't be able to save energy .
we are depen@@ dent on two countries .
and we absor@@ b all of it .
and so there are too many of us .
the orange tra@@ ctor .
so not like a de@@ to@@ x .
so let me re@@ mind you .
everybody needs a fis@@ h@@ bow@@ l .
the answer is " no . "
no@@ wa@@ days , everything is very much up for grab@@ s .
and the answer is yes .
but i felt worse .
you could have done better .
if at the moment they 're waste .
that 's god , you know .
so that 's reas@@ sur@@ ing , you know .
like that , you know .
you know , is it rational ?
and so , the question becomes , how ?
and what is that thing ?
every bit of waste is a nutri@@ ent .
i wouldn 't re@@ com@@ men@@ d it .
and of course that 's incredibly slow .
i 've loved only two .
because technologi@@ cally it 's just not possible .
they then also say , why ?
that can 't be a problem .
and here you have the graphic again .
and then pres@@ ented .
thank you for your attention .
and you 'll have a problem right away .
" absolutely , " i said .
there 's almost nothing left .
it doesn 't taste very good either .
i wanted to support them .
2.@@ 5 to one , great .
four and a half thousand people live there .
he poin@@ ted at the al@@ ga@@ e .
an au@@ ti@@ stic pu@@ pi@@ l .
it is impossible to present such things in a society that is supposed to function .
because you can train that .
it just hadn 't been invented .
and how did you feel ?
it will start to look more and more like you .
my wife told me it .
does that make you curious ?
here you have it again .
i high@@ ligh@@ ted it here .
lo@@ gic does not make any stat@@ ements about reality .
we can apply these things to other examples .
it doesn 't have this sou@@ l .
it 's a natural thing .
she did it for three years .
i sometimes push too hard .
i talk a lot about these issues .
we all love baseball , don 't we ?
so the white lines here are population .
now we talk about water wars .
and there 's good news here .
i mean , that was epi@@ c .
and as soon as i walked inside , the ju@@ dge saw me coming in .
and i got in my car and i went to this cour@@ thou@@ se .
somehow this isn 't working out , is it ?
tell me what you 're trying to do . "
but , but , you know what ?
it 's not our bur@@ den .
today , there are 2.@@ 3 million .
i 'm going to tell you something i probably shouldn 't .
and i 'm going to ad@@ mit something to you .
we 're har@@ n@@ ess@@ ing energy from the sun .
and somehow kids don 't do that anymore .
i found myself becoming a little bit of a tech@@ no@@ pho@@ be .
and there 's hundreds of them .
but they do the job .
and it starts with one physi@@ cian at a time .
and here 's the thing .
why should i worry ?
and one time we caught a live one .
they were still kind of happy .
this was my first sun@@ burn .
he was actually colle@@ cting fish .
my name is brian gold@@ man .
she shares her experience with others .
so what was the next step ?
we can 't get rid of it .
and she 's hit@@ ting a 25@@ 7 .
but there are two problems with that .
i began to feel a bit better .
slowly but sur@@ ely , it li@@ f@@ ted .
she was back and near death .
the other nur@@ se asked ma@@ tter@@ -@@ of-@@ fac@@ tly .
the second mistake that i made was worse .
and i memor@@ i@@ zed everything .
and this made me really sad .
but it was very sad .
i see this plus sign .
what other br@@ ands are like that ?
and so that 's what we did .
and really you do the same thing .
it really comes from these artists .
i probably shouldn 't say that .
so i 'm going to try and show you what you really get for 10 billion pi@@ x@@ els .
so this is all of the meta@@ -@@ data information .
now this is one of the images .
they called me .
and it took 18 months .
we went and looked at a site .
tell me about this world .
super@@ ior technology .
that 's very ris@@ ky .
that wouldn 't have been a problem at all .
your plant can b@@ low up .
that 's cool , hu@@ h ?
and that worked pretty well .
he showed it to ja@@ vier .
and then some very funny things happened .
her mother raised her alone .
this is not a finished story .
it 's not moving like that .
and they don 't tell us much .
it connected those two people .
and that 's nothing .
we maybe even [ have ] it in our cell@@ phone .
how could we help you ? "
sometimes the perspective is the illusion .
it 's about as far as we go out .
no had never been an option .
this picture 's from there .
it 's this , just like this .
so what happened on this day ?
all right , let 's go .
okay , there 's some .
they 're all important choices . "
think about your own choices .
one is south korea .
and it 's been an incredible experience .
next would be nuclear .
it is kind of a crazy idea .
i could draw . i could paint .
and it really changed the dynamic .
the world today has 6@@ .@@ 8 billion people .
we have something that 's not going up .
so , with energy , all i could come up with is this .
and i see gre@@ g le@@ mond now .
one billion people will go hun@@ gry today .
we certainly need one to succe@@ ed .
but there 's another reason as well .
architec@@ ts and engineers , th@@ ank@@ fully .
and i tried something interesting .
there 's world recor@@ ds that are on this as well .
so with that , i thank you .
and everyone in this room has to get into it .
and then we said , okay ,
it 's simple , that 's what will happen .
he 'll auto@@ matically go to the right thought .
today they 're called project ex@@ ecu@@ ting organizations .
he 's wa@@ sting his time on non@@ sense .
yes , here is the data .
how far would you get with that ?
and it just dist@@ ur@@ bed me so much .
do they do that for the children ? "
so , i just started playing .
music is medicine . music changes us .
thinking , you know , two percent .
i fell out of love with this fish .
they f@@ loo@@ ded the can@@ als .
and that can make a big difference .
so it 's right in the middle .
what about lon@@ ge@@ vi@@ ty ?
but what will come in the future ?
five million people use it every month .
but it doesn 't have to end there .
so , this crazy story might be true .
we 've been playing war@@ craft since 199@@ 4 .
it 's separ@@ ating students from a , b , c , d and so on .
if you don 't know it already , this is coming .
now , that 's not necessarily a bad thing .
we have reach@@ ed a kind of equi@@ po@@ ise .
who doesn 't want heal@@ thi@@ er children ?
these will be ir@@ resi@@ sti@@ ble .
i remember my first fire .
and you know what i 've learned ?
bli@@ ss@@ ful produ@@ c@@ tivity . i love it .
here this lo@@ gic is expres@@ sed in this de@@ cep@@ tive dis@@ course .
and the object of this is quite simple .
i hold the kni@@ fe in my hand .
dark ur@@ ine . dark .
it 's ide@@ ology , it 's not science .
this has nothing to do with science .
so , here 's what happens .
i 'll get my sle@@ e@@ ve back .
the result of that has been dis@@ a@@ str@@ ous .
it 's just better than reality .
and it 's a very easy question .
what defin@@ es a story ?
so the cor@@ relation is low .
no . i 'm serious . i am .
and then we get all this positive feedback .
that 's how things of nature are imag@@ ined .
so , the living give birth to the spi@@ ri@@ ts .
and now our de@@ cep@@ tive consciousness immediately senses , i can do something with this .
we 're still extremely atta@@ ched to story@@ telling as a method of information bro@@ ker@@ age .
they are usually for@@ gotten by the third term .
and that 's just the beginning .
i would like to prove that to you .
at least not to navi@@ gate .
to the book and to the image .
bru@@ ce brown , a famous design resear@@ cher at bri@@ gh@@ ton university , went so far as to say that mass media and he means books and images , not tv , the internet et@@ c. which is what we would define as mass media today that these mass media have turned our memor@@ ies to stone and have ero@@ ded our ability to virtu@@ al@@ ise .
for a longer time than these other two networks .
here , he 's bringing the sun out .
i don 't know who re@@ co@@ g@@ nis@@ es what .
does anyone know what three seconds are ?
another very exciting phenomenon .
and what does that mean to a designer ?
and that has to do with phosp@@ hor@@ us .
was a very a very fan@@ cy project .
it causes leu@@ ke@@ mi@@ a in children .
we started this over 15 years ago .
sun@@ light and co2 is one method ...
our maga@@ zin@@ es are read by millions .
a has these benefits , and these risks .
and there are several reasons for this .
do you want them dist@@ ressed ?
the truth is more like this .
it 's entirely in@@ significant .
amazing ! the machin@@ ery is kind of l@@ oud .
i think it 's o@@ di@@ ous .
these flo@@ ws are increasing very rapi@@ dly .
this is hit@@ ting the reser@@ vo@@ irs .
that image remin@@ ded me of something .
leave that up to us .
otherwise you couldn 't have teeth .
talk about getting by with nothing .
so the first step towards an interpretation .
do you know what en@@ vy is ?
because to me it means memory .
he was over six@@ ty at the time .
and it still isn 't an interpretation .
it 's like learning to speak .
and it will sound completely different from before .
how and what did they feel ?
the reasons for writing it .
were you ever en@@ vi@@ ous ?
something sho@@ ots through my head .
no , no , that 's not possible .
but there are no associ@@ ations to look for where you can learn how to make a fire .
and mor@@ e@@ over , you don 't tell your teacher that you like to set fir@@ es and are happy when the fire fl@@ ar@@ es up .
that must be our difference in age .
this this hin@@ t at the fact that the boy knew , deep within , that his connection is really with the fire , but that he can 't say that out l@@ oud .
to ask yourself , what is the right thing to do ?
to what we 're thinking from a northern perspective .
zero emissions , you see ?
so you can 't solve that .
we can win back our nutri@@ ents .
but we need this everywhere .
but totally effective , right ?
with people , it is rele@@ ased in the ur@@ ine .
i fo@@ unded an institute with this in mind .
we say sustain@@ ability in germany .
that 's just about the minim@@ um .
you can show that you were there .
if you think about it , right ?
we can re-@@ inv@@ ent things all over again .
it turns out to be really difficult .
i actually learned about this from my grandmother .
i know this might be broad@@ cast broad@@ ly .
it can know where we are .
now i 've been talking a lot about magic .
over here , these are the ap@@ sar@@ as .
i 've tried looking at them and telling you how they work .
and then my brother started star@@ ing at me .
well every one of those generations just takes a few milli@@ seconds .
and we 're actually doing some li@@ ti@@ gation .
and that 's a very sensi@@ ble question .
we don 't really know very much about it .
now we do the same with air@@ planes .
and i began giving her my ra@@ p .
oh , that 's all my time ?
they haven 't given up on government .
who could ever wish it on their own ?
but it does require a lot of planning .
and every morning i ho@@ p on it .
and i think that opportunity exists all around us .
it 's spre@@ ading vir@@ ally .
and that gave them an evolutionary advantage .
now we didn 't write this ap@@ p .
how do i get this re@@ moved ? "
and those are the neu@@ ral structures .
we don 't like to talk about our history .
her father died soon after she was born .
this is b@@ j@@ or@@ n s@@ und@@ in .
they sell cer@@ ti@@ fic@@ ates .
they had been pus@@ hed gene@@ tically .
but it 's not docum@@ ented .
and nobody seems to be making a f@@ uss about it .
i am a re@@ defined physi@@ cian .
and his answer was yes .
i don 't take the same history .
because i have nothing to hi@@ de . "
priv@@ acy is not up for discussion .
le@@ go made it acc@@ essi@@ ble .
and this is about shif@@ ting bas@@ eline .
for a year we were pen@@ ni@@ less .
because we live on a water planet .
but i 'm going to ask you a question .
but perhaps that 's not the case .
in fact , we re@@ define what poverty means .
je@@ op@@ ar@@ dy 's not an easy game .
you 're an in@@ spir@@ ing person .
baseball is filled with some amazing statistics .
the other one had a lot of di@@ arr@@ he@@ a .
they gave her medi@@ cations to raise her blood pressure .
and the family gather@@ ed .
why did i go into medicine ?
de@@ fe@@ at would have come too easily .
do we really want to go there ?
i went to prison -- difficult .
we 've got@@ ta figure out which br@@ ands .
didn 't make sense to me .
that 's sc@@ ary .
okay , you really want to hear that ?
it sounds sc@@ ary .
that was more for em@@ ph@@ as@@ is .
and i had to get out of town .
what else is ris@@ ky ?
we are a smaller brand .
what are the words that you would use to describe ban ?
that 's easy , hu@@ h ?
i like really nice clo@@ th@@ es .
you can go all the way through .
and this video is real time .
i call this " sh@@ in@@ y tiger . "
just be who you are .
the match begins -- sil@@ ence .
i like things that are different .
but the reality is far from it .
we 've won a bunch of a@@ wards .
he only has use of his eyes .
what are you going to do with it ? "
isn 't that a@@ wes@@ ome ?
um , my brand ?
will it be under $ 20 ?
here 's a descri@@ ption of the road .
we have to gradu@@ ally increase the complexity .
they even can bring with them some finan@@ cing .
here 's their o@@ live oil a@@ is@@ le .
here 's their ja@@ m a@@ is@@ le .
well , that 's not quite right .
who are they actually supposed to be in@@ forming ?
and so we measu@@ red its motion .
oh , my god . oh , my god .
and who could have predi@@ cted any of this ?
all the adults knew the risks .
that 's more than 250 hundre@@ d-@@ thousand ac@@ r@@ es .
something sti@@ ff@@ en@@ ed inside me .
thanks . i haven 't come to the best part .
but then you really want to go deep .
those are ju@@ x@@ ta@@ posed very ni@@ c@@ ely together .
the film hasn 't even been distribu@@ ted yet .
you want to navi@@ gate around the museum ?
thanks for you pati@@ ence .
you see some fun stuff happening here .
this is a photograph of the object .
and appar@@ ently it was quite popular .
it 's to supp@@ le@@ ment the experience .
and i 've never seen them .
the bri@@ cks are color@@ -@@ co@@ ded .
there 's a lot that has to come together .
what am i appe@@ aling to you to step forward and drive ?
and then what do you do with the waste ?
also , these are inter@@ mitt@@ ent sources .
in terms of fuel , this really sol@@ ves the problem .
well , again , it should have the two elements .
there 's a lot of great books that have been written about this .
and it 's a great thing for this number to go up .
it 's been constantly going up .
if this doesn 't work , then what ?
now , that 's just an in@@ sur@@ ance policy .
and even l@@ om@@ bor@@ g has changed .
you can just tell be@@ fore@@ hand . and why is that ?
they manage the process , they understand the process .
so that 's a tough one .
it 's gone . it 's van@@ ished .
" that 's success , " he said .
fe@@ ast@@ ing ? i was totally conf@@ used .
" best in the business . "
the che@@ f had over@@ coo@@ ked it .
and e@@ col@@ o@@ gi@@ cally , it was a disaster .
they literally fli@@ pped the switch .
i 'm an exper@@ t in relationships . "
does anyone even know what those things are ?
can 't we just cut it in half or a quar@@ ter ?
he sho@@ ok his head , no .
this is an e@@ col@@ o@@ gical network .
how are you going to feed the world ?
it was really , really quite profound .
so , what can we syn@@ thes@@ ize out of all this ?
there 's never been a time like this .
that will take place next apri@@ l .
so , this is world without oil .
what do you think happens next ?
above that , we get an absolutely flat line .
thank you , dan@@ ny ka@@ h@@ ne@@ man .
and there are also tons of collabor@@ ators .
that was the first up@@ right pri@@ mate .
this is true . i believe this .
thank you . i 've got a question for you .
he had had 20 minutes of gl@@ ori@@ ous music .
let me read you the ent@@ ry .
so , it 's not just about the words .
it 's part of our life .
so , we can give ourselves a gift .
sexual re@@ production en@@ ters the picture .
dan@@ iel ka@@ h@@ ne@@ man : sure .
we were given very accu@@ rate data .
we don 't want companies ow@@ ning see@@ ds .
and why ? gene@@ tically engine@@ ered food .
we talk about it ambi@@ val@@ ently .
that guy in the middle , not so much .
we have meas@@ les in this country now .
it 's cru@@ el to millions of people .
there are . there always are .
not even the truth will set them free .
everybody would like to make people happ@@ ier .
because we don 't want to move genes around ?
so , it goes like this , from here , right .
do@@ sage has something to do with this .
so , let me give you a little pe@@ ek .
how 's that look out there ? pretty good .
so , please for@@ give me .
we go through initi@@ ation ri@@ tes .
and here can you see the whole thing again .
that is exactly what you are doing .
but i 'll come back to that in a moment .
but we 're beginning to see a sea change .
this is one of them , part of one of them .
it 's about re@@ power@@ ing america .
we need to go far , quickly .
that might sound unusual at first .
it just didn 't come up like that , you know ?
and this picture was taken by at@@ las .
no , no , that 's way off .
this is about virtu@@ ality , about non-@@ lin@@ ear@@ ity , about story@@ telling .
perhaps we should take another look at this .
from the modern to the computer society .
and just to say , what is information ?
this is an an@@ nu@@ al mel@@ ting river .
a d@@ al@@ mati@@ an , exactly .
yes . what this is really doing is disco@@ vering .
this is my super@@ market . not such a big one .
they spe@@ ared each other .
now , this level of intuition becomes very important .
they 're hom@@ el@@ ands of somebody .
15@@ 6 nations carry our television chan@@ nel .
so let 's pull up , now , something else .
and , what 's more , you 'll now always see it .
we have thousands of organisms that can do this .
in other do@@ ma@@ ins -- the world of communic@@ ations .
these are cell phones of the future .
all of these are consum@@ ing questions .
it 's a small virus that kill@@ s bacteria .
we design unique elements into this .
first you see from back to front .
a language is a flas@@ h of the human spirit .
the mechan@@ ism comes from the lie .
over the h@@ ills and all that .
so you could call it the trans@@ lation of a trans@@ lation .
it 's a so@@ le@@ m@@ n part .
his personal impres@@ sions of the water@@ li@@ lies .
especially if he 's already dead .
say what you feel .
so two cy@@ cles are created .
in two hours it 's bio@@ de@@ gra@@ ded , wher@@ ever it is .
a particularly nice story , in my opini@@ on .
that 's how people imagine the sou@@ l works .
you 'll remember the rule of three from school .
this is a rule of three , which descri@@ bes a lo@@ gic to us .
the first theor@@ em is , kl@@ aus cla@@ ims there is no sou@@ l .
that which i just pres@@ ented to you .
you put a box like this over there .
protect the environment , produce less ru@@ b@@ bis@@ h .
it 's just a little less destruction .
he will have to process that as the present .
what takes tw@@ ent@@ y-@@ five milli@@ seconds ?
that 's also a paradig@@ m shift .
i 'll try to do that using an example .
and curi@@ osity can 't be learned .
then i see the d@@ al@@ mati@@ an .
but with the right design , please .
so humans can 't be pig@@ s .