index.html 116 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
<?xml version="1.0"?>
<!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 http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>W3C Life - W3C Blog - Category Archives</title>
    <style type="text/css" media="all">
    @import "/QA/2006/01/blogstyle.css";
    </style>
    <meta name="keywords" content="W3C, QA, weblog, blog" />
    <meta name="description" content="Archives for the W3C Questions and Answers Weblog - Category W3C Life" />
    <meta name="revision" content="$Id: index.html,v 1.545 2011/12/16 03:02:22 gerald Exp $" />    
   <link rel="alternate" type="application/atom+xml" title="Atom" href="http://www.w3.org/QA/atom.xml" />
   <link rel="alternate" type="application/rss+xml" title="RSS 1.0" href="http://www.w3.org/QA/news.rss" />   
   <link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.w3.org/QA/rsd.xml" />
   
   
</head>


 <body>
    <div id="banner">
      <h1 id="title">
	<a href="http://www.w3.org/"><img height="48" alt="W3C" id="logo" src="http://www.w3.org/Icons/WWW/w3c_home_nb" /></a>
	W3C Blog - Archives
</h1>
    </div>
    
    <ul class="navbar" id="menu">
        <li><strong><a href="/QA/" title="W3C Blog Home">[ W3C Blog ]</a></strong></li>
        <li><a href="/QA/Library/" title="Documents and Publications on Web and Quality">Documents</a></li>
        <li><a href="/QA/Tools/" accesskey="3" title="Validators and other Tools">Tools</a></li>
        <li><a href="/2007/12/qa-blog-help/index#feedback">Feedback</a></li>
    </ul>
<div id="searchbox">
<form method="get" action="http://www.google.com/custom" enctype="application/x-www-form-urlencoded">
<p id="formbox"><input type="text" size="15" class="textfield" name="q" accesskey="E" maxlength="255" /> <input type="submit" class="submitfield" value="Search" id="goButton" name="sa" accesskey="G" /> <input type="hidden" name="cof" value="T:black;LW:72;ALC:#ff3300;L:http://www.w3.org/Icons/w3c_home;LC:#000099;LH:48;BGC:white;AH:left;VLC:#660066;GL:0;AWFID:0b9847e42caf283e;" /><input type="hidden" id="searchW3C" name="sitesearch" checked="checked" value="www.w3.org/QA" /><input type="hidden" name="domains" value="www.w3.org/QA" /></p>
</form>
</div>

    <div id="main"><!-- This DIV encapsulates everything in this page - necessary for the positioning -->

<h2>Archives for Category: W3C Life</h2>
         
        <h3><a href="http://www.w3.org/QA/2011/12/open_web_platform_weekly_summa.html">Open Web Platform Weekly Summary - 2011-12-05 - 2011-12-11</a></h3>

    <p><p>The Open Web Platform weekly summary is about love for the open Web, about the work we do together, about the hours we spent every day to create a better Web. I can work in this domain, because others gave an open environment for working. Let’s keep it open.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/12/open_web_platform_weekly_summa.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on December 12, 2011 11:32 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/http/">HTTP</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/12/open_web_platform_weekly_summa.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/12/open_web_platform_weekly_summa.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2011/12/open_web_platform_weekly_summa.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/12/openweb-weekly-22.html">Open Web Platform Weekly Summary - 2011-11-29 - 2011-12-04</a></h3>

    <p><p>The Open Web Platform weekly summary is about HTML5 oldies, shadows and intents, and protocols.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/12/openweb-weekly-22.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on December  5, 2011  7:42 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/http/">HTTP</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/technology/web_applications_1/">Web Applications</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/12/openweb-weekly-22.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/12/openweb-weekly-22.html#comments">Comments (1)</a>
                                 | <a href="http://www.w3.org/QA/2011/12/openweb-weekly-22.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/11/ben_schwarz_joining_csswg.html">Ben Schwarz joins CSSWG</a></h3>

    <p><p>The better part of a year ago I decided to [make a bookmarklet](http://germanforblack.com/articles/moving-towards-readable-w3c-specs) that improved the display of W3C specifications. To my surprise and delight people took notice, including some of my heros. Fast forward 8 months, I released "[HTML5...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/11/ben_schwarz_joining_csswg.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="">Ben Schwarz</a> on November 30, 2011 12:52 PM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/11/ben_schwarz_joining_csswg.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/11/ben_schwarz_joining_csswg.html#comments">Comments (2)</a>
                                 | <a href="http://www.w3.org/QA/2011/11/ben_schwarz_joining_csswg.html#trackback">TrackBacks (1)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/11/openweb-weekly-21.html">Open Web Platform Weekly Summary - 2011-11-21 - 2011-11-28</a></h3>

    <p><p>This week, one of the main discussions has been around developing (or not) a support for XPath in find and findAll methods. The Open Web Platform weekly summary is also mentioning Web architecture, Web Apps WG hosting new work.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/11/openweb-weekly-21.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on November 28, 2011  3:18 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/11/openweb-weekly-21.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/11/openweb-weekly-21.html#comments">Comments (4)</a>
                                 | <a href="http://www.w3.org/QA/2011/11/openweb-weekly-21.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/11/openweb-weekly-20.html">Open Web Platform Weekly Summary - 2011-11-14 - 2011-11-20</a></h3>

    <p><p>This week, the Open Web Platform weekly summary is about HTML5 Tidy (yes it is back!), A few things about web apps such as storage mechanisms, and a few discussions about DOM properties. CSS has been discussing a few things including the issue of vendor extensions. And more bite sized information. Enjoy!</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/11/openweb-weekly-20.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on November 22, 2011  8:05 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/11/openweb-weekly-20.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/11/openweb-weekly-20.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2011/11/openweb-weekly-20.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/11/openweb-weekly-19.html">Open Web Platform Weekly Summary - 2011-11-07 - 2011-11-13</a></h3>

    <p><p>This week, the Open Web Platform weekly summary is about hgroup and time elements, lang attribute. There are discussions on starting work on Web Intents and how to create a simpler DOM for documents fragments. Plenty of other things. Enjoy.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/11/openweb-weekly-19.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on November 15, 2011  2:15 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/11/openweb-weekly-19.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/11/openweb-weekly-19.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2011/11/openweb-weekly-19.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/11/openweb-weekly-18.html">Open Web Platform Weekly Summary - 2011-10-31 - 2011-11-06</a></h3>

    <p><p>Last week, there was the annual W3C TPAC. The HTML Working Group met (day 1, day 2) and many other groups for discussing general issues. I introduced the Open Web Platform weekly summary and asked feedback on how to improve...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/11/openweb-weekly-18.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on November  7, 2011  9:36 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/11/openweb-weekly-18.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/11/openweb-weekly-18.html#comments">Comments (4)</a>
                                 | <a href="http://www.w3.org/QA/2011/11/openweb-weekly-18.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/09/openweb-weekly-17.html">Open Web Platform Weekly Summary - 2011-08-30 - 2011-09-11</a></h3>

    <p><p>In my tracking of the Open Web Platform for writing the weekly summary, I decided to be a bit more careful on what is happening on the HTML WG bug tracker. A lot of the discussion is happening there too. The biggest issue being the number of useless comments or spam.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/09/openweb-weekly-17.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on September 12, 2011  8:22 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/09/openweb-weekly-17.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/09/openweb-weekly-17.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2011/09/openweb-weekly-17.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/08/openweb-weekly-16.html">Open Web Platform Monthly Summary - 2011-07-29 - 2011-08-29</a></h3>

    <p><p> I have decided to change a bit the style of weekly summary of the Open Web Platform. Instead of just going through the list of mails, I will try to focus on more specific things and give more context...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/08/openweb-weekly-16.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on August 30, 2011  8:17 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/08/openweb-weekly-16.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/08/openweb-weekly-16.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2011/08/openweb-weekly-16.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/07/openweb-weekly-15.html">Open Web Platform Weekly Summary - 2011-07-13 - 2011-07-28</a></h3>

    <p><p>The weekly summary of the Open Web Platform is out. A lot of discussion about HTTP. The IETF has been meeting recently in Canada. Anne Van Kesteren covers what I have not in his report.</p>

<p>HTML5 is still in Last Call but the last call is finishing on August 3, 2011</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/07/openweb-weekly-15.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on July 29, 2011  7:44 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/07/openweb-weekly-15.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/07/openweb-weekly-15.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2011/07/openweb-weekly-15.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/07/openweb-weekly-14.html">Open Web Platform Weekly Summary - 2011-07-06 - 2011-07-12</a></h3>

    <p><p>The weekly summary of the Open Web Platform is out. The big discussions from last week have continued this week. Mutation and Canvas accessibility. Anne Van Kesteren covers what I have not in his report.</p>

<p>HTML5 is still in Last Call.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/07/openweb-weekly-14.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on July 14, 2011  8:46 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/07/openweb-weekly-14.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/07/openweb-weekly-14.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2011/07/openweb-weekly-14.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/07/openweb-weekly-13.html">Open Web Platform Weekly Summary - 2011-06-29 - 2011-07-05</a></h3>

    <p><p>The weekly summary of the Open Web Platform is out. There was a few giant threads, be prepared to mutate any opinions about these events. Read also Anne van Kesteren's report. HTML5 is still in Last Call. Conversations Proposals Maciej...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/07/openweb-weekly-13.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on July  6, 2011  8:16 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/07/openweb-weekly-13.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/07/openweb-weekly-13.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2011/07/openweb-weekly-13.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/06/openweb-weekly-12.html">Open Web Platform Weekly Summary - 2011-06-21 - 2011-06-28</a></h3>

    <p><p>The weekly summary of the Open Web Platform is out. I like the fact that Anne Van Kesteren has a different overview than mine. His last report. HTML5 is still in Last Call. Conversations Proposals WebKit Team has been experimenting...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/06/openweb-weekly-12.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on June 29, 2011  9:00 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/06/openweb-weekly-12.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/06/openweb-weekly-12.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2011/06/openweb-weekly-12.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/06/openweb-weekly-11.html">Open Web Platform Weekly Summary - 2011-05-17 - 2011-06-20</a></h3>

    <p><p>Let's restart the Openweb platform weekly summary. It has been almost one month since the last time. HTML5 is in Last Call and there were a lot of discussions on many mailing lists. </p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/06/openweb-weekly-11.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on June 21, 2011  8:08 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/06/openweb-weekly-11.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/06/openweb-weekly-11.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2011/06/openweb-weekly-11.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/05/openweb-weekly-10.html">Open Web Platform Weekly Summary - 2011-05-09 - 2011-05-16</a></h3>

    <p><p>The HTML WG is about to reach a very important step of the current W3C Process: Last Call. For a W3C Technology, it is the moment where the WG members think, they have solve any major issues. The document is considered mature and stable enough. Last Call is here to give another chance for all participants to review a stable version of the specification. All comments will be formally recorded and answered.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/05/openweb-weekly-10.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on May 16, 2011  8:22 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/05/openweb-weekly-10.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/05/openweb-weekly-10.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2011/05/openweb-weekly-10.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/05/openweb-weekly-09.html">Open Web Platform Weekly Summary - 2011-04-25 - 2011-05-08</a></h3>

    <p><p>I have been busy the last two weeks with traveling for conferences and workshop. I skipped the last weekly summary of the Open Web Platform. Let’s get that right on track and give information for the last two weeks about HTML5 and broader topics such as Web apps discussions and HTTP. The May 22 deadline for entering Last Call is approaching quickly. In two weeks, a new challenging phase of the work is starting. As a reminder we do not exit a recommendation phase but always entering the next one.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/05/openweb-weekly-09.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on May  8, 2011  7:51 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/05/openweb-weekly-09.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/05/openweb-weekly-09.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2011/05/openweb-weekly-09.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/04/openweb-weekly-08.html">Open Web Platform Weekly Summary - 2011-04-18 - 2011-04-24</a></h3>

    <p><p>This was quite a quiet week for the 8th edition at the exception of the CSS Working Group which I could not follow properly. Feel free to chime in the comments to add information about CSS or other groups.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/04/openweb-weekly-08.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on April 24, 2011  9:27 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/04/openweb-weekly-08.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/04/openweb-weekly-08.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2011/04/openweb-weekly-08.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/04/openweb-weekly-07.html">Open Web Platform Weekly Summary - 2011-04-11 - 2011-04-17</a></h3>

    <p><p>For this 7th edition, the HTML WG had discussions about accessibility related to images and tables with a few formal objections. The Last Call of HTML5 is approaching at a fast pace. There are active discussions about FileAPI and IndexedDB, which are fundamental bricks to enable Web applications in the browser. In the meantime, the HTTP Working Group has published a new series of drafts.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/04/openweb-weekly-07.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on April 17, 2011  8:17 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/04/openweb-weekly-07.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/04/openweb-weekly-07.html#comments">Comments (4)</a>
                                 | <a href="http://www.w3.org/QA/2011/04/openweb-weekly-07.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/04/coming_soon_w3c_community_grou.html">Coming Soon: W3C Community Groups and Business Groups</a></h3>

    <p><p>This May, W3C plans to launch two new programs designed to make it easy for developers, users, and other stakeholders to discuss and develop Web technology. The first we call Community Groups. A Community Group is an open forum for...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/04/coming_soon_w3c_community_grou.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Jacobs/">Ian Jacobs</a> on April 12, 2011  9:19 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/04/coming_soon_w3c_community_grou.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/04/coming_soon_w3c_community_grou.html#comments">Comments (6)</a>
                                 | <a href="http://www.w3.org/QA/2011/04/coming_soon_w3c_community_grou.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/04/openweb-weekly-06.html">Open Web Platform Weekly Summary - 2011-04-04 - 2011-04-10</a></h3>

    <p><p>Shelley Powers, like me, published a late weekly. We are totally in synchronization in covering the Open Web Platform weekly news from HTML5 and broader topics. That said it was again quite active not only on the HTML WG mailing list but also on the Web apps WG mailing list. W3C is opening more ways to contribute and the CSS 2.1 is officially reaching Proposed Recommendation. Read and tell me if anything is missing.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/04/openweb-weekly-06.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on April 10, 2011  8:49 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/04/openweb-weekly-06.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/04/openweb-weekly-06.html#comments">Comments (2)</a>
                                 | <a href="http://www.w3.org/QA/2011/04/openweb-weekly-06.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/04/openweb-weekly-05.html">Open Web Platform Weekly Summary - 2011-03-28 - 2011-04-03</a></h3>

    <p><p>When we start writing and or read about the activities around the Open Web Platform, we realize that the Web has never been that active. Everyone is proposing, developping, testing. And even if this weekly news from HTML5 and broader topics seemed to be long, it doesn’t cover everything. It is also important to realize that if you are passionate about one of these topics, the full information is accessible and open. Quite exciting. Some of these topics could be the source of long technical blog posts. If you do, please leave a comment or let me know.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/04/openweb-weekly-05.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on April  3, 2011  8:43 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/04/openweb-weekly-05.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/04/openweb-weekly-05.html#comments">Comments (1)</a>
                                 | <a href="http://www.w3.org/QA/2011/04/openweb-weekly-05.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/03/openweb-weekly-04.html">Open Web Platform Weekly Summary - 2011-03-21 - 2011-03-27</a></h3>

    <p><p>As Shelley Powers mentioned  this week was quite quiet, but there were a couple of decisions. A few new drafts and proposals and an interesting discussions about Web applications caching systems. The debate around longdesc attribute is far to be finished. <br />
</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/03/openweb-weekly-04.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on March 27, 2011  8:28 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/03/openweb-weekly-04.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/03/openweb-weekly-04.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2011/03/openweb-weekly-04.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/03/openweb-weekly-03.html">Open Web Platform Weekly Summary - 2011-03-14 - 2011-03-20</a></h3>

    <p><p>This was a big week in terms of decisions. I recommend to read carefully the decision made by the HTML Working Group. They are always very detailed and give a very good overview about the issues. They also propose a way to reopen the issue with meaningful materials.  There have been many proposals and there are two workshops. W3C Workshops are opened to anyone.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/03/openweb-weekly-03.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on March 20, 2011  9:52 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/03/openweb-weekly-03.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/03/openweb-weekly-03.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2011/03/openweb-weekly-03.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/03/openweb-weekly-02.html">Open Web Platform Weekly Summary - 2011-03-07 - 2011-03-13</a></h3>

    <p><p>This is the second edition of our weekly summary about the Open Web Platform. The intent is to give an overview of the discussions, proposals, decisions which have happened during the last week around HTML5 and sometimes more broadly the Open Web Platform. This weekly summary covers events in multiple W3C groups, and some outside events as well. Feel free to chime in the comments and add information or ask for more details.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/03/openweb-weekly-02.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on March 13, 2011  9:26 PM in <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/03/openweb-weekly-02.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/03/openweb-weekly-02.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2011/03/openweb-weekly-02.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/03/open-web-weekly-summary.html">Open Web Platform Weekly Summary - 2011-02-28 - 2011-03-06</a></h3>

    <p><p>We are starting this week a weekly summary about the Open Web Platform. The intent is to give an overview of the discussions, proposals, decisions which have happened during the last week around the Open Web Platform with a focus on HTML5. This weekly summary covers events in multiple W3C groups, and some outside events as well. Feel free to chime in the comments and add information or ask for more details. This is an experiment; please send feedback to Karl Dubost or here in the comments.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/03/open-web-weekly-summary.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on March  7, 2011 10:34 PM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/03/open-web-weekly-summary.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/03/open-web-weekly-summary.html#comments">Comments (3)</a>
                                 | <a href="http://www.w3.org/QA/2011/03/open-web-weekly-summary.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2011/01/100_specifications_for_the_ope.html">100 Specifications for the Open Web Platform and Counting</a></h3>

    <p>W3C's release of the HTML5 logo has prompted a lot of discussion
about the state of standardization of the <a
href='http://www.w3.org/2010/Talks/0117-next-web-plh/nextweb.html'>open
web platform</a>. W3C is standardizing more than 100 specifications in at least
13 W3C Working Groups that one could consider part of the
platform.</p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/01/100_specifications_for_the_ope.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/LeHegaret/">Philippe Le Hégaret</a> on January 28, 2011  3:28 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/technology/web_applications_1/">Web Applications</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/01/100_specifications_for_the_ope.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/01/100_specifications_for_the_ope.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2011/01/100_specifications_for_the_ope.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2010/11/progress_in_lyon_-_tpac_2010.html">Progress in Lyon - TPAC 2010</a></h3>

    <p><p>W3C met in Lyon, France 1-5 November for an annual W3C gathering we call "TPAC" (for Technical Plenary and Advisory Committee, pronounced "T-pack"). This was my first TPAC. Based on what I saw and what I heard it was a...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2010/11/progress_in_lyon_-_tpac_2010.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Jeff/">Jeff Jaffe</a> on November 29, 2010  7:54 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/ceo/">CEO</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/11/progress_in_lyon_-_tpac_2010.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2010/11/progress_in_lyon_-_tpac_2010.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2010/11/progress_in_lyon_-_tpac_2010.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2010/10/w3c_technical_plenary_to_html5.html">W3C Technical Plenary: To HTML5 and beyond!</a></h3>

    <p><p>Next week is the annual <a href='http://www.w3.org/2010/11/TPAC/'>W3C technical plenary</a>, aka TPAC 2010. It brings together participants in the W3C Community for an energetic week of coordinated work and discussion. Some sessions during the middle of the week are relevant to the HTML platform and its future.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2010/10/w3c_technical_plenary_to_html5.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/LeHegaret/">Philippe Le Hégaret</a> on October 29, 2010  5:04 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/10/w3c_technical_plenary_to_html5.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2010/10/w3c_technical_plenary_to_html5.html#comments">Comments (3)</a>
                                 | <a href="http://www.w3.org/QA/2010/10/w3c_technical_plenary_to_html5.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2010/06/make_your_presentations_access.html">Make Your Presentations Accessible to All</a></h3>

    <p><em>Do you remember a time when people around you broke out in laughter,
but you didn't hear the joke? You could be doing a similar thing to your audience — leaving some
people out....</em> Read on to learn how to make presentations, talks, meetings, and training accessible to all
of your potential audience, including people with disabilities and others...</p>


   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2010/06/make_your_presentations_access.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Shawn/">Shawn Henry</a> on June 15, 2010  3:45 PM in <a href="http://www.w3.org/QA/archive/technology/accessibility/">Accessibility</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/publications/">Publications</a>, <a href="http://www.w3.org/QA/archive/web_spotting/reference/">Reference</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/technology_101/">Technology 101</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/06/make_your_presentations_access.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2010/06/make_your_presentations_access.html#comments">Comments (1)</a>
                                 | <a href="http://www.w3.org/QA/2010/06/make_your_presentations_access.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2010/06/thanks_for_a_great_15_years_at.html">Thanks for a great 15 years at W3C</a></h3>

    <p><p>After 15 years working with all of you all around the world on Web technologies and standards, I'm taking a position as a Biomedical Informatics Software Engineer in the department of biostatistics at the University of Kansas Medical center. The...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2010/06/thanks_for_a_great_15_years_at.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on June  2, 2010  7:04 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/web_architecture/">Web Architecture</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/06/thanks_for_a_great_15_years_at.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2010/06/thanks_for_a_great_15_years_at.html#comments">Comments (30)</a>
                                 | <a href="http://www.w3.org/QA/2010/06/thanks_for_a_great_15_years_at.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2010/02/working_group_publication_requ.html">Working Group Publication Requests and Approval</a></h3>

    <p><p>In response to some questions about W3C process from the past few days, a brief FAQ is being published regarding the Working Group publication requests and approval.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2010/02/working_group_publication_requ.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/LeHegaret/">Philippe Le Hégaret</a> on February 16, 2010  5:04 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/publications/">Publications</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/02/working_group_publication_requ.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2010/02/working_group_publication_requ.html#comments">Comments (7)</a>
                                 | <a href="http://www.w3.org/QA/2010/02/working_group_publication_requ.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2010/02/w3c_chairs_angels.html">W3C Chairs angels</a></h3>

    <p><p>Some of you are familiar with the W3C Chairs angels, three home-made bots living in IRC, that are truly essential to the W3C Working Groups conducting their work on the phone: Trackbot, the toolbox, is the bot for creating and...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2010/02/w3c_chairs_angels.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/koalie/">Coralie Mercier</a> on February  8, 2010  3:52 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/02/w3c_chairs_angels.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2010/02/w3c_chairs_angels.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2010/02/w3c_chairs_angels.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2009/11/broadening_the_w3c_community.html">W3C community bridges unicorns and werewolves #tpac09</a></h3>

    <p><p> The theme photo for W3C presentations at the TPAC09 showed the Natural Bridges state beach of Santa Cruz, California. We met in Santa Clara (not far from Santa Cruz) 2-6 November in order to bridge various communities and bring...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2009/11/broadening_the_w3c_community.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/koalie/">Coralie Mercier</a> on November 13, 2009  5:41 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/technology/social_networking/">Social Networking</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/web_spotting/">Web Spotting</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2009/11/broadening_the_w3c_community.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2009/11/broadening_the_w3c_community.html#comments">Comments (4)</a>
                                 | <a href="http://www.w3.org/QA/2009/11/broadening_the_w3c_community.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2009/05/w3c_is_micro-blogging.html">W3C is micro-blogging</a></h3>

    <p><p>This is a quick note to announce that we're joining the µ-blogging community! We can be followed on identi.ca/w3c, as well as twitter.com/w3c....</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2009/05/w3c_is_micro-blogging.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/koalie/">Coralie Mercier</a> on May 12, 2009 11:57 AM in <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2009/05/w3c_is_micro-blogging.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2009/05/w3c_is_micro-blogging.html#comments">Comments (3)</a>
                                 | <a href="http://www.w3.org/QA/2009/05/w3c_is_micro-blogging.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2009/04/semtech_2009_conference_progra.html">SemTech 2009 conference program public</a></h3>

    <p><p>The program of the 2009 Semantic Technologies conference is now public. Just as last year, it promises to be a busy and interesting week! The conference is on Semantic Technologies in general, but a large percentage (majority?) of the papers...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2009/04/semtech_2009_conference_progra.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Ivan">Ivan Herman</a> on April  7, 2009  9:26 AM in <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a>, <a href="http://www.w3.org/QA/archive/technology/">Technology</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2009/04/semtech_2009_conference_progra.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2009/04/semtech_2009_conference_progra.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2009/04/semtech_2009_conference_progra.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/12/validator_donation_program.html">Validator Donation Program: day 2</a></h3>

    <p><a href="/QA/Tools/Donate"><img style="border:none; vertical-align: middle;"  alt="I Love Validator" src="http://www.w3.org/QA/Tools/I_heart_validator.png" /></a> What's this new <a href="/QA/Tools/Donate">Validator Donation Program</a>? Why a donation campaign? What would W3C do with that money? And isn't w3c really, really rich already anyway?</p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/12/validator_donation_program.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/olivier/">olivier Théreaux</a> on December 12, 2008  7:42 PM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/">W3C・QA News</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/12/validator_donation_program.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/12/validator_donation_program.html#comments">Comments (7)</a>
                                 
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/12/a_personal_reflection_on_wcag20.html">A personal reflection on the WCAG 2.0 publication</a></h3>

    <p>Today W3C WAI published Web Content Accessibility Guidelines (<a href="http://www.w3.org/TR/WCAG20/">WCAG</a>) 2.0. This is a momentous occasion. <a href="http://www.w3.org/QA/2008/12/wcag_20_is_finalized.html">Another post</a> links to the official announcements. Here is another perspective, my personal perspective...</p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/12/a_personal_reflection_on_wcag20.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Shawn/">Shawn Henry</a> on December 11, 2008  3:11 PM in <a href="http://www.w3.org/QA/archive/technology/accessibility/">Accessibility</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/publications/">Publications</a>, <a href="http://www.w3.org/QA/archive/technology/">Technology</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/">W3C・QA News</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/12/a_personal_reflection_on_wcag20.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/12/a_personal_reflection_on_wcag20.html#comments">Comments (1)</a>
                                 | <a href="http://www.w3.org/QA/2008/12/a_personal_reflection_on_wcag20.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/12/from_iran_with_love.html">From Iran, with love</a></h3>

    <p><p> Season greetings are slightly in advance! And what a lovely surprise! I received a big envelope from Iran, containing 66 letters printed on glossy paper for each of the people of W3C. The letter bears a message of acknowledgment...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/12/from_iran_with_love.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/koalie/">Coralie Mercier</a> on December 10, 2008  8:46 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/12/from_iran_with_love.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/12/from_iran_with_love.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/12/from_iran_with_love.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/11/joys_and_challenges_of_organiz.html">Joys and challenges of organizing TPAC2008</a></h3>

    <p><p>I invite you to read about TPAC2008, the event that was organized twice. I invite you to read about the main challenges faced by the meeting planner(s). I will also share the joys it brings.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/11/joys_and_challenges_of_organiz.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://my.opera.com/koalie/">Coralie Mercier</a> on November 19, 2008 12:33 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/11/joys_and_challenges_of_organiz.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/11/joys_and_challenges_of_organiz.html#comments">Comments (4)</a>
                                 | <a href="http://www.w3.org/QA/2008/11/joys_and_challenges_of_organiz.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/11/w3c-open-web-standards.html">W3C Open Web Standards</a></h3>

    <p><p>Last week in Tokyo, there was the wonderful Web Directions East 2008. It was yet another opportunity to hear and discuss how people feel about W3C open Web standards. Two patterns often arise in these discussions: implementation first and specification first. Both lead to reproaches. What is the role of W3C?</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/11/w3c-open-web-standards.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on November 10, 2008  2:32 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/11/w3c-open-web-standards.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/11/w3c-open-web-standards.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/11/w3c-open-web-standards.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/11/meet-w3c-staff.html">Meet W3C Staff version 2008</a></h3>

    <p><p>Who is the W3C Staff? A big picture…</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/11/meet-w3c-staff.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on November  5, 2008 12:52 AM in <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/11/meet-w3c-staff.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/11/meet-w3c-staff.html#comments">Comments (2)</a>
                                 | <a href="http://www.w3.org/QA/2008/11/meet-w3c-staff.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/10/tpac2008-listen_discuss.html">W3C TPAC 2008 - Listen, Read, Discuss</a></h3>

    <p><p>Not in Mandelieu for the W3C TPAC? You can still listen to the plenary day presentations, and even discuss with others on the IRC channel.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/10/tpac2008-listen_discuss.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/olivier/">olivier Théreaux</a> on October 22, 2008  7:26 AM in <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/10/tpac2008-listen_discuss.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/10/tpac2008-listen_discuss.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/10/tpac2008-listen_discuss.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/10/normative-references-conformance.html">Normative References to Moving Targets are Dangerous</a></h3>

    <p><p>When creating a requirement in a specification should I link to it or should I include it. The answer depends on the context.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/10/normative-references-conformance.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on October 20, 2008  2:22 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/technology_101/">Technology 101</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/10/normative-references-conformance.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/10/normative-references-conformance.html#comments">Comments (3)</a>
                                 | <a href="http://www.w3.org/QA/2008/10/normative-references-conformance.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/10/w3c-chairs-tshirt.html">W3C Chairs T-Shirt</a></h3>

    <p><p>This year the chairs have a t-shirt. Discover the story behind this.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/10/w3c-chairs-tshirt.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on October 20, 2008 12:21 PM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/10/w3c-chairs-tshirt.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/10/w3c-chairs-tshirt.html#comments">Comments (10)</a>
                                 | <a href="http://www.w3.org/QA/2008/10/w3c-chairs-tshirt.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/10/w3c-tpac-network.html">The network at W3C TPAC 2008</a></h3>

    <p><p>Vivien gave us technical details about tpac wifi.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/10/w3c-tpac-network.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on October 19, 2008  1:05 PM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/10/w3c-tpac-network.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/10/w3c-tpac-network.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/10/w3c-tpac-network.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/10/w3c-tpac-2008-starting.html">W3C TPAC 2008 - starting</a></h3>

    <p><p>The big social event of W3C is starting. Join the fun locally or remotely.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/10/w3c-tpac-2008-starting.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on October 19, 2008 11:40 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/10/w3c-tpac-2008-starting.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/10/w3c-tpac-2008-starting.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/10/w3c-tpac-2008-starting.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/09/slideshow-must-go-on.html">The Slideshow Must Go On</a></h3>

    <p><p>These are a few hints on how to create a slideshow for a conference. Web conferences busy bees are often in need of illustrations for their slides. There are solutions to easily spice up your technology talk.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/09/slideshow-must-go-on.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on September 25, 2008  1:23 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/web_spotting/tutorials/">Tutorials</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/09/slideshow-must-go-on.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/09/slideshow-must-go-on.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/09/slideshow-must-go-on.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/09/parisweb-2008.html">ParisWeb 2008 - registration is open</a></h3>

    <p><a href="http://www.paris-web.fr/2008/">ParisWeb 2008</a> registration is open. This is a unique opportunity to meet active participants of the  W3C communities.</p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/09/parisweb-2008.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on September 18, 2008  4:49 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/09/parisweb-2008.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/09/parisweb-2008.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/09/parisweb-2008.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/09/world-wide-web-foundation.html">World Wide Web Foundation Launched</a></h3>

    <p><p>Last week, I was busy with the launch of the <a href="http://www.webfoundation.org/">World Wide Web Foundation</a>, but I will resume to my normal schedule on Q&amp;A blog. </p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/09/world-wide-web-foundation.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on September 16, 2008  3:33 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/09/world-wide-web-foundation.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/09/world-wide-web-foundation.html#comments">Comments (3)</a>
                                 | <a href="http://www.w3.org/QA/2008/09/world-wide-web-foundation.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/08/web-directions-east-2008.html">Web Directions East 2008</a></h3>

    <p><p>Web Directions is in Tokyo for the first time on November 7-9, 2008.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/08/web-directions-east-2008.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on August 19, 2008  6:05 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/08/web-directions-east-2008.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/08/web-directions-east-2008.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/08/web-directions-east-2008.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/07/proposed_w3c_test_suite_licens.html">Proposed W3C Test Suite Licenses; Feedback Welcome</a></h3>

    <p><p>Several W3C Working Group participants have requested that W3C change its software license to make it easier for developers to re-use test cases in software development, bugtracking, and other scenarios. We have created a proposal for new licenses: a 3-clause...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/07/proposed_w3c_test_suite_licens.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Jacobs/">Ian Jacobs</a> on July 18, 2008  5:18 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/07/proposed_w3c_test_suite_licens.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/07/proposed_w3c_test_suite_licens.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/07/proposed_w3c_test_suite_licens.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/07/dear_w3c.html">Dear W3C…</a></h3>

    <p><p>What is the best place to talk to the W3C? With many <a href="http://lists.w3.org/" title="W3C Public Mailing List Archives">mailing-lists</a>, blogs or wikis, groups in the organization have more than a couple of ears on. Yet sometimes one stumbles upon the best feedback or ideas on other random blogs or sites. And there comes the dilemma: centralize and simplify feedback, or spend more time scouting for faraway ideas?</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/07/dear_w3c.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/olivier/">olivier Théreaux</a> on July 16, 2008 10:41 PM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/07/dear_w3c.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/07/dear_w3c.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/07/dear_w3c.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/06/what_benevolent_dictator.html">What Benevolent Dictator?</a></h3>

    <p><p>From time to time I hear people refer to Tim Berners-Lee as a "benevolent dictator." In most cases they utter the phrase through a smile, but I find the phrase distasteful. It is also inaccurate. The W3C process has evolved...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/06/what_benevolent_dictator.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Jacobs/">Ian Jacobs</a> on June 27, 2008  8:08 PM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/06/what_benevolent_dictator.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/06/what_benevolent_dictator.html#comments">Comments (3)</a>
                                 | <a href="http://www.w3.org/QA/2008/06/what_benevolent_dictator.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/06/war-of-the-worlds.html">The War of the Worlds</a></h3>

    <p><p>Some people are amazing, they are creators. They make complex things, beautiful and simple. They make the world a place of exploration and discovering.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/06/war-of-the-worlds.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on June 27, 2008  7:27 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/06/war-of-the-worlds.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/06/war-of-the-worlds.html#comments">Comments (4)</a>
                                 | <a href="http://www.w3.org/QA/2008/06/war-of-the-worlds.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/06/contribute-w3c-work.html">How to contribute to W3C work… with a PhD</a></h3>

    <p><p>A few months ago, I was explaining how you can participate to W3C work in a different way: writing tutorials, writing quick tips. I found out last week a new and original way to participate to W3C work. </p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/06/contribute-w3c-work.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on June 23, 2008  3:00 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/06/contribute-w3c-work.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/06/contribute-w3c-work.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/06/contribute-w3c-work.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/05/w3c-process-perception.html">W3C, Process and Perception</a></h3>

    <p><p>W3C Process is often misunderstood. Arnaud Le Hors shared his impressions about it.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/05/w3c-process-perception.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on May  1, 2008 12:59 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/05/w3c-process-perception.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/05/w3c-process-perception.html#comments">Comments (2)</a>
                                 | <a href="http://www.w3.org/QA/2008/05/w3c-process-perception.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/03/pre-obsolete-design.html">Pre-Obsolete Design</a></h3>

    <p><p>Creating a specification is a challenge and a compromise. Far to be perfect it is an attempt at establishing stability for  a little while. The difficulty is often how long?</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/03/pre-obsolete-design.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on March 25, 2008  2:23 AM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/03/pre-obsolete-design.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/03/pre-obsolete-design.html#comments">Comments (1)</a>
                                 | <a href="http://www.w3.org/QA/2008/03/pre-obsolete-design.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/03/world-map-statistics.html">World Map and Statistics Challenge</a></h3>

    <p><p>Showing statistics on an SVG world map is recurrent. I would love to have a program to do that.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/03/world-map-statistics.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on March 24, 2008  5:17 AM in <a href="http://www.w3.org/QA/archive/technology/svg/">SVG</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/03/world-map-statistics.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/03/world-map-statistics.html#comments">Comments (6)</a>
                                 | <a href="http://www.w3.org/QA/2008/03/world-map-statistics.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/03/w3c-team-planet.html">W3C Team Planet... or Galaxy</a></h3>

    <p><p>The W3C staff (or W3C Team) are the people employed by the W3C organization. I'm one of them. Some of us have blogs for quite a long time, personal or professional, or both. The question of creating a public aggregation...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/03/w3c-team-planet.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on March 24, 2008  2:29 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/03/w3c-team-planet.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/03/w3c-team-planet.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/03/w3c-team-planet.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/03/fix-the-web.html">If you had to fix the Web...</a></h3>

    <p><p>"If you had to fix the Web... what would you do?"</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/03/fix-the-web.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on March 24, 2008  2:22 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/03/fix-the-web.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/03/fix-the-web.html#comments">Comments (1)</a>
                                 | <a href="http://www.w3.org/QA/2008/03/fix-the-web.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/03/css-drive-with-songs.html">Get a CSS Drive</a></h3>

    <p><p>Get a CSS Drive with your favorite geek song.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/03/css-drive-with-songs.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on March 21, 2008  9:12 AM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/03/css-drive-with-songs.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/03/css-drive-with-songs.html#comments">Comments (1)</a>
                                 | <a href="http://www.w3.org/QA/2008/03/css-drive-with-songs.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/03/w3c-mailing-lists.html">Many ways to access W3C mailing-lists</a></h3>

    <p><p>W3C may be about Web technologies, but a lot of its discussions happen... by e-mail. With more than 600,000 public mails archived to date, how can we manage the information overload? And how can that influence our online behaviour?</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/03/w3c-mailing-lists.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/olivier/">olivier Théreaux</a> on March 18, 2008  4:10 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/web_spotting/">Web Spotting</a>, <a href="http://www.w3.org/QA/archive/technology/xml/">XML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/03/w3c-mailing-lists.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/03/w3c-mailing-lists.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/03/w3c-mailing-lists.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/03/w3c_1000_translations.html">W3C reaches its 1000th translation!</a></h3>

    <p><p>As W3C gets ready for its upcoming <a href="http://www.w3.org/Consortium/meetings">Advisory Committee Meeting</a> in Beijing, we have reached another important milestone as an International Consortium.  We have received the <a href="http://www.w3.org/Consortium/Translation/">1000th volunteer translation</a> of a W3C document!</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/03/w3c_1000_translations.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Mauro/">Mauro Nunez</a> on March 12, 2008  7:25 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/03/w3c_1000_translations.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/03/w3c_1000_translations.html#comments">Comments (2)</a>
                                 | <a href="http://www.w3.org/QA/2008/03/w3c_1000_translations.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/02/xml_10_has_been_launched.html">XML 10 has been launched</a></h3>

    <p><p>W3C has launched a very mini site for <a href="http://www.w3.org/2008/xml10/">XML tenth anniversary</a>. Already ten years of XML. </p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/02/xml_10_has_been_launched.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on February 12, 2008  9:56 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/technology/xml/">XML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/02/xml_10_has_been_launched.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/02/xml_10_has_been_launched.html#comments">Comments (2)</a>
                                 | <a href="http://www.w3.org/QA/2008/02/xml_10_has_been_launched.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/12/get_involved.html">Get Involved!</a></h3>

    <p><p>The Web exists because people wanted to connect to each others and share. They got involved. The first Web site was a <a href="http://www.w3.org/History/19921103-hypertext/hypertext/WWW/News/9201.html">kind of blog</a> written by Tim Berners-Lee. People were experimenting, implementing, writing manual and tutorials. Tim was announcing the new servers that you could count each month on your fingers. <strong>You too can be part of it</strong>.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/12/get_involved.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on December 20, 2007 10:47 PM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/web_spotting/tutorials/">Tutorials</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/web_spotting/">Web Spotting</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/12/get_involved.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/12/get_involved.html#comments">Comments (2)</a>
                                 | <a href="http://www.w3.org/QA/2007/12/get_involved.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/12/on_considering_the_role_of_w3c_1.html">On considering the role of W3C Members in Working Group decisions</a></h3>

    <p><p>On 29 November 2007, Dan Connolly, co-Chair of the HTML Working Group pointed me to an IRC log of discussion about HTML 5 which prompted this question: is it acceptable to take into consideration the role of each W3C member...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/12/on_considering_the_role_of_w3c_1.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Jacobs/">Ian Jacobs</a> on December 14, 2007 11:12 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/12/on_considering_the_role_of_w3c_1.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/12/on_considering_the_role_of_w3c_1.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2007/12/on_considering_the_role_of_w3c_1.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/11/yet-another-design-in-w3c-team.html">Yet Another Design in W3C Team</a></h3>

    <p><p>Working at W3C is an interesting experience. The Team is usually composed of 60 to 70 persons, with the possibility to edit mostly all parts of the Web site which is under cvs (thank you for giving the possibility of...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/11/yet-another-design-in-w3c-team.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on November 30, 2007  3:00 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/yet-another-design-in-w3c-team.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/11/yet-another-design-in-w3c-team.html#comments">Comments (5)</a>
                                 | <a href="http://www.w3.org/QA/2007/11/yet-another-design-in-w3c-team.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/11/video-on-the-web-the-article.html">Video On the Web - the articles!</a></h3>

    <p><p>You might remember that the W3C is organizing a workshop about [Video On the Web](http://www.w3.org/2007/08/video/) in the Silicon Valley at San Jose (12-13 December 2007). The Workshop will be simultaneously displayed in Brussels allowing remote participation from Europe. When W3C...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/11/video-on-the-web-the-article.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on November 29, 2007  7:44 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/video-on-the-web-the-article.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/11/video-on-the-web-the-article.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2007/11/video-on-the-web-the-article.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/11/blue-beany-day.html">Blue Beany Day - Web standards!</a></h3>

    <p><p>Today is Blue Beany Day. A good opportunity to be goofy with an excuse ;) >Monday, November 26, 2007 is the day thousands of Standardistas (people who support web standards) will wear a Blue Beanie to show their support for...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/11/blue-beany-day.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on November 26, 2007  8:20 PM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/">W3C・QA News</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/blue-beany-day.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/11/blue-beany-day.html#comments">Comments (3)</a>
                                 | <a href="http://www.w3.org/QA/2007/11/blue-beany-day.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/11/w3c_on_freenode.html">W3C on Freenode</a></h3>

    <p><p>Just realized that some of you might not know, but some people of W3C hang out on #w3c channel on [IRC ](http://en.wikipedia.org/wiki/IRC) freenode server. I will be there too, not 24/7, but as much as possible. You are welcome....</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/11/w3c_on_freenode.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on November 21, 2007  1:14 AM in <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/w3c_on_freenode.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/11/w3c_on_freenode.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2007/11/w3c_on_freenode.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/11/three_buckets_of_thoughts.html">Three Buckets of Thoughts</a></h3>

    <p><p>Kevin Lawer has written a great blog post Web Standards' Three Buckets of Pain explaining cultural differences between communities. Opening up the W3C Justin Thorp commented (emphasis is mine): Karl, I'm really excited by your efforts with opening the W3C....</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/11/three_buckets_of_thoughts.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on November 21, 2007 12:50 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/">W3C・QA News</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/three_buckets_of_thoughts.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/11/three_buckets_of_thoughts.html#comments">Comments (2)</a>
                                 | <a href="http://www.w3.org/QA/2007/11/three_buckets_of_thoughts.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/11/tp-links-feast.html">Links Feast about Technical Plenary 2007</a></h3>

    <p><p>It was an amazing long week for the W3C community. Meetings, talks, corridors discussions, shared meals over brackets and parsers, many new projects started and some communities started to have a better understanding of each other. Some people [posted](http://www.flickr.com/photos/tags/tpac2007/) their...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/11/tp-links-feast.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on November 18, 2007  6:35 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/tp-links-feast.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/11/tp-links-feast.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2007/11/tp-links-feast.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/11/w3c-minority-report-workshop.html">W3C "Minority Report" Workshop aka Multimodal</a></h3>

    <p><p>Today, at [SFC Keio](http://www.sfc.keio.ac.jp/) University, a [workshop](http://www.w3.org/2007/08/mmi-arch/agenda.html) on Multimodal Architecture and Interfaces is starting. [MMI Architecture](http://www.w3.org/TR/mmi-arch/) is a loosely coupled, event-based architecture for integrating multiple modalities into applications. A bit hard to understand, I bet. Let's start with a hollywood...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/11/w3c-minority-report-workshop.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on November 15, 2007  8:11 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/w3c-minority-report-workshop.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/11/w3c-minority-report-workshop.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2007/11/w3c-minority-report-workshop.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/11/tpac_2007_html_singalong.html">TPAC 2007 - HTML Working Group had informal jamming session!</a></h3>

    <p><p>It was intended to be a fun session for the HTML Working Group face to face meeting, but the word spread out and suddenly many people joined us at the room. The jam started and suddenly Tim Berners-Lee joined Dan Connolly, Steven Pemberton, Ian Jacobs, Janet Daly and others on the lyrics...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/11/tpac_2007_html_singalong.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Mauro/">Mauro Nunez</a> on November  9, 2007 12:19 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/tpac_2007_html_singalong.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/11/tpac_2007_html_singalong.html#comments">Comments (2)</a>
                                 | <a href="http://www.w3.org/QA/2007/11/tpac_2007_html_singalong.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/11/html_holds_f2f_meeting.html">TPAC 2007 - HTML Working Group holds first face-to-face meeting</a></h3>

    <p><p>The time has come for the much anticipated <a href="http://www.w3.org/html/wg/">HTML Working Group</a> face to face meeting, at the <a href="http://www.w3.org/2007/11/TPAC/overview.html">W3C Technical Plenary / Advisory Committee Meetings Week</a> in Cambridge, MA (USA).</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/11/html_holds_f2f_meeting.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Mauro/">Mauro Nunez</a> on November  8, 2007  3:11 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/html_holds_f2f_meeting.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/11/html_holds_f2f_meeting.html#comments">Comments (2)</a>
                                 | <a href="http://www.w3.org/QA/2007/11/html_holds_f2f_meeting.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/11/tpac-2007-cracks-and-mortar.html">TPAC 2007 - Cracks and Mortar</a></h3>

    <p><p>[Tim Berners-Lee](http://www.w3.org/People/Berners-Lee/) is taking the [floor](http://www.w3.org/2007/Talks/1107-tpac-tbl/): "The world is a mess of **interconnected** communities and it is why it is working." * Content-Type: is a way to define the content available at a specific URI. It gives flexibility for evolution....</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/11/tpac-2007-cracks-and-mortar.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on November  7, 2007  6:14 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/">W3C・QA News</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/tpac-2007-cracks-and-mortar.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/11/tpac-2007-cracks-and-mortar.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2007/11/tpac-2007-cracks-and-mortar.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/11/tpac-2007-video.html">TPAC 2007 - Making Video a First-Class Citizen of the Web</a></h3>

    <p><p>After an entertaining and though-provoking session of lightning talks featuring (among others) fonts on the Web, efficient XML interchange and a dog in a plane cockpit, we return to the panel format for a discussion on "Making Video a First-Class...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/11/tpac-2007-video.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/olivier/">olivier Théreaux</a> on November  7, 2007  5:17 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/tpac-2007-video.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/11/tpac-2007-video.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2007/11/tpac-2007-video.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/11/tpac-2007-uri-extensibility.html">TPAC 2007 - URI-Based Extensibility: Benefits, Deviations, Lessons-Learned</a></h3>

    <p><p>The Technical plenary day is continuing. Someone in a comment earlier asked what TPAC was. TPAC means Technical Plenary and Advisory Committee meeting. All W3C Working groups and representatives of W3C are meeting. This year we open a bit more...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/11/tpac-2007-uri-extensibility.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on November  7, 2007  3:26 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/">W3C・QA News</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/tpac-2007-uri-extensibility.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/11/tpac-2007-uri-extensibility.html#comments">Comments (1)</a>
                                 | <a href="http://www.w3.org/QA/2007/11/tpac-2007-uri-extensibility.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/11/tpac-2007-openness.html">TPAC 2007 - Openness of W3C Working Groups</a></h3>

    <p><p>The participants of the W3C tech plenary are back from their lunch overlooking the gorgeous Charles river, to tackle the question of "openness". This is a development from a topic already raised today: a lot of people's lives and living...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/11/tpac-2007-openness.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/olivier/">olivier Théreaux</a> on November  7, 2007  1:30 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/tpac-2007-openness.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/11/tpac-2007-openness.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2007/11/tpac-2007-openness.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/11/tpac-2007-html-5-xhtml-20-fun.html">TPAC 2007 - HTML 5, XHTML 2.0, Future Formats</a></h3>

    <p><p>The title, just by reading it, reminds me of long discussions for the past 6 months as the (interim) HTML WG staff contact. [HTML 5](http://www.w3.org/html/wg/html5/) and [XHTML 2.0](http://www.w3.org/TR/xhtml2/) ; Many fights, many misunderstandings often due to deaf dialogs. Let's hope...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/11/tpac-2007-html-5-xhtml-20-fun.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on November  7, 2007 11:24 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/">W3C・QA News</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/tpac-2007-html-5-xhtml-20-fun.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/11/tpac-2007-html-5-xhtml-20-fun.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2007/11/tpac-2007-html-5-xhtml-20-fun.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/11/tpac_2007_real_world_perspective.html">TPAC 2007 - "Real World Perspectives on the W3C" panel</a></h3>

    <p><p>What better way to kick in this TPAC meeting than with a panel tackling the perception of W3C in the "real Web world"? What happens when you ask a small group of developers, designers, experts of making the Web work...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/11/tpac_2007_real_world_perspective.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/olivier/">olivier Théreaux</a> on November  7, 2007  9:36 AM in <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/tpac_2007_real_world_perspective.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/11/tpac_2007_real_world_perspective.html#comments">Comments (5)</a>
                                 
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/11/tpac-2007-lets-start.html">TPAC 2007 - Let's start</a></h3>

    <p><p>The mics are being tested in the room. People are slowing joining the room. There will be more than 300 persons participating today to the [Technical Plenary Day](http://www.w3.org/2007/11/TPAC/). It is quite exciting. One of the strong emphasis of the day...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/11/tpac-2007-lets-start.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on November  7, 2007  9:10 AM in <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/">W3C・QA News</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/tpac-2007-lets-start.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/11/tpac-2007-lets-start.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2007/11/tpac-2007-lets-start.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/10/hear-you-w3c-get-a-blog.html">I hear you: get a blog</a></h3>

    <p><p>A few months ago I took the 2007 Web Design Survey from A List Apart. I see 33,000 other Web professionals did, too. It's very exciting to see such enthusiasm among the designers. Indeed, almost 80% of the people who...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/10/hear-you-w3c-get-a-blog.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Jacobs/">Ian Jacobs</a> on October 22, 2007 12:14 PM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/10/hear-you-w3c-get-a-blog.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/10/hear-you-w3c-get-a-blog.html#comments">Comments (1)</a>
                                 | <a href="http://www.w3.org/QA/2007/10/hear-you-w3c-get-a-blog.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/10/semantic_web_is_a_lot_of_fun.html">Semantic Web is a lot of fun</a></h3>

    <p><p>W3C released new Semantic Web logos, with a rather restrictive policy.  The Web community let us know about it in the best possible way: humor and parody. W3C smiles and listens.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/10/semantic_web_is_a_lot_of_fun.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on October 22, 2007  1:08 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/10/semantic_web_is_a_lot_of_fun.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/10/semantic_web_is_a_lot_of_fun.html#comments">Comments (3)</a>
                                 | <a href="http://www.w3.org/QA/2007/10/semantic_web_is_a_lot_of_fun.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/10/paris-web-2007-french-conference.html">Paris Web 2007 - The French Web Connection</a></h3>

    <p><p>Paris Web 2007, the French Web conference, is happening in November 2007. Exciting. Cool. Take a look.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/10/paris-web-2007-french-conference.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on October 18, 2007 11:30 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/10/paris-web-2007-french-conference.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/10/paris-web-2007-french-conference.html#comments">Comments (1)</a>
                                 | <a href="http://www.w3.org/QA/2007/10/paris-web-2007-french-conference.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/10/html-wg-at-tpac.html">HTML WG in Cambridge, USA - 8-10 November 2007</a></h3>

    <p><p>Come and meet the HTML WG in Cambridge, Mass, USA, in November 2007.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/10/html-wg-at-tpac.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on October  9, 2007  3:00 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/10/html-wg-at-tpac.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/10/html-wg-at-tpac.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2007/10/html-wg-at-tpac.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/10/w3c-meets-web-community.html">TPAC 2007 - W3C meets the Web community</a></h3>

    <p><p>Many W3C Working Groups are meeting from Monday 5 to Saturday 10 November 2007. It is a unique opportunity for the individual participating in these groups to coordinate, socialize, know each others better. Among the attendees will be engineers and...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/10/w3c-meets-web-community.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on October  2, 2007  4:50 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/10/w3c-meets-web-community.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/10/w3c-meets-web-community.html#comments">Comments (2)</a>
                                 | <a href="http://www.w3.org/QA/2007/10/w3c-meets-web-community.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/09/video-on-the-web.html">Video on the Web</a></h3>

    <p><p>W3C will be looking at the impact and challenges of video on the Web in the upcoming months and will have a workshop on Video on the Web. So, if you have a strong opinion about what should happen at that workshop (or what shouldn't), don't hesitate to contact us.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/09/video-on-the-web.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/LeHegaret/">Philippe Le Hégaret</a> on September 18, 2007  6:16 PM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/technology/">Technology</a>, <a href="http://www.w3.org/QA/archive/technology/video/">Video</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/09/video-on-the-web.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/09/video-on-the-web.html#comments">Comments (4)</a>
                                 | <a href="http://www.w3.org/QA/2007/09/video-on-the-web.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/08/tokyo-svg-open-2007.html">Tokyo hosts SVG Open 2007</a></h3>

    <p><p>Next week in Tokyo, the SVG community is having a cool and scalable conference: SVG Open 2007. You may have heard of SVG, a syntax to create cool vector graphics for your Web pages. SVG is being implemented in Safari...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/08/tokyo-svg-open-2007.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on August 31, 2007  7:23 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/08/tokyo-svg-open-2007.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/08/tokyo-svg-open-2007.html#comments">Comments (8)</a>
                                 | <a href="http://www.w3.org/QA/2007/08/tokyo-svg-open-2007.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/06/contribute-w3c-tutorials.html">How to to contribute to W3C work? Tutorials</a></h3>

    <p><p> We started a series about how you can contribute to W3C work. Last time, we have seen how to create and propose your own quick tips. This week, we will go a step further by looking at tutorials. Specifications...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/06/contribute-w3c-tutorials.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on June 13, 2007  7:30 AM in <a href="http://www.w3.org/QA/archive/web_spotting/tutorials/">Tutorials</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/06/contribute-w3c-tutorials.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/06/contribute-w3c-tutorials.html#comments">Comments (7)</a>
                                 | <a href="http://www.w3.org/QA/2007/06/contribute-w3c-tutorials.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/05/contribute-w3c-quick-tips.html">How to to contribute to W3C work? Quick Tips</a></h3>

    <p><p> During the lunch break at the HTML in email workshop in Paris, a Web designer told me it was too expensive to participate to W3C work. This is a common myth about W3C. There are many ways to participate...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/05/contribute-w3c-quick-tips.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on May 28, 2007  7:59 AM in <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/05/contribute-w3c-quick-tips.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/05/contribute-w3c-quick-tips.html#comments">Comments (4)</a>
                                 | <a href="http://www.w3.org/QA/2007/05/contribute-w3c-quick-tips.html#trackback">TrackBacks (0)</a>
</p>
        
            
                   <p id="gentime">This page was last generated on $Date: 2011/12/16 03:02:22 $</p>
      </div><!-- End of "main" DIV. -->

<address>

This blog is written by W3C staff and working group participants,<br />
&nbsp;and maintained by <a href="/People/CMercier/">Coralie Mercier</a>.<br />
Authorized parties may <a href="/QA/new">log in</a> to create a new entry.<br/>
<span id="poweredby">Powered by Movable Type, magpierss and a lot of Web Technology</span>
    </address>


    
    <p class="copyright">
      <a rel="Copyright" href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> &copy; 1994-2011
      <a href="http://www.w3.org/"><acronym title="World Wide Web Consortium">W3C</acronym></a>&reg;
      (<a href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute of Technology">MIT</acronym></a>,
      <a href="http://www.ercim.eu/"><acronym title="European Research Consortium for Informatics and Mathematics">ERCIM</acronym></a>,
      <a href="http://www.keio.ac.jp/">Keio</a>),
      All Rights Reserved.
      W3C <a href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>,
      <a href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a>,
      <a rel="Copyright" href="http://www.w3.org/Consortium/Legal/copyright-documents">document use</a>
      and <a rel="Copyright" href="http://www.w3.org/Consortium/Legal/copyright-software">software licensing</a>
      rules apply. Your interactions with this site are in accordance
      with our <a href="http://www.w3.org/Consortium/Legal/privacy-statement#Public">public</a> and
      <a href="http://www.w3.org/Consortium/Legal/privacy-statement#Members">Member</a> privacy
      statements.
    </p>


  </body>
</html>