-
Notifications
You must be signed in to change notification settings - Fork 1
/
tedtalks_video.xml
1952 lines (1844 loc) · 260 KB
/
tedtalks_video.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" xmlns:jwplayer="http://developer.longtailvideo.com/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
<lastBuildDate>Thu, 14 Aug 2014 07:39:07 UTC</lastBuildDate>
<title>TEDTalks (video)</title>
<link>http://www.ted.com/talks/list</link>
<generator>TED - TED.com</generator>
<description>TED is a nonprofit devoted to Ideas Worth Spreading. On this feed, you'll find TEDTalks video to inspire, intrigue and stir the imagination from some of the world's leading thinkers and doers, speaking from the stage at TED conferences, TEDx events and partner events around the world. This podcast is also available in high-def video and audio-only formats.</description>
<itunes:subtitle>TED is a nonprofit devoted to Ideas Worth Spreading. On this feed, you'll find TEDTalks video to inspire, intrigue and stir the imagination from some of the world's leading thinkers and doers, speaking from the stage at TED conferences, TEDx events and pa</itunes:subtitle>
<itunes:author>TEDTalks</itunes:author>
<itunes:summary>TED is a nonprofit devoted to Ideas Worth Spreading. On this feed, you'll find TEDTalks video to inspire, intrigue and stir the imagination from some of the world's leading thinkers and doers, speaking from the stage at TED conferences, TEDx events and partner events around the world. This podcast is also available in high-def video and audio-only formats.</itunes:summary>
<language>en</language>
<copyright>TED Conferences LLC</copyright>
<embms:serviceId>service5</embms:serviceId>
<embms:serviceDeliveryDate>Thu, 14 Aug 2014 07:39:07 UTC</embms:serviceDeliveryDate>
<itunes:owner>
<itunes:name>TED</itunes:name>
<itunes:email>contact@ted.com</itunes:email>
</itunes:owner>
<image>
<url>http://ted.streamguys.net/TEDTalksvideo_tile_144.jpg</url>
<title>TEDTalks (video)</title>
<link>http://www.ted.com/talks/list</link>
<width>144</width>
<height>144</height>
</image>
<itunes:image href="http://images.ted.com/images/ted/podcast/en/iTunes_ideasworthspreading_video.jpg" />
<category>Science</category>
<category>Technology</category>
<category>Entertainment</category>
<category>Design</category>
<itunes:keywords>TED, TEDTalks, TED Talks, inspiration, creativity, tech demo, education</itunes:keywords>
<itunes:explicit>no</itunes:explicit>
<media:rating scheme="urn:simple">nonadult</media:rating>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/TEDTalks_video" /><feedburner:info uri="tedtalks_video" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><media:copyright>TED Conferences LLC</media:copyright><media:thumbnail url="http://images.ted.com/images/ted/podcast/en/iTunes_ideasworthspreading_video.jpg" /><media:keywords>TED, TEDTalks, TED Talks, inspiration, creativity, tech demo, education</media:keywords><media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">Arts/Design</media:category><media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">Technology</media:category><media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">Education</media:category><media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">Society & Culture</media:category><media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">News & Politics</media:category><itunes:category text="Arts"><itunes:category text="Design" /></itunes:category><itunes:category text="Technology" /><itunes:category text="Education" /><itunes:category text="Society & Culture" /><itunes:category text="News & Politics" /><feedburner:browserFriendly>Each year, TED hosts 80 of the world's most fascinating people: Trusted voices and convention-breaking mavericks, icons and geniuses. These podcasts (also available in audio format) capture the most extraordinary presentations delivered from the TED stage. Each week, we'll release a new talk to inspire, intrigue and stir the imagination. For best effect, plan to listen to at least three, start to finish. (They have a cumulative effect.) If you have a curious soul and an open mind, we think you'll be hooked...</feedburner:browserFriendly><item>
<title>TED: Dan Pacholke: How prisons can help inmates live meaningful lives - Dan Pacholke (2014)</title>
<itunes:author>Dan Pacholke</itunes:author>
<description>In the United States, the agencies that govern prisons are often called ‘Department of Corrections.’ And yet, their focus is on containing and controlling inmates. Dan Pacholke, Deputy Secretary for the Washington State Department of Corrections, shares a different vision: of prisons that provide humane living conditions as well as opportunities for meaningful work and learning.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/uuZF7SLbdTk" height="1" width="1"/></description>
<itunes:subtitle>Dan Pacholke: How prisons can help inmates live meaningful lives</itunes:subtitle>
<itunes:summary><![CDATA[In the United States, the agencies that govern prisons are often called ‘Department of Corrections.’ And yet, their focus is on containing and controlling inmates. Dan Pacholke, Deputy Secretary for the Washington State Department of Corrections, shares a different vision: of prisons that provide humane living conditions as well as opportunities for meaningful work and learning. ]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/uuZF7SLbdTk/dan_pacholke_how_prisons_can_help_inmates_live_meaningful_lives</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2057</guid>
<jwplayer:talkId>2057</jwplayer:talkId>
<pubDate>Wed, 13 Aug 2014 14:47:42 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:10:36</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/0FaAvXpNOoQ/DanPacholke_2014X.mp4" fileSize="36274444" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/69e4f4f5e656aa0f9d1ea4ab6accd8a7fd05b2a7_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/69e4f4f5e656aa0f9d1ea4ab6accd8a7fd05b2a7_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/dan_pacholke_how_prisons_can_help_inmates_live_meaningful_lives</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/0FaAvXpNOoQ/DanPacholke_2014X.mp4" length="36274444" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/DanPacholke_2014X.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Nick Hanauer: Beware, fellow plutocrats, the pitchforks are coming - Nick Hanauer (2014)</title>
<itunes:author>Nick Hanauer</itunes:author>
<description>Nick Hanauer is a rich guy, an unrepentant capitalist — and he has something to say to his fellow plutocrats: Wake up! Growing inequality is about to push our societies into conditions resembling pre-revolutionary France. Hear his argument about why a dramatic increase in minimum wage could grow the middle class, deliver economic prosperity ... and prevent a revolution.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/V-YwXWr0lSg" height="1" width="1"/></description>
<itunes:subtitle>Nick Hanauer: Beware, fellow plutocrats, the pitchforks are coming</itunes:subtitle>
<itunes:summary><![CDATA[Nick Hanauer is a rich guy, an unrepentant capitalist — and he has something to say to his fellow plutocrats: Wake up! Growing inequality is about to push our societies into conditions resembling pre-revolutionary France. Hear his argument about why a dramatic increase in minimum wage could grow the middle class, deliver economic prosperity ... and prevent a revolution.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/V-YwXWr0lSg/nick_hanauer_beware_fellow_plutocrats_the_pitchforks_are_coming</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2055</guid>
<jwplayer:talkId>2055</jwplayer:talkId>
<pubDate>Tue, 12 Aug 2014 14:56:44 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:20:26</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/lRkSa4t0Hro/NickHanauer_2014S.mp4" fileSize="69497315" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/2a0622d03c2b2a6c673657a5b72ca83b0f48212e_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/2a0622d03c2b2a6c673657a5b72ca83b0f48212e_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/nick_hanauer_beware_fellow_plutocrats_the_pitchforks_are_coming</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/lRkSa4t0Hro/NickHanauer_2014S.mp4" length="69497315" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/NickHanauer_2014S.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Talithia Williams: Own your body's data - Talithia Williams (2014)</title>
<itunes:author>Talithia Williams</itunes:author>
<description>The new breed of high-tech self-monitors (measuring heartrate, sleep, steps per day) might seem targeted at competitive athletes. But Talithia Williams, a statistician, makes a compelling case that all of us should be measuring and recording simple data about our bodies every day — because our own data can reveal much more than even our doctors may know.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/iWSIh9X5R3M" height="1" width="1"/></description>
<itunes:subtitle>Talithia Williams: Own your body's data</itunes:subtitle>
<itunes:summary><![CDATA[The new breed of high-tech self-monitors (measuring heartrate, sleep, steps per day) might seem targeted at competitive athletes. But Talithia Williams, a statistician, makes a compelling case that all of us should be measuring and recording simple data about our bodies every day — because our own data can reveal much more than even our doctors may know.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/iWSIh9X5R3M/talithia_williams_own_your_body_s_data</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2056</guid>
<jwplayer:talkId>2056</jwplayer:talkId>
<pubDate>Mon, 11 Aug 2014 15:10:11 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:17:07</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/lbnJ-MZtKWA/TalithiaWilliams_2014X.mp4" fileSize="58419489" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/afc9b259845ec1b543419871e10753d4d9044fda_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/afc9b259845ec1b543419871e10753d4d9044fda_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/talithia_williams_own_your_body_s_data</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/lbnJ-MZtKWA/TalithiaWilliams_2014X.mp4" length="58419489" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/TalithiaWilliams_2014X.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Megan Washington: Why I live in mortal dread of public speaking - Megan Washington (2014)</title>
<itunes:author>Megan Washington</itunes:author>
<description>Megan Washington is one of Australia's premier singer/songwriters. And, since childhood, she has had a stutter. In this bold and personal talk, she reveals how she copes with this speech impediment—from avoiding the letter combination “st” to tricking her brain by changing her words at the last minute to, yes, singing the things she has to say rather than speaking them.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/hWBI6ULqq_I" height="1" width="1"/></description>
<itunes:subtitle>Megan Washington: Why I live in mortal dread of public speaking</itunes:subtitle>
<itunes:summary><![CDATA[Megan Washington is one of Australia's premier singer/songwriters. And, since childhood, she has had a stutter. In this bold and personal talk, she reveals how she copes with this speech impediment—from avoiding the letter combination “st” to tricking her brain by changing her words at the last minute to, yes, singing the things she has to say rather than speaking them.
]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/hWBI6ULqq_I/megan_washington_why_i_live_in_mortal_dread_of_public_speaking</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2054</guid>
<jwplayer:talkId>2054</jwplayer:talkId>
<pubDate>Fri, 08 Aug 2014 14:59:43 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:13:02</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/k6H1DHk7yWE/MeganWashington_2014X.mp4" fileSize="48171461" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/9119913cdebf7f4a8334b5d60cda125c7ed5039a_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/9119913cdebf7f4a8334b5d60cda125c7ed5039a_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/megan_washington_why_i_live_in_mortal_dread_of_public_speaking</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/k6H1DHk7yWE/MeganWashington_2014X.mp4" length="48171461" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/MeganWashington_2014X.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Janet Iwasa: How animations can help scientists test a hypothesis - Janet Iwasa (2014)</title>
<itunes:author>Janet Iwasa</itunes:author>
<description>3D animation can bring scientific hypotheses to life. Molecular biologist (and TED Fellow) Janet Iwasa introduces a new open-source animation software designed just for scientists.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/KDBWTgG70Ks" height="1" width="1"/></description>
<itunes:subtitle>Janet Iwasa: How animations can help scientists test a hypothesis</itunes:subtitle>
<itunes:summary><![CDATA[3D animation can bring scientific hypotheses to life. Molecular biologist (and TED Fellow) Janet Iwasa introduces a new open-source animation software designed just for scientists.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/KDBWTgG70Ks/janet_iwasa_how_animations_can_help_scientists_test_a_hypothesis</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2052</guid>
<jwplayer:talkId>2052</jwplayer:talkId>
<pubDate>Thu, 07 Aug 2014 15:34:29 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:05:10</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/K_KtlxLbjDs/JanetIwasa_2014U.mp4" fileSize="17660527" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/36de538c843e8e286150bc1152651b48fe264daa_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/36de538c843e8e286150bc1152651b48fe264daa_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/janet_iwasa_how_animations_can_help_scientists_test_a_hypothesis</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/K_KtlxLbjDs/JanetIwasa_2014U.mp4" length="17660527" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/JanetIwasa_2014U.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Hubertus Knabe: The dark secrets of a surveillance state - Hubertus Knabe (2014)</title>
<itunes:author>Hubertus Knabe</itunes:author>
<description>Tour the deep dark world of the East German state security agency known as Stasi. Uniquely powerful at spying on its citizens, until the fall of the Berlin Wall in 1989 the Stasi masterminded a system of surveillance and psychological pressure that kept the country under control for decades. Hubertus Knabe studies the Stasi — and was spied on by them. He shares stunning details from the fall of a surveillance state, and shows how easy it was for neighbor to turn on neighbor.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/zWg4ZapW7RA" height="1" width="1"/></description>
<itunes:subtitle>Hubertus Knabe: The dark secrets of a surveillance state</itunes:subtitle>
<itunes:summary><![CDATA[Tour the deep dark world of the East German state security agency known as Stasi. Uniquely powerful at spying on its citizens, until the fall of the Berlin Wall in 1989 the Stasi masterminded a system of surveillance and psychological pressure that kept the country under control for decades. Hubertus Knabe studies the Stasi — and was spied on by them. He shares stunning details from the fall of a surveillance state, and shows how easy it was for neighbor to turn on neighbor.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/zWg4ZapW7RA/hubertus_knabe_the_dark_secrets_of_a_surveillance_state</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2053</guid>
<jwplayer:talkId>2053</jwplayer:talkId>
<pubDate>Wed, 06 Aug 2014 15:02:35 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:19:38</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/SSsdd0gmv9Y/HubertusKnabe_2014S.mp4" fileSize="67080522" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/098378d06b95e2f4044158897a9dbb83d7fe74dd_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/098378d06b95e2f4044158897a9dbb83d7fe74dd_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/hubertus_knabe_the_dark_secrets_of_a_surveillance_state</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/SSsdd0gmv9Y/HubertusKnabe_2014S.mp4" length="67080522" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/HubertusKnabe_2014S.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Margaret Gould Stewart: How giant websites design for you (and a billion others, too) - Margaret Gould Stewart (2014)</title>
<itunes:author>Margaret Gould Stewart</itunes:author>
<description>Facebook’s “like” and “share” buttons are seen 22 billion times a day, making them some of the most-viewed design elements ever created. Margaret Gould Stewart, Facebook’s director of product design, outlines three rules for design at such a massive scale—one so big that the tiniest of tweaks can cause global outrage, but also so large that the subtlest of improvements can positively impact the lives of many.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/6o-5hrN6bTU" height="1" width="1"/></description>
<itunes:subtitle>Margaret Gould Stewart: How giant websites design for you (and a billion others, too)</itunes:subtitle>
<itunes:summary><![CDATA[Facebook’s “like” and “share” buttons are seen 22 billion times a day, making them some of the most-viewed design elements ever created. Margaret Gould Stewart, Facebook’s director of product design, outlines three rules for design at such a massive scale—one so big that the tiniest of tweaks can cause global outrage, but also so large that the subtlest of improvements can positively impact the lives of many.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/6o-5hrN6bTU/margaret_gould_stewart_how_giant_websites_design_for_you_and_a_billion_others_too</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2039</guid>
<jwplayer:talkId>2039</jwplayer:talkId>
<pubDate>Tue, 05 Aug 2014 15:19:04 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:13:00</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/6P9Tx71GUx8/MargaretStewart_2014.mp4" fileSize="44259245" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/dad8156a2735b62bea89c854051e080a8a24c463_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/dad8156a2735b62bea89c854051e080a8a24c463_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/margaret_gould_stewart_how_giant_websites_design_for_you_and_a_billion_others_too</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/6P9Tx71GUx8/MargaretStewart_2014.mp4" length="44259245" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/MargaretStewart_2014.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Shai Reshef: An ultra-low-cost college degree - Shai Reshef (2014)</title>
<itunes:author>Shai Reshef</itunes:author>
<description>At the online University of the People, anyone with a high school diploma can take classes toward a degree in business administration or computer science — without standard tuition fees (though exams cost money). Founder Shai Reshef hopes that higher education is changing "from being a privilege for the few to a basic right, affordable and accessible for all."<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/Z7smjuJbiq8" height="1" width="1"/></description>
<itunes:subtitle>Shai Reshef: An ultra-low-cost college degree</itunes:subtitle>
<itunes:summary><![CDATA[At the online University of the People, anyone with a high school diploma can take classes toward a degree in business administration or computer science — without standard tuition fees (though exams cost money). Founder Shai Reshef hopes that higher education is changing "from being a privilege for the few to a basic right, affordable and accessible for all."]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/Z7smjuJbiq8/shai_reshef_a_tuition_free_college_degree</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2050</guid>
<jwplayer:talkId>2050</jwplayer:talkId>
<pubDate>Mon, 04 Aug 2014 15:08:53 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:10:52</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/OsLQjETAgck/ShaiReshef_2014.mp4" fileSize="39725932" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/11bbb81480a529077b7bf1532025795686a2db7d_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/11bbb81480a529077b7bf1532025795686a2db7d_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/shai_reshef_a_tuition_free_college_degree</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/OsLQjETAgck/ShaiReshef_2014.mp4" length="39725932" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/ShaiReshef_2014.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Ze Frank: Are you human? - Ze Frank (2014)</title>
<itunes:author>Ze Frank</itunes:author>
<description>Have you ever wondered: Am I a human being? Ze Frank suggests a series of simple questions that will determine this. Please relax and follow the prompts. Let's begin …<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/hIWDJ7dJV7k" height="1" width="1"/></description>
<itunes:subtitle>Ze Frank: Are you human?</itunes:subtitle>
<itunes:summary><![CDATA[Have you ever wondered: Am I a human being? Ze Frank suggests a series of simple questions that will determine this. Please relax and follow the prompts. Let's begin … ]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/hIWDJ7dJV7k/ze_frank_are_you_human</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2049</guid>
<jwplayer:talkId>2049</jwplayer:talkId>
<pubDate>Fri, 18 Jul 2014 15:08:53 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:04:34</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/SnYLUtY8rPg/ZeFrank_2014.mp4" fileSize="18799823" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/05baea8e5b77927049d526c970558c023f1fb31d_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/05baea8e5b77927049d526c970558c023f1fb31d_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/ze_frank_are_you_human</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/SnYLUtY8rPg/ZeFrank_2014.mp4" length="18799823" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/ZeFrank_2014.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Heather Barnett: What humans can learn from semi-intelligent slime - Heather Barnett (2014)</title>
<itunes:author>Heather Barnett</itunes:author>
<description>Inspired by biological design and self-organizing systems, artist Heather Barnett co-creates with physarum polycephalum, a eukaryotic microorganism that lives in cool, moist areas. What can people learn from the semi-intelligent slime mold? Watch this talk to find out.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/crfHoY1K2Rw" height="1" width="1"/></description>
<itunes:subtitle>Heather Barnett: What humans can learn from semi-intelligent slime</itunes:subtitle>
<itunes:summary><![CDATA[Inspired by biological design and self-organizing systems, artist Heather Barnett co-creates with physarum polycephalum, a eukaryotic microorganism that lives in cool, moist areas. What can people learn from the semi-intelligent slime mold? Watch this talk to find out.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/crfHoY1K2Rw/heather_barnett_what_humans_can_learn_from_semi_intelligent_slime_1</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2048</guid>
<jwplayer:talkId>2048</jwplayer:talkId>
<pubDate>Thu, 17 Jul 2014 15:29:46 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:12:11</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/v8RwnUXMgDI/HeatherBarnett_2014S.mp4" fileSize="44213316" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/9154bb2461198f7996599fb90777ddd5d651e3b7_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/9154bb2461198f7996599fb90777ddd5d651e3b7_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/heather_barnett_what_humans_can_learn_from_semi_intelligent_slime_1</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/v8RwnUXMgDI/HeatherBarnett_2014S.mp4" length="44213316" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/HeatherBarnett_2014S.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Shih Chieh Huang: Sculptures that’d be at home in the deep sea - Shih Chieh Huang (2014)</title>
<itunes:author>Shih Chieh Huang</itunes:author>
<description>When he was young, artist Shih Chieh Huang loved taking toys apart and perusing the aisles of night markets in Taiwan for unexpected objects. Today, this TED Fellow creates madcap sculptures that seem to have a life of their own—with eyes that blink, tentacles that unfurl and parts that light up like bioluminescent sea creatures.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/6oOsIfOIrZQ" height="1" width="1"/></description>
<itunes:subtitle>Shih Chieh Huang: Sculptures that’d be at home in the deep sea</itunes:subtitle>
<itunes:summary><![CDATA[When he was young, artist Shih Chieh Huang loved taking toys apart and perusing the aisles of night markets in Taiwan for unexpected objects. Today, this TED Fellow creates madcap sculptures that seem to have a life of their own—with eyes that blink, tentacles that unfurl and parts that light up like bioluminescent sea creatures.
]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/6oOsIfOIrZQ/shih_chieh_huang_sculptures_that_d_be_at_home_at_the_bottom_of_the_ocean</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2047</guid>
<jwplayer:talkId>2047</jwplayer:talkId>
<pubDate>Wed, 16 Jul 2014 15:06:42 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:05:14</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/CAgPVa8PG1k/ShihChiehHuang_2014U.mp4" fileSize="20469063" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/52137372901b7fc655bad4a27641f307d6e35b5e_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/52137372901b7fc655bad4a27641f307d6e35b5e_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/shih_chieh_huang_sculptures_that_d_be_at_home_at_the_bottom_of_the_ocean</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/CAgPVa8PG1k/ShihChiehHuang_2014U.mp4" length="20469063" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/ShihChiehHuang_2014U.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Nikolai Begg: A tool to fix one of the most dangerous moments in surgery - Nikolai Begg (2013)</title>
<itunes:author>Nikolai Begg</itunes:author>
<description>Surgeons are required every day to puncture human skin before procedures — with the risk of damaging what's on the other side. In a fascinating talk, find out how mechanical engineer Nikolai Begg is using physics to update an important medical device, called the trocar, and improve one of the most dangerous moments in many common surgeries.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/vmgemAZKHu4" height="1" width="1"/></description>
<itunes:subtitle>Nikolai Begg: A tool to fix one of the most dangerous moments in surgery</itunes:subtitle>
<itunes:summary><![CDATA[Surgeons are required every day to puncture human skin before procedures — with the risk of damaging what's on the other side. In a fascinating talk, find out how mechanical engineer Nikolai Begg is using physics to update an important medical device, called the trocar, and improve one of the most dangerous moments in many common surgeries.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/vmgemAZKHu4/nikolai_begg_a_tool_to_fix_one_of_the_most_dangerous_moments_in_surgery</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2046</guid>
<jwplayer:talkId>2046</jwplayer:talkId>
<pubDate>Tue, 15 Jul 2014 15:01:38 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:09:21</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/d3cQiRNw_aI/NikolaiBegg_2013X.mp4" fileSize="35156064" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/885c7429ef539771f949b2c700bf5bec320570d9_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/885c7429ef539771f949b2c700bf5bec320570d9_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/nikolai_begg_a_tool_to_fix_one_of_the_most_dangerous_moments_in_surgery</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/d3cQiRNw_aI/NikolaiBegg_2013X.mp4" length="35156064" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/NikolaiBegg_2013X.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: David Chalmers: How do you explain consciousness? - David Chalmers (2014)</title>
<itunes:author>David Chalmers</itunes:author>
<description>Our consciousness is a fundamental aspect of our existence, says philosopher David Chalmers: “There’s nothing we know about more directly…. but at the same time it’s the most mysterious phenomenon in the universe.” He shares some ways to think about the movie playing in our heads.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/QMq_dMdIlZc" height="1" width="1"/></description>
<itunes:subtitle>David Chalmers: How do you explain consciousness?</itunes:subtitle>
<itunes:summary><![CDATA[Our consciousness is a fundamental aspect of our existence, says philosopher David Chalmers: “There’s nothing we know about more directly…. but at the same time it’s the most mysterious phenomenon in the universe.” He shares some ways to think about the movie playing in our heads.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/QMq_dMdIlZc/david_chalmers_how_do_you_explain_consciousness</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2045</guid>
<jwplayer:talkId>2045</jwplayer:talkId>
<pubDate>Mon, 14 Jul 2014 15:08:04 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:18:37</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/jI4Nvmr7c_o/DavidChalmers_2014.mp4" fileSize="66120168" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/6dafa56cbeb9703054e1d9e06c49d48609e8d954_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/6dafa56cbeb9703054e1d9e06c49d48609e8d954_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/david_chalmers_how_do_you_explain_consciousness</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/jI4Nvmr7c_o/DavidChalmers_2014.mp4" length="66120168" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/DavidChalmers_2014.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: David Kwong: Two nerdy obsessions meet -- and it's magic - David Kwong (2014)</title>
<itunes:author>David Kwong</itunes:author>
<description>David Kwong is a magician who makes crossword puzzles -- in other words, a pretty nerdy guy. And for his next trick ...<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/gY3jZ_Ll80U" height="1" width="1"/></description>
<itunes:subtitle>David Kwong: Two nerdy obsessions meet -- and it's magic</itunes:subtitle>
<itunes:summary><![CDATA[David Kwong is a magician who makes crossword puzzles -- in other words, a pretty nerdy guy. And for his next trick ... ]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/gY3jZ_Ll80U/david_kwong_two_nerdy_obsessions_meet_and_it_s_magic</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2027</guid>
<jwplayer:talkId>2027</jwplayer:talkId>
<pubDate>Fri, 11 Jul 2014 15:21:53 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:11:43</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/bJ6qmnaj6kA/DavidKwong_2014.mp4" fileSize="42620858" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/717a3b22d2093b07a95afd8811e7e2f018f49243_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/717a3b22d2093b07a95afd8811e7e2f018f49243_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/david_kwong_two_nerdy_obsessions_meet_and_it_s_magic</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/bJ6qmnaj6kA/DavidKwong_2014.mp4" length="42620858" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/DavidKwong_2014.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Karima Bennoune: When people of Muslim heritage challenge fundamentalism - Karima Bennoune (2014)</title>
<itunes:author>Karima Bennoune</itunes:author>
<description>Karima Bennoune shares four powerful stories of real people fighting against fundamentalism in their own communities — refusing to allow the faith they love to become a tool for crime, attacks and murder. These personal stories humanize one of the most overlooked human-rights struggles in the world.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/s438FF_sesU" height="1" width="1"/></description>
<itunes:subtitle>Karima Bennoune: When people of Muslim heritage challenge fundamentalism</itunes:subtitle>
<itunes:summary><![CDATA[Karima Bennoune shares four powerful stories of real people fighting against fundamentalism in their own communities — refusing to allow the faith they love to become a tool for crime, attacks and murder. These personal stories humanize one of the most overlooked human-rights struggles in the world.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/s438FF_sesU/karima_bennoune_the_side_of_terrorism_that_doesn_t_make_headlines</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2042</guid>
<jwplayer:talkId>2042</jwplayer:talkId>
<pubDate>Thu, 10 Jul 2014 15:19:22 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:20:05</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/rGWH-jrwpnQ/KarimaBennoune_2014X.mp4" fileSize="70989979" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/8dfaf54d5ee743299bf32d5c132895b30414d665_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/8dfaf54d5ee743299bf32d5c132895b30414d665_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/karima_bennoune_the_side_of_terrorism_that_doesn_t_make_headlines</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/rGWH-jrwpnQ/KarimaBennoune_2014X.mp4" length="70989979" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/KarimaBennoune_2014X.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Renata Salecl: Our unhealthy obsession with choice - Renata Salecl (2013)</title>
<itunes:author>Renata Salecl</itunes:author>
<description>We face an endless string of choices, which leads us to feel anxiety, guilt and pangs of inadequacy that we are perhaps making the wrong ones. But philosopher Renata Salecl asks: Could individual choices be distracting us from something bigger—our power as social thinkers? A bold call for us to stop taking personal choice so seriously and focus on the choices we're making collectively.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/EwNRDhaL_pg" height="1" width="1"/></description>
<itunes:subtitle>Renata Salecl: Our unhealthy obsession with choice</itunes:subtitle>
<itunes:summary><![CDATA[We face an endless string of choices, which leads us to feel anxiety, guilt and pangs of inadequacy that we are perhaps making the wrong ones. But philosopher Renata Salecl asks: Could individual choices be distracting us from something bigger—our power as social thinkers? A bold call for us to stop taking personal choice so seriously and focus on the choices we're making collectively.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/EwNRDhaL_pg/renata_salecl_our_unhealthy_obsession_with_choice</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2044</guid>
<jwplayer:talkId>2044</jwplayer:talkId>
<pubDate>Wed, 09 Jul 2014 14:51:35 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:15:02</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/5J6LxIVHvhQ/RenataSalecl_2013G.mp4" fileSize="51389665" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/42df3420fcc0c4055fe6e8447d0ab64f81135241_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/42df3420fcc0c4055fe6e8447d0ab64f81135241_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/renata_salecl_our_unhealthy_obsession_with_choice</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/5J6LxIVHvhQ/RenataSalecl_2013G.mp4" length="51389665" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/RenataSalecl_2013G.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Nicholas Negroponte: A 30-year history of the future - Nicholas Negroponte (2014)</title>
<itunes:author>Nicholas Negroponte</itunes:author>
<description>MIT Media Lab founder Nicholas Negroponte takes you on a journey through the last 30 years of tech. The consummate predictor highlights interfaces and innovations he foresaw in the 1970s and 1980s that were scoffed at then but are ubiquitous today. And he leaves you with one last (absurd? brilliant?) prediction for the coming 30 years.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/ZQBoDwj6bas" height="1" width="1"/></description>
<itunes:subtitle>Nicholas Negroponte: A 30-year history of the future</itunes:subtitle>
<itunes:summary><![CDATA[MIT Media Lab founder Nicholas Negroponte takes you on a journey through the last 30 years of tech. The consummate predictor highlights interfaces and innovations he foresaw in the 1970s and 1980s that were scoffed at then but are ubiquitous today. And he leaves you with one last (absurd? brilliant?) prediction for the coming 30 years.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/ZQBoDwj6bas/nicholas_negroponte_a_30_year_history_of_the_future</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2043</guid>
<jwplayer:talkId>2043</jwplayer:talkId>
<pubDate>Tue, 08 Jul 2014 15:00:54 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:19:43</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/LUB3M_RKKTI/NicholasNegroponte_2014.mp4" fileSize="70243146" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/916b709d600db97cc67aa7e984c88b011dcb561f_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/916b709d600db97cc67aa7e984c88b011dcb561f_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/nicholas_negroponte_a_30_year_history_of_the_future</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/LUB3M_RKKTI/NicholasNegroponte_2014.mp4" length="70243146" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/NicholasNegroponte_2014.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Joi Ito: Want to innovate? Become a "now-ist" - Joi Ito (2014)</title>
<itunes:author>Joi Ito</itunes:author>
<description>“Remember before the internet?” asks Joi Ito. “Remember when people used to try to predict the future?” In this engaging talk, the head of the MIT Media Lab skips the future predictions and instead shares a new approach to creating in the moment: building quickly and improving constantly, without waiting for permission or for proof that you have the right idea. This kind of bottom-up innovation is seen in the most fascinating, futuristic projects emerging today, and it starts, he says, with being open and alert to what’s going on around you right now. Don’t be a futurist, he suggests: be a now-ist.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/PWXujyKOfL8" height="1" width="1"/></description>
<itunes:subtitle>Joi Ito: Want to innovate? Become a "now-ist"</itunes:subtitle>
<itunes:summary><![CDATA[“Remember before the internet?” asks Joi Ito. “Remember when people used to try to predict the future?” In this engaging talk, the head of the MIT Media Lab skips the future predictions and instead shares a new approach to creating in the moment: building quickly and improving constantly, without waiting for permission or for proof that you have the right idea. This kind of bottom-up innovation is seen in the most fascinating, futuristic projects emerging today, and it starts, he says, with being open and alert to what’s going on around you right now. Don’t be a futurist, he suggests: be a now-ist. ]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/PWXujyKOfL8/joi_ito_want_to_innovate_become_a_now_ist</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2041</guid>
<jwplayer:talkId>2041</jwplayer:talkId>
<pubDate>Mon, 07 Jul 2014 15:27:25 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:12:31</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/iXr-84dyaeA/JoiIto_2014.mp4" fileSize="45076614" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/cca9263cb9a8855bc662b4ffd463fd89e3a9e081_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/cca9263cb9a8855bc662b4ffd463fd89e3a9e081_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/joi_ito_want_to_innovate_become_a_now_ist</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/iXr-84dyaeA/JoiIto_2014.mp4" length="45076614" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/JoiIto_2014.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: George Takei: Why I love a country that once betrayed me - George Takei (2014)</title>
<itunes:author>George Takei</itunes:author>
<description>When he was a child, George Takei and his family were forced into an internment camp for Japanese-Americans, as a “security" measure during World War II. 70 years later, Takei looks back at how the camp shaped his surprising, personal definition of patriotism and democracy.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/vQ6gsnOtfrs" height="1" width="1"/></description>
<itunes:subtitle>George Takei: Why I love a country that once betrayed me</itunes:subtitle>
<itunes:summary><![CDATA[When he was a child, George Takei and his family were forced into an internment camp for Japanese-Americans, as a “security" measure during World War II. 70 years later, Takei looks back at how the camp shaped his surprising, personal definition of patriotism and democracy.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/vQ6gsnOtfrs/george_takei_why_i_love_a_country_that_once_betrayed_me</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2038</guid>
<jwplayer:talkId>2038</jwplayer:talkId>
<pubDate>Fri, 04 Jul 2014 15:05:32 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:15:58</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/ah2TpqWP77g/GeorgeTakei_2014X.mp4" fileSize="57381262" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/0c67ab6739fbb74fdd2cde3b0ea98741c2926d3f_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/0c67ab6739fbb74fdd2cde3b0ea98741c2926d3f_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/george_takei_why_i_love_a_country_that_once_betrayed_me</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/ah2TpqWP77g/GeorgeTakei_2014X.mp4" length="57381262" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/GeorgeTakei_2014X.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Paul Bloom: Can prejudice ever be a good thing? - Paul Bloom (2014)</title>
<itunes:author>Paul Bloom</itunes:author>
<description>We often think of bias and prejudice as rooted in ignorance. But as psychologist Paul Bloom seeks to show, prejudice is often natural, rational ... even moral. The key, says Bloom, is to understand how our own biases work -- so we can take control when they go wrong.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/a0mPAF4q2cI" height="1" width="1"/></description>
<itunes:subtitle>Paul Bloom: Can prejudice ever be a good thing?</itunes:subtitle>
<itunes:summary><![CDATA[We often think of bias and prejudice as rooted in ignorance. But as psychologist Paul Bloom seeks to show, prejudice is often natural, rational ... even moral. The key, says Bloom, is to understand how our own biases work -- so we can take control when they go wrong.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/a0mPAF4q2cI/paul_bloom_can_prejudice_ever_be_a_good_thing</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2037</guid>
<jwplayer:talkId>2037</jwplayer:talkId>
<pubDate>Thu, 03 Jul 2014 15:00:05 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:16:23</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/XnBlC4eTY1A/PaulBloom_2014S.mp4" fileSize="59196467" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/0016e3bc1c1e5c27eb62914fe925a357824a6999_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/0016e3bc1c1e5c27eb62914fe925a357824a6999_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/paul_bloom_can_prejudice_ever_be_a_good_thing</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/XnBlC4eTY1A/PaulBloom_2014S.mp4" length="59196467" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/PaulBloom_2014S.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Simon Anholt: Which country does the most good for the world? - Simon Anholt (2014)</title>
<itunes:author>Simon Anholt</itunes:author>
<description>It's an unexpected side effect of globalization: problems that once would have stayed local—say, a bank lending out too much money—now have consequences worldwide. But still, countries operate independently, as if alone on the planet. Policy advisor Simon Anholt has dreamed up an unusual scale to get governments thinking outwardly: The Good Country Index. In a riveting and funny talk, he answers the question, "Which country does the most good?" The answer may surprise you (especially if you live in the US or China).<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/Oa2YQ88Ca8Y" height="1" width="1"/></description>
<itunes:subtitle>Simon Anholt: Which country does the most good for the world?</itunes:subtitle>
<itunes:summary><![CDATA[It's an unexpected side effect of globalization: problems that once would have stayed local—say, a bank lending out too much money—now have consequences worldwide. But still, countries operate independently, as if alone on the planet. Policy advisor Simon Anholt has dreamed up an unusual scale to get governments thinking outwardly: The Good Country Index. In a riveting and funny talk, he answers the question, "Which country does the most good?" The answer may surprise you (especially if you live in the US or China).
]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/Oa2YQ88Ca8Y/simon_anholt_which_country_does_the_most_good_for_the_world</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2036</guid>
<jwplayer:talkId>2036</jwplayer:talkId>
<pubDate>Wed, 02 Jul 2014 14:58:54 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:17:54</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/qTweba1iz4g/SimonAnholt_2014S.mp4" fileSize="64115900" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/e960b23ccb1772403a5cfe928bd74908c6dd413c_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/e960b23ccb1772403a5cfe928bd74908c6dd413c_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/simon_anholt_which_country_does_the_most_good_for_the_world</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/qTweba1iz4g/SimonAnholt_2014S.mp4" length="64115900" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/SimonAnholt_2014S.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Sara Lewis: The loves and lies of fireflies - Sara Lewis (2014)</title>
<itunes:author>Sara Lewis</itunes:author>
<description>Biologist Sara Lewis has spent the past 20 years getting to the bottom of the magic and wonder of fireflies. In this charming talk, she tells us how and why the beetles produce their silent sparks, what happens when two fireflies have sex, and why one group of females is known as the firefly vampire. (It's not pretty.) Find out more astonishing facts about fireflies in Lewis' footnotes, below.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/0L7EGspa02Q" height="1" width="1"/></description>
<itunes:subtitle>Sara Lewis: The loves and lies of fireflies</itunes:subtitle>
<itunes:summary><![CDATA[Biologist Sara Lewis has spent the past 20 years getting to the bottom of the magic and wonder of fireflies. In this charming talk, she tells us how and why the beetles produce their silent sparks, what happens when two fireflies have sex, and why one group of females is known as the firefly vampire. (It's not pretty.) Find out more astonishing facts about fireflies in Lewis' footnotes, below.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/0L7EGspa02Q/sara_lewis_the_loves_and_lies_of_fireflies</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2001</guid>
<jwplayer:talkId>2001</jwplayer:talkId>
<pubDate>Tue, 01 Jul 2014 14:56:20 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:13:51</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/AW7xW9oRshU/SaraLewis_2014.mp4" fileSize="50523094" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/2854d72e190989e1620e6512645f70e83ea67887_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/2854d72e190989e1620e6512645f70e83ea67887_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/sara_lewis_the_loves_and_lies_of_fireflies</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/AW7xW9oRshU/SaraLewis_2014.mp4" length="50523094" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/SaraLewis_2014.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Chris Domas: The 1s and 0s behind cyber warfare - Chris Domas (2013)</title>
<itunes:author>Chris Domas</itunes:author>
<description>Chris Domas is a cybersecurity researcher, operating on what’s become a new front of war, "cyber." In this engaging talk, he shows how researchers use pattern recognition and reverse engineering (and pull a few all-nighters) to understand a chunk of binary code whose purpose and contents they don't know.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/nu6s5q4sIvc" height="1" width="1"/></description>
<itunes:subtitle>Chris Domas: The 1s and 0s behind cyber warfare</itunes:subtitle>
<itunes:summary><![CDATA[Chris Domas is a cybersecurity researcher, operating on what’s become a new front of war, "cyber." In this engaging talk, he shows how researchers use pattern recognition and reverse engineering (and pull a few all-nighters) to understand a chunk of binary code whose purpose and contents they don't know.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/nu6s5q4sIvc/chris_domas_the_1s_and_0s_behind_cyber_warfare</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2035</guid>
<jwplayer:talkId>2035</jwplayer:talkId>
<pubDate>Mon, 30 Jun 2014 15:18:46 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:16:45</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/vZ4jda1NVOw/ChrisDomas_2013X.mp4" fileSize="58960615" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/dfa9208099b4ccc394db436eb4ff2fc0fd18e911_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/dfa9208099b4ccc394db436eb4ff2fc0fd18e911_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/chris_domas_the_1s_and_0s_behind_cyber_warfare</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/vZ4jda1NVOw/ChrisDomas_2013X.mp4" length="58960615" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/ChrisDomas_2013X.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Julian Treasure: How to speak so that people want to listen - Julian Treasure (2013)</title>
<itunes:author>Julian Treasure</itunes:author>
<description>Have you ever felt like you're talking, but nobody is listening? Here's Julian Treasure to help. In this useful talk, the sound expert demonstrates the how-to's of powerful speaking — from some handy vocal exercises to tips on how to speak with empathy. A talk that might help the world sound more beautiful.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/GY6UsRyvnEE" height="1" width="1"/></description>
<itunes:subtitle>Julian Treasure: How to speak so that people want to listen</itunes:subtitle>
<itunes:summary><![CDATA[Have you ever felt like you're talking, but nobody is listening? Here's Julian Treasure to help. In this useful talk, the sound expert demonstrates the how-to's of powerful speaking — from some handy vocal exercises to tips on how to speak with empathy. A talk that might help the world sound more beautiful.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/GY6UsRyvnEE/julian_treasure_how_to_speak_so_that_people_want_to_listen</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2034</guid>
<jwplayer:talkId>2034</jwplayer:talkId>
<pubDate>Fri, 27 Jun 2014 14:38:17 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:09:58</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/GXbSGHv6Ze0/JulianTreasure_2013G.mp4" fileSize="36845670" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/d830f7f49d3cb549bc3011f18f2cfb0a7b99c0d7_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/d830f7f49d3cb549bc3011f18f2cfb0a7b99c0d7_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/julian_treasure_how_to_speak_so_that_people_want_to_listen</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/GXbSGHv6Ze0/JulianTreasure_2013G.mp4" length="36845670" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/JulianTreasure_2013G.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Ge Wang: The DIY orchestra of the future - Ge Wang (2014)</title>
<itunes:author>Ge Wang</itunes:author>
<description>Ge Wang makes computer music, but it isn’t all about coded bleeps and blips. With the Stanford Laptop Orchestra, he creates new instruments out of unexpected materials—like an Ikea bowl—that allow musicians to play music that’s both beautiful and expressive.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/qbR_cg7WWUs" height="1" width="1"/></description>
<itunes:subtitle>Ge Wang: The DIY orchestra of the future</itunes:subtitle>
<itunes:summary><![CDATA[Ge Wang makes computer music, but it isn’t all about coded bleeps and blips. With the Stanford Laptop Orchestra, he creates new instruments out of unexpected materials—like an Ikea bowl—that allow musicians to play music that’s both beautiful and expressive.
]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/qbR_cg7WWUs/ge_wang_the_diy_orchestra_of_the_future</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2033</guid>
<jwplayer:talkId>2033</jwplayer:talkId>
<pubDate>Thu, 26 Jun 2014 14:47:22 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:17:36</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/rkxBh_toeZY/GeWang_2014X.mp4" fileSize="62825636" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/37ac0f78df7d634eddc9d6d845a3b84f4441852f_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/37ac0f78df7d634eddc9d6d845a3b84f4441852f_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/ge_wang_the_diy_orchestra_of_the_future</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/rkxBh_toeZY/GeWang_2014X.mp4" length="62825636" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/GeWang_2014X.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Naomi Oreskes: Why we should trust scientists - Naomi Oreskes (2014)</title>
<itunes:author>Naomi Oreskes</itunes:author>
<description>Many of the world's biggest problems require asking questions of scientists -- but why should we believe what they say? Historian of science Naomi Oreskes thinks deeply about our relationship to belief and draws out three problems with common attitudes toward scientific inquiry -- and gives her own reasoning for why we ought to trust science.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/ofe9v8ABruM" height="1" width="1"/></description>
<itunes:subtitle>Naomi Oreskes: Why we should trust scientists</itunes:subtitle>
<itunes:summary><![CDATA[Many of the world's biggest problems require asking questions of scientists -- but why should we believe what they say? Historian of science Naomi Oreskes thinks deeply about our relationship to belief and draws out three problems with common attitudes toward scientific inquiry -- and gives her own reasoning for why we ought to trust science.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/ofe9v8ABruM/naomi_oreskes_why_we_should_believe_in_science</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2032</guid>
<jwplayer:talkId>2032</jwplayer:talkId>
<pubDate>Wed, 25 Jun 2014 15:26:13 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:19:14</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/RQ6QCMxJTiY/NaomiOreskes_2014S.mp4" fileSize="67968372" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/a03b16b44edd4c66025791eccad2319363bf1860_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/a03b16b44edd4c66025791eccad2319363bf1860_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/naomi_oreskes_why_we_should_believe_in_science</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/RQ6QCMxJTiY/NaomiOreskes_2014S.mp4" length="67968372" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/NaomiOreskes_2014S.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Lorrie Faith Cranor: What’s wrong with your pa$$w0rd? - Lorrie Faith Cranor (2014)</title>
<itunes:author>Lorrie Faith Cranor</itunes:author>
<description>Lorrie Faith Cranor studied thousands of real passwords to figure out the surprising, very common mistakes that users -- and secured sites -- make to compromise security. And how, you may ask, did she study thousands of real passwords without compromising the security of any users? That's a story in itself. It's secret data worth knowing, especially if your password is 123456 ...<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/_jwPmWFM4kE" height="1" width="1"/></description>
<itunes:subtitle>Lorrie Faith Cranor: What’s wrong with your pa$$w0rd?</itunes:subtitle>
<itunes:summary><![CDATA[Lorrie Faith Cranor studied thousands of real passwords to figure out the surprising, very common mistakes that users -- and secured sites -- make to compromise security. And how, you may ask, did she study thousands of real passwords without compromising the security of any users? That's a story in itself. It's secret data worth knowing, especially if your password is 123456 ... ]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/_jwPmWFM4kE/lorrie_faith_cranor_what_s_wrong_with_your_pa_w0rd</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2030</guid>
<jwplayer:talkId>2030</jwplayer:talkId>
<pubDate>Tue, 24 Jun 2014 15:04:41 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:17:41</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/ABerMABTZak/LorrieCranor_2014X.mp4" fileSize="63404337" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/5cc6ecdd1e519b5ca5b9ef32c11f1d7f180bbbf0_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/5cc6ecdd1e519b5ca5b9ef32c11f1d7f180bbbf0_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/lorrie_faith_cranor_what_s_wrong_with_your_pa_w0rd</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/ABerMABTZak/LorrieCranor_2014X.mp4" length="63404337" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/LorrieCranor_2014X.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Shaka Senghor: Why your worst deeds don’t define you - Shaka Senghor (2014)</title>
<itunes:author>Shaka Senghor</itunes:author>
<description>In 1991, Shaka Senghor shot and killed a man. He was, he says, "a drug dealer with a quick temper and a semi-automatic pistol." Jailed for second degree murder, that could very well have been the end of the story. But it wasn't. Instead, it was the beginning of a years-long journey to redemption, one with humbling and sobering lessons for us all.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/pFxrzfqL6SY" height="1" width="1"/></description>
<itunes:subtitle>Shaka Senghor: Why your worst deeds don’t define you</itunes:subtitle>
<itunes:summary><![CDATA[In 1991, Shaka Senghor shot and killed a man. He was, he says, "a drug dealer with a quick temper and a semi-automatic pistol." Jailed for second degree murder, that could very well have been the end of the story. But it wasn't. Instead, it was the beginning of a years-long journey to redemption, one with humbling and sobering lessons for us all.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/pFxrzfqL6SY/shaka_senghor_why_your_worst_deeds_don_t_define_you</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2029</guid>
<jwplayer:talkId>2029</jwplayer:talkId>
<pubDate>Mon, 23 Jun 2014 14:57:25 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:12:00</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/6uQfpHxPyU0/ShakaSenghor_2014.mp4" fileSize="42918515" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/535751efd934740f65decb5309496066e2e3ff4e_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/535751efd934740f65decb5309496066e2e3ff4e_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/shaka_senghor_why_your_worst_deeds_don_t_define_you</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/6uQfpHxPyU0/ShakaSenghor_2014.mp4" length="42918515" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/ShakaSenghor_2014.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Billy Collins: Two poems about what dogs think (probably) - Billy Collins (2014)</title>
<itunes:author>Billy Collins</itunes:author>
<description>What must our dogs be thinking when they look at us? Poet Billy Collins imagines the inner lives of two very different companions. It’s a charming short talk, perfect for taking a break and dreaming …<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/pmQAuaiDl4o" height="1" width="1"/></description>
<itunes:subtitle>Billy Collins: Two poems about what dogs think (probably)</itunes:subtitle>
<itunes:summary><![CDATA[What must our dogs be thinking when they look at us? Poet Billy Collins imagines the inner lives of two very different companions. It’s a charming short talk, perfect for taking a break and dreaming …]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/pmQAuaiDl4o/billy_collins_two_poems_about_what_dogs_think_probably</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2031</guid>
<jwplayer:talkId>2031</jwplayer:talkId>
<pubDate>Fri, 20 Jun 2014 15:12:05 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:04:02</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/YEAijTeWmCs/BillyCollins_2014.mp4" fileSize="16538894" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/10e95c829dc4b19277199f5df872521cfa0af79f_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/10e95c829dc4b19277199f5df872521cfa0af79f_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/billy_collins_two_poems_about_what_dogs_think_probably</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/YEAijTeWmCs/BillyCollins_2014.mp4" length="16538894" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/BillyCollins_2014.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Jamila Lyiscott: 3 ways to speak English - Jamila Lyiscott (2014)</title>
<itunes:author>Jamila Lyiscott</itunes:author>
<description>Jamila Lyiscott is a “tri-tongued orator;” in her powerful spoken-word essay “Broken English,” she celebrates — and challenges — the three distinct flavors of English she speaks with her friends, in the classroom and with her parents. As she explores the complicated history and present-day identity that each language represents, she unpacks what it means to be “articulate.”<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/qkVbqChY5gY" height="1" width="1"/></description>
<itunes:subtitle>Jamila Lyiscott: 3 ways to speak English</itunes:subtitle>
<itunes:summary><![CDATA[Jamila Lyiscott is a “tri-tongued orator;” in her powerful spoken-word essay “Broken English,” she celebrates — and challenges — the three distinct flavors of English she speaks with her friends, in the classroom and with her parents. As she explores the complicated history and present-day identity that each language represents, she unpacks what it means to be “articulate.”]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/qkVbqChY5gY/jamila_lyiscott_3_ways_to_speak_english</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2028</guid>
<jwplayer:talkId>2028</jwplayer:talkId>
<pubDate>Thu, 19 Jun 2014 15:00:11 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:04:29</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/S8mkjQ5mf8Q/JamilaLyiscott_2014S.mp4" fileSize="17426471" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/7cf9611626ed32b38dfde06ee5fd53cdddf13cad_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/7cf9611626ed32b38dfde06ee5fd53cdddf13cad_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/jamila_lyiscott_3_ways_to_speak_english</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/S8mkjQ5mf8Q/JamilaLyiscott_2014S.mp4" length="17426471" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/JamilaLyiscott_2014S.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Ruth Chang: How to make hard choices - Ruth Chang (2014)</title>
<itunes:author>Ruth Chang</itunes:author>
<description>Here's a talk that could literally change your life. Which career should I pursue? Should I break up -- or get married?! Where should I live? Big decisions like these can be agonizingly difficult. But that's because we think about them the wrong way, says philosopher Ruth Chang. She offers a powerful new framework for shaping who we truly are.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/IgvCjj_97Qs" height="1" width="1"/></description>
<itunes:subtitle>Ruth Chang: How to make hard choices</itunes:subtitle>
<itunes:summary><![CDATA[Here's a talk that could literally change your life. Which career should I pursue? Should I break up -- or get married?! Where should I live? Big decisions like these can be agonizingly difficult. But that's because we think about them the wrong way, says philosopher Ruth Chang. She offers a powerful new framework for shaping who we truly are.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/IgvCjj_97Qs/ruth_chang_how_to_make_hard_choices</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2023</guid>
<jwplayer:talkId>2023</jwplayer:talkId>
<pubDate>Wed, 18 Jun 2014 15:00:39 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:14:41</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/dpnwQw0L6DE/RuthChang_2014S.mp4" fileSize="52261709" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/a74696f0bf766d304840d03388d4234145fed6f1_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/a74696f0bf766d304840d03388d4234145fed6f1_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/ruth_chang_how_to_make_hard_choices</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/dpnwQw0L6DE/RuthChang_2014S.mp4" length="52261709" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/RuthChang_2014S.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Anne Curzan: What makes a word "real"? - Anne Curzan (2014)</title>
<itunes:author>Anne Curzan</itunes:author>
<description>One could argue that slang words like ‘hangry,’ ‘defriend’ and ‘adorkable’ fill crucial meaning gaps in the English language, even if they don't appear in the dictionary. After all, who actually decides which words make it into those pages? Language historian Anne Curzan gives a charming look at the humans behind dictionaries, and the choices they make.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/seGcvikUUKg" height="1" width="1"/></description>
<itunes:subtitle>Anne Curzan: What makes a word "real"?</itunes:subtitle>
<itunes:summary><![CDATA[One could argue that slang words like ‘hangry,’ ‘defriend’ and ‘adorkable’ fill crucial meaning gaps in the English language, even if they don't appear in the dictionary. After all, who actually decides which words make it into those pages? Language historian Anne Curzan gives a charming look at the humans behind dictionaries, and the choices they make.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/seGcvikUUKg/anne_curzan_what_makes_a_word_real</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2022</guid>
<jwplayer:talkId>2022</jwplayer:talkId>
<pubDate>Tue, 17 Jun 2014 14:52:33 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:17:13</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/InM8drq5OCI/AnneCurzan_2014X.mp4" fileSize="63243483" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/1a66dc4c95d485cb2d14363a1a6e052325520093_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/1a66dc4c95d485cb2d14363a1a6e052325520093_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/anne_curzan_what_makes_a_word_real</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/InM8drq5OCI/AnneCurzan_2014X.mp4" length="63243483" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/AnneCurzan_2014X.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Kwame Anthony Appiah: Is religion good or bad? (This is a trick question) - Kwame Anthony Appiah (2014)</title>
<itunes:author>Kwame Anthony Appiah</itunes:author>
<description>Plenty of good things are done in the name of religion, and plenty of bad things too. But what is religion, exactly — is it good or bad, in and of itself? Philosopher Kwame Anthony Appiah offers a generous, surprising view.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/1Emro8zmRXo" height="1" width="1"/></description>
<itunes:subtitle>Kwame Anthony Appiah: Is religion good or bad? (This is a trick question)</itunes:subtitle>
<itunes:summary><![CDATA[Plenty of good things are done in the name of religion, and plenty of bad things too. But what is religion, exactly — is it good or bad, in and of itself? Philosopher Kwame Anthony Appiah offers a generous, surprising view.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/1Emro8zmRXo/kwame_anthony_appiah_is_religion_good_or_bad_this_is_a_trick_question</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2011</guid>
<jwplayer:talkId>2011</jwplayer:talkId>
<pubDate>Mon, 16 Jun 2014 15:04:07 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:14:40</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/A9ZNMhOv0rE/KwameAnthonyAppiah_2014S.mp4" fileSize="49919174" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/6d18b05baba52c4f8a6c10472a6bb14627b54707_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/6d18b05baba52c4f8a6c10472a6bb14627b54707_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/kwame_anthony_appiah_is_religion_good_or_bad_this_is_a_trick_question</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/A9ZNMhOv0rE/KwameAnthonyAppiah_2014S.mp4" length="49919174" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/KwameAnthonyAppiah_2014S.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: AJ Jacobs: The world's largest family reunion … we're all invited! - AJ Jacobs (2014)</title>
<itunes:author>AJ Jacobs</itunes:author>
<description>You may not know it yet, but AJ Jacobs is probably your cousin (many, many times removed). Using genealogy websites, he’s been following the unexpected links that make us all, however distantly, related. His goal: to throw the world’s largest family reunion. See you there?<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/210VvA7mJqE" height="1" width="1"/></description>
<itunes:subtitle>AJ Jacobs: The world's largest family reunion … we're all invited!</itunes:subtitle>
<itunes:summary><![CDATA[You may not know it yet, but AJ Jacobs is probably your cousin (many, many times removed). Using genealogy websites, he’s been following the unexpected links that make us all, however distantly, related. His goal: to throw the world’s largest family reunion. See you there?]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/210VvA7mJqE/aj_jacobs_the_world_s_largest_family_reunion_we_re_all_invited</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2021</guid>
<jwplayer:talkId>2021</jwplayer:talkId>
<pubDate>Fri, 13 Jun 2014 15:09:28 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:09:45</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/dJOMf5iO4gg/AJJacobs_2014A.mp4" fileSize="36309652" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/5a54436655b037efc5328101d57bdeef11ac0d09_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/5a54436655b037efc5328101d57bdeef11ac0d09_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/aj_jacobs_the_world_s_largest_family_reunion_we_re_all_invited</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/dJOMf5iO4gg/AJJacobs_2014A.mp4" length="36309652" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/AJJacobs_2014A.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Uri Alon: Why truly innovative science demands a leap into the unknown - Uri Alon (2013)</title>
<itunes:author>Uri Alon</itunes:author>
<description>While studying for his PhD in physics, Uri Alon thought he was a failure because all his research paths led to dead ends. But, with the help of improv theater, he came to realize that there could be joy in getting lost. A call for scientists to stop thinking of research as a direct line from question to answer, but as something more creative. It's a message that will resonate, no matter what your field.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/6TXbWwvPlY8" height="1" width="1"/></description>
<itunes:subtitle>Uri Alon: Why truly innovative science demands a leap into the unknown</itunes:subtitle>
<itunes:summary><![CDATA[While studying for his PhD in physics, Uri Alon thought he was a failure because all his research paths led to dead ends. But, with the help of improv theater, he came to realize that there could be joy in getting lost. A call for scientists to stop thinking of research as a direct line from question to answer, but as something more creative. It's a message that will resonate, no matter what your field. ]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/6TXbWwvPlY8/uri_alon_why_truly_innovative_science_demands_a_leap_into_the_unknown</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2020</guid>
<jwplayer:talkId>2020</jwplayer:talkId>
<pubDate>Thu, 12 Jun 2014 15:05:26 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:15:52</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/wGcMMKTfmAg/UriAlon_2013G.mp4" fileSize="56624350" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/cf7d29a98470c8576d76fb122b9433596d3495b8_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/cf7d29a98470c8576d76fb122b9433596d3495b8_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/uri_alon_why_truly_innovative_science_demands_a_leap_into_the_unknown</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/wGcMMKTfmAg/UriAlon_2013G.mp4" length="56624350" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/UriAlon_2013G.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Will Potter: The shocking move to criminalize nonviolent protest - Will Potter (2014)</title>
<itunes:author>Will Potter</itunes:author>
<description>In 2002, investigative journalist and TED Fellow Will Potter took a break from his regular beat, writing about shootings and murders for the Chicago Tribune. He went to help a local group campaigning against animal testing: "I thought it would be a safe way to do something positive," he says. Instead, he was arrested, and so began his ongoing journey into a world in which peaceful protest is branded as terrorism.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/8sykqx8UEFg" height="1" width="1"/></description>
<itunes:subtitle>Will Potter: The shocking move to criminalize nonviolent protest</itunes:subtitle>
<itunes:summary><![CDATA[In 2002, investigative journalist and TED Fellow Will Potter took a break from his regular beat, writing about shootings and murders for the Chicago Tribune. He went to help a local group campaigning against animal testing: "I thought it would be a safe way to do something positive," he says. Instead, he was arrested, and so began his ongoing journey into a world in which peaceful protest is branded as terrorism.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/8sykqx8UEFg/will_potter_the_shocking_move_to_criminalize_non_violent_protest</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2018</guid>
<jwplayer:talkId>2018</jwplayer:talkId>
<pubDate>Wed, 11 Jun 2014 14:57:08 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:04:33</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/x8VeZrk3bB0/WillPotter_2014U.mp4" fileSize="17293754" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/286ee0368609169150f0eeae977aa3845f1e963c_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/286ee0368609169150f0eeae977aa3845f1e963c_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/will_potter_the_shocking_move_to_criminalize_non_violent_protest</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/x8VeZrk3bB0/WillPotter_2014U.mp4" length="17293754" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/WillPotter_2014U.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Keren Elazari: Hackers: the Internet's immune system - Keren Elazari (2014)</title>
<itunes:author>Keren Elazari</itunes:author>
<description>The beauty of hackers, says cybersecurity expert Keren Elazari, is that they force us to evolve and improve. Yes, some hackers are bad guys, but many are working to fight government corruption and advocate for our rights. By exposing vulnerabilities, they push the Internet to become stronger and healthier, wielding their power to create a better world.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/fzcvYeFhnOQ" height="1" width="1"/></description>
<itunes:subtitle>Keren Elazari: Hackers: the Internet's immune system</itunes:subtitle>
<itunes:summary><![CDATA[The beauty of hackers, says cybersecurity expert Keren Elazari, is that they force us to evolve and improve. Yes, some hackers are bad guys, but many are working to fight government corruption and advocate for our rights. By exposing vulnerabilities, they push the Internet to become stronger and healthier, wielding their power to create a better world.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/fzcvYeFhnOQ/keren_elazari_hackers_the_internet_s_immune_system</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2019</guid>
<jwplayer:talkId>2019</jwplayer:talkId>
<pubDate>Tue, 10 Jun 2014 14:58:44 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:16:39</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/33aE0KaLUSg/KerenElazari_2014.mp4" fileSize="59596629" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/d7ffad9a704353886a479f2b9acadada4a48855c_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/d7ffad9a704353886a479f2b9acadada4a48855c_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/keren_elazari_hackers_the_internet_s_immune_system</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/33aE0KaLUSg/KerenElazari_2014.mp4" length="59596629" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/KerenElazari_2014.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Stella Young: I’m not your inspiration, thank you very much - Stella Young (2014)</title>
<itunes:author>Stella Young</itunes:author>
<description>Stella Young is a comedian and journalist who happens to go about her day in a wheelchair — a fact that doesn’t, she’d like to make clear, automatically turn her into a noble inspiration to all humanity. In this very funny talk, Young breaks down society's habit of turning disabled people into “inspiration porn.”<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/VlOt2VGS1PE" height="1" width="1"/></description>
<itunes:subtitle>Stella Young: I’m not your inspiration, thank you very much</itunes:subtitle>
<itunes:summary><![CDATA[Stella Young is a comedian and journalist who happens to go about her day in a wheelchair — a fact that doesn’t, she’d like to make clear, automatically turn her into a noble inspiration to all humanity. In this very funny talk, Young breaks down society's habit of turning disabled people into “inspiration porn.”]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/VlOt2VGS1PE/stella_young_i_m_not_your_inspiration_thank_you_very_much</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2017</guid>
<jwplayer:talkId>2017</jwplayer:talkId>
<pubDate>Mon, 09 Jun 2014 15:10:44 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:09:16</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/IcDeSy7FqW8/StellaYoung_2014X.mp4" fileSize="33784847" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/6b43b5aad8eb0699474438db1d7c43d7cbc3b326_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/6b43b5aad8eb0699474438db1d7c43d7cbc3b326_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/stella_young_i_m_not_your_inspiration_thank_you_very_much</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/IcDeSy7FqW8/StellaYoung_2014X.mp4" length="33784847" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/StellaYoung_2014X.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Yoruba Richen: What the gay rights movement learned from the civil rights movement - Yoruba Richen (2014)</title>
<itunes:author>Yoruba Richen</itunes:author>
<description>As a member of both the African American and LGBT communities, filmmaker Yoruba Richen is fascinated with the overlaps and tensions between the gay rights and the civil rights movements. She explores how the two struggles intertwine and propel each other forward — and, in an unmissable argument, she dispels a myth about their points of conflict. A powerful reminder that we all have a stake in equality.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/NFSBtUud44o" height="1" width="1"/></description>
<itunes:subtitle>Yoruba Richen: What the gay rights movement learned from the civil rights movement</itunes:subtitle>
<itunes:summary><![CDATA[As a member of both the African American and LGBT communities, filmmaker Yoruba Richen is fascinated with the overlaps and tensions between the gay rights and the civil rights movements. She explores how the two struggles intertwine and propel each other forward — and, in an unmissable argument, she dispels a myth about their points of conflict. A powerful reminder that we all have a stake in equality.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/NFSBtUud44o/yoruba_richen_what_the_gay_rights_movement_learned_from_the_civil_rights_movement</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2016</guid>
<jwplayer:talkId>2016</jwplayer:talkId>
<pubDate>Fri, 06 Jun 2014 14:58:39 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:17:42</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/jUU7R9SWsek/YorubaRichen_2014.mp4" fileSize="62874889" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/9380c096983fcf49190ee47a94f41f5b3b85f21f_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/9380c096983fcf49190ee47a94f41f5b3b85f21f_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/yoruba_richen_what_the_gay_rights_movement_learned_from_the_civil_rights_movement</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/jUU7R9SWsek/YorubaRichen_2014.mp4" length="62874889" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/YorubaRichen_2014.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Robert Full: The secrets of nature's grossest creatures, channeled into robots - Robert Full (2014)</title>
<itunes:author>Robert Full</itunes:author>
<description>How can robots learn to stabilize on rough terrain, walk upside down, do gymnastic maneuvers in air and run into walls without harming themselves? Robert Full takes a look at the incredible body of the cockroach to show what it can teach robotics engineers.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/ttjw59VQtCg" height="1" width="1"/></description>
<itunes:subtitle>Robert Full: The secrets of nature's grossest creatures, channeled into robots</itunes:subtitle>
<itunes:summary><![CDATA[How can robots learn to stabilize on rough terrain, walk upside down, do gymnastic maneuvers in air and run into walls without harming themselves? Robert Full takes a look at the incredible body of the cockroach to show what it can teach robotics engineers. ]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/ttjw59VQtCg/robert_full_the_secrets_of_nature_s_grossest_creatures_channeled_into_robots</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2014</guid>
<jwplayer:talkId>2014</jwplayer:talkId>
<pubDate>Thu, 05 Jun 2014 15:09:06 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:05:07</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/Hp4XX7VR_C8/RobertFull_2014U.mp4" fileSize="20579270" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/8df605781cd759843bda0eefecac80982346436a_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/8df605781cd759843bda0eefecac80982346436a_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/robert_full_the_secrets_of_nature_s_grossest_creatures_channeled_into_robots</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/Hp4XX7VR_C8/RobertFull_2014U.mp4" length="20579270" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/RobertFull_2014U.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Stephen Burt: Why people need poetry - Stephen Burt (2013)</title>
<itunes:author>Stephen Burt</itunes:author>
<description>"We're all going to die -- and poems can help us live with that." In a charming and funny talk, literary critic Stephen Burt takes us on a lyrical journey with some of his favorite poets, all the way down to a line break and back up to the human urge to imagine.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/SVRBgeU9_3s" height="1" width="1"/></description>
<itunes:subtitle>Stephen Burt: Why people need poetry</itunes:subtitle>
<itunes:summary><![CDATA["We're all going to die -- and poems can help us live with that." In a charming and funny talk, literary critic Stephen Burt takes us on a lyrical journey with some of his favorite poets, all the way down to a line break and back up to the human urge to imagine. ]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/SVRBgeU9_3s/stephen_burt_why_people_need_poetry</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2013</guid>
<jwplayer:talkId>2013</jwplayer:talkId>
<pubDate>Wed, 04 Jun 2014 15:09:49 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:13:12</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/q95rzKNer40/StephenBurt_2013G.mp4" fileSize="47516344" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/82cc87f2ed862ee45d928c19046ee042d5eec0c9_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/82cc87f2ed862ee45d928c19046ee042d5eec0c9_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/stephen_burt_why_people_need_poetry</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/q95rzKNer40/StephenBurt_2013G.mp4" length="47516344" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/StephenBurt_2013G.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Dan Gilbert: The psychology of your future self - Dan Gilbert (2014)</title>
<itunes:author>Dan Gilbert</itunes:author>
<description>"Human beings are works in progress that mistakenly think they're finished." Dan Gilbert shares recent research on a phenomenon he calls the "end of history illusion," where we somehow imagine that the person we are right now is the person we'll be for the rest of time. Hint: that's not the case.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/OnrZ1rgXaVk" height="1" width="1"/></description>
<itunes:subtitle>Dan Gilbert: The psychology of your future self</itunes:subtitle>
<itunes:summary><![CDATA["Human beings are works in progress that mistakenly think they're finished." Dan Gilbert shares recent research on a phenomenon he calls the "end of history illusion," where we somehow imagine that the person we are right now is the person we'll be for the rest of time. Hint: that's not the case.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/OnrZ1rgXaVk/dan_gilbert_you_are_always_changing</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2012</guid>
<jwplayer:talkId>2012</jwplayer:talkId>
<pubDate>Tue, 03 Jun 2014 14:56:03 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:06:49</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/dTpIO491E-A/DanGilbert_2014U.mp4" fileSize="25918425" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/d7c5293df469e90b62ed7bfced793ed7f2bad6c2_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/d7c5293df469e90b62ed7bfced793ed7f2bad6c2_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/dan_gilbert_you_are_always_changing</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/dTpIO491E-A/DanGilbert_2014U.mp4" length="25918425" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/DanGilbert_2014U.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Ray Kurzweil: Get ready for hybrid thinking - Ray Kurzweil (2014)</title>
<itunes:author>Ray Kurzweil</itunes:author>
<description>Two hundred million years ago, our mammal ancestors developed a new brain feature: the neocortex. This stamp-sized piece of tissue (wrapped around a brain the size of a walnut) is the key to what humanity has become. Now, futurist Ray Kurzweil suggests, we should get ready for the next big leap in brain power, as we tap into the computing power in the cloud.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/QJgU09Hzv08" height="1" width="1"/></description>
<itunes:subtitle>Ray Kurzweil: Get ready for hybrid thinking</itunes:subtitle>
<itunes:summary><![CDATA[Two hundred million years ago, our mammal ancestors developed a new brain feature: the neocortex. This stamp-sized piece of tissue (wrapped around a brain the size of a walnut) is the key to what humanity has become. Now, futurist Ray Kurzweil suggests, we should get ready for the next big leap in brain power, as we tap into the computing power in the cloud.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/QJgU09Hzv08/ray_kurzweil_get_ready_for_hybrid_thinking</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2015</guid>
<jwplayer:talkId>2015</jwplayer:talkId>
<pubDate>Mon, 02 Jun 2014 15:02:05 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:09:52</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/6l57knJkJNY/RayKurzweil_2014.mp4" fileSize="36554067" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/9bd2cc9f4130b1c408721e3d755e13d168cb38a0_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/9bd2cc9f4130b1c408721e3d755e13d168cb38a0_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/ray_kurzweil_get_ready_for_hybrid_thinking</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/6l57knJkJNY/RayKurzweil_2014.mp4" length="36554067" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/RayKurzweil_2014.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Sting: How I started writing songs again - Sting (2014)</title>
<itunes:author> Sting</itunes:author>
<description>Sting’s early life was dominated by a shipyard—and he dreamed of nothing more than escaping the industrial drudgery. But after a nasty bout of writer’s block that stretched on for years, Sting found himself channeling the stories of the shipyard workers he knew in his youth for song material. In a lyrical, confessional talk, Sting treats us to songs from his upcoming musical, and to an encore of “Message in a Bottle.”<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/ioRw4uzR7IM" height="1" width="1"/></description>
<itunes:subtitle>Sting: How I started writing songs again</itunes:subtitle>
<itunes:summary><![CDATA[Sting’s early life was dominated by a shipyard—and he dreamed of nothing more than escaping the industrial drudgery. But after a nasty bout of writer’s block that stretched on for years, Sting found himself channeling the stories of the shipyard workers he knew in his youth for song material. In a lyrical, confessional talk, Sting treats us to songs from his upcoming musical, and to an encore of “Message in a Bottle.”]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/ioRw4uzR7IM/sting_how_i_started_writing_songs_again</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2010</guid>
<jwplayer:talkId>2010</jwplayer:talkId>
<pubDate>Fri, 30 May 2014 14:46:04 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:23:15</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/WptNrqOOoHo/Sting_2014.mp4" fileSize="81581904" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/15fb93e6b1106784f67d4f6d32d33cde9b829309_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/15fb93e6b1106784f67d4f6d32d33cde9b829309_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/sting_how_i_started_writing_songs_again</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/WptNrqOOoHo/Sting_2014.mp4" length="81581904" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/Sting_2014.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Stephen Friend: The hunt for "unexpected genetic heroes" - Stephen Friend (2014)</title>
<itunes:author>Stephen Friend</itunes:author>
<description>What can we learn from people with the genetics to get sick — who don’t? With most inherited diseases, only some family members will develop the disease, while others who carry the same genetic risks dodge it. Stephen Friend suggests we start studying those family members who stay healthy. Hear about the Resilience Project, a massive effort to collect genetic materials that may help decode inherited disorders.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/nDon4YXoqWI" height="1" width="1"/></description>
<itunes:subtitle>Stephen Friend: The hunt for "unexpected genetic heroes"</itunes:subtitle>
<itunes:summary><![CDATA[What can we learn from people with the genetics to get sick — who don’t? With most inherited diseases, only some family members will develop the disease, while others who carry the same genetic risks dodge it. Stephen Friend suggests we start studying those family members who stay healthy. Hear about the Resilience Project, a massive effort to collect genetic materials that may help decode inherited disorders.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/nDon4YXoqWI/stephen_friend_the_hunt_for_unexpected_genetic_heroes</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2004</guid>
<jwplayer:talkId>2004</jwplayer:talkId>
<pubDate>Thu, 29 May 2014 15:18:57 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:10:39</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/eLDv2mKlTyE/StephenFriend_2014.mp4" fileSize="38806067" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/70ee482d06c15e4d3f7db396870384ab35294218_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/70ee482d06c15e4d3f7db396870384ab35294218_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/stephen_friend_the_hunt_for_unexpected_genetic_heroes</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/eLDv2mKlTyE/StephenFriend_2014.mp4" length="38806067" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/StephenFriend_2014.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Kitra Cahana: A glimpse of life on the road - Kitra Cahana (2014)</title>
<itunes:author>Kitra Cahana</itunes:author>
<description>As a young girl, photojournalist and TED Fellow Kitra Cahana dreamed about running away from home to live freely on the road. Now as an adult and self-proclaimed vagabond, she follows modern nomads into their homes -- boxcars, bus stops, parking lots, rest stop bathrooms -- giving a glimpse into a culture on the margins.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/lYQ0IUeODQo" height="1" width="1"/></description>
<itunes:subtitle>Kitra Cahana: A glimpse of life on the road</itunes:subtitle>
<itunes:summary><![CDATA[As a young girl, photojournalist and TED Fellow Kitra Cahana dreamed about running away from home to live freely on the road. Now as an adult and self-proclaimed vagabond, she follows modern nomads into their homes -- boxcars, bus stops, parking lots, rest stop bathrooms -- giving a glimpse into a culture on the margins.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/lYQ0IUeODQo/kitra_cahana_stories_of_the_homeless_and_hidden</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2009</guid>
<jwplayer:talkId>2009</jwplayer:talkId>
<pubDate>Wed, 28 May 2014 15:11:03 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:05:00</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/e48zgH_WkLk/KitraCahana_2014U.mp4" fileSize="19804181" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/341053090f8bac8c324c75be3114b673b4355e8a_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/341053090f8bac8c324c75be3114b673b4355e8a_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/kitra_cahana_stories_of_the_homeless_and_hidden</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/e48zgH_WkLk/KitraCahana_2014U.mp4" length="19804181" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/KitraCahana_2014U.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Jon Mooallem: How the teddy bear taught us compassion - Jon Mooallem (2014)</title>
<itunes:author>Jon Mooallem</itunes:author>
<description>In 1902, President Theodore Roosevelt legendarily spared the life of a black bear -- and prompted a plush toy craze for so-called "teddy bears." Writer Jon Mooallem digs into this toy story and asks us to consider how the tales we tell about wild animals have real consequences for a species' chance of survival -- and the natural world at large.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/eG0Rbel_-j8" height="1" width="1"/></description>
<itunes:subtitle>Jon Mooallem: How the teddy bear taught us compassion</itunes:subtitle>
<itunes:summary><![CDATA[In 1902, President Theodore Roosevelt legendarily spared the life of a black bear -- and prompted a plush toy craze for so-called "teddy bears." Writer Jon Mooallem digs into this toy story and asks us to consider how the tales we tell about wild animals have real consequences for a species' chance of survival -- and the natural world at large.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/eG0Rbel_-j8/jon_mooallem_the_strange_story_of_the_teddy_bear_and_what_it_reveals_about_our_relationship_to_animals</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2006</guid>
<jwplayer:talkId>2006</jwplayer:talkId>
<pubDate>Tue, 27 May 2014 14:50:57 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:14:16</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/TT0joXzmfGc/JonMooallem_2014.mp4" fileSize="51052946" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/4f3bbbbff420247824e2d0e92418d7ffb0767fb0_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/4f3bbbbff420247824e2d0e92418d7ffb0767fb0_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/jon_mooallem_the_strange_story_of_the_teddy_bear_and_what_it_reveals_about_our_relationship_to_animals</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/TT0joXzmfGc/JonMooallem_2014.mp4" length="51052946" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/JonMooallem_2014.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Sebastian Junger: Why veterans miss war - Sebastian Junger (2014)</title>
<itunes:author>Sebastian Junger</itunes:author>
<description>Civilians don’t miss war. But soldiers often do. Journalist Sebastian Junger shares his experience embedded with American soldiers at Restrepo, an outpost in Afghanistan's Korengal Valley that saw heavy combat. Giving a look at the "altered state of mind" that comes with war, he shows how combat gives soldiers an intense experience of connection. In the end, could it actually be "the opposite of war" that soldiers miss? <img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/UJE7b5sS_4E" height="1" width="1"/></description>
<itunes:subtitle>Sebastian Junger: Why veterans miss war</itunes:subtitle>
<itunes:summary><![CDATA[Civilians don’t miss war. But soldiers often do. Journalist Sebastian Junger shares his experience embedded with American soldiers at Restrepo, an outpost in Afghanistan's Korengal Valley that saw heavy combat. Giving a look at the "altered state of mind" that comes with war, he shows how combat gives soldiers an intense experience of connection. In the end, could it actually be "the opposite of war" that soldiers miss? ]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/UJE7b5sS_4E/sebastian_junger_why_veterans_miss_war</link>
<guid isPermaLink="false">eng.video.talk.ted.com:1999</guid>
<jwplayer:talkId>1999</jwplayer:talkId>
<pubDate>Fri, 23 May 2014 15:12:00 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:13:08</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/vOdQetSXrl4/SebastianJunger_2014S.mp4" fileSize="44733242" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/7378f62566fda3193f693a7fc150a2b82101a6ce_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/7378f62566fda3193f693a7fc150a2b82101a6ce_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/sebastian_junger_why_veterans_miss_war</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/vOdQetSXrl4/SebastianJunger_2014S.mp4" length="44733242" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/SebastianJunger_2014S.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Wes Moore: How to talk to veterans about the war - Wes Moore (2014)</title>
<itunes:author>Wes Moore</itunes:author>
<description>Wes Moore joined the US Army to pay for college, but the experience became core to who he is. In this heartfelt talk, the paratrooper and captain—who went on to write "The Other Wes Moore"—explains the shock of returning home from Afghanistan. He shares the single phrase he heard from civilians on repeat, and shows why it's just not sufficient. It's a call for all of us to ask veterans to tell their stories — and listen.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/XZk6jKS9o6A" height="1" width="1"/></description>
<itunes:subtitle>Wes Moore: How to talk to veterans about the war</itunes:subtitle>
<itunes:summary><![CDATA[Wes Moore joined the US Army to pay for college, but the experience became core to who he is. In this heartfelt talk, the paratrooper and captain—who went on to write "The Other Wes Moore"—explains the shock of returning home from Afghanistan. He shares the single phrase he heard from civilians on repeat, and shows why it's just not sufficient. It's a call for all of us to ask veterans to tell their stories — and listen.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/XZk6jKS9o6A/wes_moore_how_to_talk_to_veterans_about_the_war</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2008</guid>
<jwplayer:talkId>2008</jwplayer:talkId>
<pubDate>Fri, 23 May 2014 14:47:34 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:14:27</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/hzZeUElCq7U/WesMoore_2014S.mp4" fileSize="51583518" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/774cc02ff8ca33cc400d461723556487bc9228de_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/774cc02ff8ca33cc400d461723556487bc9228de_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/wes_moore_how_to_talk_to_veterans_about_the_war</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/hzZeUElCq7U/WesMoore_2014S.mp4" length="51583518" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/WesMoore_2014S.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Chris Kluwe: How augmented reality will change sports ... and build empathy - Chris Kluwe (2014)</title>
<itunes:author>Chris Kluwe</itunes:author>
<description>Chris Kluwe wants to look into the future of sports and think about how technology will help not just players and coaches, but fans. Here the former NFL punter envisions a future in which augmented reality will help people experience sports as if they are directly on the field -- and maybe even help them see others in a new light, too.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/wXWCgVR_XTs" height="1" width="1"/></description>
<itunes:subtitle>Chris Kluwe: How augmented reality will change sports ... and build empathy</itunes:subtitle>
<itunes:summary><![CDATA[Chris Kluwe wants to look into the future of sports and think about how technology will help not just players and coaches, but fans. Here the former NFL punter envisions a future in which augmented reality will help people experience sports as if they are directly on the field -- and maybe even help them see others in a new light, too.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/wXWCgVR_XTs/chris_kluwe_how_augmented_reality_will_change_sports_and_build_empathy</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2007</guid>
<jwplayer:talkId>2007</jwplayer:talkId>
<pubDate>Thu, 22 May 2014 15:00:59 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:09:11</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/f6MP846r5jc/ChrisKluwe_2014.mp4" fileSize="33885832" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/9b43acda94d7e3743aa877ca5b492862b860fb28_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/9b43acda94d7e3743aa877ca5b492862b860fb28_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/chris_kluwe_how_augmented_reality_will_change_sports_and_build_empathy</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/f6MP846r5jc/ChrisKluwe_2014.mp4" length="33885832" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/ChrisKluwe_2014.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Andrew Solomon: How the worst moments in our lives make us who we are - Andrew Solomon (2014)</title>
<itunes:author>Andrew Solomon</itunes:author>
<description>Writer Andrew Solomon has spent his career telling stories of the hardships of others. Now he turns inward, bringing us into a childhood of adversity, while also spinning tales of the courageous people he's met in the years since. In a moving, heartfelt and at times downright funny talk, Solomon gives a powerful call to action to forge meaning from our biggest struggles.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/xWVMhR7S8nM" height="1" width="1"/></description>
<itunes:subtitle>Andrew Solomon: How the worst moments in our lives make us who we are</itunes:subtitle>
<itunes:summary><![CDATA[Writer Andrew Solomon has spent his career telling stories of the hardships of others. Now he turns inward, bringing us into a childhood of adversity, while also spinning tales of the courageous people he's met in the years since. In a moving, heartfelt and at times downright funny talk, Solomon gives a powerful call to action to forge meaning from our biggest struggles.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/xWVMhR7S8nM/andrew_solomon_how_the_worst_moments_in_our_lives_make_us_who_we_are</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2005</guid>
<jwplayer:talkId>2005</jwplayer:talkId>
<pubDate>Wed, 21 May 2014 15:03:55 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:20:27</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/IV8hUe8CLSY/AndrewSolomon_2014.mp4" fileSize="72237160" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/b461c894fded8e980e3d7ce3ca206b059d431c05_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/b461c894fded8e980e3d7ce3ca206b059d431c05_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/andrew_solomon_how_the_worst_moments_in_our_lives_make_us_who_we_are</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/IV8hUe8CLSY/AndrewSolomon_2014.mp4" length="72237160" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/AndrewSolomon_2014.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Jackie Savitz: Save the oceans, feed the world! - Jackie Savitz (2013)</title>
<itunes:author>Jackie Savitz</itunes:author>
<description>What's a marine biologist doing talking about world hunger? Well, says Jackie Savitz, fixing the world's oceans might just help to feed the planet's billion hungriest people. In an eye-opening talk, Savitz tells us what’s really going on in our global fisheries right now — it’s not good — and offers smart suggestions of how we can help them heal, while making more food for all.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/K0OQv9NXrg4" height="1" width="1"/></description>
<itunes:subtitle>Jackie Savitz: Save the oceans, feed the world!</itunes:subtitle>
<itunes:summary><![CDATA[What's a marine biologist doing talking about world hunger? Well, says Jackie Savitz, fixing the world's oceans might just help to feed the planet's billion hungriest people. In an eye-opening talk, Savitz tells us what’s really going on in our global fisheries right now — it’s not good — and offers smart suggestions of how we can help them heal, while making more food for all.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/K0OQv9NXrg4/jackie_savitz_save_the_oceans_feed_the_world</link>
<guid isPermaLink="false">eng.video.talk.ted.com:2003</guid>
<jwplayer:talkId>2003</jwplayer:talkId>
<pubDate>Tue, 20 May 2014 14:59:46 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:11:10</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/r3g-YA8DJCY/JackieSavitz_2013X.mp4" fileSize="40838424" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/a266f8898133812d6d648a28eae8e81690cbca10_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/a266f8898133812d6d648a28eae8e81690cbca10_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/jackie_savitz_save_the_oceans_feed_the_world</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/r3g-YA8DJCY/JackieSavitz_2013X.mp4" length="40838424" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/JackieSavitz_2013X.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Simon Sinek: Why good leaders make you feel safe - Simon Sinek (2014)</title>
<itunes:author>Simon Sinek</itunes:author>
<description>What makes a great leader? Management theorist Simon Sinek suggests, it’s someone who makes their employees feel secure, who draws staffers into a circle of trust. But creating trust and safety — especially in an uneven economy — means taking on big responsibility.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/G-o-qyV52sQ" height="1" width="1"/></description>
<itunes:subtitle>Simon Sinek: Why good leaders make you feel safe</itunes:subtitle>
<itunes:summary><![CDATA[What makes a great leader? Management theorist Simon Sinek suggests, it’s someone who makes their employees feel secure, who draws staffers into a circle of trust. But creating trust and safety — especially in an uneven economy — means taking on big responsibility.]]></itunes:summary>
<link>http://feedproxy.google.com/~r/TEDTalks_video/~3/G-o-qyV52sQ/simon_sinek_why_good_leaders_make_you_feel_safe</link>
<guid isPermaLink="false">eng.video.talk.ted.com:1998</guid>
<jwplayer:talkId>1998</jwplayer:talkId>
<pubDate>Mon, 19 May 2014 15:00:43 +0000</pubDate>
<category>Higher Education</category>
<itunes:explicit>no</itunes:explicit>
<itunes:duration>00:11:59</itunes:duration>
<itunes:keywords>TED</itunes:keywords>
<media:content url="http://feedproxy.google.com/~r/TEDTalks_video/~5/Wv7Y6F2ObLk/SimonSinek_2014.mp4" fileSize="42990652" type="video/mp4" />
<media:thumbnail url="http://images.ted.com/images/ted/b6cccc7593928f4861601289b937d19dac95bed9_480x360.jpg" width="480" height="360" />
<itunes:image url="http://images.ted.com/images/ted/b6cccc7593928f4861601289b937d19dac95bed9_615x461.jpg" />
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TEDTalks</dc:creator><feedburner:origLink>http://www.ted.com/talks/simon_sinek_why_good_leaders_make_you_feel_safe</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/TEDTalks_video/~5/Wv7Y6F2ObLk/SimonSinek_2014.mp4" length="42990652" type="video/mp4" /><feedburner:origEnclosureLink>http://download.ted.com/talks/SimonSinek_2014.mp4?apikey=172BB350-0205</feedburner:origEnclosureLink></item> <item>
<title>TED: Rives: The Museum of Four in the Morning - Rives (2014)</title>
<itunes:author> Rives</itunes:author>
<description>Beware: Rives has a contagious obsession with 4 a.m. At TED2007, the poet shared what was then a minor fixation with a time that kept popping up everywhere. After the talk, emails starting pouring in with an avalanche of hilarious references—from the cover of "Crochet Today!" magazine to the opening scene of "The Metamorphosis." A lyrical peek into his Museum of Four in the Morning, which overflows with treasures.<img src="http://feeds.feedburner.com/~r/TEDTalks_video/~4/EJ2SATlIEEU" height="1" width="1"/></description>
<itunes:subtitle>Rives: The Museum of Four in the Morning</itunes:subtitle>
<itunes:summary><![CDATA[Beware: Rives has a contagious obsession with 4 a.m. At TED2007, the poet shared what was then a minor fixation with a time that kept popping up everywhere. After the talk, emails starting pouring in with an avalanche of hilarious references—from the cover of "Crochet Today!" magazine to the opening scene of "The Metamorphosis." A lyrical peek into his Museum of Four in the Morning, which overflows with treasures.]]></itunes:summary>