index.html 95.6 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346
<?xml version="1.0" encoding="utf-8"?> <!--*- nxml -*-->
<html xmlns="http://www.w3.org/1999/xhtml">
  <head profile="http://gmpg.org/xfn/11
		 http://www.w3.org/2006/03/hcard
		 http://www.w3.org/2003/g/data-view">
    <meta http-equiv="Content-Type"
    content="text/html; charset=us-ascii" />

    <title>Dan Connolly's Index of Events</title>
    <link rel="transformation" href="../smart-home.xsl" />
    <link rel="transformation" href="http://www.w3.org/2003/12/rdf-in-xhtml-xslts/grokXFN.xsl" />
    <link rel="alternate" href="events-smart.rdf" />
    <style type="text/css">
.vcard {
  border-style: solid;
  border-color: #d0dbe7;
  border-width: 0 0 0 .25em;
  padding-left: 0.5em;
  font-size: 1em;
}
    </style>
  </head>

  <body>
    <div class='nav'><a href="../../../">W3C</a> <a href="../">Connolly</a>:
    Events</div>

    <h1 style="text-align: center">Events and Appearances</h1>

    <p style="text-align: center"><a href="#y1991">1991</a> <a
    href="#y1994"></a> ... <a href="#y1994">1994</a> * <a
    href="#y1995">1995</a> * <a href="#y1996">1996</a> * <a
    href="#y1997">1997</a> * <a href="#y1998">1998</a> * <a
    href="#y1999">1999</a> * <a href="#y2000">2000</a> * <a
    href="#L1329">2001</a> * <a href="#L1551">2002</a> 
* <a href="#L1680">2003</a>
* <a href="#y2004">2004</a>
* <a href="#y2005">2005</a>
* <a href="#y2006">2006</a>
* <a href="#y2007">2007</a>
* <a href="#y2008">2008</a>
</p>

    <p>These are places and events where you might have seen
    me.</p>

    <p>See also:</p>

    <ul>
      <li><a href="../../W3Cpeople.html#Connolly">my bio</a> in <a
      href="../../W3Cpeople.html"><cite>Who's Who at W3C Who's Who
      at the World Wide Web Consortium</cite></a></li>

      <li>Upcoming <a href="../../../Promotion/Appearances">W3C
      Appearances</a></li>

      <li>Past <a href="../../../Talks/">World Wide Web Project
      Talks</a></li>

      <li><a href="http://delicious.com/connolly/travel">travel
      bookmarks</a></li>

      <li><a href="http://www.tripit.com/people/DanConnolly">tripit
      profile</a></li>

    </ul>
    <hr />

    <div>
      <h2 id="y2009">In 2009</h2>
      <ul class="my-events">
  <li>Tue Sep 22 - 24:to BOS
    <br />for TAG ftf
  </li>

  <li>
    Mon Jun 22 - 24: to BOS
    <br />for TAG ftf
  </li>

  <li class="vevent">
    <abbr class="dtstart" title="2009-03-22">Mar 22</abbr> to
    <abbr class="dtend" title="2009-03-27">26</abbr>:  to <b class="location">San Francisco, CA</b><br />
for <span class="summary"><a href="http://www.ietf.org/meetings/74/">IETF 74</a>,
 esp. <a href="http://esw.w3.org/topic/IETF_HTML5_Meeting_March_2009">IETF HTML5 Meeting March 2009</a>
</span>. <small>See also <a href="http://www.tripit.com/trip/show/id/1329957">trip details</a>.</small>
  </li>
  <li class="vevent">
    <abbr class="dtstart" title="2009-03-02">Mar 2</abbr> to
    <abbr class="dtend" title="2009-03-07">6</abbr>:  to <b class="location">San Francisco, CA</b><br />
    <a class="summary" href="http://www.w3.org/2001/tag/2009/03/03-agenda">TAG meeting at Oracle</a>
  </li>

  <li class="vevent">
    <abbr class="dtstart" title="2009-02-02">Feb 2</abbr> to
    <abbr class="dtend" title="2009-02-08">7</abbr>:  to <b class="location">Denver</b><br />
    <a class="summary" href="http://north.webdirections.org/">Web Directions North</a>
    <div>keynote presentation: <cite><a href="http://www.w3.org/2009/Talks/02wdn/slides">Changes in the Languages of the Web</a></cite></div>

<div class="photo">
<a href="http://www.flickr.com/photos/anita_chapa-lopez/3285198284/in/set-72157613931173186">
<img src="http://farm4.static.flickr.com/3310/3285198284_ff2ab66583.jpg"
     alt="Dan on stage with guitar" />
<br /><cite>Dan Connolly w/guitar</cite>, Feb 2009
</a>
</div>

<div class="photo">
<a href="http://www.flickr.com/photos/bouldair/3257825064/in/faves-dckc/">
<img src="http://farm4.static.flickr.com/3487/3257825064_68e47a0020.jpg"
     alt="Dan at a pool table" />
<br /><cite>Web Directions North Afterparty</cite>, Feb 2009
</a>
</div>

  </li>
      </ul>
    </div>
    <div>

      <h2 id="y2008">In 2008</h2>
      <ul class="my-events">
  <li class="vevent" id="_7177">
    <abbr class="dtstart" title="2008-12-08">
      Dec 08
    </abbr> -
    <abbr class="dtend" title="2008-12-12">
      11
    </abbr>: to
      <b class="location">Cambridge, MA</b><br />
    <a class="summary" href="http://www.w3.org/2001/tag/2008/12/09-f2f-agenda">TAG meeting at MIT</a>
    <div class="misc"><a href="../../../2008/12dc-bos/bos-us">itin</a>
    </div>
  </li>

  <li class="vevent" id="_7317">
    <abbr class="dtstart" title="2008-11-01">
      Nov 1
    </abbr> - 
    <abbr class="dtend" title="2008-11-04">
      3
    </abbr>: to
      <b class="location">BOS</b><br />
    <a class="summary" href="http://dig.csail.mit.edu/TAMI/">TAMI meeting</a>
  </li>

  <li class="vevent" id="_7090">
    <abbr class="dtstart" title="2008-10-20">
      Oct 20
    </abbr> -
    <abbr class="dtstart" title="2008-10-26">
      25
    </abbr>: to
      <b class="location">NCE</b><br /> for
    <a class="summary" href="../../2008/10/TPAC/">W3C TPAC</a>
  </li>


  <li class="vevent" id="_6521">
    <abbr class="dtstart" title="2008-09-23">
      Sep 23
    </abbr> -
    <abbr class="dtend" title="2008-09-26">
      25
    </abbr>:
    in  <b class="location">Kansas City</b><br />
    <a class="summary" href="http://www.w3.org/2001/tag/2008/09/f2fkc-agenda">TAG meeting at the Kauffman foundation</a>
    hosted by <a href="http://www.midwestwebsense.com/">Midwest Web Sense</a>
  </li>

  <li><cite><a href="http://www.w3.org/2008/Talks/0910how-fast/">How fast does the Web Change?</a></cite><br />
   Park University Department of Information and Computer Science
Sep 2008
  </li>


  <li class="vevent" id="_6522">
    <abbr class="dtstart" title="2008-05-19">May 19</abbr>-<abbr class="dtend" title="2008-05-22">May 22</abbr>: to <b class="location">Bristol</b><br/> for <a class="summary" href="http://www.w3.org/2001/tag/#deliverables">TAG ftf</a>
    <div class="misc"><a href="../../2008/05dc-lhr/">trip stuff</a>
    </div>

<div class="photo">
<a href="http://www.flickr.com/photos/ndw/2628883527/in/faves-dckc/">
<img src="http://farm4.static.flickr.com/3107/2628883527_335dbc6852.jpg"
     alt="Dan with TAG members in front of pub in Bristol" />
<br /><cite>The TAG in Bristol</cite>, May 2008
</a>
</div>

  </li>
  
  <li class="vevent" id="_6432">
    <abbr class="dtstart" title="2008-04-20">
      Apr 20
    </abbr> - 
    <abbr class="dtend" title="2008-04-23">
      22
    </abbr>: to
      <b class="location">Beijing, China</b><br />
      for <a href="http://www.w3.org/Member/Meeting/" class="url summary">W3C AC meeting</a>, <a href="http://events.linkeddata.org/ldow2008/">linked data workshop</a>
    <div class="misc"><a href="../../../2008/04dc-pek/">trip stuff</a>
    </div>
  </li>


  <li id="sxsw2008" class="vevent"><abbr class="dtstart"
  title="2008-03-07">Mar 7</abbr>-<abbr class="dtend"
  title="2008-03-12">11, 2008</abbr>: to <b class="location">Austin,
  TX</b><br /> for <a class="summary url"
  href="http://2008.sxsw.com/interactive/">SXSW Interactive</a>
  </li>

  <li id="tag200802" class="vevent"><abbr class="dtstart"
  title="2008-02-26">Feb 26</abbr>-<abbr class="dtend"
  title="2008-02-29">28</abbr>: to <a class='location'
  href="http://en.wikipedia.org/wiki/Vancouver">Vancouver</a><br />
  for a <a class="summary url"
  href="http://www.w3.org/2001/tag/#deliverables">TAG meeting</a>
  </li>

      <li class="vevent" id="_6768">
    <abbr class="dtstart" title="2008-02-10">Feb 10</abbr>-<abbr class="dtend" title="2008-02-14">Feb 14</abbr>: to <b class="location">New York, NY</b><br/> for <a class="summary" href="http://en.oreilly.com/toc2008/public/content/home">Tools of Change (TOC)</a>
    <ul>
    <li><cite><a href="http://dig.csail.mit.edu/breadcrumbs/node/214">Free Culture: Why buy the Amazon Kindle when you can give and get an OLPC XO-1 for the same price?</a></cite> in <cite>breadcrumbs</cite></li>
    </ul>
      </li>

      </ul>
    </div>

    <div>

      <h2 id="y2007">In 2007</h2>
      <ul class="my-events">

  <li class="vevent" id="_6345">
    <abbr class="dtstart" title="2007-12-12">
      Dec 12
    </abbr> -
    <abbr class="dtend" title="2007-12-14">
      13
    </abbr>: to
      <b class="location">San Jose, CA</b><br />
      for the <a href="http://www.w3.org/2007/08/video" class="url summary">W3C Video on the Web Workshop</a>
      <ul>
	<li><cite><a href="http://www.w3.org/QA/2007/12/when_will_html_5_support_soone.html">When will HTML 5 support &lt;video>? Sooner if you help</a></cite> in <a href="http://www.w3.org/QA/">W3C Q&amp;A</a>
	</li>
      </ul>
  </li>

  <li id="w3ctp200711" class="vevent"><abbr class="dtstart"
  title="2007-11-05">Nov 5</abbr>-<abbr class="dtend"
  title="2007-11-11">10</abbr>: to <b class="location">Cambridge,
  MA</b><br /> for <a class="summary url"
  href="http://www.w3.org/2007/11/TPAC/">W3C Technical
  Plenary Meetings</a>
  <ul>
    <li><cite><a href="http://www.w3.org/QA/2007/11/tpac-2007-uri-extensibility.html">TPAC 2007 - URI-Based Extensibility: Benefits, Deviations, Lessons-Learned</a></cite></li>
    <li><cite><a href="http://www.w3.org/QA/2007/11/tpac_2007_html_singalong.html">TPAC 2007 - HTML Working Group had informal jamming session!</a></cite> by Mauro</li>
    <li><cite><a href="http://www.madmode.com/2008/01/technology-that-inspires.html">Technology that inspires...</a></cite> for Midwest Web Sense</li>
  </ul>
    <div class="misc"><a href="../../../2007/11dc-bos/">trip stuff</a>
    including <a href="../../../2007/11dc-bos/bos10">itinerary</a>
    </div>
  </li>

  <li id="tag200709" class="vevent"><abbr class="dtstart"
  title="2007-09-15">Sep 15</abbr>-<abbr class="dtend"
  title="2007-09-21">20</abbr>: to <a class='location'
  href="http://en.wikipedia.org/wiki/Southampton">Southampton, UK</a><br />
  for a <a class="summary url"
  href="http://www.w3.org/2001/tag/#deliverables">TAG meeting</a>
    <div class="misc"><a href="../../../2007/09dc-sou/">trip stuff</a>
    including <a href="../../../2007/09dc-sou/sou19">itinerary</a>
    </div>
  </li>

  <li id="apart200708" class="vevent">
    <abbr class="dtstart"
	  title="2007-08-26">Aug 26</abbr> -
    <abbr class="dtend"
	  title="2007-08-31">30</abbr>: to <a class="location"
	  href="http://en.wikipedia.org/wiki/Chicago">Chicago</a><br />
    for <a href="http://www.aneventapart.com/">An Event Apart</a>
    <div class="misc"><a href="../../../2007/08dc-ord/">trip stuff</a>,
    including <a rel="rdfs-seeAlso"
    href="../../../2007/08dc-ord/ord-itin7">itinerary</a>
    </div>
  </li>
      
  <li class="vevent" id="xml_summer_5552">
    <abbr class="dtstart" title="2007-07-22">Jul 22</abbr>- <abbr
    class="dtend" title="2007-07-27">26</abbr>: to
    <a class='location'
    href="http://en.wikipedia.org/wiki/Oxford">Oxford, UK</a><br
    /> for <span class="description"><a
    href="http://www.xmlsummerschool.com/" class="summary">XML Summer
    School</a> <a class="url"
    href="http://www.xmlsummerschool.com/curriculum/trendsandtransients.html">Trends
    and Transients in XML</a>, <span class="organizer">chaired by
    <span class="vcard"><a
    href="http://www.laurenwood.org/" class="fn url">Lauren Wood</a>
    </span></span></span>.
    presentation:
<cite><a href="http://www.w3.org/2007/07dc-lhr/mf-xmlsum">Microformats: what are they, and why should we use them?</a></cite>.

 tags: <a href="http://del.icio.us/connolly/Oxford">Oxford</a>, <a href="http://del.icio.us/connolly/LHR">LHR</a>,
    <a href="http://del.icio.us/connolly/microformats">microformats</a>,
    <a href="http://del.icio.us/connolly/semantic+web">semantic web</a>,
    <a href="http://del.icio.us/connolly/grddl">GRDDL</a>,
    <a href="http://del.icio.us/connolly/xml">XML</a>,
    <a href="http://del.icio.us/connolly/web+architecture">web architecture</a>,
    
    <div class="misc"><a href="../../../2007/07dc-lhr/">trip stuff</a>,
    including <a rel="rdfs-seeAlso"
    href="../../../2007/07dc-lhr/aa-lhr">itinerary</a>
</div>
  </li>

  <li class="vevent" id="tag756">
    <abbr class="dtstart" title="20070530">May 30</abbr>-<abbr
    class="dtend" title="20070602">Jun 1</abbr> to <b
    class="location">Mountain View, CA</b><br /> for <a
    class="summary" href="../../../2001/tag/#deliverables">TAG
    meeting</a>
    <div class="misc"><a href="../../../2007/06dc-sfo/">trip stuff</a></div>
  </li>

  <li class="vevent" id="_5055_www2007">
    <abbr class="dtstart" title="2007-05-06">May 6</abbr>-<abbr
    class="dtend" title="2007-05-13">12</abbr>: to <b
    class="location">Banff, Alberta, Canada</b><br />
    for <b class="summary">W3C AC meeting, <a class="url"
    href="http://www2007.org/">WWW2007</a></b>
<ul>
<li>breadcrumbs: <cite><a href="http://dig.csail.mit.edu/breadcrumbs/node/194">Linked Data at WWW2007: GRDDL, SPARQL, and Wikipedia, oh my!</a></cite></li>
<li>tutorial: <cite><a href="http://www.w3.org/2001/sw/grddl-wg/tut7/gtut">Deploying Web-scale Mash-ups by Linking Microformats
and the Semantic Web</a></cite> (<a href="http://www2007.org/tutorial-T7.php">T7</a>)
</li>
</ul>
    <div class="misc"><a href="../../../2007/05dc-yyc/">trip stuff</a></div>
  </li>

  <li class="vevent" id="_5453_hastac">
    <abbr class="dtstart" title="2007-04-19">
      Apr 19
    </abbr> - 
    <abbr class="dtend" title="2007-04-22">
      21
    </abbr> to <b class="location"><a href="http://en.wikipedia.org/wiki/Duke_University">Duke University</a> in <a href="http://en.wikipedia.org/wiki/Durham%2C_North_Carolina">Durham, NC</a></b><br /> for
    <a class="summary url" href="http://www.hastac.org/informationyear/conference">HASTAC Electronic Techtonics</a>
    <ul>
      <li>breadcrumbs: <cite><a href="http://dig.csail.mit.edu/breadcrumbs/node/192">Collaboration and crime at a distance at HASTAC, WWW2007</a></cite></li>
    </ul>
    <div class="note"><a href="../../../2007/04dc-rdu/">trip stuff</a></div>
  </li>

  <li class="vevent">
    <abbr class="dtstart" title="2007-03-12">March 12</abbr>-<abbr class="dtend" title="2007-03-14">13</abbr>
    to <b class="location">Austin, TX</b>
    for <a class="summary url" href="http://2007.sxsw.com/interactive/">SXSWi</a>
    <ul>
      <li><cite><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></cite></li>
    </ul>
    <div class="note"><a href="../../../2007/03dc-aus/">trip stuff</a></div>
  </li>

  <li class="vevent">
    <abbr class="dtstart" title="2007-03-06">March 6</abbr>-<abbr class="dtend" title="2007-03-08">7</abbr> to <b
    class="location">Cambridge, MA</b><br />
    for a <a class="summary url"
    href="http://www.w3.org/2001/tag/#deliverables">TAG meeting</a>
    <div class="note"><a href="../../../2007/03dc-bos/">trip stuff</a></div>
  </li>

  <li class="vevent" id="_5625_tami">
    <abbr class="dtstart" title="2007-01-31">Jan 31</abbr> - <abbr
    class="dtend" title="2007-02-02">Feb 1</abbr> to <b
    class="location">Cambridge, MA</b><br /> for <strong class="summary"><a
    href="http://dig.csail.mit.edu/TAMI/">TAMI</a> meeting</strong>
    <div class="note"><a href="../../../2007/02dc-bos/">trip stuff</a></div>
  </li>

  <li class="vevent" id="_5320_ts">
    <abbr class="dtstart" title="2007-01-16">Jan 16</abbr> -
    <abbr class="dtend" title="2007-01-20">19</abbr>
    to <b
    class="location">Cambridge, MA</b><br /> for
    <strong class="summary"><a href="http://dig.csail.mit.edu/">DIG</a>,
    W3C T&amp;S Team meetings</strong>
    <div class="note"><a href="../../../2007/01dc-bos/">trip stuff</a></div>
  </li>
      </ul>
    </div>

    <div>
      <h2 id="y2006">In 2006</h2>
      <ul>

  <li class="vevent" id="_5099_tag200612">
    <abbr class="dtstart" title="2006-12-11">Dec 11</abbr> -<abbr
    class="dtend" title="2006-12-14">13</abbr>: to <b
    class="location">Cambridge, MA</b><br /> for a <a class="summary url"
    href="http://www.w3.org/2001/tag/#deliverables">TAG meeting</a>
    <div>QA weblog: <cite><a href="http://www.w3.org/QA/2006/12/reinventing_html_update.html">Reinventing HTML: Update</a></cite></div>
    <div>breadcrumbs: <cite><a href="http://dig.csail.mit.edu/breadcrumbs/node/178">Modelling HTTP cache configuration in the Semantic Web</a></cite></div>
    <div class="note"><a href="../../../2006/12dc-bos/">trip stuff</a></div>
  </li>

  <li class="vevent" id="_5069_rif4">
    <abbr class="dtstart" title="2006-11-07">Nov 7</abbr>-<abbr class="dtend" title="2006-11-12">11</abbr>: to the <b
    class="location"><a href="http://en.wikipedia.org/wiki/University_of_Georgia">University of Georgia</a></b> for <b class="summary">
    <a href="http://iswc2006.semanticweb.org/">ISWC</a>, <a href="http://owl-workshop.man.ac.uk/OWLWorkshop06.html">OWL-ED</a></b>
    <div>breadcrumbs: <cite><a href="http://dig.csail.mit.edu/breadcrumbs/node/171">Celebrating OWL interoperability and spec quality</a></cite></div>
    <div class="note"><a href="../../../2006/11dc-athens/">trip stuff</a>, <a href="http://flickr.com/photos/dckc/tags/athens/">Athens photos</a></div>

    <p>Contacts:</p>
    <ul>
    <li class="vcard">
      <div><a rel="met" class="url fn n" href="http://www.ecs.soton.ac.uk/~nrs/"><span class="honorific-prefix">Professor</span> <span class="given-name">Nigel</span> <span class="family-name">Shadbolt</span></a></div>
      <div class="org">University of Southampton</div>
      <div class="adr">
	<div class="locality">Southampton</div>
	<div class="country-name">United Kingdom</div>
	<div class="postal-code">SO17 1BJ</div>
      </div>
      <div><a href="http://www.aktors.org/">Advanced Knowledge Technologies</a></div>
      <div><a href="http://www.garlik.com/">garlik</a> in Richmond TW9 1AE</div>
    </li>

    <li class="vcard">
      <div><a rel="met" class="url fn n" href="http://nicta.com.au/director/research/programs/krr/people/anne_cregan.cfm">Anne Cregan</a></div>
      <div class="org">National ICT Australia</div>
      <div class="org">The University of New South Wales</div>
      <div class="adr">
	<span class="locality">Kensington</span>
	<span class="postal-code">NSW 2052</span>
	<div class="country-name">Australia</div>
      </div>
    </li>
    </ul>
  </li>


  <li class="vevent" id="_4859_tag200610">
    <abbr class="dtstart" title="2006-10-04">Oct 4</abbr>- <abbr
    class="dtend" title="2006-10-06">5</abbr>: to <b
    class="location">Vancouver, BC, Canada</b> for a <b
    class="summary"><a class="url"
    href="http://www.w3.org/2001/tag/#deliverables">TAG
    meeting</a></b>
    <span class="note"><a href="../../../2006/10dc-yvr/">trip stuff</a>,
    <a href="../../../2006/10dc-yvr/itin25">itinerary</a></span>
  </li>

  <li class="vevent" id="_4877_aus200609">
    <abbr class="dtstart" title="2006-09-11">
    Sep 11 </abbr> - <abbr class="dtend" title="2006-09-16">15</abbr>:
    <a href="../../../2006/09dc-aus/aus-aa">trip</a>
    to <b class="location"><abbr class="geo"
    title="30.300474;-97.747247"><a
    href="http://en.wikipedia.org/wiki/Austin%2C_Texas">Austin,
    TX</a></abbr></b> for <span class="description">a symposium,
    <cite><a class="summary url"
    href="http://www.lib.utexas.edu/symposium/">The
    Research Library in the 21st Century</a></cite></span>.
<a href="http://www.utexas.edu/president/symposium/index.html">agenda materials from the office of the president</a>

    <ul>
      <li>breadcrumbs: <cite><a href="http://dig.csail.mit.edu/breadcrumbs/node/159">On the Future of Research Libraries at U.T. Austin</a></cite>, <a href="../../../2006/09dc-aus/ap90">panel remarks</a></li>
      <li>breadcrumbs: <cite><a href="http://dig.csail.mit.edu/breadcrumbs/node/160">ACL 2 seminar at U.T. Austin: Toward proof exchange in the Semantic Web</a
></cite>, slides: <cite><a href="http://www.w3.org/2006/09dc-aus/swpf">Toward proof exchange in the Semantic Web</a></cite></li>
      <li>breadcrumbs: <cite><a href="http://dig.csail.mit.edu/breadcrumbs/node/161">Talking with U.T. Austin students about the Microformats, Drug Discovery, the Tabulator, and the Semantic Web</a></cite></li>
    </ul>

    <p>@@hotel reviews from PDA. <a href="../../../2006/09dc-aus/aus-aa">itinerary/plan</a></p>
  </li>

  <li class="vevent" id="tami200607">
    <abbr class="dtstart" title="2006-07-17">July 17</abbr>-<abbr
    class="dtend" title="2006-07-22">21</abbr>: to <b
    class="location">Cambridge, MA</b> for <span class="summary">
    and a <a href="http://dig.csail.mit.edu/TAMI/">TAMI</a>
    meeting and <a
    href="http://www.aaai.org/Conferences/AAAI/aaai06.php">AAAI-06</a></span>
    <ul>
      <li id="aaai06paw" class="inproceedings">
	<span class="author">Lalana Kagal</span>, <span class="author">Tim
	Berners-Lee</span>, <span class="author">Dan Connolly</span>, and
	<span class="author">Daniel Weitzner</span>, <cite><a
	href="http://dig.csail.mit.edu/2006/Papers/AAAI/">Using Semantic
	Web Technologies for Open Policy Management on the Web</a></cite>,
	<span class="booktitle">21st National Conference on Artificial
	Intelligence</span> (<a
	href="http://www.aaai.org/Conferences/AAAI/aaai06.php">AAAI
	<span class="year">2006</span></a>).
      </li>

      <li>breadcrumbs: <cite><a
      href="http://dig.csail.mit.edu/breadcrumbs/node/158">Stitching the
      Semantic Web together with OWL at AAAI-06</a></cite>
      </li>
      <li><a href="../../../2006/07dc-bos/">trip stuff</a>,
      <a href="../../../2006/07dc-bos/ua-bos17">itinerary</a></li>
    </ul>

  </li>

  <li class="vevent" id="wkm2006">
    <abbr class="dtstart" title="2006-08-04">Aug 4</abbr>-<abbr
    class="dtend" title="2006-08-07">6</abbr> : <abbr class="status"
    title="declined">missed</abbr> <a class="summary url"
    href="http://wikimania2006.wikimedia.org/wiki/Main_Page">Wikimania
    2006</a> in <b class="location">Cambridge, MA</b>
    <ul>
      <li>breadcrumbs: <cite><a
      href="http://dig.csail.mit.edu/breadcrumbs/node/157">on Wikimania
      2006, from a few hundred miles away</a></cite></li>
    </ul>
  </li>

	<li class="vevent" id="_4114">
	  <abbr title="2006-06-12" class="dtstart">June 12</abbr> -
	  <abbr title="2006-06-15" class="dtend">14</abbr>: to <b
	  class="location">Amherst, MA</b> for <a class="url summary"
	  href="http://www.w3.org/2001/tag/2006/06/12-agenda.html">TAG
	  meeting</a> <div style="font-size: smaller"><a
	  href="../../../2006/06dc-bdl/">trip stuff</a></div>
	</li>

	<li class="vevent" id="www2006">
	  <abbr class="dtstart" title="2006-05-22">May 22</abbr>-<abbr
	  class="dtend" title="2006-05-27">26</abbr>: <a
	  href="http://www2006.org/" class="url summary">WWW2006</a>
	  and a W3C membership meeting in <b
	  class="location">Edinburgh, Scotland</b>

	  <div class="description">
	    See <cite><a
	    href="http://dig.csail.mit.edu/breadcrumbs/node/139">WWW2006
	    in Edinburgh: Identity, Reference, and Meaning</a></cite>
	    about the <a
	    href="http://www.ibiblio.org/hhalpin/irw2006/">IRW2006
	    workshop</a> where I presented <cite><a
	    href="http://www.w3.org/2006/04/irw65/urisym">A Pragmatic
	    Theory of Reference for the Web</a></cite> (<a
	    href="http://www.w3.org/2006/04/irw65/talk">slides</a>)
	    and a <a
	    href="http://www2006.org/programme/item.php?id=panel01">panel
	    on tagging vs. the Semantic Web</a>. And see <cite><a
	    href="http://dig.csail.mit.edu/breadcrumbs/node/140">Exporting
	    databases in the Semantic Web with SPARQL, D2R, dbview,
	    ARC, and such</a></cite> about developers day.
	  </div>

	  <div style="font-size: smaller"><a
	  href="../../../2006/05dc-edi/">trip stuff</a>,
	  <a rel="rdfs-seeAlso"
	  href="../../../2006/05dc-edi/aa-edi13-uf">itin</a>
	  tags: <a
	  rel="tag"
	  href="http://del.icio.us/connolly/www2006">www2006</a></div>
	</li>
    
  <li class="vevent" id="csail8329">
    <abbr class="dtstart" title="2006-04-26">Apr 26</abbr>-<abbr class="dtend" title="2006-04-29">28</abbr>: to <b class="location">BOS</b> to visit CSAIL:
<cite><a href="http://dig.csail.mit.edu/breadcrumbs/node/133">RDF, Microformats, and Javascript hacking in person at the 'tute</a></cite>
    <div><a href="../../../2006/04dc-bos/">trip stuff</a></div>
  </li>
	<li class="vevent" id="auth2006">
	  <abbr class="dtstart" title="2006-03-15">March
	  15</abbr>-<abbr class="dtend" title="2006-03-17">16</abbr>:
	  to <b class="location">New York, NY</b> for <a class="url"
	  href="http://www.w3.org/2005/Security/usability-ws/">W3C
	  Workshop on Transparency and <span class="summary">Usability
	  of Web Authentication</span></a>.  My thoughts on the event,
	  in progress: <cite><a
	  href="http://www.w3.org/2006/03dc-aus-lga/swauth">A look at
	  emerging Web security architectures from a Semantic Web
	  perspective</a></cite>
	  (<small><a href="http://dig.csail.mit.edu/2007/id/doc"
	  >GRDDL and OpenId</a></small>)
	</li>
	
  <li class="vevent" id="sxsw2006">
    <abbr class="dtstart" title="2006-03-11">March 11</abbr>-<abbr
    class="dtend" title="2006-03-15">14</abbr>: to <b class="location
    vcard"><abbr class="geo" title="30.300278,-97.747222">
    <a class="url adr" href=
    "http://en.wikipedia.org/wiki/Austin%2C_Texas" ><span
    class="locality org">Austin</span>, <span
    class="region">TX</span></a>
    </abbr>
    </b> for <a class="summary"
    href="http://2006.sxsw.com/interactive/" >SXSW Interactive</a>
    <div class="description">check out <a href=
    "http://2006.sxsw.com/interactive/programming/panels/?action=show&amp;id=IAP060038"
    >microformats panel</a> among <a
    href="http://2006.sxsw.com/interactive/programming/panels/">others</a>.
    <cite><a class="url"
    href="http://dig.csail.mit.edu/breadcrumbs/node/93">Getting
    (dis)organized for SxSWi in Austin</a></cite>
</div>
  <div class="note">see also: <a
    href="../../../2006/03dc-aus-lga/">trip stuff</a></div>
  </li>
  <li class="vevent" id="tp2006">
    <abbr class="dtstart" title="2006-02-27">Feb 25</abbr>-<abbr
    class="dtend" title="2006-03-05">Mar 4</abbr>: to <span
    class="location vcard"><a class="url"
    href="http://en.wikipedia.org/wiki/C%C3%B4te_d%27Azur_International_Airport"
    ><abbr
    class="org" title="Côte d'Azur International Airport"><span
    class="nickname">NCE</span></abbr></a>
    <abbr class="geo" title="43.66527939,7.21500015">&#183;</abbr></span> for
    <span class="summary"><a
    href="http://www.w3.org/2005/12/allgroupoverview.html">W3C tech
    plenary week</a></span>:

    <div class="description">
      <cite><a class="url" href="http://dig.csail.mit.edu/breadcrumbs/node/92">Reflections on the W3C Technical Plenary week</a></cite>,
      <a href="http://esw.w3.org/topic/SwigAtTp2006">SwigAtTp2006</a>.
      contacts:
      <ul>
	<li class="vcard">
	  <a class="url fn" rel="met" href="http://thefigtrees.net/lee/"
	     >Lee Feigenbaum</a>
	</li>
	<li class="vcard">
	  <a class="url fn" rel="met" href="http://torrez.us/"
	     >Elias Torres</a>
	</li>
	
      </ul>
    </div>
    <div><small><a href="../../../2006/02dc-nce/">trip stuff</a></small></div>
  </li>

  <li id="jan2006" class="vevent">
    <abbr class="dtstart" title="2006-01-17">Jan 17</abbr>-<abbr
    class="dtend" title="2006-01-20">19</abbr>:
    to <a class="location"
    href="http://www.w3.org/Consortium/Contact#Cambridge">CSAIL</a>
    for <span
    class="summary">
    <cite><a class="url"
    href="http://dig.csail.mit.edu/breadcrumbs/node/69">Fun with
    Policy Aware Web at UMD, AFS/SVN at CSAIL</a></cite>.</span>
    <div class="note">see also: <a
    href="../../../2006/01dc-bos-dca/">trip stuff</a>
    <a
    href="../../../2006/01dc-bos-dca/itin">itinerary</a></div>
        <div class="vcard" id="_510">
          <b class="fn org">KENDALL HOTEL</b>
          <ul>
            <li>
              <a class="url" href="http://yp.yahoo.com/py/ypMap.py?Pyt=Typ&amp;tuid=19295457&amp;ck=572753225&amp;tab=B2C&amp;tcat=">yp.yahoo</a>
            </li>
            <li>
              <a class="url" href="http://www.kendallhotel.com/">Work</a>
            </li>
          </ul>
          <ul>
            <li class="adr intl postal parcel dom">
              <div class="street-address">350 Main St.</div>
              <div><span class="locality">Cambridge</span>, <span class="region">MA</span> <span class="postal-code">02142</span></div>
            </li>
          </ul>
          <div class="tel">Work: <a class="work msg" href="tel:(617)577-1300">(617)577-1300</a></div>
          <pre class="note">Jan 2006</pre>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2006-01-15T19:18:54Z</small></div>
        </div>

  </li>
      </ul>
    </div>

    <div>
      <h2 id="y2005">2005</h2>
      <dl>

  <dt id="ac2005nov">28 November - 1 December 2005 <strong>Montreal, Quebec, Canada</strong></dt>
  <dd><strong>W3C <a href="http://www.w3.org/Member/Meeting/2005ac/November/">membership meeting</a>, team day</strong>
  <p><cite><a
  href="http://dig.csail.mit.edu/breadcrumbs/node/47">Brought my
  hockey skates with me this time</a></cite>. <a
  href="../../../2005/12dc-yul/">trip stuff</a></p>
  </dd>

  <dt id="xml2005">14-18 Nov 2005 <strong>Atlanta, GA</strong></dt>
  <dd>
    <cite><a href="http://dig.csail.mit.edu/breadcrumbs/node/23">RDF Calendar, GRDDL, Microformats, and all that at XML 2005 in Atlanta</a></cite>
    <p><a href="http://www.w3.org/2002/12/cal/mash/slides">presentation</a></p>
    <ul>
      <li class="vevent" id="_4219">
	<a class="url summary" href="http://2005.xmlconference.org/program/wednesday#lb4">Semantic Web Calendaring: RDF Calendar, hCalendar, and GRDDL</a>

          <div class="location">Conference Room 5</div>
          <div><abbr class="dtstart" title="2005-11-16T15:45:00-0500">November 16 from 15:45<sup>-0500</sup></abbr> to <abbr class="dtend" title="2005-11-16T16:30:00-0500">16:30</abbr></div>

	<blockquote class="description">The <a
	href="http://www.w3.org/TR/rdfcal/">RDF Calendar
	vocabulary</a> is the result of a test-driven vocabulary
	development effort. <a
	href="http://microformats.org/wiki/hcalendar">hCalendar</a> is
	an emerging microformat standard. See how they fit together
	with XSLT, <a
	href="http://www.w3.org/2003/g/data-view">GRDDL</a>, and <a
	href="http://esw.w3.org/topic/SparqlImplementations">SPARQL</a>.
	</blockquote>

      </li>
    </ul>

    <p><a href="../../../2005/11dc-atl/">trip stuff</a></p>
    <p>See also: <cite><a
    href="http://www.oreillynet.com/pub/wlg/7823">SPARQL: Web 2.0 Meet
    the Semantic Web</a></cite>, Kendall Clark Sep. 16, 2005</p>

        <div class="vcard" id="_695">
          <b class="fn org">Hilton Atlanta</b>
          <ul>
            <li class="adr intl postal parcel work">
              <div class="street-address">255 Courtland Street NE</div>
              <div><span class="locality">Atlanta</span>, <span class="region">GA</span> <span class="postal-code">30303</span></div>
            </li>
          </ul>
          <div class="tel">Work: <a class="work msg" href="tel:+1-404-659-2000">+1-404-659-2000</a></div>
          <div>
      rev <small class="rev">2006-01-29T19:12:51Z</small></div>
	</div>
  </dd>

  <dt>6-10 Nov 2005</dt>
  <dd>
    <p class="note" id="iswc2005">I'm not attending <a
    href="http://iswc2005.semanticweb.org/">ISWC 2005 in Gallway,
    Ireland</a> in person, but I'm on the program committee of <a
    href="http://www.cs.umbc.edu/swpw/">Semantic Web and Policy
    Workshop</a> and the <a
    href="http://www.mindswap.org/OWLWorkshop">OWL experiences
    workshop</a>
    </p>
  </dd>
  <dt id="park-acm">26 Oct 2005</dt>
  <dd>gave a talk on <cite><a href="http://www.w3.org/2005/Talks/1026park/">Web Architecture</a></cite> at invitation of the ACM club of the <a href="http://captain.park.edu/ics/index.shtml">Park University Department of Information and Computer Science</a>
  <p><em>Park has video of the talk</em></p>
  </dd>
  <dt id="tag200509">20-22 Sep 2005 <strong>Edinburgh, United
  Kingdom</strong></dt>
    <dd><strong><a href="../../../2001/tag/">TAG</a> meeting</strong>. Trip notes:
<cite><a href="http://dm93.org/2005/dmjrnl/trav2005-09.html">Another hop across the pond</a></cite>;
met <a class="vcard fn url" rel="met" href="http://www.aiai.ed.ac.uk/~bat/">Austin Tate</a> again and met <a class="vcard fn url" rel="met" href="http://www.ibiblio.org/hhalpin/">Harry Halpin</a> in person for the first time.

<p><a href="../../../2005/09dc-edi/">trip stuff</a></p>
        <div class="vcard hreview" id="_665">
          <b class="fn org">Radisson SAS Hotel, Edinburgh</b>
          <ul>
            <li>
              <a class="url" href="http://sas.radisson.com/">Work</a>
            </li>
          </ul>
          <ul>
            <li class="adr intl postal parcel work">
              <div class="street-address">80 HIGH STREET, THE ROYAL MILE</div>
              <div><span class="locality">EDINBURGH</span>, <span class="region"></span> <span class="postal-code">EH1 1TH</span> <span class="country-name">United Kingdom</span></div>
            </li>
          </ul>
          <div class="tel">Work: <a class="work msg" href="tel:+44 1315579797">+44 1315579797</a></div>
          <pre class="note">
Free broadband net, wifi
Pool, fitness center
Complimentary "grab &amp; run" breakfast</pre>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2006-01-29T19:12:33Z</small></div>
        </div>
</dd>
  <dt id="paw2005aug">23-24 Aug 2005 <strong>Cambridge, MA</strong></dt>
  <dd><strong>TAMI, <a href="http://www.policyawareweb.org/">PAW</a> ftf meetings</strong>. (PAW decided <a href="http://lists.mindswap.org/mailman/private/paw-team/2005-May/000062.html">19May</a>). <a href="../../../2005/08dc-bos/">trip stuff</a>
        <div class="vcard" id="_654">
          <b class="fn org">East Coast Grill</b>
          <ul>
            <li>
              <a class="url" href="http://eastcoastgrill.net">Unlabeled</a>
            </li>
          </ul>
          <ul>
            <li class="adr intl postal parcel work">
              <div class="street-address">1271 Cambridge St</div>
              <div><span class="locality">Cambridge</span>, <span class="region">MA</span> <span class="postal-code">02139</span></div>
            </li>
          </ul>
          <div class="tel">Work: <a class="work msg" href="tel:617-491-6568">617-491-6568</a></div>
          <pre class="note">Paw 2005-08</pre>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2005-08-22T11:00:58Z</small></div>
        </div>
</dd>

  <dt id="tag200506">14-16 Jun 2005 <strong>Cambridge, MA</strong></dt>
    <dd><strong><a href="../../../2001/tag/">TAG</a> ftf</strong>. Also: <a href="http://www.csail.mit.edu/">CSAIL</a> offsite meeting 19-21 Jun
        <div class="vcard" id="_620">
          <b class="fn org">Residence Inn Boston Cambridge</b>
          <ul>
            <li>
              <a class="url" href="http://marriott.com/property/propertypage.mi?marshaCode=BOSCM">Work</a>
            </li>
          </ul>
          <ul>
            <li class="adr intl postal parcel work">
              <div class="street-address">6 Cambridge Center</div>
              <div><span class="locality">Cambridge</span>, <span class="region">MA</span> <span class="postal-code">02142</span> <span class="country-name">USA</span></div>
            </li>
          </ul>
          <div class="tel">Work: <a class="work msg" href="tel:+1-617-349-0700">+1-617-349-0700</a></div>
          <pre class="note">TAG ftf Jun 2005</pre>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2005-09-17T13:35:19Z</small></div>
        </div>

</dd>
  <dt id="xtech2005">24-27 May 2005 <strong>Amsterdam,
  Netherlands</strong></dt>
    <dd><b><a href="http://www.xtech-conference.org/">XTech 2005</a></b>
    <p>The Open Data track was very interesting, 
    e.g. <cite><a href="http://idealliance.org/proceedings/xtech05/papers/02-06-04/">Open(ed) data, now what -- bringing the European Constitution to the people</a></cite>. I hope to talk more with the author...</p>
    <div class="vcard">
      <a href="http://takeoneonion.org/" class="fn url" rel="met">Gavin Bell</a>
    </div>
      <p><a href="../../../2005/05dc-ams/">trip stuff</a>; <a
      href="http://homepages.cwi.nl/%7Esteven/amsterdam.html">steven's
      guide</a>; <a href="http://wiki.usefulinc.com/Accommodation">Accomodation in the conference wiki</a></p>

        <div class="vcard" id="_619">
          <b class="fn org">Renaissance Amsterdam Hotel</b>
          <ul>
            <li>
              <a class="url" href="http://www.renaissancehotels.com/">Work</a>
            </li>
          </ul>
          <ul>
            <li class="adr intl postal parcel work">
              <div class="street-address">Kattengat 1</div>
              <div><span class="locality">Amsterdam</span>, <span class="region"></span> <span class="postal-code"></span> <span class="country-name">The Netherlands</span></div>
            </li>
          </ul>
          <div class="tel">Work: <a class="work msg" href="tel:+31-206212223">+31-206212223</a></div>
          <pre class="note">City Centre And Museum Quarter</pre>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2005-07-13T18:03:57Z</small></div>
	</div>

    </dd>

  <dt id="www2005">10 May 2005, Chiba, Japan</dt>
  <dd>served on the <a href="http://cs.umbc.edu/pm4w/committee.html">program committee of the Policy Management for the Web workshop</a></dd>

  <dt id="rules424">26-28 Apr 2005 <strong>Washington, DC</strong></dt>
    <dd><strong><a href="http://www.w3.org/2004/12/rules-ws/">W3C Rules
      Workshop</a></strong>
      <p><a href="../../../2005/04dc-dca/">trip stuff</a>. gave a talk:
      <cite><a href="http://www.w3.org/2005/Talks/04w3c-process/all.htm">W3C Process: A Means to an End</a></cite>. Introduced timbl to <a href="http://www.w3.org/Talks/Tools/Slidy/">HTML Slidey</a>, DaveR's take on <a href="http://www.meyerweb.com/eric/tools/s5/">S5</a>. on <a href="http://www.w3.org/2004/12/rules-ws/cfp#Prog_chair">program committee</a></p>

        <div class="vcard" id="_614">
          <b class="fn org">Hamilton Crowne Plaza Hotel</b>
          <ul>
            <li class="adr intl postal parcel work">
              <div class="street-address">1001 14th street, NW</div>
              <div><span class="locality">Washington</span>, <span class="region">DC</span> <span class="postal-code">20005</span></div>
            </li>
          </ul>
          <div class="tel">Work: <a class="work msg" href="tel:+1-202-682-0111">+1-202-682-0111</a></div>
          <pre class="note">Reservation: +1-800-263-9802
High speed Internet
8mi from DCA. 20min by train. Metro-McPherson Square Station
Fitness, but no pool :(</pre>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2005-06-07T21:15:06Z</small></div>
	</div>

    </dd>
	<dt id="ietf62">7-12 Mar 2005 <strong>Minneapolis,
	MN</strong></dt>
	<dd>62nd <a href="http://www.ietf.org/">IETF</a>. calsify,
	maybe SPF/MASS hallway chat. <a
	href="../../../2005/03dc-msp/">trip stuff</a>
<div class="vcard"><a rel="met" href="http://wiki.osafoundation.org/bin/view/Main/LisaDusseault" class="fn">Lisa Dussealt</a><br />
<span class="title">Development Manager &amp; Standards Architect</span><br />
<span class="org">Open Source Applications Foundation <a class="url" href="http://www.osafoundation.org/">OSAF</a></span><br />
<span class="adr"><span class="street-address">543 Howard St.</span> <span class="extended-address">5th Floor</span><br />
<span class="locality">San Francisco</span>, <span class="region">CA</span> <span class="postal-code">94105</span></span><br />
<a class="email" href="mailto:lisa@osafoundation.org">lisa@osafoundation.org</a>
</div>

</dd>
	
	<dt id="tp2005">1-4 March 2005 <strong>Boston,
	MA</strong></dt>

	<dd>
	  <strong><a
	  href="http://www.w3.org/2004/12/allgroupoverview.html" >W3C
	  Technical Plenary week</a> (<a href=
	  "http://www.w3.org/2001/sw/DataAccess/ftf5-bos.html"
	  >DAWG</a>, <a
	  href="http://www.w3.org/2001/tag/2005/02/28-agenda.html">TAG</a>,
	  SWIG)</strong>
	  <p><a href="../../../2005/03dc-bos/">trip stuff</a> includes
	  itin etc.</p>
        <div class="vcard" id="_596">
          <b class="fn org">Hyatt Harborside</b>
          <ul>
            <li class="adr intl postal parcel work">
              <div class="street-address">101 Harborside Drive</div>
              <div><span class="locality">Boston</span>, <span class="region">MA</span> <span class="postal-code">02128</span></div>
            </li>
          </ul>
          <div class="tel">Work: <a class="work msg" href="tel:617-568-1234">617-568-1234</a></div>
          <pre class="note">Feb/Mar 2005 Tech Plenary</pre>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2005-01-29T00:23:43Z</small></div>
        </div>
	</dd>

	<dt id="paw200502">9-10 Feb 2005 <strong>Boston, MA</strong>
	</dt>
	<dd><strong>Policy Aware Web research meeting</strong> at CSAIL (<a href="../../../2005/02dc-bos/">trip stuff</a>)
	</dd>
	<dt id="dawgftf4"><img alt="" src="../../../2005/01dc-hel/travelreq-hel-klm-img.png" align="right" />
19-20 January 2005 <strong>Helsinki, Finland</strong></dt>
  <dd><strong><a href="../../../2001/sw/DataAccess/">RDF Data
 Access Working Group</a> ftf meeting</strong>. <em>hmm... <a href="http://www.weatherunderground.com/">weatherunderground</a> doesn't seem to know about <a href="http://en.wikipedia.org/wiki/Espoo">Espoo</a></em>
<p><a href="../../../2005/01dc-hel/">travel stuff</a></p>
<iframe src="../../../2005/01dc-hel/travelreq-hel-klmb.txt" width="80%">
itin
</iframe>
        <div class="vcard" id="_593">
          <b class="fn org">Radisson SAS Plaza Hotel</b>
          <ul>
            <li class="adr intl postal parcel work">
              <div class="street-address">Mikonkatu 23</div>
              <div><span class="locality">Helsinki</span>, <span class="region"></span> <span class="postal-code">FIN-00100</span> <span class="country-name">Finland</span></div>
            </li>
          </ul>
          <div class="tel">Work: <a class="work msg" href="tel:+358-977590">+358-977590</a></div>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2005-06-07T21:14:57Z</small></div>
        </div>
</dd>
      </dl>

      <h2 id="y2004">2004</h2>
      <dl>
  <dt>29 Nov - 4 Dec 2004 <strong>Cambridge, MA</strong></dt>
  <dd><strong>TAG meeting, W3C@10, W3C AC meeting, W3C Team day</strong>
  <p><a href="../../../2004/12dc-bos/">trip stuff</a></p>
  <p>(cf. 11 Aug 2004 TAG meeting, confirmed <a href="http://www.w3.org/2001/tag/2004/10/05-07-tag.html#meeting-plans">6 Oct</a>)</p></dd>
  <dt id="dc200411">16-18 Nov 2004 <strong>Washington, DC</strong></dt>
    <dd><strong><a href="http://www.xmlconference.org/xmlusa/">XML 2004</a></strong>.
also meeting with <a href="http://www.w3.org/People/Weitzner.html">djw</a> to start Policy Aware Web work. cf
<a
href="http://esw.w3.org/topic/DigitalSignatureDeployment">DigitalSignatureDeployment</a>, <a href="http://esw.w3.org/topic/PathCross">PathCross</a>, <a href="http://www.biglumber.com/">biglumber</a>.
<p><a href="../../../2004/11dc-dca/">trip stuff</a></p>

    </dd>
  <dt id="tagftf200410">5-7 Oct 2004 <strong>Basel, Switzerland</strong></dt>
    <dd><strong><a href="http://www.w3.org/2001/tag/2004/10/05-07-tag">TAG ftf</a></strong>  <a href="../../../2004/10dc-bsl/">trip stuff</a>
.
  <p>Signed <a href="http://pgp.mit.edu:11371/pks/lookup?op=vindex&amp;search=0xE04F9A89">Roy's key</a> created 2001-06-24</p>
  <p>Nice to meet Len B. Thanks for the <a href="http://lamammals.blogspot.com/2004/11/xml-2004-people-who-changed-world.html">kind words</a>.</p>
  </dd>
  <dt id="dawg200409">16-17 Sep 2004 <strong>Bristol, United Kingdom</strong></dt>
    <dd><strong>RDF DAWG</strong> (per <a
      href="../../../2001/sw/DataAccess/ftf1">23Apr</a>)
<a href="../../../2004/09dc-brs/">trip stuff</a>
<iframe width="100%" src="../../../2004/09dc-brs/aa-brsb.txt" >itin</iframe>

</dd>
  <dt id="tag200408">9-11 Aug 2004, <strong>Ottawa, Canada</strong></dt>
    <dd><strong>TAG ftf</strong> per <a
      href="../../../2004/03/02-tag-summary.html">2Mar2004</a>. <a href="../../../2004/08dc-yow/">trip stuff</a>. Norm took a <a href="http://norman.walsh.name/2004/08/13/overheard">photo of me playing guitar</a>. Chris took a Chris took a <a href="http://lists.w3.org/Archives/Member/w3c-archive/2004Aug/0019.html">video</a> (member-confidential).
        <div class="vcard" id="_555">
          <b class="fn org">ARC THE HOTEL</b>
          <ul>
            <li>
              <a class="url" href="http://www.arcthehotel.com/en/main.html">Work</a>
            </li>
          </ul>
          <ul>
            <li class="adr intl postal parcel work">
              <div class="street-address">140 SLATER STREET</div>
              <div><span class="locality">OTTAWA</span>, <span class="region">ONTARIO</span> <span class="postal-code"></span> <span class="country-name">Canada</span></div>
            </li>
          </ul>
          <div class="tel">Work: <a class="work msg" href="tel:613-238-2888">613-238-2888</a></div>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2004-10-23T19:05:04Z</small></div>
        </div>

</dd>
  <dt id="dawg200407">14-15 July 2004 in Carlsbad, CA</dt>
    <dd><strong><a href="http://www.w3.org/2001/sw/DataAccess/ftf2">RDF DAWG ftf</a></strong>. See also: <a href="../../../2004/07dc-san/">trip stuff</a>.
</dd>
  <dt id="www2004">16-22 May 2004 <strong>New York, NY</strong> <img
  align="right" src="../../../2004/05dc-lga/aa-mci-lga-img.png" alt="" />
  </dt>
    <dd><b>W3C membership meeting, <a href="http://www2004.org/">WWW2004
      Conference</a></b>. giving a <a
      href="http://www2004.org/tutorial.htm">tutorial</a>: <a
      href="http://www.w3.org/2000/10/swap/doc/">Semantic Web Tutorial Using
      N3</a> with Berners-Lee and Hawke
    <p>including
    <a rel="foaf-currentProject" href="/2000/10/swap/doc/cwm">cwm</a>,
    <a rel="foaf-interest"
    href="/2000/10/swap/pim/travel.html">Semantic Web Travel
    Tools</a></p>
      <p>(see also <a href="http://esw.w3.org/topic/WWW2004">ESW on
      WWW2004</a>)</p>
      <p>see <a href="../../../2004/05dc-lga/">trip stuff</a></p>
      <iframe width="100%" src="../../../2004/05dc-lga/aa-mci-lgab.txt">
      LGA itin</iframe>

      <p>@@XFN met John P. again</p>

        <div class="vcard" id="_541">
          <b class="fn org">Sheraton New York Hotel &amp; Towers</b>
          <ul>
            <li>
              <a class="url" href="http://www.starwood.com/sheraton/search/hotel_detail.html?propertyID=421">Work</a>
            </li>
          </ul>
          <ul>
            <li class="adr intl postal parcel work">
              <div class="street-address">811 7th Avenue on 53rd Street</div>
              <div><span class="locality">New York</span>, <span class="region">NY</span> <span class="postal-code">10019</span></div>
            </li>
          </ul>
          <div class="tel">Work: <a class="work msg" href="tel:(212) 581-1000">(212) 581-1000</a></div>
          <div class="tel">Toll Free: <a class="work msg" href="tel:888-625-5144">888-625-5144</a></div>
          <pre class="note">Check in: 15 May 2004
Check out: 21 May 2004
Rate: $195.00 + 2.00 Occupany tax+ 13.63% room tax/night
Confirmation # 27301610</pre>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2004-05-15T02:21:56Z</small></div>
        </div>

    </dd>
  <dt id="dawg2004-03">22-23 Apr 2004 <strong>Amsterdam</strong></dt>
    <dd><a href="../../../2001/sw/DataAccess/"><strong>RDF Data Access
      WG</strong></a><strong>ftf</strong> see <a
      href="../../../2004/04dc-ams/">trip stuff</a>
      <p>@@XFN met DirkX</p>
        <div class="vcard" id="_537">
          <b class="fn org">Mayflower Hotel</b>
          <ul>
            <li>
              <a class="url" href="http://www.leidenpromotie.nl/horeca/hotels/Mayflower.htm">Work</a>
            </li>
            <li>
              <a class="url" href="http://www.lc.leidenuniv.nl/images/mkaart.jpg#14"></a>
            </li>
          </ul>
          <ul>
            <li class="adr intl postal parcel work">
              <div class="street-address">Beestenmarkt 2</div>
              <div><span class="locality">LEIDEN</span>, <span class="region"></span> <span class="postal-code">2312 CC</span></div>
            </li>
          </ul>
          <div class="tel">Work: <a class="work msg" href="tel:071-5142641">071-5142641</a></div>
          <pre class="note">75,-/night, including breakfast.
Date: 	Tue, 13 Apr 2004 13:28:56 +0200</pre>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2004-05-15T02:18:20Z</small></div>
        </div>
  </dd>


  <dt id="tp2004">1-5 Mar, 2004 <strong>Cannes, France</strong></dt>
    <dd><b><a href="../../../2003/08/allgroupoverview.html">Technical Plenary and WG
      Meeting Week</a></b>. see <a href="../../../2004/03dc-nce/">trip stuff</a>
      including <a href="../../../2004/03dc-nce/nce1.rdf" rel="seeAlso">RDF trip
      itinerary</a> 
    </dd>

	<dt id="tag200402">9 Feb 2004 <strong>Cambridge, MA</strong></dt>
	<dd>TAG multi-site. see <a href="../../../2004/02dc-bos/">trip stuff</a></dd>
	
	<dt id="bos3433">19-23 Jan 2004 <strong>Cambridge, MA</strong></dt>
	<dd>Visiting MIT to discuss research directions. <a
	href="../../../2004/01dc-bos/">trip stuff</a>, including <a
	href="../../../2004/01dc-bos/bos-itin.rdf" rel="seeAlso">RDF
	itinerary</a></dd>
      </dl>
    </div>
    <h2 id="L1680">2003</h2>

    <dl>
      <dt id="xml2003">7-12 Dec 2003
      <strong>Philadelphia, PA</strong></dt>
      <dd><strong><a href="http://www.xmlconference.org/xmlusa/">XML
      2003</a></strong>. See <a href="../../../2003/12dc-phl/">trip stuff</a>
      including <a href="../../../2003/12dc-phl/phl-res.rdf" rel="seeAlso">RDF
      trip itinerary</a>, whence comes the map and the text version below.
      <p><em>I</em> appeared in a <a
      href="http://www.xmlconference.org/xmlusa/2003/tuesday.asp#38">TAG town
      hall</a>, where I got a signed copy of the webarch document for my
      birthday, and an <a
      href="http://www.xmlconference.org/xmlusa/2003/thursday.asp#38">RDF
      town hall</a>, where I presented <a
      href="http://www.w3.org/2003/Talks/simo-semwebapp/all.htm">The Semantic
      Web and its applications at W3C</a>; we engaged in a little <a
      href="http://esw.w3.org/topic/ConnectingAudiences">ConnectingAudiences</a>:
      see <a
      href="http://rdfig.xmlhack.com/2003/12/12/2003-12-12.html#1071189051.231090">notes
      in rdfig blog</a>, <a
      href="http://xmlhack.com/read.php?item=2117">Simon StL's write up in
      xmlhack</a>.</p>
      <p>Other tidbits: went to <a
      href="http://www.tbray.org/ongoing/When/200x/2003/12/11/MeetingPeople">Tim
      and Lauren's gig</a>; see <a
      href="http://norman.walsh.name/2003/12/12/xml2003">Norm's notes</a>.</p>

        <div class="vcard" id="_383">
          <b class="fn org">Marriott Philadelphia</b>
          <ul>
            <li class="adr intl postal parcel work">
              <div class="street-address">1201 Market Street</div>
              <div><span class="locality">Philadelphia</span>, <span class="region">PA</span> <span class="postal-code">19107</span></div>
            </li>
          </ul>
          <div class="tel">Work: <a class="work msg" href="tel:1-215-625-2900">1-215-625-2900</a></div>
          <pre class="note">Dec 2003</pre>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2006-01-29T19:14:17Z</small></div>
        </div>

    </dd>

      <dt id="ac200311">
	<img align="right" alt="" src="../../../2003/11dc-nrt/nrt8sep-img.png" />

	17-19 November 2003 <strong>Kanagawa, Japan</strong>
      </dt>
      <dd>
	<em>I</em> attended the <strong><a href="../../../2001/tag/"
	rel="interest">TAG</a> f2f</strong> and the <strong><a
	href="http://www.w3.org/Member/Meeting/">W3C membership
	meeting</a></strong>. See also <a href="../../../2003/11dc-nrt/">trip
	stuff</a>, including <a rel="seeAlso" href="../../../2003/11dc-nrt/nrt8sep.rdf">RDF
	trip itinerary</a>

        <div class="vcard" id="_388">
          <b class="fn org">Shin Yokohama Prince Hotel</b>
          <ul>
            <li>
              <a class="url" href="http://www.princehotelsjapan.com/page_server/PrinceHotelsJapan/ShinYokohamaPrinc">Work</a>
            </li>
          </ul>
          <ul>
            <li class="adr intl postal parcel dom">
              <div class="street-address">3-4, Shin Yokohama
Kohoku-ku, Yokohama-shi</div>
              <div><span class="locality">Kanagawa</span>, <span class="region"></span> <span class="postal-code">222-8533</span></div>
            </li>
          </ul>
          <div class="tel">Work: <a class="work msg" href="tel:+81-45-474-8186">+81-45-474-8186</a></div>
          <pre class="note">2003-11 TAG/AC trip</pre>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2004-02-15T20:20:31Z</small></div>
        </div>

      </dd>


      <dt id="iswc2003">16-24 Oct 2003 <strong>Sanibel Island,
      FL</strong>
          <img align="right" alt="" src="../../../2003/10dc-rsw/aa-rsw-img.png" />
</dt>
                                                                                
      <dd><em>I</em> attended a <strong><a
      href="http://www.daml.org/">DAML</a> PI meeting</strong> the
      <strong>2nd International Semantic Web Conference (<a
      href="http://iswc2003.semanticweb.org/">ISWC2003</a>)</strong>
      >met <div class="vcard">
      <a class="fn url" rel="met colleague homepage" href="http://www.aiai.ed.ac.uk/~bat/">Austin Tate</a>
      </div>
      talked about W3C process, jabber and stuff, I think.
      <p>see
      <a href="http://www.w3.org/2003/10dc-rsw/trip">trip
      notes</a></p>
        <div class="vcard" id="_489">
          <b class="fn org">Sanibel Best Western Inn</b>
          <ul>
            <li class="adr intl postal parcel work">
              <div class="street-address">3287 W Gulf Dr</div>
              <div><span class="locality">Sanibel Island</span>, <span class="region">FL</span> <span class="postal-code">33957</span></div>
            </li>
          </ul>
          <div class="tel">Work: <a class="work msg" href="tel:+1-239-472-1700">(239) 472-1700</a></div>
          <pre class="note">res 9Oct 1 (800) 965 7772
5 nights $588 + tax = $640.92
7 day cxl $35. $117.60 dep
check in 4p. out before 11.</pre>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2004-02-15T20:21:31Z</small></div>
        </div>
        <div class="vcard" id="_443">
          <b class="fn org">Sanibel Taxi</b>
          <div class="tel">Work: <a class="work msg" href="tel:239-472-4160">239-472-4160</a></div>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2004-07-24T13:53:39Z</small></div>
        </div>
        <div class="vcard" id="_405">
          <b class="fn org">South Seas Resort</b>
          <div class="tel">Toll Free: <a class="work msg" href="tel:888-707-7888">888-707-7888</a></div>
          <div class="tel">Work: <a class="work msg" href="tel:239-472-5111">239-472-5111</a></div>
          <pre class="note">16Oct2003 daml pi</pre>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2004-02-15T20:20:37Z</small></div>
        </div>
      </dd>


      <dt id="bos200309">8-10 Sep 2003 <strong>Boston, MA</strong></dt>
      <dd><strong>W3C management meeting</strong>
<a href="../../../2003/09dc-bos/">trip stuff</a>, including
<a rel="seeAlso" href="../../../2003/09dc-bos/bos-sep.rdf">RDF travel itinerary</a>
</dd>


      <dt id="exml2003">4-8 Aug 2003 <strong>Montreal, Canada</strong>
<img alt="" src="../../2003/08dc-ymx/roadtrip-img.png" align='right' />
</dt>

      <dd><a
      href="http://www.extrememarkup.com/extreme/"><strong>Extreme
      Markup Languages 2003</strong></a>.

<p>
<a href="../../../2003/08dc-ymx/">trip stuff</a>, incl <a href="../../../2003/08dc-ymx/roadtrip.rdf" rel='seeAlso'>RDF itinerary</a></p>

<p><em>pity weather underground and various other
tools don't grok the real name of the city,
Montr&#233;al</em></p>

<p>I took <a href="../../../2003/08dc-ymx/exml-notes.txt">notes on Extreme Markup conference sessions</a> during the conference using my <a href="http://dm93.org/z2001/WearableGizmo">WearableGizmo</a>. They're extracted from the #irc logs of <a href="http://ilrt.org/discovery/chatlogs/rdfig/2003-08-05">05 Aug</a>,
<a href="http://ilrt.org/discovery/chatlogs/rdfig/2003-08-06">06 Aug</a>,
<a href="http://ilrt.org/discovery/chatlogs/rdfig/2003-08-07">07 Aug</a> and
<a href="http://ilrt.org/discovery/chatlogs/rdfig/2003-08-08">08 Aug</a>.
See also the <a href="http://rdfig.xmlhack.com">#rdfig weblog</a> for
those same days.</p>

        <div class="vcard" id="_354">
          <b class="fn org">Hilton Montreal Bonaventure Hotel</b>
          <ul>
            <li>
              <a class="url" href="http://www.extrememarkup.com/extreme/2003/hotel.asp"></a>
            </li>
          </ul>
          <ul>
            <li class="adr intl postal parcel work">
              <div class="street-address">900 De La Gauchetiere O 
Suite 10750</div>
              <div><span class="locality">Montreal</span>, <span class="region"></span> <span class="postal-code">H5A1E4</span> <span class="country-name">Canada</span></div>
            </li>
          </ul>
          <div class="tel">Work: <a class="work msg" href="tel:+1-514-878-2332">+1-514-878-2332</a></div>
          <pre class="note">ExML 2003
Aug</pre>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2004-02-15T20:20:10Z</small></div>
        </div>
</dd>


  <dt id="tagwli3j">22-23 Jul 2003 <strong>Vancouver, Canada</strong></dt>
  <dd><b>TAG ftf</b>

<p>
<a href="../../../2003/07dc-yvr/">trip stuff</a>, incl <a href="../../../2003/07dc-yvr/yvr.rdf" rel='seeAlso'>RDF itinerary</a></p>

        <div class="vcard" id="_342">
          <b class="fn org">Rosedale On Robson</b>
          <ul>
            <li>
              <a class="url" href="http://www.rosedaleonrobson.com/">Work</a>
            </li>
          </ul>
          <ul>
            <li class="adr intl postal parcel work">
              <div class="street-address">838 Hamilton St. at Robson</div>
              <div><span class="locality">Vancouver</span>, <span class="region">BC</span> <span class="postal-code">V6B 6A2</span> <span class="country-name">Canada</span></div>
            </li>
          </ul>
          <div class="tel">Work: <a class="work msg" href="tel:604-689-8033">604-689-8033</a></div>
          <pre class="note">
Check In: 19 July 2003
Check Out: 24 July 2003
Rate: $195.00 CAD ~$146.00 USD/night
</pre>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2004-02-15T20:19:49Z</small></div>
	</div>
</dd>

      <dt id="www2003">20-24 May 2003 <strong>Budapest,
      Hungary</strong></dt>

      <dd>
        <strong><a href="http://www2003.org/">WWW2003</a></strong> 

	<p>gave <a href="http://www.w3.org/2000/10/swap/doc/">Semantic Web Tutorial Using N3</a></p>
        <p><a rel='seeAlso'
        href="../../../2003/05dc-bud/bud25Mar.rdf">RDF
        itinerary</a>, <a href="../../../2003/05dc-bud/">trip
        stuff</a>, incl <a
        href="../../../2003/05dc-bud/bud25Mar.rdf"
        rel='seeAlso'>RDF itinerary</a></p>

        <p>hmm... <a
        href="http://www.cia.gov/cia/publications/factbook/geos/hu.html">
        Hungary</a> in CIA world fact-book, <a
        href="http://www.iana.org/root-whois/hu.htm">Hungary</a> in
        IANA</p>
      </dd>

      <dt id="daml2003-03">8-10 Apr 2003 <strong>Miami,
      FL</strong></dt>

      <dd><strong><a
      href="http://www.schafercorp-ballston.com/daml2003/Index.html">
      DAML PI meeting</a></strong>; among <a
      href="http://www.daml.org/events">DAML events</a>. <a
      href="../../../2003/04dc-mia/itin-mia.rdf" rel='seeAlso'>RDF
      itinerary</a>, <a href="../../../2003/04dc-mia/">trip
      stuff</a>. gave talk: <cite><a href="http://www.w3.org/2003/Talks/1017-swup/">Semantic Web Update</a></cite>
        <div class="vcard" id="_400">
          <b class="fn org">Marriott Biscayne Bay</b>
          <ul>
            <li>
              <a class="url" href="http://www.schafercorp-ballston.com/daml2003/Hotel.html"></a>
            </li>
            <li>
              <a class="url" href="http://www.marriott.com/DPP/propertyPage.asp?marshacode=MIABB">Work</a>
            </li>
          </ul>
          <ul>
            <li class="adr intl postal parcel work">
              <div class="street-address">1633 North Bayshore Drive</div>
              <div><span class="locality">Miami</span>, <span class="region">FL</span> <span class="postal-code">33132</span></div>
            </li>
          </ul>
          <div class="tel">Work: <a class="work msg" href="tel:305-374-3900">305-374-3900</a></div>
          <div class="tel">Fax: <a class="fax" href="tel:305-375-0597">305-375-0597</a></div>
          <pre class="note">DAML Apr 2003</pre>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2004-02-15T20:20:36Z</small></div>
        </div>
      </dd>

      <dt id="techplen2003">3-7 March 2003 <b>Cambridge,
      MA</b></dt>

      <dd>
        <b><a
        href="http://www.w3.org/2002/10/allgroupoverview.html">W3C
        tech plenary</a></b>: <a href="../../../2003/03dc-bos/">trip
        stuff</a> <a rel="seeAlso"
        href="../../../2003/03dc-bos/bos-me.rdf">semweb/foaf
        itinerary</a> 

        <ul>
          <li>co-chaired <a
          href="../../../2001/sw/meetings/tech-200303/">Semantic Web
          Architecture meeting</a><br />
          </li>

          <li>met 
	  <div class="vcard">
	    <a href="http://tantek.com/log/" class="fn url" rel="met colleague weblog">Tantek &#199;elik</a></div>
	    His <a
          href="http://tantek.com/log/2003/03.html#L20030306t2359">
          notes on 6Mar</a> include a photo of me and him.</li>
        </ul>
      </dd>

      <dt id="tagIrvine">6-7 Feb 2003 <b>Irvine, CA</b></dt>

      <dd><b><a href="../../../2001/tag/" rel="interest">Technical
      Architecture</a> group ftf</b>. <a
      href="../../../2003/02dc-sna/itin1.png">flight/itinerary map</a>, <a
      href="../../../2003/02dc-sna/itin1b.txt">brief itinerary</a>, <a
      rel="seeAlso" href="../../../2003/02dc-sna/itin1.rdf">itin.rdf</a>,
      and <a href="../../2003/02dc-sna/">other trip stuff</a></dd>

      <dt id="webontftf5">9-10 Jan 2002 <b>Manchester,
      U.K.</b></dt>

      <dd><b><a href="../../../2001/sw/WebOnt/" rel="interest">Web
      Ontology</a> WG <a
      href="../../../2001/sw/WebOnt/ftf5.html">ftf</a>.</b> <a
      href="../../../2003/01dc-man/">trip stuff</a></dd>
    </dl>

    <h2><a name="L1551" id="L1551">2002</a></h2>

    <dl>
      <dt id="cniFall2002">5-6 Dec 2002 <b>San Antonio, TX</b></dt>

      <dd><b><a
      href="http://www.cni.org/tfms/2002b.fall/index.html">CNI Fall
      2002 Task Force Meeting</a></b> (confidential: <a
      href="../../../2002/12dc-sat/trip.html">trip report</a>)</dd>

      <dt>18-21 Nov 2002 <b>Cambridge, MA</b></dt>

      <dd>W3C AC meeting. <a href="../../../2002/11dc-bos/">trip stuff</a>:
      <a href="../../../2002/11dc-bos/itin1.rdf">itin.rdf</a>, <a
      href="../../../2002/11dc-bos/itin1.png">flight map</a></dd>

      <dt>7-8 Oct 2002 <b>Bristol, U.K.</b></dt>

      <dd>
        <a href="../../../2001/sw/WebOnt/">Web Ontology WG</a>, <a
        href="/2001/sw/Europe/events/200210-cal/">calendaring
        workshop</a> my use case: <a
        href="/2000/10/swap/pim/travel.html">Semantic Web Travel
        Tools</a>; <a href="/Talks/2002/10/09-swcal/all.htm">travel
        tools presentation</a> 

        <p><a href="/2002/10dc-uk/">trip stuff</a>: <a
        href="/2002/10dc-uk/itin3.png">flight map</a></p>
      </dd>

      <dt>24-25 Sep 2002 <b>Vancouver, Canada</b></dt>

      <dd>
        <a href="/2002/09/24-tag-agenda">TAG ftf</a> , <a
        href="/2002/09dc-tag/">trip stuff</a> 

        <p>@@photos by Ian, Stuart, others?</p>
      </dd>

      <dt>4-9 AUGUST 2002 <b>Montreal, Canada</b> <a
      href="/2000/10/swap/pim/travel.html"></a></dt>

      <dd>
        <a href="http://www.extrememarkup.com/extreme/">Extreme
        Markup Languages, 2002</a> 

        <p>thinki about: <a
        href="/2000/10/swap/pim/travel.html">Semantic Web Travel
        Tools</a>, <a
        href="/2000/10/swap/infoset/xmod67.html">Using RDF to model
        XML structures</a></p>

        <p><a href="/2002/08dc-ymx/">trip stuff</a>: <a
        href="/2002/08dc-ymx/itinView.png">flight map</a></p>
      </dd>

      <dt>1-2 Jul 2002 <b>San Francisco, CA</b></dt>

      <dd><a href="../../../2001/sw/WebOnt/">Web Ontology WG</a>.
      <a href="/2002/07dc-ca/">trip stuff</a></dd>

      <dt>23-25 Jun 2002<b>Chatham, MA</b></dt>

      <dd>LCS offsite. trip stuff: <a
      href="/2002/06dc-ma/itin1-world.png">flight map</a></dd>

      <dt>May 2002, <b>Honolulu, HI</b></dt>

      <dd>
        <a href="http://www2002.org/">WWW2002</a>; <a
        href="/2001/tag/">TAG</a> ftf 

        <p><a
        href="http://photos.dajobe.org/gallery/www2002-hawaii">www2002
        photos by dajobe</a>; <a
        href="http://photos.dajobe.org/gallery/search.php?=&amp;searchstring=connolly">
        photos of me</a>; <a
        href="http://impressive.net/people/gerald/2002/05/04/18-34-06-med.jpg">
        of me play vball, by gerald</a>; <a
        href="http://impressive.net/people/gerald/2002/05/hawaii.html">
        among gerald's photos</a>; <a
        href="../../../2002/05hi-dc/trip">trip report/log</a>. <a href="http://www2002.org/CDROM/credits/index.html">program committee</a></p>
      </dd>

      <dt>25 Feb - 1 Mar 2002, <b>Nice, France</b></dt>

      <dd>tech plenary. <a href="/2002/02fr-tp/">trip
      stuff</a>. talk: <cite><a href="http://www.w3.org/Talks/2002/02/27-wa/">Developing Web Architecture</a></cite></dd>

      <dt>Feb 2002 <b>Alexandria, VA</b></dt>

      <dd><a href="http://www.python10.org/">Python 10</a>. <a
      href="/2002/02va-py/">trip stuff</a></dd>

      <dt>Jan 2002 <b>Murray Hill, NJ</b></dt>

      <dd><a href="/2001/sw/WebOnt/ftf1.html">WebOnt 1st
      ftf</a></dd>
    </dl>

    <h2 id="L1329">2001</h2>

    <dl class="eventLog">
      <dt>in Nov 2001 <b>Nice, France</b></dt>

      <dd><b>W3C advisory committee meeting</b>, W3C Team meeting.
      <a
      href="http://impressive.net/people/gerald/2001/11/nice.html">photos
      by gerald</a>; e.g. <a
      href="http://impressive.net/people/gerald/2001/11/07/02-53-50-med.html">
      playin pool</a></dd>

      <dt>in Oct 2001 <b>Ft. Lauderdale, FL</b></dt>

      <dd><b><a
      href="http://www.geekcruises.com/home/ll_home.html">Linux
      Lunacy Geek Cruise</a></b> giving a tutorial on <a
      href="http://www.python.org/">python</a> and <a
      href="http://www.zope.org/">Zope</a>. <a
      href="/2001/08/pyzll/pyzll">materials</a> in progress</dd>

      <dt>in August 2001 <b>Stanford, CA</b></dt>

      <dd>
        <b><a href="http://www.semanticweb.org/SWWS/">International
        Semantic Web Working Symposium (SWWS)</a>: Infrastructure
        and Applications for the Semantic Web</b> Stanford
        University 

        <p>This was a good <a
        href="http://lists.w3.org/Archives/Public/www-rdf-calendar/">
        rdf-calendar</a> experiment. See <a
        href="/2001/08swws67/">my input to the project</a>.
        @@t-shirt stuff, photos, etc.</p>
      </dd>

      <dt>in May 2001 <b>Hong Kong, Hong Kong</b></dt>

      <dd>
        <b><a href="http://www.www10.org/">WWW10</a></b> 

        <p>presenting <a href="/2000/01/sw/#daml">DAML</a> and
        other <a href="/2000/01/sw/">Semantic Web Advanced
        Development</a> stuff; stay tuned for <a
        href="/Talks/">presenatation materials</a>.</p>
      </dd>

      <dt>in Mar 2001 <b>Austin, TX</b></dt>

      <dd><b><a
      href="http://www.knowledgetechnologies.net/">Knowledge
      Technologies 2001</a></b>, a GCA conference<br />
       <a href="/2001/03dc-aus/trip">trip report</a>, 5-9 March,
      2001<br />
      <br />
       presentations: <a href="/2001/Talks/0305-kt-upd/">W3C
      update</a>, <a href="/2001/Talks/0103daml-kt/">DAML</a>; see
      also: <a href="/2001/01/rtriw44">my notes on integration of
      synchronous communication</a> (tel:, irc:,
      videoconferencing), my <a
      href="/Architecture/NOTE-ioh-arch">comparison of the Web to
      Engelbart's Integrated Open Hypertext requirements</a>, and
      my <a href="/Collaboration/knowledge">bibliography on
      knowledge exchange</a>. <a href="http://gca.org/whats_xml/xml_files/issue26/kt2001.htm">program committee</a></dd>

      <dt>in Feb 2001 <b>Cambridge, MA</b></dt>

      <dd><b>W3C technical plenary</b>. photo of <a
      href="http://blogspace.com/pictures/photo-view?photo_id=3723">
      me with my guitar</a> and <a
      href="http://logicerror.com/w3c-meeting-2001-2">other
      notes</a> byAaronSw.
        <div class="vcard" id="_409">
          <b class="fn org">Royal Sonesta Hotel Boston</b>
          <ul>
            <li>
              <a class="url" href="http://yp.yahoo.com/py/ypMap.py?Pyt=Typ&amp;tuid=183788&amp;ck=2052680766&amp;tab=B2C&amp;tcat=8">Unlabeled</a>
            </li>
          </ul>
          <ul>
            <li class="adr intl postal parcel work">
              <div class="street-address">5 Cambridge Pkwy</div>
              <div><span class="locality">Cambridge</span>, <span class="region">MA</span> <span class="postal-code">02142</span></div>
            </li>
          </ul>
          <div class="tel">Unlabeled: <a class="voice" href="tel:(617) 491-3600">(617) 491-3600</a></div>
          <div class="tel">Work: <a class="work msg" href="tel:617-806-4200">617-806-4200</a></div>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2005-01-19T18:27:11Z</small></div>
        </div>

      </dd>

      <dt>in Jan 2001 <b>Sophia Antipolis, France</b></dt>

      <dd><b><a href="/2000/11/w3c-drm-cfp">W3C Rights Management
      Workshop</a></b></dd>
    </dl>

    <h2><a id="y2000" name="y2000">2000</a></h2>

    <dl class="eventLog">
      <dt id="xml2000">3-8 Dec 2000 <b>Washington, DC</b></dt>
      <dd><a href="http://www.gca.org/attend/2000_conferences/XML_2000/default.htm">XML 2000</a>.
      <div class="vcard"><a class="url fn" href="http://dyomedea.com/english/">Eric van der Vlist</a>
      <div class="tel">+33-01-53-69-98-57</div>
      <div class="adr"><span class="street-address">22, rue Edgar Faure</span><br />
      <span class="postal-code">75015</span> <span class="locality">Paris</span>, <span class="country-name">France</span></div>
      </div>
      <p>see also: conference proceedings on CD. <em>hmm... index conference CDs?</em></p>
        <div class="vcard" id="_571">
          <b class="fn org">Marriott Woodley</b>
          <div class="tel">Work: <a class="work msg" href="tel:+1-202-328-2000">202-328-2000</a></div>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2004-11-29T01:03:47Z</small></div>
        </div>

      </dd>
      <dt>in Oct 2000 <b>Cambridge, MA</b></dt>

      <dd>W3C mgmt meeting. travel tools stuff: <a
      href="../../2000/10/atrip/Makefile">Oct 2000 Makefile</a> -
      n3 to RDF via cwm, RDF to HTML via XSLT. some palm datebook
      integration.</dd>

      <dt>in Sep 2000 <b>Hawthorne, NY</b></dt>

      <dd>after a <b><a
      href="/XML/Group/2000/09/xml-plenary-ftf">W3C XML Plenary
      Meeting</a></b> in Hawthorne, New York, hung out for a while
      and visited the <a href="http://www.amnh.org/">American
      Museum of Natural History</a>, <a
      href="http://www.sesameplace.com/">Sesame Place</a>, and the
      <a
      href="http://www.dolce.com/tarrytown/tarrytown.html">Tarrytown
      House</a> with the family.
        <div class="vcard" id="_411">
          <b class="fn org">Courtyard By Marriott</b>
          <ul>
            <li>
              <a class="url" href="http://yp.yahoo.com/py/ypMap.py?Pyt=Typ&amp;tuid=22110877&amp;ck=3589756403&amp;tab=B2C&amp;tcat"></a>
            </li>
          </ul>
          <ul>
            <li class="adr intl postal parcel work">
              <div class="street-address">475 White Plains Rd</div>
              <div><span class="locality">Tarrytown</span>, <span class="region">NY</span> <span class="postal-code">10591</span></div>
            </li>
          </ul>
          <div class="tel">Work: <a class="work msg" href="tel:(914) 631-1122">(914) 631-1122</a></div>
          <div>
            <small class="categories">Travel</small>
      rev <small class="rev">2004-02-15T20:20:42Z</small></div>
        </div>

      </dd>

      <dt>in Sep 2000 <b>Aspen, CO</b></dt>

      <dd><b>28th annual MotherLode Volleyball Classic</b> (<a
      href="http://www.egroups.com/group/aspen2k">egroup</a>)</dd>

      <dt>15-18 Aug 2000 <b>Montreal, Canada</b></dt>

      <dd><b><a
      href="http://www.gca.org/attend/2000_conferences/Extreme_2000/default.htm">
      Extreme Markup Languages 2000</a></b><br />
       topicmaps, RDF, Doug Lenat, URIs, etc.
       <div class="vcard"><a class="fn url" href="http://www.holoweb.net/~liam/">Liam Quin</a>
       <div class="adr">
<span class="locality">Toronto</span>, <span class="region">Ontario</span>, <span class="country-name">Canada</span>
       </div>
       </div>
      </dd>

      <dt id="daml200008">14-16 Aug 2000 <b>Cambridge, MA</b></dt>
      <dd><a href="http://www.daml.org/">DAML</a> kick-off
      <div class="vcard">
      <a class="url fn" href="http://ihmc.uwf.edu/"><span class="given-name">Patrick</span> <span class="additional-name">J.</span> <span class="family-name">Hayes</span></a>
      <div class="adr"><span class="locality">Pensacola</span> <span class="region">FL</span></div>
      </div>
      </dd>
      <dt>19-20 Jul 2000 <b>Cambridge, MA</b></dt>

      <dd><b><a href="http://www.w3.org/2000/07/19-DAML">DARPA DAML
      jumpstart workshop</a></b>. met:
      <ul>
      <li class="vcard">
	<a class="fn url" rel="met colleague"
	   href="http://www.ksl.stanford.edu/people/dlm/">Deborah
	McGuinness</a></li>
	<li class="vcard"><a rel="met colleauge" class="fn url" href="http://www.cs.umd.edu/~hendler/">Jim Hendler</a></li>
	<li>Heflin</li>
	<li>Stein</li>
	<li>Karger</li>
	<li>Dean</li>
      </ul>
      </dd>

      <dt>in Jun 2000 <b>Cambridge, MA</b></dt>

      <dd>presented <cite><a href="../../../2000/06/sw594">Toward
      Swell, the Semantic Web Logic Language</a></cite></dd>

      <dt>in May 2000 <b>Amsterdam, Netherlands</b></dt>

      <dd>
        <b><a href="http://www9.org/">WWW9</a></b> 

        <ul>
          <li><a href="/2000/Talks/www9-xml/all.htm">XML Update,
          May 1999</a></li>
          <li>presentation: <cite><a href="../../../2000/Talks/www9-larch/all.htm"> Specifying Web Architecture with Larch</a></cite></li>
        </ul>
      </dd>

      <dt>in Jan 2000 <b>San Antonio, TX</b></dt>

      <dd><b><a href="http://www.ala.org/events/mw2000/">ALA
      Midwinter Meeting 2000</a></b><br />
       presented <cite><a
      href="../../../2000/01/ala2349/all.htm">Seeds of the Semantic
      Web</a></cite><br />
       and had some <a href="../2000/0001sa">family fun on the
      riverwalk</a></dd>
    </dl>

    <h2><a id="y1999" name="y1999">1999</a></h2>

    <dl class="eventLog">
      <dt>in Dec 1999 <b>Philadelphia, PA</b></dt>

      <dd><b><a
      href="http://www.gca.org/conf/xml99/xm99ndex.htm">XML
      '99</a></b>: co-chair of Core track<br />
       presentation: <cite><a
      href="../../../Talks/1999/9912xml-update/all.htm">W3C Web
      Standards Update, Dec 1999</a></cite><br />
       coverage: <a
      href="http://www.xml.com/pub/1999/12/xml99/standards.html">Schemas
      top of delegate wishlist at XML'99</a> by Edd Dumbill on <a
      href="http://www.xml.com/">xml.com</a>, <a
      href="http://technetcast.ddj.com/tnc_program.html?program_id=70">
      XML Standards Update</a>, technetcast</dd>

      <dt>in Oct 1999</dt>
      <dd>program committee of <a href="http://www.usenix.org/events/usits99">USENIX Symposium on Interent Technologies and Systems</a></dd>

      <dt>in Oct 1999 <b>London, U.K.</b></dt>

      <dd><b><a href="http://www.xmlconference.com/">XML
      One</a></b>, as technical chair</dd>

      <dt>in May 1999 <b>Austin, TX</b></dt>

      <dd><b><a href="http://www.xmlconference.com/">XML
      One</a></b> by <a href="http://www.sigs.com/">SIGS</a>, who
      also published <a
      href="../WebApps/Overview.html">WebApps</a>, a magazine I
      used to edit.<br />
       @@Simon@IBM guy, markg</dd>

      <dt>in May 1999 <b>Toronto, Canada</b></dt>

      <dd><b><a href="http://www8.org/">WWW8</a></b><br />
       presentation: <cite><a
      href="../../../Talks/1999/0512www8-xml">XML
      Update</a></cite>.

      <div><a href="http://www8.org/chairs.html">program committee</a></div>
      </dd>

      <dt id="e9904xml-eu">in Apr 1999 <b>Granada, Spain</b></dt>

      <dd><b><a href="../../../XML/">XML Europe '99</a></b><br />
       presentation: <cite><a
      href="../../../Talks/9904xml-eu/all.htm">XML in Context:
      W3C</a></cite><br />
       (<a href="../../../XML/#9904xml-eu">other W3C stuff at this
      event</a>)</dd>

      <dt id="e9903ietf-mn">in Mar 1999 <b>Minneapolis, MN</b></dt>

      <dd><b><a
      href="http://www.ietf.org/meetings/IETF-44.html">44th
      IETF</a></b></dd>

      <dt id="e9903xtech">in Mar 1999 <b>San Jose, CA</b></dt>

      <dd><b><a
      href="http://www.gca.org/conf/xtech99/xtecindx.htm">XTech
      '99</a></b><br />
       (<a href="../../../XML/#9903xtech">other W3C stuff at this
      event</a>)</dd>

      <dt id="e9902wap-dfw">in Feb 1999 <b>Fort Worth, TX</b></dt>

      <dd><b><a href="http://www.wapforum.org/">WAP
      Forum</a></b><br />
       presentation: <a
      href="../../../Talks/9902arch-wap/"><cite>Web
      Architecture</cite></a> (<a
      href="../../../Talks/9902arch-wap/all.htm">source</a>)</dd>
    </dl>

    <h2><a id="y1998" name="y1998">1998</a></h2>

    <dl class="eventLog">
      <dt>in Dec 1998 <b>Cambridge, MA</b></dt>

      <dd>attended <b><a href="../../../TandS/QL/QL98">W3C Query
      Languages Workshop</a></b><br />
       chaired the Metadata session. <a
      href="../../../TandS/QL/QL98/participants.html">participants</a>
      included <a href="http://danbri.org/about"
      rel="met friend mbox co-worker colleague">Dan Brickley</a>, <a
      href="http://www.guha.com/" rel="met colleague">R.V. Guha</a></dd>

      <dt>in Nov 1998 <b>Chicago, IL</b></dt>

      <dd>attended <b><a
      href="http://www.gca.org/conf/xmlchi98/xmlindex.htm">XML
      '98</a></b><br />
       chair of the W3C Standards Update panel (@@slides)</dd>

      <dt>in Nov 1998 <b>Austin, TX</b></dt>

      <dd>
        Saw <a href="http://sagan.earthspace.net/~esr/">Eric
        Raymond</a> speak on <b><a
        href="http://www.cs.utexas.edu/users/wombat/esr.html">The
        Open Source Revolution</a></b> at <a
        href="http://www.utexas.edu/">UT</a> 

        <p>met <a
        href="http://www.altavista.com/cgi-bin/query?pg=q&amp;text=yes&amp;what=web&amp;kl=XX&amp;q=%22mark+leibovich%22&amp;act=search">
        Mark Leibovich</a> of the <a
        href="http://www.washingtonpost.com/%20">Washington
        Post</a></p>
      </dd>

      <dt id="e9810icnp">in Oct 1998 <b>Austin, TX</b></dt>

      <dd>attended ACM SIGCOMM <b><a
      href="http://www.computer.org/conferen/home/icnp/">ICNP
      '98</a></b></dd>

      <dt id="e9808xml-montreal">in August 1998 <b>Montreal,
      Canada</b></dt>

      <dd>attended <b><a
      href="http://www.gca.org/conf/meta98/xmldev98/">GCA
      Conference: XML Developers' Conference</a></b><br />
       <a
      href="http://www.gca.org/conf/xmldev98/photos/index.htm">photos
      by Jon Bosak</a> including one of <a
      href="http://www.gca.org/conf/xmldev98/photos/m22.jpg">me,
      Makoto, and Michael</a><br />
       <a href="http://www.xml.com/tbray/xm/">photos</a> by Tim
      Bray</dd>

      <dt id="e9807mobile">in Jul 1998 <b>Oakland, CA</b></dt>

      <dd>attended <b>W3C Mobile Interest Group meeting</b> <a
      href="../../../Mobile">mobile stuff</a></dd>

      <dt id="e9806ac-geneva">in Jun 1998 <b>Geneva,
      Switzerland</b></dt>

      <dd><b>W3C Advisory Committee Meeting</b><br />
       <a href="../9806geneva.html">holiday in Switzerland,
      Germany</a></dd>

      <dt id="e9805html-sfo">in May 1998 <b>San Francisco,
      CA</b></dt>

      <dd><b><a href="../../../MarkUp/future">Shaping the Future of
      HTML</a></b></dd>

      <dt id="e9804www7">in Apr 1998 <b>Brisbane,
      Australia</b></dt>

      <dd>presentations: <cite><a
      href="../../../Talks/9804www7-arch/">W3C Architecture
      Domain</a></cite>, <cite><a
      href="../../../Talks/9804www7-xml/">XML and the Evolution of
      Web Data Formats</a></cite> at <b><a
      href="http://www7.conf.au/">The 7th International World Wide
      Web conference (WWW7)</a></b></dd>

      <dt id="e9803xml-seattle">in Mar 1998 <b>Seattle, WA</b></dt>

      <dd>presentation: <cite><a
      href="../../../Talks/9803xml-seattle/">Evolution of Web Data
      Formats</a></cite> at <b><a
      href="http://www.gca.org/conf/xmlcon98/">XML'98: The
      Conference</a></b></dd>

      <dt>in Feb 1998 <b>Austin, TX</b></dt>

      <dd>dropped by <b><a href="http://www.cfp.org/">The Eighth
      Conference on Computers, Freedom &amp; Privacy
      CFP'98</a></b></dd>

      <dt id="e9801ac">in Jan 1998 <b>San Jose, CA</b></dt>

      <dd><b>7th <a href="../../../Member/Meeting/">Advisory
      Commitee Meeting</a></b></dd>
    </dl>

    <h2><a id="y1997" name="y1997">1997</a></h2>

    <dl class="eventLog">
      <dt id="e9712dc-ietf">in Dec 1997 <b>Washington, DC</b></dt>

      <dd><b><a
      href="http://www.ietf.org/meetings/Washington.html">40th
      IETF</a></b></dd>

      <dt id="e9712dc-xml">in Dec 1997 <b>Washington, DC</b></dt>

      <dd>GCA <b><a href="http://www.gca.org/conf/sgml97/">SGML/XML
      '97</a></b></dd>

      <dt id="e9712dc-iworld">in Dec 1997 <b>New York, NY</b></dt>

      <dd><b><a
      href="http://events.internet.com/fall97/">Iworld</a></b></dd>

      <dt id="e9709aspen">in Sep 1997 <b>Aspen, CO</b></dt>

      <dd>
        <b><a
        href="http://www.coloradovolleyball.com/mthlode.htm">25th
        Annual Motherlode Volleyball Classic</a></b> 

        <p><a href="../1997/9709aspen/">great mountain air, great
        volleyball, and a great party!</a></p>

        <p>I went in '90, '91, and '93 too.</p>
      </dd>

      <dt id="e9709push">in Sep 1997 <b>Cambridge, MA</b></dt>

      <dd><b><a href="../../../Architecture/9709_Workshop/">W3C
      Workshop on Push Technology</a></b></dd>

      <dt id="e9706w3cac">in Jun 1997 <b>Tokyo, Japan</b></dt>

      <dd><b><a href="../../../Member/Meeting/97JuneAC/">6th
      meeting of the W3C Advisory Committee</a></b><br />
       Architecture Domain Update<br />
       see also: <a href="../../../Architecture/">Architecture
      Domain</a></dd>

      <dt id="html9705">in May 1997 <b>Grenoble, France</b> and <b>Sophia Antipolis, France</b></dt>
      <dd>HTML WG meeting. <cite><a href="http://www.w3.org/XML/9705/hacking.html">XML Hacking is Fun!</a></cite>. visited offices of Vincent, Daniel V. Anselm's home. got a copy of Vincent's "Type Modelling..." paper on cut/paste across DTDs (see tag versioning issue (41?)).
<a href="http://www.w3.org/Team/9705/connolly-france.html">more notes</a> (confidential.</dd>

      <dt id="npi9704">in Apr 1997 <b>Austin, TX</b></dt>

      <dd>U.T. undergraduate class: <b><a
      href="http://net.cs.utexas.edu/users/dragon/cs378/">Network
      Protocols and Implementation</a></b>. @@EY<br />
      <br />
       guest lecture on <a href="../../../OOP/">OOP</a> etc.</dd>

      <dt id="e9704www6">in Apr 1997 <b>Santa Clara, CA</b></dt>

      <dd>
        <b><a href="http://www6conf.slac.stanford.edu/">Sixth
        International World Wide Web Conference</a></b><br />
         W3C Architecture Domain: Connecting Computers<br />
         Presented the state of the <a
        href="../../../Architecture/">Architecture Domain</a> 

        <p>see: <a
        href="http://www.w3.org/pub/Conferences/WWW6/">W3C at
        WWW6</a></p>
      </dd>

      <dt id="e9704ietf">in Apr 1997 <b>Memphis, TN</b></dt>

      <dd><b><a
      href="http://www.ietf.org/proceedings/97apr/toc-97apr.html">38th
      IETF</a></b><br />
       HTTP WG, PKIX</dd>
    </dl>

    <h2><a id="y1996" name="y1996">1996</a></h2>

    <dl class="eventLog">
      <dt id="e9610ncf">in Oct 1996 <b>Chicago, IL</b></dt>

      <dd><b><a
      href="http://www.iec.org/events/ncf/overview.htm">IEC
      NCF</a></b><br />
      <br />
       Gave a <a
      href="http://www.iec.org/events/ncf/pf/pf1.htm">Proforum</a>
      at with <a rel="metHome"
      href="http://www-mtl.mit.edu/~penfield/">Paul
      Penfield</a></dd>

      <dt>in Sep 1996 <b>San Francisco, CA</b></dt>

      <dd><b><a
      href="http://www.seyboldseminars.com/Events/sf96/">Seybold</a></b><br />

       <a
      href="http://www.seyboldseminars.com/Events/sf96/sessions/w3c.htm">
      W3C Report Card</a><br />
       Panel discussion</dd>

      <dt id="e9606oop">in Jun 1996 <b>Boston, MA</b></dt>

      <dd><b><a href="../../../OOP/9606_Workshop/">Joint W3C/OMG workshop
      on distributed objects and mobile code</a></b><br />
       co-chair with <a rel="met colleague" href="http://www.omg.org/~soley/">Richard Soley</a>. co-chair, program committee</dd>

      <dt>in June 1996 <b>Boston, MA</b></dt>

      <dd><b>W3C Advisory Committee meeting</b><br />
       Architecture Domain Update<br />
       Presented the state of the <a
      href="../../../Architecture/">Architecture Domain</a></dd>

      <dt id="e9605disw">in May 1996 <b>Cambridge, MA</b></dt>

      <dd><b><a href="../../../Search/9605-Indexing-Workshop/">W3C
      Workshop on Distributed Indexing and Searching</a></b><br />
       organizer, contact on W3C staff</dd>

      <dt id="e9603-hrweb">17 Mar 1996 <b>Washington, DC</b></dt>

      <dd><a
      href="http://www.cs.bgsu.edu/hrweb/ht96-call.html">Hypermedia
      Research and the World-Wide Web</a> workshop at <b><a
      href="http://www.acm.org/siglink/ht96/">Hypertext
      '96</a></b><br />
       <a href="../../../Collaboration/ECommerceEval">an evaluation
      of the web w.r.t Engelbart's work</a></dd>

      <dt>in Feb 1996 <b>Cambridge, MA</b></dt>

      <dd><b>New England SGML User Group Meeting</b><br />
       <a href="http://www.w3.org/pub/WWW/MarkUp/WD-doctypes">HTML
      as an SGML Application</a></dd>

      <dt>in Jan 1996 <b>Cambridge, MA</b></dt>

      <dd><b>W3C workshop on Demographics</b> <a
      href="../../../Demographics/">demographics info</a></dd>

      <dt>in Jan 96 <b>San Diego, CA</b></dt>

      <dd><b><a href="http://www.omg.org/">OMG</a> TC</b></dd>
    </dl>

    <h2><a id="y1995" name="y1995">1995</a></h2>

    <dl class="eventLog">
      <dt>in Dec 1995 <b>Boston, MA</b></dt>

      <dd><b><a
      href="http://www.w3.org/pub/WWW/Conferences/WWW4/">4th
      International World Wide Web Conference</a></b><br />
       the web as a distributed applications platform<br />
       Panel. See: <a href="../../../OOP/">OOP</a><br />
       <a
      href="../../../Collaboration/9512www4/auth-tools.html">authoring
      tools BOF</a>, where I met <a rel="met" href="http://lair.xent.com/pipermail/fork/Week-of-Mon-20040301/028652.html">Dave Long</a></dd>

      <dt>6-7 November 1995 <b>Paris, France</b></dt>

      <dd><b><a
      href="http://www.w3.org/pub/WWW/Style/951106_Workshop/">W3C
      Workshop on Stylesheets</a></b>
      met <a rel="met colleague" href="http://www.w3.org/People/howcome/">H&#x00E5;kon Lie</a> (perhaps not for the first time).
      </dd>

      <dt id="austin-ecommerce">30-31 October 1995 <b>Austin,
      TX</b></dt>

      <dd><b><a
      href="http://cism.bus.utexas.edu/ravi/ecomm.html">The First
      International Conference on Electronic Commerce</a></b><br />
       <cite><a
      href="http://www.w3.org/pub/WWW/Talks/9510_UTECommerce/">Technology
      for the Web Marketplace</a></cite><br />
       Proceedings published as a <a
      href="../pubs.html#riec-kalakota-whinston">book</a></dd>

      <dt>14-15 Sep 1995 <b>Chicago, IL</b></dt>

      <dd><b>Spyglass partners</b></dd>

      <dt id="e9505mobile">5 July 1995 <b>Cambridge, MA</b></dt>

      <dd><b><a href="../../../MobileCode/Workshop9507/">W3C Mobile
      Code Workshop</a></b>. <a href="http://today.java.net/jag/"
      rel="met">James Gosling</a></dd>

      <dt id="ietf-jul95">in July 1995 <b>Stockholm,
      Sweeden</b></dt>

      <dd>
        <b><a
        href="http://www.ietf.cnri.reston.va.us/meetings/Stockholm.html">
        Stockholm IETF</a></b> 

        <ul>
          <li>HTTP WG: I filled in for Dave Raggett as meeting
          chair.</li>

          <li>HTML WG: talked about META and resource
          description</li>

          <li>URI WG: I was there for a little bit</li>

          <li>WTS BOF: left URI early for this one.
          Interesting...</li>

          <li>ISPP BOF: Microsoft's STT was presented! Also, iKP,
          cybercash, FV, and the usual e-commerce gang.</li>
        </ul>
      </dd>

      <dt>in July 10 <b>Cambridge, MA</b><br />
      </dt>

      <dd><b>W3C Security Working Group Meeting</b></dd>

      <dt>in May 1995 <b>Reston, VA</b></dt>

      <dd><b><a href="http://www.python.org/workshops/1995-05/">The
      Second Python Workshop</a></b>
      met <a rel="met colleague" href="http://www.python.org/~guido/">Guido van Rossum</a></dd>

      <dt>in May 1995 <b>San Francisco, CA</b></dt>

      <dd><b>W3C Advisory Committee Meeting</b></dd>

      <dt>in April 1995<b>Santa Clara, CA</b></dt>

      <dd><b>DCI WebWorld</b></dd>

      <dt>in April 1995 <b>Darmstadt, Germany</b></dt>

      <dd><b><a
      href="http://www.igd.fhg.de/www/www95/www95.html">Third
      International World-Wide Web Conference</a></b></dd>

      <dt>in April 1995 <b>Danvers, MA</b></dt>

      <dd><b><a
      href="http://www.ietf.org/proceedings/95apr/toc.html">32nd
      ETF</a></b>
      <p><a rel="met colleague" href="http://www.acm.org/tsc/klensin.txt">John Klensin</a> introduced me to the tensions around chair/author/editor)</p></dd>

      <dt id="webworld9401">in Jan 1995 <b>Orlando, FL</b></dt>

      <dd><b><a href="http://www.ocm.com/dci/">DCI's WEB WORLD -
      The Conference</a></b><br />
       <a
      href="http://www.w3.org/pub/WWW/People/Connolly/events/webworld/ww9401.html">
      Formalizing Web Technology</a><br />
       <a
      href="http://www.w3.org/pub/WWW/People/Connolly/events/webworld/trip-report.html">
      Trip Report</a><br />
      <p>met <a rel="met colleague" href="http://encyclozine.com/Richmond/Alan/">Alan Richmond</a>
      <em> hmm... there was a <a
      href="http://stars.com/Internet/Web/About.html">trip report by him</a> a while ago, but it seems to have gone.</em></p></dd>
    </dl>

    <h2><a id="y1994" name="y1994">1994</a></h2>

    <dl class="eventLog">
      <dt>in October 1994 <b>Austin, TX</b></dt>

      <dd>missed the <a
      href="http://www.ncsa.uiuc.edu/SDG/IT94/IT94Info.html">Second
      International Conference on WWW</a>. My wife and I were busy
      with the birth of <b><a rel="child met co-resident"
      href="misc/brennan.html">
      Brennan</a></b></dd>

      <dt>in Sep 1994 <b>San Francisco, CA</b></dt>

      <dd>
        <b>Seybold '94</b><br />
         panel on Mosaic/WWW for publishing with Tim Krauskopf from
        Spyglass, <a rel="met" href="http://www.xml.com/pub/au/36">Mark Walter</a> from Seybold... 

        <p>Electrong distribution was a hot topic. Sorry, no web
        references handy.<br />
         met Ted Nelson</p>
      </dd>
    </dl>

    <dl class="eventLog">
      <dt>in July 1994 <b>Toronto, Canada</b></dt>

      <dd>
        <b><a
        href="http://www.ietf.org/proceedings/94jul/toc.html">30th
        IETF Meeting</a></b> 

        <p><a
        href="ftp://ds.internic.net/ietf/94jul/html-minutes-94jul.txt">
        HTML BOF minutes</a> by Tim Berners-Lee.</p>
      </dd>

      <dt>in May 1994 <b>Geneva, Switzerland</b></dt>

      <dd><b><a href="http://www1.cern.ch/WWW94/">First
      International Conference on WWW</a></b><br />
      <br />
       <a href="www94/trip-report.html">my trip report</a>, <a
      href="http://www.elsevier.nl/cgi-bin/ID/WWW94?address=connolly@hal.com">
      final proceedings</a>
      <p>met <a href="/People/Raggett/" rel="met co-worker">Dave Raggett</a> in person.</p></dd>
    </dl>

    <h2><a id="y1991" name="y1991">1991</a></h2>

    <dl class="eventLog">
      <dt>in Dec 1991 <b>San Antonio, TX</b></dt>

      <dd><b><a
      href="http://www.acm.org/pubs/contents/proceedings/hypertext/122974/index.html">
      Hypertext '91</a></b>.
      met <a rel="met co-worker friend" href="../../Berners-Lee/">Tim
      Berners-Lee</a>, <a rel="met acquaintance" href="http://www.bootstrap.org/chronicle/cv.html">Doug Engelbart</a> for the first time.<br />
       met <a rel="sweetheart met co-resident friend" href="http://dm93.org/#Mary">Mary Ulrich</a>, now my wife, the same week.</dd>

      <dt>in Sep? 1991 <b>Sebastopol, CA</b></dt>

      <dd><b><a
      href="http://www.ora.com/davenport/index.html">Davenport</a></b><br />

       Met Terry Allen, <a rel="met acquaintance"
      href="http://www.oreillynet.com/pub/au/26">Dale Dougherty</a>
      <tt>dale@ora.com</tt>, <a
      href="http://www.techno.com/steven.htm" rel="met colleague">Dr.
      Steven R. Newcomb</a>, Murray Maloney?, Lar Kaufman?</dd>

      <dt>in Aug 1990 <b>Dallas, TX</b></dt>

      <dd><b>ACM SIGGRAPH</b><br />
       from Convex</dd>
    </dl>

    <div>
      <h2 id="hacking">Automation notes</h2>

      <p><em>(If you're an automated agent, you're probably more
      interested in the <a href="events-smart.rdf">RDF version of this
      page</a>, and the <a href="../smart-home.xsl">transformation</a>
      used to generate it. see also: finin's work on italks: <a
      href="http://daml.umbc.edu/ontologies/talk-ont.daml">talk
      ont</a> (broken XML))</em></p>

      <p><a href="http://gmpg.org/xfn">  <img src="http://gmpg.org/xfn/xfn-btn.gif" alt="XFN Friendly" /> </a></p>

      <ol>
	<li>Jul 2005: trying out <a href="http://developers.technorati.com/wiki/hCard">hCard</a></li>
	<li>Feb 2004: making this page <a href="http://gmpg.org/xfn">
	<img src="http://gmpg.org/xfn/xfn-btn.gif" alt="XFN Friendly"
	/></a>. Noodling on Orkut, LinkedIn, and FOAF.</li>

        <li><a href="/2002/01dc-nj/notes">Jan 2002 NJ WebOnt
        trip</a>. <a href="/2002/01dc-nj/itin2ical.n3">rules</a>,
        <a
        href="http://lists.w3.org/Archives/Public/www-rdf-calendar/2002Jan/0002.html">
        iCal/evo interop</a></li>

        <li><a href="grokItinTable.xsl">grokItinTable.xsl</a> -
        convert AA.com travel itinerary from (tidied) HTML to
        RDF</li>

        <li><a href="/Talks/2002/10/09-swcal/all.htm">travel tools
        presentation</a> at calendaring workshop</li>

        <li><a href="/2002/10dc-uk/">Bristol trip stuff</a> Oct
        2002</li>

        <li><a href="/2001/08swws67/">SWWS: An RDF Calendar
        Trial</a>, Aug 2001. pathcross and such.</li>
      </ol>

    <div><h3>TODO: HReview of hotels</h3>

    <p>The <a href=
    "http://address.sidekick.dngr.com/index?sort=last_name&amp;order=descending&amp;category=8&amp;tab_letter=all"
    >Travel category in my cellphone/PDA</a> has got a bunch of
    entries that are really only there for historical purposes. Better
    to move them here. A few of them have notes that might be
    considered useful review info.</p>

    <p>I'd like to add lat/long info for all these hotels, a la
    citiLookup.n3@@ link. Hmm.... editing microformat stuff brings up
    the "partial understanding meets MVC issues."</p>

    <p>Hmm... asHCard.xsl (from palmagent@@) doesn't
    do a very good job with tel: URIs.</p>


    </div>
    </div>
    <hr />

    <address>
      <a href="../">Dan Connolly</a><br />
      <small>$Revision: 1.150 $ of $Date: 2010/06/10 19:35:27 $</small>
    </address>
  </body>
</html>