podcastsvideo.html
79 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><meta name="generator" content="HTML Tidy for Mac OS X (vers 31 October 2006 - Apple Inc. build 13), see www.w3.org"/><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><title>Podcasts and Video - W3C</title><link rel="stylesheet" href="/2008/site/css/minimum" type="text/css" media="handheld, all"/><style type="text/css" media="print, screen and (min-width: 481px)" xml:space="preserve">
/**/
@import url("/2008/site/css/advanced");
.thumbnail { float: left; margin-right: 20px; }
/**/
</style><link href="/2008/site/css/minimum" rel="stylesheet" type="text/css" media="handheld, only screen and (max-device-width: 480px)"/><meta name="viewport" content="width=device-width"/><link rel="stylesheet" href="/2008/site/css/print" type="text/css" media="print"/><link rel="shortcut icon" href="/2008/site/images/favicon.ico" type="image/x-icon"/><style type="text/css" xml:space="preserve">
.description { clear: left; margin-top: 1em; }
</style></head><body id="www-w3-org" class="w3c_public"><div id="w3c_container">
<div id="w3c_mast">
<h1 class="logo"><a tabindex="2" accesskey="1" href="/" shape="rect"><img src="/2008/site/images/logo-w3c-mobile-lg" width="90" height="53" alt="W3C"/></a> <span class="alt-logo">W3C</span></h1>
<div id="w3c_nav">
<form action="/Help/search" method="get" enctype="application/x-www-form-urlencoded"><div class="w3c_sec_nav">
<!-- -->
</div><ul class="main_nav"><li class="first-item"><a href="/standards/" shape="rect">Standards</a></li><li><a href="/participate/" shape="rect">Participate</a></li><li><a href="/Consortium/membership" shape="rect">Membership</a></li><li class="last-item"><a href="/Consortium/" shape="rect">About
W3C</a></li><li class="search-item">
<div id="search-form">
<input tabindex="3" class="text" name="q" value="" title="Search" type="text"/> <button id="search-submit" name="search-submit" type="submit"><img class="submit" src="/2008/site/images/search-button" alt="Search" width="21" height="17"/></button>
</div>
</li></ul></form>
</div>
</div>
<div id="w3c_main">
<div id="w3c_logo_shadow" class="w3c_leftCol">
<img height="32" alt="" src="/2008/site/images/logo-shadow"/>
</div>
<div class="w3c_leftCol">
<h2 class="offscreen">Site Navigation</h2>
<h3 class="category"><span class="ribbon"><a href="/participate/discussion.html" title="Up to Mail, News, Blogs, Podcasts, and Tutorials" shape="rect">Mail,
News, Blogs, Podcasts, and Tutorials <img src="/2008/site/images/header-link" alt="Header link" width="13" height="13" class="header-link"/></a></span></h3>
<ul class="theme"><li><a href="/News/" shape="rect">News</a></li><li><a href="/News/Public/" shape="rect">Weekly Newsletter</a></li><li><a href="/blog/" shape="rect">W3C Blogs</a></li><li><a href="/Mail/" shape="rect">Mailing Lists</a></li><li><a class="current" shape="rect">Podcasts and Video</a></li><li><a href="/2002/03/tutorials.html" shape="rect">Tutorials and
Courses</a></li><li><a href="/TeamSubmission/" shape="rect">Team Submissions</a></li></ul><br/>
</div>
<div class="w3c_mainCol">
<div id="w3c_crumbs">
<div id="w3c_crumbs_frame">
<ul class="bct"><!-- .bct / Breadcrumbs --><li class="skip"><a tabindex="1" accesskey="2" title="Skip to content (e.g., when browsing via audio)" href="#w3c_content_body" shape="rect">Skip</a></li><li><a href="/" shape="rect">W3C</a> <span class="cr">»</span> </li><li><a href="/participate/" shape="rect">Participate</a> <span class="cr">»</span> </li><li><a href="/participate/discussion.html" shape="rect">Mail, News, Blogs, Podcasts, and…</a> <span class="cr">»</span> </li><li class="current">Podcasts and Video</li></ul>
</div>
</div>
<h1 class="title">Podcasts and Video</h1>
<ul class="w3c_toc">
<li class="toc_prefix">On this page → </li>
<li><a href="#y2012">2012</a><span class="bullet"> • </span></li>
<li><a href="#y2011">2011</a><span class="bullet"> • </span></li>
<li><a href="#y2010">2010</a><span class="bullet"> • </span></li>
<li><a href="#y2009">2009</a><span class="bullet"> • </span></li>
<li><a href="#y2008">2008</a><span class="bullet"> • </span></li>
<li><a href="#y2007">2007</a></li>
</ul>
<div id="w3c_content_body">
<div class="line">
<div class="line">
<div class="unit size3on4">
<p class="intro tPadding">W3C community participate in events, podcasts, and video interviews around the world. Please note that in some cases, W3C links to video or audio content that it did not create and may not have full captions or transcripts. We invite the community to help provide them, notify us, and we will add links from our site.</p>
<h2><a id="y2012">2012</a></h2>
<div class="w3c_events_talks">
<div class="w3c_upcoming_talks">
<ul class="vevent_list">
<li class="lMargin">None yet.</li>
</ul>
</div>
</div>
<h2><a id="y2011">2011</a></h2>
<div class="w3c_events_talks">
<div class="w3c_upcoming_talks">
<ul class="vevent_list">
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2011</span><span class="mm-dd">-11-16</span></span> <span class="paren">(</span>
<span class="dd-mmm">16 NOV</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.w3.org/conf/"><img src="http://www.w3.org/2011/10/w3conf-small.png" width="200" height="158" alt="W3Conf"/>W3Conf</a>
</p>
<p class="source">Various speakers: Giorgio Sardo, Mike Bostock, Becky Gibson, Brad Hill, Scott Stender, Grant Goodale, Grant Skinner, Faruk Ates, Art Barstow, Paul Cotton, Tantek Çelik, Charles McCathieNevile, Chris Wilson, Peter Vosshall, Ian Jacobs</p>
<p class="eventtitle"><a href="http://www.w3.org/conf/">W3Conf</a></p>
<p class="location">Redmond, Washington</p>
<p class="description">Day 2 of W3C's first Developer Conference. </p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2011</span><span class="mm-dd">-11-15</span></span> <span class="paren">(</span>
<span class="dd-mmm">15 NOV</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.w3.org/conf/"><img src="http://www.w3.org/2011/10/w3conf-small.png" width="200" height="158" alt="W3Conf"/>W3Conf</a>
</p>
<p class="source">Various speakers: Philippe Le Hégaret, Manu Sporny, Doug Schepers, Divya Manian, Vincent Hardy, Arvind Jain, John Allsopp, Rajesh Lal, Rey Bango, Christopher Slye, Paul Irish, Ian Jacobs</p>
<p class="eventtitle"><a href="http://www.w3.org/conf/">W3Conf</a></p>
<p class="location">Redmond, Washington</p>
<p class="description">Day 1 of W3C's first Developer Conference. </p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2011</span><span class="mm-dd">-10-17</span></span> <span class="paren">(</span>
<span class="dd-mmm">17 OCT</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://semanticweb.com/the-semantic-link-%E2%80%93-episode-11-october-2011_b23961"><img src="http://semanticweb.com/files/2010/12/semanticlink_100x100.gif" width="100" height="100" alt="Semantic Link"/>The Semantic Link – Episode 11, October 2011</a>
</p>
<p class="source">Christine Connors, Eric Franzon, Ivan Herman, Eric Hoffer, Bernadette Hyland, Andraz Tori</p>
<p class="description">A group of Semantic thought leaders from around the globe met with their host and colleague, Paul Miller, for the latest installment of the Semantic Link, a monthly podcast covering the world of Semantic Technologies. This episode includes a discussion about schema.org. </p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2011</span><span class="mm-dd">-10-15</span></span> <span class="paren">(</span>
<span class="dd-mmm">15 OCT</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://vimeo.com/31076728">
<img src="http://b.vimeocdn.com/ts/209/141/209141445_100.jpg" width="100" height="75" alt="Philippe Le Hégaret"/>HTML5 for Business</a>
</p>
<p class="source">Philippe Le Hégaret</p>
<p class="eventtitle"><a href="http://wakanday.org/">JavaScript Everywhere</a></p>
<p class="location">Boston, Massachusetts</p>
<p class="description">Philippe le Hégaret of the W3C talks about the use of HTML5 for business applications.
</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2011</span><span class="mm-dd">-10-11</span></span> <span class="paren">(</span>
<span class="dd-mmm">11 OCT</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://isoc-ny.org/p2/?p=2562">
<img src="http://www.w3.org/2011/02/scarpetta_photos/.small/TIM_0069.png" width="100" height="150" alt="Tim Berners-Lee"/>Keynote</a>
</p>
<p class="source">Tim Berners-Lee</p>
<p class="eventtitle"><a href="http://www.futuretalk.com/en/index.html/">future.talk 2011</a></p>
<p class="location">Vienna, Austria</p>
<p class="description">Tim Berners Lee delivers a keynote speech at Telekom Austria Group’s future.talk 2011 which had the theme World Wild Web – Who Rules the Internet Society? Tim Berners-Lee’s segment begins at 15:30. Panel starts at 41:00.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2011</span><span class="mm-dd">-08-26</span></span> <span class="paren">(</span>
<span class="dd-mmm">26 AUG</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.vimeo.com/22048652?ab"><img src="http://www.w3.org/People/cooper/michael_cooper_sm" width="54" height="72" alt="Michael Cooper"/>Accessibility Post Web 2.0</a>
</p>
<p class="source">Michael Cooper</p>
<p class="eventtitle"><a href="http://a11ymtl.org/">a11yMTL</a></p>
<p class="location">Montréal Canada</p>
<p class="description">Michael Cooper discusses how W3C develops technology standards and helps make the Web accessible to people with disabilities. In his talk he summarizes current work and plans to meet new challenges, and discusses the role Web designers can play. </p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2011</span><span class="mm-dd">-04-05</span></span> <span class="paren">(</span>
<span class="dd-mmm">5 APR</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.vimeo.com/22048652?ab"><img src="http://www.w3.org/2011/04/jeff-in-finland.jpg" width="100" height="75" alt="Jeff Jaffe"/>W3C and the Open Web Platform</a>
</p>
<p class="source">Jeff Jaffe</p>
<p class="eventtitle"><a lang="fi" href="http://www.seco.tkk.fi/events/2011/2011-04-05-yhdistetty-avoin-tietoyhteiskunta/">Avoin tieto ja World Wide Web tietoyhteiskunnan palveluksessa </a></p>
<p class="location">Helsinki, Finland</p>
<p class="description">Jeff Jaffe discusses how the Open Web Platform is transforming multiple industries.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2011</span><span class="mm-dd">-04-04</span></span> <span class="paren">(</span>
<span class="dd-mmm">4 APR</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://videolectures.net/w3cworkshop2011_ishida_html5/"><img src="http://www.w3.org/People/r12a.jpg" width="58" height="80" alt="Richard Ishida"/>HTML5 proposed markup changes related to internationalization</a>
</p>
<p class="source">Richard Ishida</p>
<p class="eventtitle"><a href="http://www.multilingualweb.eu/documents/pisa-workshop/pisa-cfp">W3C Workshop on Multilingual Web</a></p>
<p class="location">Pisa, Italy</p>
<p class="description">Richard Ishida discusses upcoming changes in HTML5 related to internationalization. They include character encoding declarations, language declarations, ruby, and the new elements and attributes for bidi support. HTML5 is still very much work in progress, and these topics are still under discussion.
</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2011</span><span class="mm-dd">-03-18</span></span> <span class="paren">(</span>
<span class="dd-mmm">18 MAR</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://semanticweb.com/the-semantic-link-%E2%80%93-episode-4-%E2%80%93-march-2011_b18539"><img src="http://semanticweb.com/files/2010/12/semanticlink_100x100.gif" width="100" height="100" alt="Semantic Link"/>The Semantic Link – Episode 4, March 2011</a>
</p>
<p class="source">Andraz Tori, Bernadette Hyland, Christine Connors, Eric Franzon, Eric Hoffer, Ivan Hermann, Paul Miller, Peter Brown</p>
<p class="description">A group of Semantic thought leaders from around the globe met with their host and colleague, Paul Miller, for the fourth installment of the Semantic Link, a monthly podcast covering the world of Semantic Technologies.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2011</span><span class="mm-dd">-01-14</span></span> <span class="paren">(</span>
<span class="dd-mmm">14 JAN</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://semanticweb.com/the-semantic-link-episode-2-january-2011_b17338?c=rss"><img src="http://semanticweb.com/files/2010/12/semanticlink_100x100.gif" width="100" height="100" alt="Semantic Link"/>The Semantic Link – Episode 2, January 2011</a>
</p>
<p class="source">Ivan Herman, Paul Miller, Eric Franzon, Andraz Tori, Bernadette Hyland, Christine Connors, Eric Hoffer, Peter Brown</p>
<p class="description">A group of Semantic thought leaders from around the globe met with their host and colleague, Paul Miller, for the second installment of the Semantic Link, a monthly podcast covering the world of Semantic Technologies.</p>
</div>
</li>
</ul>
</div>
</div>
<h2><a id="y2010">2010</a></h2>
<div class="w3c_events_talks">
<div class="w3c_upcoming_talks">
<ul class="vevent_list">
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-12-06</span></span> <span class="paren">(</span>
<span class="dd-mmm">06 DEC</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://semanticweb.com/the-semantic-link-episode-1-december-2010_b16991"><img src="http://semanticweb.com/files/2010/12/semanticlink_100x100.gif" width="100" height="100" alt="Semantic Link"/>The Semantic Link – Episode 1, December 2010</a>
</p>
<p class="source">Andraz Tori, Bernadette Hyland, Christine Connors, Eric Franzon, Eric Hoffer, Ivan Herman, Paul Miller, Peter Brown</p>
<p class="description">A group of Semantic thought leaders from around the world meet with their host and colleague, Paul Miller, for the first installment of the Semantic Link, an ongoing monthly podcast on semanticweb.com.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-11-25</span></span> <span class="paren">(</span>
<span class="dd-mmm">25 NOV</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.elpais.com/articulo/ultima/web/nos/ha/dado/todos/enorme/megafono/elpepiult/20101125elpepiult_2/Tes"><img src="http://www.w3.org/2010/03/JeffreyJaffe_thumb.jpg" width="100" height="150" alt="Jeff Jaffe"/>Interview with Jeff Jaffe in El País</a>
</p>
<p class="source">Jeff Jaffe</p>
<p class="location">Bilbao, Spain</p>
<p class="description">Jeff Jaffe talks about about role of W3C in developing an Open Web Platform. Text of the interview is available in Spanish; the video interview is in English.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-10-14</span></span> <span class="paren">(</span>
<span class="dd-mmm">14 OCT</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.paris-web.fr/2010/programme/html5-et-le-web-de-demain.php"><img src="/2010/10/dom-parisweb.jpg" width="100" height="120" alt="Dominique Hazaël-Massieux"/>HTML5 et le Web de Demain ("HTML and the Web of Tomorrow")</a>
</p>
<p class="source">Dominique Hazaël-Massieux and Robin Berjon</p>
<p class="eventtitle"><a href="http://www.paris-web.fr/2010/programme/">ParisWeb 2010</a></p>
<p class="location">Bois-Colombes, France</p>
<p class="description">A review of how the technologies currently in development in W3C
will shape the future of the Web as a development platform, with
a specific focus on mobile. (In French).</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-10-03</span></span> <span class="paren">(</span>
<span class="dd-mmm">3 OCT</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.dailymotion.com/video/xfisjf_tim-berners-lee-on-philoweb-and-philosophical-engineering_tech"><img src="http://www.w3.org/2011/02/scarpetta_photos/.small/TIM_0069.png" width="100" height="150" alt="Tim Berners-Lee"/>Tim Berners-Lee on PhiloWeb and Philosophical engineering</a>
</p>
<p class="source">Tim Berners-Lee</p>
<p class="eventtitle"><a href="/2010/11/TPAC/">TPAC 2010</a></p>
<p class="location">Lyon, France</p>
<p class="description">Harry Halpin et Alexandre Monnin interview Tim Berners-Lee about the Web and philosophy.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-09-28</span></span> <span class="paren">(</span>
<span class="dd-mmm">28 SEP</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.google.co.jp/events/developerday/2010/tokyo/index.html"><img src="http://www.w3.org/People/Masao/masao-small.jpg" width="80" height="89" alt="Masao Isshiki"/>W3C標準/HTML5を広げよう</a>
</p>
<p class="source">Masao Isshiki</p>
<p class="eventtitle"><a href="http://www.google.co.jp/events/developerday/2010/tokyo/index.html">Google Developer Day 2010 (Japan)</a></p>
<p class="location">Tokyo, Japan</p>
<p class="description">Masao discusses W3C's activities for developing HTML5 and other specifications, encouraging developers to use emerging
standardized technology on the Web.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-09-28</span></span> <span class="paren">(</span>
<span class="dd-mmm">28 SEP</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.youtube.com/watch?v=d3glxGne8pU"><img src="http://www.w3.org/People/smith.png" width="56" height="72" alt="Mike Smith"/>HTML5 についての最新情報 (HTML5 Update)</a>
</p>
<p class="source">Mike Smith</p>
<p class="eventtitle"><a href="http://www.google.co.jp/events/developerday/2010/tokyo/index.html">Google Developer Day 2010 (Japan)</a></p>
<p class="location">Tokyo, Japan</p>
<p class="description">Mike Smith provides an update about the HTML5 specification and the activities of the HTML Working Group. In English</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-09-27</span></span> <span class="paren">(</span>
<span class="dd-mmm">27 SEP</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.meetup.com/bostonphp/pages/Video:_HTML_Redux"><img src="http://www.w3.org/People/LeHegaret/own_photo.jpg" width="90" height="121" alt="Philippe"/>HTML5 Redux</a>
</p>
<p class="source">Philippe Le Hégaret</p>
<p class="eventtitle">Boston PHP</p>
<p class="location">Boston, Massaschusetts</p>
<p class="description">Philippe Le Hégaret presents the technologies that make up the W3C Open Web Platform, including HTML5, CSS, SVG, WOFF, various APIs, and more. The presentation is rich in examples of what designers will appreciate.
<a href="http://www.w3.org/2010/Talks/0927-html5-plh/">Slides</a> are available.
</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-09-05</span></span> <span class="paren">(</span>
<span class="dd-mmm">5 SEP</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.youtube.com/watch?v=Q46pxzAzIAo&feature=player_embedded"><img src="http://www.w3.org/2010/09/eyalsela.png" width="100" height="95" alt="Eyal Sela"/>
<span lang='he'>כלים ושיטות להנגשת אתרי אינטרנט</span><br/> (Tools and practices for web accessibility)</a>
</p>
<p class="source">Eyal Sela</p>
<p class="eventtitle"><a class="uri" href="">
<span lang="he">וורדקמפ 2010</span><br/>(Wordcamp 2010)
</a></p>
<p class="location">Jerusalem, Israel</p>
<p class="description">An accessible website lets people with disabilities access your contact more easily. It can help increase traffic and be more useful for users without disabilities.
In the lecture you will learn how to develop more accessible websites according to WCAG 2.0, the guidelines for creating accessible online content. You will get tools to implement accessibility practices in the design and development process, and to learn more by yourself. The lecturer is Eyal Sela from the Israeli Internet Association (ISOC-IL) and W3C Israel Office. The talk is in Hebrew.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-06-23</span></span> <span class="paren">(</span>
<span class="dd-mmm">23 JUN</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.vimeo.com/13998744"><img src="http://ats.vimeo.com/813/539/81353921_100.jpg" width="100" height="75" alt="Ivan Herman"/>From Relational Databases to the Semantic Web: New W3C Standards and Directions (2 parts)</a>
</p>
<p class="source">Ivan Herman</p>
<p class="eventtitle"><a class="uri" href="http://semtech2010.semanticuniverse.com/">2010 Semantic Technology Conference</a></p>
<p class="location">San Francisco, CA</p>
<p class="description">A new W3C standard for mapping relational data to RDF is being created by the RDB2RDF Working Group based on the best practices of current approaches. This exciting work should allow current data in relational databases to be transformed to RDF with a minimum of effort, creating a standardized mapping language that will allow the market to concentrate optimization and custom features rather than re-inventing the wheel. There are two videos: <a href="http://www.vimeo.com/13998744">part 1</a> and <a href="http://www.vimeo.com/13984398">part 2</a>.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-06-21</span></span> <span class="paren">(</span>
<span class="dd-mmm">21 JUN</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://media.bonnint.net/wtop/18/1862/186259.MP3"><img src="http://www.w3.org/2011/02/scarpetta_photos/.small/TIM_0069.png" width="100" height="150" alt="Tim Berners-Lee"/>Web inventor discusses importance of open data</a>
</p>
<p class="source">Tim Berners-Lee</p>
<p class="location">(US) Federal News Radio Program "Dorobek Insider"</p>
<p class="description">Tim Berners-Lee radio interview on open data in a government context; see the <a href="http://www.federalnewsradio.com/?nid=150&sid=1983872">online (text) summary of the interview</a>.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-06-08</span></span> <span class="paren">(</span>
<span class="dd-mmm">8 JUN</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://vimeo.com/12444260"><img src="/2010/06/sandro.png" width="120" height="64" alt="Sandro Hawke"/>An Introduction to Linked Data</a>
</p>
<p class="source">Sandro Hawke</p>
<p class="eventtitle"><a class="uri" href="http://www.meetup.com/The-Cambridge-Semantic-Web-Meetup-Group/calendar/13517625/">Cambridge Semantic Web Meetup</a></p>
<p class="location">Cambridge, Massachusetts</p>
<p class="description">Sandro Hawke makes linked data easy! See also his <a href="http://files.meetup.com/1336198/LinkedDataPresentation-SandroHawke.pdf">slides</a>.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-05-26</span></span> <span class="paren">(</span>
<span class="dd-mmm">26 MAY</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.youtube.com/watch?v=ga1aSJXCFe0"><img src="/2010/06/timgov20.jpg" width="120" height="90" alt="Tim Berners-Lee"/>Open, Linked Data for a Global Community</a>
</p>
<p class="source">Tim Berners-Lee</p>
<p class="eventtitle"><a class="uri" href="http://www.gov2expo.com/gov2expo2010">Gov 2.0 Expo</a></p>
<p class="location">Washington, D.C.</p>
<p class="description">Tim Berners-Lee uses a bag of chips to illustrate some principles of linked data. See also a <a href="http://radar.oreilly.com/2010/05/tim-berners-lee-on-datagovuk-o.html">video interview</a> exploring open linked data, how governments' open data efforts should be judged, and more.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-05-26</span></span> <span class="paren">(</span>
<span class="dd-mmm">26 MAY</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.youtube.com/watch?v=YuyiDIvb68E"><img src="/2010/05/sandro-egov.jpg" width="120" height="90" alt="Sandro Hawke"/>Data Sharing Standards in Government</a>
</p>
<p class="source">Sandro Hawke</p>
<p class="eventtitle"><a class="uri" href="http://www.gov2expo.com/gov2expo2010">Gov 2.0 Expo</a></p>
<p class="location">Washington, D.C.</p>
<p class="description">Sandro Hawke discusses eGovernment data efforts, moving towards the use of linked data standards, and how the Semantic Web is turning the corner.
</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-04</span></span> <span class="paren">(</span>
<span class="dd-mmm">APR</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://videolectures.net/www09_bernerslee_rlty/"><img src="http://www.w3.org/2011/02/scarpetta_photos/.small/TIM_0069.png" width="100" height="150" alt="Tim Berners-Lee"/>Reflecting on the last 20 years and looking forward to the next 20</a>
</p>
<p class="source">Tim Berners-Lee</p>
<p class="location"><a href="http://www2009.org/">WWW 2009</a></p>
<p class="description">Tim Berners-Lee delivers a keynote at WWW 2009 reflecting on the 20th anniversary of the invention of the Web, and on what the future holds.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-04-15</span></span> <span class="paren">(</span>
<span class="dd-mmm">15 APR</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.paradigmshiftsradio.com/episode11_tim_berners_lee_chris_anderson.htm"><img src="http://www.w3.org/2011/02/scarpetta_photos/.small/TIM_0069.png" width="100" height="150" alt="Tim Berners-Lee"/>The World Wide Web: Where Do We Go from Here?</a>
</p>
<p class="source">Tim Berners-Lee</p>
<p class="eventtitle"><a class="uri" href="http://www.paradigmshiftsradio.com/">Paradigm Shifts</a></p>
<p class="location">Radio show</p>
<p class="description">Tim Berners-Lee in a WMBR (MIT campus radio) interview answers questions from Rohit Sakhuja including Where did the initial idea for the world wide web come from? What have we accomplished so far with the web and where do we go next from here? If networks are built to be completely open, can we restrict access to information? And how can we modify our models of how we pay for information to continue to support good quality journalism?</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-04-06</span></span> <span class="paren">(</span>
<span class="dd-mmm">6 APR</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://lacantine.ubicast.eu/videos/w3c-html5-meetup-partie-1/"><img src="http://lacantine.ubicast.eu/medias/videos/2010-04-07_23-15-03_352823/small_thumb.jpg" width="120" height="90" alt="Philippe Le Hégaret speaking"/>HTML5 Meetup (in French)</a>
</p>
<p class="source">Philippe Le Hégaret, Dominique Hazaël-Massieux, François Daoust, Marie-Claire Forgue, Daniel Glazman</p>
<p class="eventtitle"><a class="uri" href="http://lacantine.org/">La Cantine</a></p>
<p class="location">Paris, France</p>
<p class="description">Members of the W3C community discuss the open Web platform.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-02-26</span></span> <span class="paren">(</span>
<span class="dd-mmm">26 FEB</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://mit150.mit.edu/infinite-history?keyword=Timothy+J.+Berners-Lee"><img src="http://mit150.mit.edu/sites/default/files/IH-th-Berners-Lee-Tim.jpg" width="130" height="75" alt="Tim Berners-Lee"/>Interview with Tim Berners-Lee</a>
</p>
<p class="source">Tim Berners-Lee</p>
<p class="eventtitle"><a class="uri" href="http://mit150.mit.edu/">MIT+150 Infinite History Project</a></p>
<p class="location">Cambridge, MA, USA</p>
<p class="description">Tim Berners-Lee talks with Toby A. Smith about Tim's background, the creation of the Web, and much more.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-02-26</span></span> <span class="paren">(</span>
<span class="dd-mmm">26 FEB</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.yuiblog.com/blog/2010/02/26/video-plh-nextweb/"><img src="http://yuiblog.com/assets/plh-nextweb-20100122-112741.png" width="124" height="80" alt="Philippe Le Hégaret speaking"/>The Next Open Web Platform</a>
</p>
<p class="source">Philippe Le Hégaret</p>
<p class="eventtitle"><a class="uri" href="http://www.yuiblog.com/blog/category/yui-theater/">YUI Theater</a></p>
<p class="location">Sunnyvale, California</p>
<p class="description">Philippe gave a take in early 2010 at Yahoo! about the new Web platform, centered around HTML 5 but including other technologies. These range from HTML video to SVG to CSS animations or Web sockets. Philippe’s talk gives an overview of what’s ahead, using concrete demonstrations in latest generation Web browsers.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-02-12</span></span> <span class="paren">(</span>
<span class="dd-mmm">12 FEB</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.ted.com/talks/tim_berners_lee_the_year_open_data_went_worldwide.html"><img src="/2010/02/tbl-ted2010.jpg" width="124" height="94" alt="Tim Berners-Lee speaking"/>The year open data went worldwide</a>
</p>
<p class="source">Tim Berners-Lee</p>
<p class="eventtitle"><a href="http://conferences.ted.com/TED2010/">TED University 2010</a></p>
<p class="location">Long Beach, California</p>
<p class="description">At TED2009, Tim Berners-Lee called for "raw data now" -- for governments, scientists and institutions to make their data openly available on the web. At TED University in 2010, he illustrated a few interesting examples of real world linked data.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-01-27</span></span> <span class="paren">(</span>
<span class="dd-mmm">27 JAN</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.youtube.com/watch?v=Foe7CSRVTwI"><img src="http://i3.ytimg.com/vi/Foe7CSRVTwI/default.jpg" width="120" height="90" alt=""/>IdeasLab with MIT: the nature of intelligence</a>
</p>
<p class="source">Tim Berners-Lee</p>
<p class="eventtitle"><a class="uri" href="http://www.web2summ
it.com/web2009">World Economic Forum ("Davos" 2010)</a></p>
<p class="location">Geneva, Switzerland</p>
<p class="description">Tim Berners-Lee talks about linked data, and the connection, at Web scale, between people and their data.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year
">2010</span><span class="mm-dd">-01-22</span></span> <span class="paren">(</span>
<span class="dd-mmm">22 JAN</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.guardian.co.uk/news/da
tablog/video/2010/jan/22/datastore-panel-discussion"><img src="http://static.guim.
co.uk/sys-images/Guardian/Pix/audio/video/2010/1/22/1264166972474/govdata-panel-ta
lk-007.jpg" width="140" height="84" alt="Panel: Tim Berners-Lee and others"/>Panel
Discussion: The Power of Apps</a>
</p>
<p class="source">Tim Berners-Lee, et al.</p>
<p class="eventtitle"><a class="uri" href="http://www.web2summ
it.com/web2009">Filmed during launch of data.gov.uk</a></p>
<p class="location">London, England</p>
<p class="description">Filmed live at the launch of data.gov.u
k, Tim Berners-Lee, Nigel Shadbolt, Richard Allan and Chris Taggart join the Guard
ian's technology director Mike Bracken to discuss the issues and opportunities sur
rounding the release of government data.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2010</span><span class="mm-dd">-01-22</span></span> <span class="paren">(</span><span class="dd-mmm">22 JAN</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.guardian.co.uk/news/datablog/video/2010/jan/22/freedomofinformation-timbernerslee"><img src="http://static.guim.co.uk/sys-images/Guardian/Pix/audio/video/2010/1/22/1264166620382/Making-Data-Public-Presen-007.jpg" width="140" height="84" alt="Making Data Public: Presentation by Sir Tim Berners-Lee and Prof. Nigel Shadbolt"/>Making Data Public</a>
</p>
<p class="source">Tim Berners-Lee, Nigel Shadbolt.</p>
<p class="eventtitle"><a class="uri" href="http://www.web2summit.com/web2009">Filmed during launch of data.gov.uk</a></p>
<p class="location">London, England</p>
<p class="description">Tim Berners-Lee and Nigel Shadbolt present the reasons and their vision for opening government data on the Web at the launch of data.gov.uk.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2010</span><span class="mm-dd">-01-21</span></span> <span class="paren">(</span><span class="dd-mmm">21 JAN</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.guardian.co.uk/politics/video/2010/jan/21/uk-national-data-website-launched"><img src="http://static.guim.co.uk/sys-images/Guardian/Pix/audio/video/2010/1/21/1264088465181/Tim-Berners-Lee-004.jpg" width="140" height="84" alt="Tim Berners-Lee"/>Tim Berners-Lee on the UK national data website launch</a>
</p>
<p class="source">Tim Berners-Lee</p>
<p class="eventtitle"><a class="uri" href="http://www.web2summit.com/web2009">Filmed during launch of data.gov.uk</a></p>
<p class="location">London, England</p>
<p class="description">Tim Berners-Lee talks about how he persuaded Gordon Brown to open UK government data to the public.</p>
</div>
</li>
</ul>
</div>
</div>
<h2><a id="y2009">2009</a></h2>
<div class="w3c_events_talks">
<div class="w3c_upcoming_talks">
<ul class="vevent_list">
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2009</span><span class="mm-dd">-12-10</span></span> <span class="paren">(</span><span class="dd-mmm">10 DEC</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://philmckinney.com/archives/2009/12/podcast-interview-with-sir-tim-berners-lee.html"><img src="http://philmckinney.com/wp/wp-content/uploads/2009/12/Tim-and-Friends-004-2-300x245.jpg" width="120" height="98" alt="Tim Berners-Lee and Phil McKinney"/>Podcast: Interview with Sir Tim Berners-Lee</a>
</p>
<p class="source">Tim Berners-Lee</p>
<p class="eventtitle"><a class="uri" href="http://www.web2summit.com/web2009">Recorded during Web 2.0 Summit 2009</a></p>
<p class="location">San Fransisco, California</p>
<p class="description">Tim Berners-Lee talks about the past and future Web. A <a href="http://philmckinney.com/download/transcript/KI_20091210_Interview_With_Sir_Tim_Berners_Lee.pdf">transcript</a> is available as well.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2009</span><span class="mm-dd">-11-NaN</span></span> <span class="paren">(</span><span class="dd-mmm">in NOV</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.bcs.org/server.php?show=conWebDoc.33535"><img src="/2009/12/timbl-bcs.png" width="100" height="83" alt="Tim Berners-Lee"/>Interview: Tim Berners-Lee</a>
</p>
<p class="source">Tim Berners-Lee</p>
<p class="eventtitle"><a class="uri" href="http://www.bcs.org/server.php?show=conWebDoc.33535">Interview with BCS, The Chartered Institute for IT</a></p>
<p class="description">Tim Berners-Lee speaks about the Semantic Web, barriers to enabling the information society for all, Mobile Web, and more. A <a href="http://www.bcs.org/server.php?show=ConWebDoc.33720">transcript</a> is available as well.</p>
</div>
</li><li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2009</span><span class="mm-dd">-11-24</span></span> <span class="paren">(</span><span class="dd-mmm">24 NOV</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://tedfellows.posterous.com/tedxkampala-tim-berners-lee-qanda-session"><img src="http://farm3.static.flickr.com/2529/4131222444_11e99804e6.jpg" width="120" height="70" alt="Tim Berners-Lee and Stéphane Boyera with the Uganda Linux Users Group"/>
TEDxKampala: Tim Berners-Lee Q&A Session</a>
</p>
<p class="source">Tim Berners-Lee, Stéphane Boyera</p>
<p class="eventtitle"><a class="uri" href="http://www.ted.com/pages/view/id/346">TedxKampala 2009</a></p>
<p class="location">Kampala, Uganda</p>
<p class="description">Tim Berners-Lee,
Stephane Boyera, and others spoke about
extending the Web to more users in
talks with the Uganda Linux Users Group.</p>
</div>
</li><li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2009</span><span class="mm-dd">-11-18</span></span> <span class="paren">(</span><span class="dd-mmm">18 NOV</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.youtube.com/watch?v=kNpZrU6YLXU"><img src="http://i4.ytimg.com/vi/kNpZrU6YLXU/default.jpg" width="120" height="90" alt="Tim Berners-Lee"/>Smarter Government</a>
</p>
<p class="source">Tim Berners-Lee</p>
<p class="location">London, England</p>
<p class="description">UK Prime Minister's Office announces 2000 data sets will be opened up, pursuant to recommendations by Tim Berners-Lee.</p>
</div>
</li><li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2009</span><span class="mm-dd">-10-08</span></span> <span class="paren">(</span><span class="dd-mmm">8 OCT</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.youtube.com/watch?v=eiNzA0raLe4&feature=player_embedded"><img src="/2009/09/timbl-foratv" width="120" height="86" alt="Tim Berners-Lee"/>Interview with Tim Berners-Lee</a>
</p>
<p class="source">Tim Berners-Lee</p>
<p class="location">Washington, D.C.</p>
<p class="description">Tim Berners-Lee talks about Internet privacy, net neutrality, and the World Wide Web Foundation.</p>
</div>
</li><li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2009</span><span class="mm-dd">-10-08</span></span> <span class="paren">(</span><span class="dd-mmm">8 OCT</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary"><a class="imageLink" href="http://www.dailymotion.com/video/xbdmzw_table-ronde-jeudi-grand-amphi-paris_tech"><img src="http://ak2.static.dailymotion.com/static/video/826/751/19157628:jpeg_preview_medium.jpg?20091208001011" alt="Paris Web 2009 Panel" height="120" width="160"/>Round Table: Mobile Web</a> (in French)</p>
<p class="source">François Daoust, Robin Berjon, Charles McCathieNevile</p>
<p class="eventtitle"><a href="http://www.paris-web.fr/2009/" class="uri">Paris Web 2009
</a></p>
<p class="location">Paris, France</p>
<p class="description">The round table discussed mobile web (in French)</p>
</div>
</li><li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2009</span><span class="mm-dd">-09-22</span></span> <span class="paren">(</span><span class="dd-mmm">22 SEP</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://web20summit.blip.tv/file/2764419/"><img src="http://a.images.blip.tv/Web2summit-Web20Summit09TimBernersLeeAndTimOReillyAConversationW479-80-154.jpg" width="120" height="67" alt="Thumbnail of Tim and Tim"/>Web 2.0 Summit 09: Tim Berners-Lee and Tim O'Reilly, "A Conversation with Tim Berners-Lee"
</a>
</p>
<p class="source">Tim Berners-Lee</p>
<p class="eventtitle"><a class="uri" href="http://www.web2summit.com/web2009">Web 2.0 Summit 2009</a></p>
<p class="location">San Francisco, CA, USA</p>
<p class="description">Tim O'Reilly asks Tim Berners-Lee about
the early Web, why it was intended to be open and free,
how it was always meant to be a read/write medium, his
concerns about points of control, Web 2.0, Semantic Web,
and more.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2009</span><span class="mm-dd">-05-09</span></span> <span class="paren">(</span><span class="dd-mmm">9 MAY</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://river-valley.tv/fonts-formats-css-and-libre-graphics/">
<img src="http://river-valley.tv/media/conferences/lgm2009/images/0401-Chris_Lilley.jpg" width="100" height="75" alt="Chris Lilley"/>
Fonts, formats, CSS and libre graphics</a>
</p>
<p class="source">Chris Lilley</p>
<p class="eventtitle"><a class="uri" href="http://www.libregraphicsmeeting.org/2009/">Libre Graphics Meeting 2009</a></p>
<p class="location">Montréal, Canada</p>
<p class="description">
Chris Lilley gave a talk (<a href="http://www.w3.org/Talks/2009/05-LGM-Lilley/cover.svg">slides</a>) summarizing the history, development, and current state of @font-face Web Fonts in CSS and SVG, and the interactions between these specifications and Libre software.
</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2009</span><span class="mm-dd">-04-08</span></span> <span class="paren">(</span><span class="dd-mmm">8 APR</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://talis-podcasts.s3.amazonaws.com/twt20090408-IvanHerman.mp3">
<img src="http://www.ivan-herman.net/professional/Ivan.Herman.png" width="89" height="100" alt="Ivan Herman"/>Ivan Herman talks about the Semantic Web and W3Cs</a>
</p>
<p class="source">Talis Podcasts</p>
<p class="description">Ivan discusses W3C's continued engagement with Semantic Web activity around the world, touches upon current activity to enhance existing specifications such as SPARQL, and consider the success of the Linked Data meme.
</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2009</span><span class="mm-dd">-03-27</span></span> <span class="paren">(</span><span class="dd-mmm">27 MAR</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://vimeo.com/3937646">
<img src="http://ts.vimeo.com.s3.amazonaws.com/694/646/6946468_100.jpg" height="75" width="100" alt="Dominique Hazael-Massieux"/>
Device Independent or Accessible
</a></p>
<p class="source">Dominique Hazael-Massieux</p>
<p class="eventtitle"><a href="http://eafra.eu/" class="uri">European Accessibility Forum 2009</a></p>
<p class="location">Frankfurt, Germany</p>
</div>
</li><li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2009</span><span class="mm-dd">-03-20</span></span> <span class="paren">(</span><span class="dd-mmm">20 MAR</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary"><a class="imageLink" href="http://dotsub.com/view/41e149bd-8b98-4103-a9f8-c96787497211"><img src="http://www.w3.org/Help/screencast-thumb.jpg" height="80" width="80" alt="Screencast thumb"/> Tour of beta.w3.org (screencast)</a></p>
<p class="source">Ian Jacobs</p>
<p class="eventtitle"><a class="uri" href="http://beta.w3.org/">Beta of W3C
Redesign</a></p>
<p class="location">Online</p>
<p class="description">A 10-minute tour of
W3C's redesigned Web site. Learn more <a href="/Help/about-redesign">about the
redesign</a>.</p>
</div>
</li><li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2009</span><span class="mm-dd">-03-13</span></span> <span class="paren">(</span><span class="dd-mmm">13 MAR</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://cdsweb.cern.ch/record/1167328?ln=en">
<img src="http://mediaarchive.cern.ch/MediaArchive/Video/Public/Movies/2009/CERN-MOVIE-2009-007/CERN-MOVIE-2009-007-posterframe-480x360-at-90-percent.jpg" height="75" width="100" alt="Tim Berners-Lee"/>
WWW
@ 20</a></p>
<p class="source">Tim Berners-Lee</p>
<p class="eventtitle"><a href="http://info.cern.ch/www20/" class="uri">CERN
celebrates 20 years of the Web</a></p>
<p class="location">Geneva, Switzerland</p>
<p class="description">Tim Berners-Lee
participated in an event at CERN celebrating
twenty years since he first proposed the system
called the World Wide Web. <a href="http://cdsweb.cern.ch/record/1166376?ln=en">photos</a>
are also available.</p>
</div>
</li><li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2009</span><span class="mm-dd">-02-04</span></span> <span class="paren">(</span><span class="dd-mmm">4 FEB</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary"><a class="imageLink" href="http://www.ted.com/index.php/talks/tim_berners_lee_on_the_next_web.html"><img src="http://www.w3.org/2009/Talks/0204-ted-tbl/img5.png" height="75" width="100" alt="Slide from Talk titled Linked Data Standards"/>
The next Web of open, linked data</a></p>
<p class="source">Tim Berners-Lee</p>
<p class="eventtitle"><a href="http://www.ted.com/" class="uri">TED
2009</a></p>
<p class="location">Long Beach, California,
USA</p>
<p class="description">Tim Berners-Lee gave a
talk (<a href="http://www.w3.org/2009/Talks/0204-ted-tbl/">slides</a>)
at TED 2009 on the <a href="/standards/semanticweb">Semantic Web</a> and
the future of "linked data."</p>
</div>
</li>
</ul>
</div>
</div>
<h2><a id="y2008">2008</a></h2>
<div class="w3c_events_talks">
<div class="w3c_upcoming_talks">
<ul class="vevent_list">
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2008</span><span class="mm-dd">-12-19</span></span> <span class="paren">(</span><span class="dd-mmm">19 DEC</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://webprofessionals.org/blog/accessibility-its-for-everyone-and-everything%E2%80%9D-a-shawn-henry-session-overview/"><img src="http://yuiblog.com/assets/shawnhenry.jpg" width="100" height="112" alt="Shawn Henry"/>
Accessibility: It's for Everyone and Everything”
</a>
</p>
<p class="source">Shawn Henry</p>
<p class="eventtitle"><a class="uri" href="http://webprofessionals.org/">WebProfessionals.org interview at Web Design World</a></p>
<p class="location">Boston, Massachusetts</p>
<p class="description">Interview with Shawn Henry</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2008</span><span class="mm-dd">-12-01</span></span> <span class="paren">(</span><span class="dd-mmm">DEC</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://media.libsyn.com/media/uxpod/shawnhenry.mp3"><img src="http://yuiblog.com/assets/shawnhenry.jpg" width="100" height="112" alt="Shawn Henry"/>
Web Content Accessibility Guidelines V2.0 - An Interview with Shawn Henry
</a>
</p>
<p class="source">Shawn Henry</p>
<p class="eventtitle"><a class="uri" href="http://www.infodesign.com.au/uxpod">Interview with User Experience Podcast</a></p>
<p class="location">Turin, Italy</p>
<p class="description">Audio Interview with Shawn Henry; a <a href="http://www.infodesign.com.au/uxpod1/wcag20.html">text transcript</a> is available.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2008</span><span class="mm-dd">-10-16</span></span> <span class="paren">(</span><span class="dd-mmm">16 OCT</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary"><a class="imageLink" href="http://access-key.org/?p=33">
<img src="http://access-key.org/images/teaser_mobileWeb.jpg" alt="Woman using phone" height="66" width="100"/>
Mobile Web and Accessibility (in French, <span lang="fr">Le web mobile</span>)
</a></p>
<p class="source">Dominique Hazaël-Massieux</p>
<p class="eventtitle">Access-Key Tutorial</p>
<p class="description">Tutorial explaining the relationship between designing a Web page with accessibility and with mobile devices in mind.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2008</span><span class="mm-dd">-10-06</span></span> <span class="paren">(</span><span class="dd-mmm">6 OCT</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://webcast.ec.europa.eu/eutv/portal/ism/_vi_mpeg4_300_en/player/index_player.html?id=5185&pId=-1&startTime=0"><img src="http://www.w3.org/2006/05/u/c734aea52c64-sm.jpg" alt="Philipp Hoschka" width="75" height="100"/>
W3C's Mobile Web Initiative: Towards the Web of Things
</a>
</p>
<p class="source">Philipp Hoschka</p>
<p class="eventtitle"><a class="uri" href="http://www.internet2008.eu/spip.php?rubrique14">Internet of Things; Internet of the Future</a></p>
<p class="location">Nice, France</p>
<p class="description">Philipp Hoschka talks about what W3C is doing to promote the spread of mobile Web applications.</p>
</div>
</li>
<!--
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2008</span><span class="mm-dd">-06-14</span></span> <span class="paren">(</span><span class="dd-mmm">14 JUN</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://webprofessionals.org/blog/web-accessibility-interviews-with-shawn-henry-wai-and-w3c/"><img src="http://yuiblog.com/assets/shawnhenry.jpg" width="100" height="112" alt="Shawn Henry"/>
Interview: Shawn Henry (Part II)
</a>
</p>
<p class="source">Shawn Henry</p>
<p class="eventtitle"><a class="uri" href="http://webprofessionals.org/">WebProfessionals.org</a></p>
<p class="description">Part II of a series of interviews on WAI and accessibility.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2008</span><span class="mm-dd">-06-09</span></span> <span class="paren">(</span><span class="dd-mmm">9 JUN</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://webprofessionals.org/blog/web-accessibility-interview-with-shawn-henry-web-accessibility-initiative-wai-world-wide-web-consortium-w3c/"><img src="http://yuiblog.com/assets/shawnhenry.jpg" width="100" height="112" alt="Shawn Henry"/>
Interview: Shawn Henry (Part I)
</a>
</p>
<p class="source">Shawn Henry</p>
<p class="eventtitle"><a class="uri" href="http://webprofessionals.org/">WebProfessionals.org</a></p>
<p class="description">Part I of a series of interviews on WAI and accessibility.</p>
</div>
</li>
-->
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2008</span><span class="mm-dd">-06-01</span></span> <span class="paren">(</span><span class="dd-mmm">JUN</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://dotsub.com/films/makingthe_1"><img src="http://www.w3.org/WAI/images/2008-06June-MalaysiaUSP.jpg" alt="Shawn Henry" width="120" height="80"/>
Making the Web Accessible to People with Disabilities
</a>
</p>
<p class="source">Shawn Henry</p>
<p class="eventtitle"><a class="uri" href="http://www.skmm.gov.my/index.php?c=public&v=main">Malaysian Communications and Multimedia Commission (SKMM), Universal Service Provision (USP) Technology Seminar</a></p>
<p class="location">Malaysia</p>
<p class="description">This is a presentation for a technology seminar on communications projects for underserved areas and underserved groups, including people with disabilities, in Malaysia.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2008</span><span class="mm-dd">-05-22</span></span> <span class="paren">(</span><span class="dd-mmm">MAY</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href=""><img src="http://www.oeglb.at/netbuilder/images/thumbnails/shadi_abou_zahra.jpg" alt="Shadi Abou-Zahra" width="120" height="90"/>
Ein Web für Menschen mit Hörbehinderung (A Web for the Hard of Hearing) — article in German with Austrian sign language
</a>
</p>
<p class="source">Shadi Abou-Zahra</p>
<p class="eventtitle"><a class="uri" href="http://www.oeglb.at/?id=LH2008-05-22-0415">Austrian Union for the Deaf</a></p>
<p class="location">Austria</p>
<p class="description">Introduces the types of issues that people with hearing impairments encounter on the Web and highlights some of the cross-disabilities issues. It describes the approach that has been taken in WCAG 2.0 to provide better support for the heard of hearing on the Web.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2008</span><span class="mm-dd">-02-27</span></span> <span class="paren">(</span><span class="dd-mmm">27 FEB</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://blogs.talis.com/nodalities/podpress_trac/web/619/0/twt20080207_TimBL.mp3">
<img src="http://blogs.talis.com/nodalities/files/2008/04/491616030_e64294ac16_100x150shkl.jpg" width="80" height="120" alt="Tim Berners-Lee"/>Sir Tim Berners-Lee Talks about the Semantic Web</a>
</p>
<p class="source">Talis Podcasts</p>
<p class="description">Tim and Paul Miller
discuss the Semantic Web’s readiness for mainstream adoption, and explore a wide range of issues from Linked Data to the writing of new books for developers.
</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2008</span><span class="mm-dd">-02-01</span></span> <span class="paren">(</span><span class="dd-mmm">FEB</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.radionz.co.nz/__data/assets/audio_item/0004/1359211/ngts-20080214-1915-Web_Accessibility-wmbr.asx"><img src="http://www.w3.org/People/Shawn/shawn4.jpg" width="75" height="120" alt="Shawn Henry"/>
Radio New Zealand Interview
</a>
</p>
<p class="source">Shawn Henry</p>
<p class="eventtitle">Bryan Crump interview during <a class="uri" href="http://www.webstock.org.nz/">Webstock 08</a></p>
<p class="location">Wellington, New Zealand</p>
<p class="description">Shawn Henry talked with Bryan Crump for Radio New Zealand National while in New Zealand for Webstock 08. They talked about the potential for the Internet to enable people with disabilities to participate more actively in everyday life and business; the work of the World Wide Web Consortium (W3C) Web Accessibility Initiative (WAI); and including accessibility from the beginning when developing technology. A <a href="http://www.w3.org/WAI/highlights/200802radioNZ">text transcript</a> is available.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2008</span><span class="mm-dd">-02-01</span></span> <span class="paren">(</span><span class="dd-mmm">FEB</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://www.usability.com.au/resources/shawn-vid.cfm"><img src="http://www.w3.org/People/Shawn/shawn4.jpg" width="75" height="120" alt="Shawn Henry"/>
Interview with Shawn Henry
</a>
</p>
<p class="source">Shawn Henry</p>
<p class="eventtitle">Roger Hudson interview during <a class="uri" href="http://www.webstock.org.nz/">Webstock 08</a></p>
<p class="location">Wellington, New Zealand</p>
<p class="description">Shawn Henry, from the W3C, was a presenter at Webstock 2008. During a break in the conference, she talked with Roger Hudson about how she first got involved in website accessibility, the need to continue breaking down some of misconceptions associated with accessibility and the Web Content Accessibility Guidelines (WCAG) Versions 1 and 2. A <a href="http://www.usability.com.au/resources/shawn-vid.cfm">text transcript</a> is available.</p>
</div>
</li>
</ul>
</div>
</div>
<h2><a id="y2007">2007</a></h2>
<div class="w3c_events_talks">
<div class="w3c_upcoming_talks">
<ul class="vevent_list">
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2007</span><span class="mm-dd">-11-16</span></span> <span class="paren">(</span><span class="dd-mmm">16 NOV</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary"><a class="imageLink" href="http://www.dailymotion.com/video/x4lzho_bonnes-pratiques-du-web-mobile_tech"><img src="http://ak2.static.dailymotion.com/static/video/632/447/7744236:jpeg_preview_medium.jpg?20090613055431" alt="Dominique Hazaël-Massieux" height="90" width="120"/>
Mobile Web Good Practices (in French, <span lang="fr">Les Bonnes Pratiques du Web Mobile</span>)
</a></p>
<p class="source">Dominique Hazael-Massieux</p>
<p class="eventtitle"><a href="http://www.paris-web.fr/2007/" class="uri">Paris Web 2007
</a></p>
<p class="location">Paris, France</p>
<p class="description">Web standards open the
door to a Web accessible to all, including those
using mobile devices. Learn more about <a href="/standards/webdesign/mobilweb">Mobile
Web Good Practices</a>.</p>
</div>
</li><li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2007</span><span class="mm-dd">-10-01</span></span> <span class="paren">(</span><span class="dd-mmm">1 OCT</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a href="http://www.youtube.com/watch?v=mzrNJzLpTSo" class="imageLink"><img src="http://i2.ytimg.com/vi/eKl17j7v8S4/default.jpg" alt="Tim Berners-Lee" height="90" width="120"/>
Future of the Internet</a> (<a href="http://www.youtube.com/watch?v=mzrNJzLpTSo">part 1</a> and <a href="http://www.youtube.com/watch?v=eKl17j7v8S4">part 2</a>)
</p>
<p class="source">Tim Berners-Lee</p>
<p class="eventtitle"><a href="http://www.egov2007.gov.pt/" class="uri">4th Ministerial eGovernment Conference Paris Web 2007</a></p>
<p class="location">Lisbon, Portugal</p>
<p class="description">This remote video presentation
in two parts looks at the future of a Web of data,
the benefits of using Semantic Web standards,
and how open data can help governments serve the people.
</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2007</span><span class="mm-dd">-07-11</span></span> <span class="paren">(</span><span class="dd-mmm">11 JUL</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://videocast.mitsue.co.jp/english/archives/2007/000056.html"><img src="http://www.w3.org/2007/07/shawn20070607.png" width="130" height="71" alt="Shawn Henry"/>
A Video Interview with Shawn Henry, From California to Japan
</a>
</p>
<p class="source">Shawn Henry</p>
<p class="eventtitle"><a class="uri" href="http://videocast.mitsue.co.jp/english/">Mitsue-Links "Meet the Professionals" video series</a></p>
<p class="location">California</p>
<p class="description">As part of the Mitsue-Links "Meet the Professionals" video series, Shawn Henry of W3C WAI talks with Kazuhito Kidachi about shared responsibilities between web site developers, browsers, and assistive technologies; the importance of different types of authoring tools supporting accessibility; how WCAG 2.0 and WAI-ARIA address the more difficult aspects of Web accessibility; WAI's outreach resources; and what led Shawn to accessibility years ago.</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2007</span><span class="mm-dd">-07-04</span></span> <span class="paren">(</span><span class="dd-mmm">4 JUL</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a href="http://www.youtube.com/watch?v=mVFY52CH6Bc" class="imageLink"><img src="/2007/07/tbl-shot" alt="Tim Berners-Lee" height="99" width="120"/>
On the Semantic Web</a>
</p>
<p class="source">Tim Berners-Lee</p>
<p class="eventtitle">Interview</p>
<p class="description">Tim Berners-Lee talks
about the exponential growth pattern of the
Semantic Web, how it resembles the growth of the
Web of Documents, and about building a Web of
data.
</p>
</div>
</li>
<li class="vevent">
<p class="date single"><span class="dtstart"><span class="year">2007</span><span class="mm-dd">-06-01</span></span> <span class="paren">(</span><span class="dd-mmm">JUN</span><span class="paren">)</span></p>
<div class="info-wrap">
<p class="summary">
<a class="imageLink" href="http://yuiblog.com/blog/2007/08/15/video-henry/">
<img src="http://yuiblog.com/assets/shawnhenry.jpg" width="100" height="112" alt="Shawn Henry"/>WCAG 2.0 Presentation for YUI Theater</a>
</p>
<p class="source">YUI Theater</p>
<p class="location">Sunnyvale, California</p>
<p class="description">Learn how the <a href="http://www.w3.org/WAI/intro/wcag20" shape="rect"><acronym title="Web Content Accessibility Guidelines">WCAG</acronym> 2.0 Working Draft</a> differs from WCAG 1.0, get shortcuts for using WCAG 2.0, and hear answers to common questions on <a href="http://www.w3.org/WAI/" shape="rect">W3C WAI</a>'s work in <a href="http://www.w3.org/people/shawn" shape="rect">Shawn Henry</a>'s presentation to the Yahoo! User Interface Developer Network. Shawn also addresses the role of browsers and authoring tools in Web accessibility, and combining standards and usability techniques to optimize accessibility. A <a href="http://www.w3.org/WAI/highlights/200706wcag2pres">text transcript</a> is available.</p>
</div>
</li>
</ul>
</div>
</div>
</div>
<div class="unit size1on4 lastUnit w3c_rhs">
<h2 class="h4 category">Video on W3C</h2>
<p>
<a title="View a video about W3C" href="http://www.w3.org/2011/11/w3c_video.html">
<img alt="Screenshot from W3C video" src="/2011/11/w3c_play.png" width="143" height="200"/>
</a>
</p>
<h2 class="h4 category">Accessibility
Resources</h2>
<ul class="theme right-list"><li><a href="/2008/06/video-notes">Multimedia
Accessibility FAQ</a></li><li><a href="/2007/11/media-policies">Policies
for Media Archiving</a></li></ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div><div id="w3c_footer">
<div id="w3c_footer-inner">
<h2 class="offscreen">Footer Navigation</h2>
<div class="w3c_footer-nav">
<h3>Navigation</h3>
<ul class="footer_top_nav"><li><a href="/">Home</a></li><li><a href="/standards/">Standards</a></li><li><a href="/participate/">Participate</a></li><li><a href="/Consortium/membership">Membership</a></li><li class="last-item"><a href="/Consortium/">About
W3C</a></li></ul>
</div>
<div class="w3c_footer-nav">
<h3>Contact W3C</h3>
<ul class="footer_bottom_nav"><li><a href="/Consortium/contact">Contact</a></li><li><a accesskey="0" href="/Help/">Help and FAQ</a></li><li><a href="/Consortium/sponsor/">Sponsor / Donate</a></li><li><a href="/Consortium/siteindex">Site Map</a></li><li>
<address id="w3c_signature">
<a href="mailto:site-comments@w3.org">Feedback</a>
(<a href="http://lists.w3.org/Archives/Public/site-comments/">archive</a>)
</address>
</li></ul>
</div>
<div class="w3c_footer-nav">
<h3>W3C Updates</h3>
<ul class="footer_follow_nav"><li><a href="http://twitter.com/W3C" title="Follow W3C on Twitter"><img src="/2008/site/images/twitter-bird" alt="Twitter" width="78" height="83" class="social-icon"/></a> <a href="http://identi.ca/w3c" title="See W3C on Identica"><img src="/2008/site/images/identica-logo" alt="Identica" width="91" height="83" class="social-icon"/></a></li></ul>
</div>
<p class="copyright">Copyright © 2012 W3C <sup>®</sup> (
<a href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute of Technology">MIT</acronym></a> ,
<a href="http://www.ercim.org/"><acronym title="European Research Consortium for Informatics and Mathematics">
ERCIM</acronym></a> , <a href="http://www.keio.ac.jp/">Keio</a>) <a href="/Consortium/Legal/ipr-notice">Usage policies
apply</a>.</p>
</div>
</div><!-- Generated from data/scripts.php, ../../smarty/{scripts.tpl} --><!-- At the bottom for performance reasons --><div id="w3c_scripts">
<script type="text/javascript" src="/2008/site/js/main" xml:space="preserve">
//
<!-- -->
//
</script>
</div></body></html>