index.html 123 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
<?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>Opinions &amp;amp; Editorial - 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 Opinions &amp; Editorial" />
    <meta name="revision" content="$Id: index.html,v 1.807 2012/01/13 07:42:07 mirror 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: Opinions &amp; Editorial</h2>
         
        <h3><a href="http://www.w3.org/QA/2011/11/the_w3c_social_business_jam_is.html">The W3C Social Business Jam is a few days away!</a></h3>

    <p><p>There’s been a lot of discussion on how the social web is changing business. One of the challenges slowing down the adoption of social web is due to a lack of cross-industry interoperability, as social business is still in its early stages. Open standards are one way the industry can overcome this challenge. As the W3C is one of the organizations working to help, we've decided to host an event to determine future directions for standardizing the social web for business-driven use-cases. The all online <a href="http://www.w3.org/2011/socialbusiness-jam/">W3C Social Business Jam </a>runs from Nov 8-10th (Tuesday through Thursday) and you have to <a href="https://www.collaborationjam.com/minijam3/jam/registration/index.do?jamId=93989">register</a> to participate. </p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2011/11/the_w3c_social_business_jam_is.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.ibiblio.org/hhalpin">Harry Halpin</a> on November  5, 2011  3:35 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/social_networking/">Social Networking</a>, <a href="http://www.w3.org/QA/archive/technology/">Technology</a>, <a href="http://www.w3.org/QA/archive/web_spotting/">Web Spotting</a>, <a href="http://www.w3.org/QA/archive/workshops/">Workshops</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/11/the_w3c_social_business_jam_is.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2011/11/the_w3c_social_business_jam_is.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2011/11/the_w3c_social_business_jam_is.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/2010/01/encourage_accessibility_make_a_difference.html">Take a few minutes to encourage web accessibility. You can make a difference.</a></h3>

    <p><p>What do you do when you come across an inaccessible website?. . .<br /><br />
...WAI just published: <a href="http://www.w3.org/WAI/users/inaccessible">Contacting Organizations about Inaccessible Websites</a>. It walks through steps, provides lots of tips, and includes sample e-mails...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2010/01/encourage_accessibility_make_a_difference.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Shawn/">Shawn Henry</a> on January  6, 2010 12:00 PM in <a href="http://www.w3.org/QA/archive/technology/accessibility/">Accessibility</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/publications/">Publications</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/01/encourage_accessibility_make_a_difference.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2010/01/encourage_accessibility_make_a_difference.html#comments">Comments (19)</a>
                                 | <a href="http://www.w3.org/QA/2010/01/encourage_accessibility_make_a_difference.html#trackback">TrackBacks (2)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2009/12/discover_new_ways_of_thinking.html">Discover new ways of thinking about accessibility</a></h3>

    <p><p>As an employee of the W3C Web standards organization, you might think that I would say the most important thing to start with when addressing web accessibility is standards. I don't. I say the first step is learning how people with disabilities use the web. You might be surprised to learn that is the W3C's advice. We've now got it more clearly in writing, in the new document published today by the W3C Web Accessibility Initiative (WAI): Involving Users in Web Projects for Better, Easier Accessibility<br />
and...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2009/12/discover_new_ways_of_thinking.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Shawn/">Shawn Henry</a> on December  9, 2009  1:02 PM in <a href="http://www.w3.org/QA/archive/technology/accessibility/">Accessibility</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/web_spotting/reference/">Reference</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2009/12/discover_new_ways_of_thinking.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2009/12/discover_new_ways_of_thinking.html#comments">Comments (5)</a>
                                 | <a href="http://www.w3.org/QA/2009/12/discover_new_ways_of_thinking.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2009/06/wcag_20_in_your_mother_tongue.html">WCAG 2.0 in your mother tongue</a></h3>

    <p><p>I come from Egypt, live in Austria, work in France, and when I start speaking, some people think I'm American. I speak fluent German and English, but no matter what I do, some expressions and thoughts will always be easier...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2009/06/wcag_20_in_your_mother_tongue.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/shadi/">Shadi Abou-Zahra</a> on June 26, 2009  5:04 PM in <a href="http://www.w3.org/QA/archive/technology/accessibility/">Accessibility</a>, <a href="http://www.w3.org/QA/archive/technology/internationalization/">Internationalization</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/publications/">Publications</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2009/06/wcag_20_in_your_mother_tongue.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2009/06/wcag_20_in_your_mother_tongue.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2009/06/wcag_20_in_your_mother_tongue.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2009/05/data_interchange_problems_come.html">Data interchange problems come in all sizes</a></h3>

    <p><p> I had a pretty small data interchange problem the other day: I just wanted to archive some play lists that I had compiled using various music player daemon (mpd) clients. The mpd server stores playlists as simple m3u files,...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2009/05/data_interchange_problems_come.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on May  8, 2009  9:10 PM 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/web_architecture/">Web Architecture</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2009/05/data_interchange_problems_come.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2009/05/data_interchange_problems_come.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2009/05/data_interchange_problems_come.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2009/01/valid_sites_work_better.html">Valid sites work better(?)</a></h3>

    <p><p>I learned to write standard-compliant Web pages when the likely alternative was “the browser will likely crash on your tag soup”. In an age of graceful error recovery, does it still matter to produce valid code? Share your stories here.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2009/01/valid_sites_work_better.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/olivier/">olivier Théreaux</a> on January 29, 2009  9:26 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><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2009/01/valid_sites_work_better.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2009/01/valid_sites_work_better.html#comments">Comments (34)</a>
                                 | <a href="http://www.w3.org/QA/2009/01/valid_sites_work_better.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/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/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/fixing-html-with-html5.html">HTML 5 And The Hear-Write Web</a></h3>

    <p><p>Is there a way to improve the HTML ecosystem in a way that creates more adoption of HTML 5? From parsing to serialization to fixing, how do we recover broken Web documents?</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/09/fixing-html-with-html5.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on September 26, 2008  6:44 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/technology_101/">Technology 101</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/09/fixing-html-with-html5.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/09/fixing-html-with-html5.html#comments">Comments (10)</a>
                                 | <a href="http://www.w3.org/QA/2008/09/fixing-html-with-html5.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/top-500-html5-validity.html">Alexa Global Top 500 against HTML 5 validation</a></h3>

    <p><p>Following Brian Wilson lead and his validity survey, I tested against html 5. Less than 1% of top 500 Alexa Web sites seems to pass html 5 conformance checking. </p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/09/top-500-html5-validity.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on September 19, 2008  6:57 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/tools/">Tools</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/09/top-500-html5-validity.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/09/top-500-html5-validity.html#comments">Comments (11)</a>
                                 | <a href="http://www.w3.org/QA/2008/09/top-500-html5-validity.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/09/build-your-own-browser.html">Build Your Own Browser</a></h3>

    <p><p>Little Web bricks help to create new browsers.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/09/build-your-own-browser.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on September  2, 2008  6:23 AM 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/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/09/build-your-own-browser.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/09/build-your-own-browser.html#comments">Comments (6)</a>
                                 | <a href="http://www.w3.org/QA/2008/09/build-your-own-browser.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/09/svg-comics-ebook.html">SVG, comics and E-books</a></h3>

    <p><p>SVG is a format that could be widely used on e-books for comics.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/09/svg-comics-ebook.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on September  1, 2008  5:30 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/svg/">SVG</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/09/svg-comics-ebook.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/09/svg-comics-ebook.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/09/svg-comics-ebook.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/08/css-wg-give-me-a-break.html">Give me a break! CSS WG meeting</a></h3>

    <p><p>CSS WG is meeting in Cambridge, UK and had an interesting discussion about br element and possible associated CSS properties.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/08/css-wg-give-me-a-break.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on August 22, 2008  5:59 AM in <a href="http://www.w3.org/QA/archive/technology/accessibility/">Accessibility</a>, <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><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/08/css-wg-give-me-a-break.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/08/css-wg-give-me-a-break.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/08/css-wg-give-me-a-break.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/08/the-digital-stakhanovite.html">The Digital Stakhanovite</a></h3>

    <p><p>Designing a technology that will accomodate our social contexts of the digital Stakhanovite is a big challenge, far to be simple to solve.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/08/the-digital-stakhanovite.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on August 18, 2008  2:18 AM in <a href="http://www.w3.org/QA/archive/technology/accessibility/">Accessibility</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/technology/semantic_web/">Semantic Web</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/08/the-digital-stakhanovite.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/08/the-digital-stakhanovite.html#comments">Comments (1)</a>
                                 | <a href="http://www.w3.org/QA/2008/08/the-digital-stakhanovite.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/07/better_web_education.html">Towards better Web professionals</a></h3>

    <p><p>Good news come in twos: Within the span of a mere few weeks we have seen the opening of Opera's <a href="http://www.opera.com/wsc/">Web Standards Curriculum</a>, and, announced today, the creation by the Web Standards Project of its <a href="http://www.webstandards.org/2008/07/31/announcing-the-wasp-curriculum-framework/">WaSP Curriculum Framework</a> as a follow-up to the publication of their <a href="http://www.webstandards.org/action/edutf/education-task-force-curriculum-survey-results/">education survey result</a>. It's a good time to be a student in Web technologies…</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/07/better_web_education.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 31, 2008  3:18 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/reference/">Reference</a>, <a href="http://www.w3.org/QA/archive/technology/">Technology</a>, <a href="http://www.w3.org/QA/archive/web_spotting/tutorials/">Tutorials</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/2008/07/better_web_education.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/07/better_web_education.html#comments">Comments (1)</a>
                                 | <a href="http://www.w3.org/QA/2008/07/better_web_education.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/07/reading-tech-blogs.html">Pleasure of Reading Tech Blog Posts</a></h3>

    <p><p>Tech blog posts offer sometimes gems for reading. Here a selection of articles, I have been reading, by Robert O'Callahan, John Resig, and Michael Sperberg-McQueen.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/07/reading-tech-blogs.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on July 24, 2008  7:55 AM 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/technology/svg/">SVG</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/07/reading-tech-blogs.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/07/reading-tech-blogs.html#comments">Comments (2)</a>
                                 | <a href="http://www.w3.org/QA/2008/07/reading-tech-blogs.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/07/web-standards-curriculum.html">Once Upon A Time, Web Standards Curriculum </a></h3>

    <p><p>Once upon a time, we started the Quality Assurance activity at W3C in 2001, one of the objectives was to find a way to improve the materials for communicating with Web developers. In the QA group, Snorre M. Grimsby (Opera) told me that we might find resources for producing educational materials. The discussion became quiet for a while and restarted  in June 2006 with <a href="http://my.opera.com/dstorey/blog/">David Storey</a> (Opera). As the same time, some people at <a href="http://webstandards.org/">WASP</a> started a survey for defining requirements for a Web Standards Curriculum. </p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/07/web-standards-curriculum.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on July 10, 2008  5:40 AM in <a href="http://www.w3.org/QA/archive/technology/accessibility/">Accessibility</a>, <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/technology_101/">Technology 101</a>, <a href="http://www.w3.org/QA/archive/web_spotting/tutorials/">Tutorials</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/07/web-standards-curriculum.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/07/web-standards-curriculum.html#comments">Comments (3)</a>
                                 | <a href="http://www.w3.org/QA/2008/07/web-standards-curriculum.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/07/interoperability-release-cycle.html">Improving Interoperability by Short Release Cycle </a></h3>

    <p><p>When a software is shipped, it has bugs. There are many reasons for these bugs. It can be poor in-house development, it can be careless testing, it can be unclear specifications, and many other things. We have to live with these bugs in software. Is there a way out?</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/07/interoperability-release-cycle.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on July  7, 2008 12:53 AM in <a href="http://www.w3.org/QA/archive/w3cqa_news/bugs_life/">Bugs Life</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/technology_101/">Technology 101</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/07/interoperability-release-cycle.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/07/interoperability-release-cycle.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/07/interoperability-release-cycle.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/netiquette-w3c-mailing-list.html">Old School Netiquette… still good!</a></h3>

    <p><p>Netiquette is a good read, but unfortunately, not very well-known by new generations of engineers.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/06/netiquette-w3c-mailing-list.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on June 24, 2008  1:52 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/06/netiquette-w3c-mailing-list.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/06/netiquette-w3c-mailing-list.html#comments">Comments (10)</a>
                                 | <a href="http://www.w3.org/QA/2008/06/netiquette-w3c-mailing-list.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/06/lithuania_is_first.html">Lithuania is first</a></h3>

    <p><p>With the release of Firefox 3, it appears that 30% of Internet users in Lithuania already downloaded the software within 48 hours.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/06/lithuania_is_first.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 June 20, 2008  2:15 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/06/lithuania_is_first.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/06/lithuania_is_first.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/06/lithuania_is_first.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/06/optimize-http-web-server.html">Optimizing your Web server</a></h3>

    <p><p>Simple few techniques and tools to set up your HTTP caching will help you save time and money.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/06/optimize-http-web-server.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on June 17, 2008  2:03 AM in <a href="http://www.w3.org/QA/archive/technology/http/">HTTP</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><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/06/optimize-http-web-server.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/06/optimize-http-web-server.html#comments">Comments (2)</a>
                                 | <a href="http://www.w3.org/QA/2008/06/optimize-http-web-server.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/06/w3c-love-in-air.html">love is in the air</a></h3>

    <p><p>Love is in the Air at W3C…</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/06/w3c-love-in-air.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, 2008  7:57 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/06/w3c-love-in-air.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/06/w3c-love-in-air.html#comments">Comments (2)</a>
                                 | <a href="http://www.w3.org/QA/2008/06/w3c-love-in-air.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/06/standards-fun.html">Standards Fun</a></h3>

    <p><p>Marcos and Anne started <a href="http://standardssuck.org/">Standards Suck</a>, a site talking about Web standards.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/06/standards-fun.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on June 10, 2008  7:47 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/06/standards-fun.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/06/standards-fun.html#comments">Comments (2)</a>
                                 | <a href="http://www.w3.org/QA/2008/06/standards-fun.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/05/open-standards-interoperability.html">Open Standards Interoperability</a></h3>

    <p><p>Achieving interoperability is a tedious work. There is a lot of issues. Let's explore some of them and find solutions.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/05/open-standards-interoperability.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on May 20, 2008 10:58 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/technology_101/">Technology 101</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/05/open-standards-interoperability.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/05/open-standards-interoperability.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/05/open-standards-interoperability.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/05/web-accessibility-older-users.html">My Arms Are WAI Too Short</a></h3>

    <p><p>Web Accessibility for Older Users is a report on the needs and the issues that older adults face when using the Web.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/05/web-accessibility-older-users.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on May 15, 2008  2:50 AM in <a href="http://www.w3.org/QA/archive/technology/accessibility/">Accessibility</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/web_spotting/reference/">Reference</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/05/web-accessibility-older-users.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/05/web-accessibility-older-users.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/05/web-accessibility-older-users.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/05/using-svg-for-whiteboard.html">SVG + XMPP = whiteboard</a></h3>

    <p><p>There are a few whiteboarding projects (sharing a drawing space) built around SVG and XMPP.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/05/using-svg-for-whiteboard.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on May 14, 2008  6:12 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/svg/">SVG</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/05/using-svg-for-whiteboard.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/05/using-svg-for-whiteboard.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/05/using-svg-for-whiteboard.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/05/bbc-sharing-linked-data.html">We, Robots Like Music Too</a></h3>

    <p><p>BBC is offering their data under many forms. Their Radio Labs just released a new way to access to their schedule in many formats. </p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/05/bbc-sharing-linked-data.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on May 14, 2008  5:24 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><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/05/bbc-sharing-linked-data.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/05/bbc-sharing-linked-data.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/05/bbc-sharing-linked-data.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/05/utf8-web-growth.html">utf-8 Growth On The Web</a></h3>

    <p><p>utf-8 is taking over traditional encodings on the Web.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/05/utf8-web-growth.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on May  6, 2008 11:51 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/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/05/utf8-web-growth.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/05/utf8-web-growth.html#comments">Comments (8)</a>
                                 | <a href="http://www.w3.org/QA/2008/05/utf8-web-growth.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/05/web-typography.html">Web Typography - Your wish list</a></h3>

    <p><p>Give your feedback and tell about your wishes list on Web Typography. </p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/05/web-typography.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  5:06 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/publications/">Publications</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/05/web-typography.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/05/web-typography.html#comments">Comments (5)</a>
                                 | <a href="http://www.w3.org/QA/2008/05/web-typography.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/04/wcag20_cr_april2008.html">WCAG 2.0 takes a giant leap forward — Now it's your turn</a></h3>

    <p>WCAG 2.0 is going, boldly, where it's never gone before: Today WCAG 2.0 is at &quot;W3C Candidate Recommendation&quot;! Can you feel the Web accessibility world shake?  Candidate Recommendation means that we think the technical content is stable and we want developers and designers to start using WCAG 2.0, to test it out in every-day situations....</p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/04/wcag20_cr_april2008.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Shawn/">Shawn Henry</a> on April 30, 2008  5:35 PM in <a href="http://www.w3.org/QA/archive/technology/accessibility/">Accessibility</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/publications/">Publications</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/04/wcag20_cr_april2008.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/04/wcag20_cr_april2008.html#comments">Comments (3)</a>
                                 | <a href="http://www.w3.org/QA/2008/04/wcag20_cr_april2008.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/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/semantic_web-telephone_game.html">Telephone Game about the Semantic Web</a></h3>

    <p><p>I'm no Mark Twain, but reports of Google's demise are greatly exaggerated. Today Tim Berners-Lee pointed me to this headline in the Times Online: "Google could be superseded, says web inventor." This, in turn, has morphed into more ominous restatements...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/03/semantic_web-telephone_game.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Jacobs/">Ian Jacobs</a> on March 13, 2008  7:30 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/semantic_web/">Semantic Web</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/03/semantic_web-telephone_game.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/03/semantic_web-telephone_game.html#comments">Comments (2)</a>
                                 | <a href="http://www.w3.org/QA/2008/03/semantic_web-telephone_game.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/03/html-wg-working-together.html">HTML WG members working together</a></h3>

    <p><p>Web standards are made by people. They interact, discuss, debate. They find issues, argue about them and finally try to settle down on what should be done. In the end, eventually it would be specified properly in a W3C Working Draft and then implemented in an interoperable way. It takes time and energy. I give here an example of a recent discussion between members of the HTML WG.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/03/html-wg-working-together.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on March 13, 2008  1:12 AM in <a href="http://www.w3.org/QA/archive/w3cqa_news/bugs_life/">Bugs Life</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><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/03/html-wg-working-together.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/03/html-wg-working-together.html#comments">Comments (1)</a>
                                 | <a href="http://www.w3.org/QA/2008/03/html-wg-working-together.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/svg_valentines_day.html">SVG Valentine's day</a></h3>

    <p><p>Cool stuff done with SVG, a game and a perl program. Share the love.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/02/svg_valentines_day.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on February 14, 2008  2:31 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/svg/">SVG</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/02/svg_valentines_day.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/02/svg_valentines_day.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2008/02/svg_valentines_day.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/01/ie8_versioning_snowstorm.html">IE8 versioning snowstorm</a></h3>

    <p><p>keeping track on what is being said about <a href="http://www.w3.org/QA/2008/01/ie8-versioning-mechanism.html">IE8 and opt-in versioning mechanism</a>.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/01/ie8_versioning_snowstorm.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on January 22, 2008  7:58 PM 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><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/01/ie8_versioning_snowstorm.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/01/ie8_versioning_snowstorm.html#comments">Comments (4)</a>
                                 | <a href="http://www.w3.org/QA/2008/01/ie8_versioning_snowstorm.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2008/01/open_data_you_and_me.html">Open data, you and me</a></h3>

    <p><img style="float:left;margin-right:1em;" src="http://www.w3.org/Icons/SW/sw-vert-w3c" alt="Semantic Web"/> Data portability and open data are hot topics these months. The multiplication of social network sites has increased the aggregation of these data in silos. The Semantic Web activity encourages to open your data with a new series of cute logo. Geographical data such as the <a href="http://www.openstreetmap.org/">Open Street Map initiative</a>, government budget such as <a href="http://www.usaspending.gov/aboutdata.php">USA</a> are the trend. But when it comes to our personal data, we need more granularity. </p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2008/01/open_data_you_and_me.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on January  7, 2008  1:04 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><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/01/open_data_you_and_me.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2008/01/open_data_you_and_me.html#comments">Comments (2)</a>
                                 | <a href="http://www.w3.org/QA/2008/01/open_data_you_and_me.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/12/video-web-interview.html">Video On The Web - The Interviews</a></h3>

    <p><p>Three video interviews about <a href="http://www.w3.org/2007/08/video/">Video On The Web Workshop</a> have been published by <a href="http://videolectures.net/w3c07_sanjose/">videolectures.net</a>.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/12/video-web-interview.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on December 25, 2007  8: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/technology/video/">Video</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/12/video-web-interview.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/12/video-web-interview.html#comments">Comments (6)</a>
                                 | <a href="http://www.w3.org/QA/2007/12/video-web-interview.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/12/is_wcag_20_almost_done.html">Is WCAG 2.0 almost done?!</a></h3>

    <p><p>A Last Call Working Draft of WCAG 2.0 was just published. This means that the WCAG Working Group has integrated all resolutions from previous comments. Yeah! Now the question is whether this draft of WCAG 2.0 is ready for the community to support moving it on towards becoming a Web standard (W3C Recommendation)...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/12/is_wcag_20_almost_done.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Shawn/">Shawn Henry</a> on December 12, 2007  2:52 PM in <a href="http://www.w3.org/QA/archive/technology/accessibility/">Accessibility</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/publications/">Publications</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/12/is_wcag_20_almost_done.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/12/is_wcag_20_almost_done.html#comments">Comments (4)</a>
                                 | <a href="http://www.w3.org/QA/2007/12/is_wcag_20_almost_done.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/12/the_need_for_diversity.html">The Need for Diversity</a></h3>

    <p><p>Chris Wilson (Microsoft) in a recent interview with Kevin Yank at Sitepoint stressed the need of diversity for a healthy Web Ecosystem: >Chris Wilson: As for building on WebKit or Gecko or any of the other engines, part of that...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/12/the_need_for_diversity.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on December 10, 2007  9:10 PM 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><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/12/the_need_for_diversity.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/12/the_need_for_diversity.html#comments">Comments (2)</a>
                                 | <a href="http://www.w3.org/QA/2007/12/the_need_for_diversity.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/12/html_5_doctype_to_version.html">html 5: doctype to version</a></h3>

    <p><p>At a regular pace, there are discussions about the [need of versioning for HTML 5](http://www.w3.org/html/wg/tracker/issues/4). The issue breaks down around a few points including identification of the language itself for different kind of user agents, and parser libraries. A while...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/12/html_5_doctype_to_version.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on December  2, 2007 10:21 PM 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><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/12/html_5_doctype_to_version.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/12/html_5_doctype_to_version.html#comments">Comments (5)</a>
                                 | <a href="http://www.w3.org/QA/2007/12/html_5_doctype_to_version.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/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/unexpected_kanji_roation.html">Unexpected Kanji Rotation</a></h3>

    <p><p>Recently, my XML editor gave me a surprise. This is how it should display Kanji characters: However, this is how it displayed in the editor's source text: The issue is that in the source text, the Kanji characters are rotated...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/11/unexpected_kanji_roation.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/fsasaki/">Felix Sasaki</a> on November 20, 2007  1:34 AM in <a href="http://www.w3.org/QA/archive/w3cqa_news/bugs_life/">Bugs Life</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><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/unexpected_kanji_roation.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/11/unexpected_kanji_roation.html#comments">Comments (1)</a>
                                 | <a href="http://www.w3.org/QA/2007/11/unexpected_kanji_roation.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/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-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/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/08/html_community_roundup.html">Web spotting roundup: the WASP lead edition</a></h3>

    <p><p>A weekly roundup of some of the voices of the community that cares about HTML brings in an interesting, if challenging, program for Web developers and designers: read the specs, get involved in making them better, learn the craft, and help teach it to others.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/08/html_community_roundup.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/olivier/">olivier Théreaux</a> on August 16, 2007  2:14 PM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/08/html_community_roundup.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/08/html_community_roundup.html#comments">Comments (0)</a>
                                 
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/06/the_web_as_an_ecosystem.html">The Web as An Ecosystem</a></h3>

    <p><p>Don&#8217;t you feel sometimes you are in the middle of an action movie and when you have time to rest a bit, you realize that you were running all along. Then the action is restarting. It never stops. So let&#8217;s...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/06/the_web_as_an_ecosystem.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on June 21, 2007  1:39 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><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/06/the_web_as_an_ecosystem.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/06/the_web_as_an_ecosystem.html#comments">Comments (5)</a>
                                 | <a href="http://www.w3.org/QA/2007/06/the_web_as_an_ecosystem.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/05/variability_in_specifications_1.html">Variability in Specifications</a></h3>

    <p><p>One of the documents produced by the QA Working Group addressed the important issue of "variability in specifications" and the consequences this can have for interoperability. I recently addressed this question again in a more light-hearted manner. See this blog...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/05/variability_in_specifications_1.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://blogs.sun.com/pcurran/">Patrick Curran</a> on May 14, 2007 12:06 PM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/05/variability_in_specifications_1.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/05/variability_in_specifications_1.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2007/05/variability_in_specifications_1.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/05/html_and_version_mechanisms.html">HTML and version mechanisms</a></h3>

    <p><p>Disclaimer: This article doesn't represent any kind of consensus in the HTML WG. It is an attempt at capturing the different opinions expressed on the mailing-list. There has a been a lot of debate in April on the HTML WG...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/05/html_and_version_mechanisms.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, 2007  3:29 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><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/05/html_and_version_mechanisms.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/05/html_and_version_mechanisms.html#comments">Comments (4)</a>
                                 | <a href="http://www.w3.org/QA/2007/05/html_and_version_mechanisms.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/03/meet_the_html_working_group_ch.html">Meet the HTML Working Group chairs in Austin at SxSWi</a></h3>

    <p><p>I enjoyed living in Austin and I like to visit when I can. My last trip was more for MIT research stuff; this time it's W3C business. I took SxSWi 2007 off my travel schedule when the TAG scheduled a...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/03/meet_the_html_working_group_ch.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on March  9, 2007  8:03 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><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/03/meet_the_html_working_group_ch.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/03/meet_the_html_working_group_ch.html#comments">Comments (0)</a>
                                 
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/03/orthogonal_specifications_is_good.html">When to standardize, especially an RDF API</a></h3>

    <p><p>The HTML 4.01 specification has an IMG element, but there is no normative dependency on the PNG or GIF or JPEG specifications. "What good is an HTML user agent that doesn't support GIFs?!?" you might ask. And you wouldn't be...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/03/orthogonal_specifications_is_good.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on March  2, 2007 12:47 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/web_architecture/">Web Architecture</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/03/orthogonal_specifications_is_good.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/03/orthogonal_specifications_is_good.html#comments">Comments (1)</a>
                                 | <a href="http://www.w3.org/QA/2007/03/orthogonal_specifications_is_good.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/03/w3c_is_hiring.html">W3C is hiring!</a></h3>

    <p><p>There are 4 positions open right now at W3C. It is rare enough to be noted. You are encouraged to send your resume to the appropriate person (not to me). Women applications are welcome. Web Accessibility Engineer Voice Browser Specialist...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/03/w3c_is_hiring.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on March  1, 2007  4:20 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/03/w3c_is_hiring.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/03/w3c_is_hiring.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2007/03/w3c_is_hiring.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/01/standard_organizations_history.html">Standard Organizations Have a History</a></h3>

    <p><p>WASP has recently published an article about CSS 10 years anniversay weblog. One of the comments by Chris Hunt illustrates that we have a tendency to forget that organizations and technological developments have an history. Not wanting to rain on...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/01/standard_organizations_history.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on January 31, 2007  5:08 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/01/standard_organizations_history.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/01/standard_organizations_history.html#comments">Comments (1)</a>
                                 | <a href="http://www.w3.org/QA/2007/01/standard_organizations_history.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2007/01/w3c_charters_public_reviews.html">W3C Charters Now Public During Member Review</a></h3>

    <p><p>I participated in numerous discussions during the last few months of 2006 about how W3C needs to do a better job in its communications. We've taken a positive step this week: W3C has begun to make draft charters public while...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2007/01/w3c_charters_public_reviews.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Jacobs/">Ian Jacobs</a> on January 18, 2007  3:12 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/01/w3c_charters_public_reviews.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2007/01/w3c_charters_public_reviews.html#comments">Comments (1)</a>
                                 | <a href="http://www.w3.org/QA/2007/01/w3c_charters_public_reviews.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2006/12/information-about-web-standards.html">The New Voyagers - Find Information about Web standards</a></h3>

    <p><p>Voyager 1, already the most distant human-made object in the cosmos, reaches 100 astronomical units from the sun on Tuesday, August 15 at 5:13 p.m. Eastern time (2:13 p.m. Pacific time). That means the spacecraft, which launched nearly three decades...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2006/12/information-about-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 December  4, 2006  5:37 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2006/12/information-about-web-standards.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2006/12/information-about-web-standards.html#comments">Comments (1)</a>
                                 | <a href="http://www.w3.org/QA/2006/12/information-about-web-standards.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2006/11/xml_a_decade.html">XML, a decade…</a></h3>

    <p><p>Depending on how you count, you might consider that XML is 10 years old. Round years are not necessary meaningful but they are like milestones on a road helping us to look back and to summarize what has been achieved....</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2006/11/xml_a_decade.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on November 17, 2006  2:36 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2006/11/xml_a_decade.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2006/11/xml_a_decade.html#comments">Comments (0)</a>
                                 | <a href="http://www.w3.org/QA/2006/11/xml_a_decade.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2006/11/celebrating_owl_interoperabili.html">Celebrating OWL interoperability and spec quality</a></h3>

    <p><p>In a Standards and Pseudo Standards item in July, Holger Knublauch gripes that SQL interoperability is still tricky after all these years, and UML is still shaking out bugs, while RDF and OWL are really solid. I hope GRDDL and...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2006/11/celebrating_owl_interoperabili.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on November 11, 2006  4:24 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2006/11/celebrating_owl_interoperabili.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2006/11/celebrating_owl_interoperabili.html#comments">Comments (1)</a>
                                 | <a href="http://www.w3.org/QA/2006/11/celebrating_owl_interoperabili.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2006/10/reinventing_html_discuss.html">Reinventing HTML: discuss</a></h3>

    <p><p>By now many have seen Tim Berners-Lee on Reinventing HTML: Making standards is hard work. ... A particular case is HTML... The plan is to charter a completely new HTML group... I'll be asking these groups to be very accountable,...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2006/10/reinventing_html_discuss.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on October 28, 2006  1:23 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><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2006/10/reinventing_html_discuss.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2006/10/reinventing_html_discuss.html#comments">Comments (52)</a>
                                 | <a href="http://www.w3.org/QA/2006/10/reinventing_html_discuss.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2006/10/missing_http_feature.html">Transparent Negotiation - the Missing HTTP Feature</a></h3>

    <p><p>I have a story for you. A tale of love and <em>Accept</em>ance. A tale of betrayal. A tale of adventure, of finding riches hidden beneath our feet, spanning the world and its many languages: the story of HTTP and the fabled Transparent Negotiation.</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2006/10/missing_http_feature.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 20, 2006  1:01 AM in <a href="http://www.w3.org/QA/archive/technology/http/">HTTP</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2006/10/missing_http_feature.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2006/10/missing_http_feature.html#comments">Comments (2)</a>
                                 | <a href="http://www.w3.org/QA/2006/10/missing_http_feature.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2006/10/arch_qa_loop.html">Web Architecture and Quality: closing the loop</a></h3>

    <p><p>In the first meeting of the W3C Technical Architecture Group (TAG), when we introduced ourselves to each other, I said I wanted to be able to use bookmarks in my bank web site. Over the next three years, we boiled...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2006/10/arch_qa_loop.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on October 11, 2006  6:58 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2006/10/arch_qa_loop.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2006/10/arch_qa_loop.html#comments">Comments (4)</a>
                                 | <a href="http://www.w3.org/QA/2006/10/arch_qa_loop.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2006/09/specification-101.html">The specification food chain</a></h3>

    <p><p>Recent times have seen a number of discussions about W3C, in mailing-lists or weblogs. Good discussions: food for thought and means for actions. Weblogs and their comments feature sound reproaches about W3C Activities and Process, as well as light support....</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2006/09/specification-101.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on September 28, 2006 12:12 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/qaig_life/">QAIG Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2006/09/specification-101.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2006/09/specification-101.html#comments">Comments (4)</a>
                                 | <a href="http://www.w3.org/QA/2006/09/specification-101.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2006/07/iconfactory_gets_busted_by_w3c.html">Iconfactory Gets Busted by W3C Inspector</a></h3>

    <p><p>Watch out! if your Web site is not clean and standard the W3C QA Boys will come to inspect your Web site. It just happened to Iconfactory (direct link to the movie Day 1). Switch smoothly to Web Standards....</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2006/07/iconfactory_gets_busted_by_w3c.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on July 25, 2006  6:26 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2006/07/iconfactory_gets_busted_by_w3c.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2006/07/iconfactory_gets_busted_by_w3c.html#comments">Comments (4)</a>
                                 | <a href="http://www.w3.org/QA/2006/07/iconfactory_gets_busted_by_w3c.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2006/07/a_peaceful_ear.html">A Peaceful Ear</a></h3>

    <p><p>Jeffrey Zeldman has written a weblog entry An angry fix about Björn Hörmann's message on his reasons for leaving the group doing the development of W3C validators. He made a few points in his message which will be certainly discussed...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2006/07/a_peaceful_ear.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on July 19, 2006  7:09 AM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2006/07/a_peaceful_ear.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2006/07/a_peaceful_ear.html#comments">Comments (11)</a>
                                 | <a href="http://www.w3.org/QA/2006/07/a_peaceful_ear.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2006/04/how-to-create-a-valid-website.html">"Ciel ! Ma page invalide" or how to be caught!</a></h3>

    <p><p>We are often recommending Web developers to create good Web pages and to follow Web standards. But do we stand by our own criterias of quality? How much do we eat our own dog food? So we ran the Log...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2006/04/how-to-create-a-valid-website.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on April  9, 2006  2:47 PM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2006/04/how-to-create-a-valid-website.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2006/04/how-to-create-a-valid-website.html#comments">Comments (20)</a>
                                 | <a href="http://www.w3.org/QA/2006/04/how-to-create-a-valid-website.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2006/02/buy_standards_compliant_web_si.html">Buy standards compliant Web sites</a></h3>

    <p><p>The topic is far from being new, but it reaches the surface of Web business at regular times. The Web community often struggles between a desire of creating a professional work and the necessity of making a living of one's...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2006/02/buy_standards_compliant_web_si.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on February  7, 2006 11:19 PM in <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions &amp; Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2006/02/buy_standards_compliant_web_si.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2006/02/buy_standards_compliant_web_si.html#comments">Comments (5)</a>
                                 | <a href="http://www.w3.org/QA/2006/02/buy_standards_compliant_web_si.html#trackback">TrackBacks (0)</a>
</p>
        
        <h3><a href="http://www.w3.org/QA/2006/01/failed_commitments.html">Failed Commitments?</a></h3>

    <p><p>Do you remember? it was just three years ago or so. There were parades and brass bands. Many large Web sites were, at long last, making the switch to Web standards. For example, the Web designer Douglas Bowman was announcing...</p></p>

   &nbsp;<p class="readmore"><a href="http://www.w3.org/QA/2006/01/failed_commitments.html">&raquo; Read on...</a></p>
    <p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on January 30, 2006  1:12 AM 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><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2006/01/failed_commitments.html">Permalink</a>
                                 | <a href="http://www.w3.org/QA/2006/01/failed_commitments.html#comments">Comments (16)</a>
                                 | <a href="http://www.w3.org/QA/2006/01/failed_commitments.html#trackback">TrackBacks (0)</a>
</p>
        
            
                   <p id="gentime">This page was last generated on $Date: 2012/01/13 07:42:07 $</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-2012
      <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>