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 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424
|
<!DOCTYPE html>
<html lang="en" class="RFC">
<head>
<meta charset="utf-8">
<meta content="Common,Latin" name="scripts">
<meta content="initial-scale=1.0" name="viewport">
<title>RFC 9311: Running an IETF Hackathon</title>
<meta content="Charles Eckel" name="author">
<meta content="
IETF Hackathons encourage the IETF community to collaborate on running code related to existing and evolving Internet standards. This document provides a set of practices that have been used for running IETF Hackathons. These practices apply to Hackathons in which both in-person and remote participation are possible, with adaptations for Hackathons that are online only.
" name="description">
<meta content="xml2rfc 3.14.2" name="generator">
<meta content="9311" name="rfc.number">
<!-- Generator version information:
xml2rfc 3.14.2
Python 3.9.13
appdirs 1.4.4
ConfigArgParse 1.5.3
google-i18n-address 2.5.1
html5lib 1.1
intervaltree 3.1.0
Jinja2 3.1.2
kitchen 1.2.6
lxml 4.9.0
MarkupSafe 2.1.1
pycountry 22.3.5
PyYAML 6.0
requests 2.28.0
setuptools 44.1.1
six 1.16.0
weasyprint 56.1
-->
<link href="rfc9311.xml" rel="alternate" type="application/rfc+xml">
<link href="#copyright" rel="license">
<style type="text/css">/*
NOTE: Changes at the bottom of this file overrides some earlier settings.
Once the style has stabilized and has been adopted as an official RFC style,
this can be consolidated so that style settings occur only in one place, but
for now the contents of this file consists first of the initial CSS work as
provided to the RFC Formatter (xml2rfc) work, followed by itemized and
commented changes found necssary during the development of the v3
formatters.
*/
/* fonts */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans'); /* Sans-serif */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif'); /* Serif (print) */
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono'); /* Monospace */
@viewport {
zoom: 1.0;
width: extend-to-zoom;
}
@-ms-viewport {
width: extend-to-zoom;
zoom: 1.0;
}
/* general and mobile first */
html {
}
body {
max-width: 90%;
margin: 1.5em auto;
color: #222;
background-color: #fff;
font-size: 14px;
font-family: 'Noto Sans', Arial, Helvetica, sans-serif;
line-height: 1.6;
scroll-behavior: smooth;
}
.ears {
display: none;
}
/* headings */
#title, h1, h2, h3, h4, h5, h6 {
margin: 1em 0 0.5em;
font-weight: bold;
line-height: 1.3;
}
#title {
clear: both;
border-bottom: 1px solid #ddd;
margin: 0 0 0.5em 0;
padding: 1em 0 0.5em;
}
.author {
padding-bottom: 4px;
}
h1 {
font-size: 26px;
margin: 1em 0;
}
h2 {
font-size: 22px;
margin-top: -20px; /* provide offset for in-page anchors */
padding-top: 33px;
}
h3 {
font-size: 18px;
margin-top: -36px; /* provide offset for in-page anchors */
padding-top: 42px;
}
h4 {
font-size: 16px;
margin-top: -36px; /* provide offset for in-page anchors */
padding-top: 42px;
}
h5, h6 {
font-size: 14px;
}
#n-copyright-notice {
border-bottom: 1px solid #ddd;
padding-bottom: 1em;
margin-bottom: 1em;
}
/* general structure */
p {
padding: 0;
margin: 0 0 1em 0;
text-align: left;
}
div, span {
position: relative;
}
div {
margin: 0;
}
.alignRight.art-text {
background-color: #f9f9f9;
border: 1px solid #eee;
border-radius: 3px;
padding: 1em 1em 0;
margin-bottom: 1.5em;
}
.alignRight.art-text pre {
padding: 0;
}
.alignRight {
margin: 1em 0;
}
.alignRight > *:first-child {
border: none;
margin: 0;
float: right;
clear: both;
}
.alignRight > *:nth-child(2) {
clear: both;
display: block;
border: none;
}
svg {
display: block;
}
.alignCenter.art-text {
background-color: #f9f9f9;
border: 1px solid #eee;
border-radius: 3px;
padding: 1em 1em 0;
margin-bottom: 1.5em;
}
.alignCenter.art-text pre {
padding: 0;
}
.alignCenter {
margin: 1em 0;
}
.alignCenter > *:first-child {
display: table;
border: none;
margin: 0 auto;
}
/* lists */
ol, ul {
padding: 0;
margin: 0 0 1em 2em;
}
ol ol, ul ul, ol ul, ul ol {
margin-left: 1em;
}
li {
margin: 0 0 0.25em 0;
}
.ulCompact li {
margin: 0;
}
ul.empty, .ulEmpty {
list-style-type: none;
}
ul.empty li, .ulEmpty li {
margin-top: 0.5em;
}
ul.ulBare, li.ulBare {
margin-left: 0em !important;
}
ul.compact, .ulCompact,
ol.compact, .olCompact {
line-height: 100%;
margin: 0 0 0 2em;
}
/* definition lists */
dl {
}
dl > dt {
float: left;
margin-right: 1em;
}
/*
dl.nohang > dt {
float: none;
}
*/
dl > dd {
margin-bottom: .8em;
min-height: 1.3em;
}
dl.compact > dd, .dlCompact > dd {
margin-bottom: 0em;
}
dl > dd > dl {
margin-top: 0.5em;
margin-bottom: 0em;
}
/* links */
a {
text-decoration: none;
}
a[href] {
color: #22e; /* Arlen: WCAG 2019 */
}
a[href]:hover {
background-color: #f2f2f2;
}
figcaption a[href],
a[href].selfRef {
color: #222;
}
/* XXX probably not this:
a.selfRef:hover {
background-color: transparent;
cursor: default;
} */
/* Figures */
tt, code, pre, code {
background-color: #f9f9f9;
font-family: 'Roboto Mono', monospace;
}
pre {
border: 1px solid #eee;
margin: 0;
padding: 1em;
}
img {
max-width: 100%;
}
figure {
margin: 0;
}
figure blockquote {
margin: 0.8em 0.4em 0.4em;
}
figcaption {
font-style: italic;
margin: 0 0 1em 0;
}
@media screen {
pre {
overflow-x: auto;
max-width: 100%;
max-width: calc(100% - 22px);
}
}
/* aside, blockquote */
aside, blockquote {
margin-left: 0;
padding: 1.2em 2em;
}
blockquote {
background-color: #f9f9f9;
color: #111; /* Arlen: WCAG 2019 */
border: 1px solid #ddd;
border-radius: 3px;
margin: 1em 0;
}
cite {
display: block;
text-align: right;
font-style: italic;
}
/* tables */
table {
width: 100%;
margin: 0 0 1em;
border-collapse: collapse;
border: 1px solid #eee;
}
th, td {
text-align: left;
vertical-align: top;
padding: 0.5em 0.75em;
}
th {
text-align: left;
background-color: #e9e9e9;
}
tr:nth-child(2n+1) > td {
background-color: #f5f5f5;
}
table caption {
font-style: italic;
margin: 0;
padding: 0;
text-align: left;
}
table p {
/* XXX to avoid bottom margin on table row signifiers. If paragraphs should
be allowed within tables more generally, it would be far better to select on a class. */
margin: 0;
}
/* pilcrow */
a.pilcrow {
color: #666; /* Arlen: AHDJ 2019 */
text-decoration: none;
visibility: hidden;
user-select: none;
-ms-user-select: none;
-o-user-select:none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
}
@media screen {
aside:hover > a.pilcrow,
p:hover > a.pilcrow,
blockquote:hover > a.pilcrow,
div:hover > a.pilcrow,
li:hover > a.pilcrow,
pre:hover > a.pilcrow {
visibility: visible;
}
a.pilcrow:hover {
background-color: transparent;
}
}
/* misc */
hr {
border: 0;
border-top: 1px solid #eee;
}
.bcp14 {
font-variant: small-caps;
}
.role {
font-variant: all-small-caps;
}
/* info block */
#identifiers {
margin: 0;
font-size: 0.9em;
}
#identifiers dt {
width: 3em;
clear: left;
}
#identifiers dd {
float: left;
margin-bottom: 0;
}
/* Fix PDF info block run off issue */
@media print {
#identifiers dd {
float: none;
}
}
#identifiers .authors .author {
display: inline-block;
margin-right: 1.5em;
}
#identifiers .authors .org {
font-style: italic;
}
/* The prepared/rendered info at the very bottom of the page */
.docInfo {
color: #666; /* Arlen: WCAG 2019 */
font-size: 0.9em;
font-style: italic;
margin-top: 2em;
}
.docInfo .prepared {
float: left;
}
.docInfo .prepared {
float: right;
}
/* table of contents */
#toc {
padding: 0.75em 0 2em 0;
margin-bottom: 1em;
}
nav.toc ul {
margin: 0 0.5em 0 0;
padding: 0;
list-style: none;
}
nav.toc li {
line-height: 1.3em;
margin: 0.75em 0;
padding-left: 1.2em;
text-indent: -1.2em;
}
/* references */
.references dt {
text-align: right;
font-weight: bold;
min-width: 7em;
}
.references dd {
margin-left: 8em;
overflow: auto;
}
.refInstance {
margin-bottom: 1.25em;
}
.references .ascii {
margin-bottom: 0.25em;
}
/* index */
.index ul {
margin: 0 0 0 1em;
padding: 0;
list-style: none;
}
.index ul ul {
margin: 0;
}
.index li {
margin: 0;
text-indent: -2em;
padding-left: 2em;
padding-bottom: 5px;
}
.indexIndex {
margin: 0.5em 0 1em;
}
.index a {
font-weight: 700;
}
/* make the index two-column on all but the smallest screens */
@media (min-width: 600px) {
.index ul {
-moz-column-count: 2;
-moz-column-gap: 20px;
}
.index ul ul {
-moz-column-count: 1;
-moz-column-gap: 0;
}
}
/* authors */
address.vcard {
font-style: normal;
margin: 1em 0;
}
address.vcard .nameRole {
font-weight: 700;
margin-left: 0;
}
address.vcard .label {
font-family: "Noto Sans",Arial,Helvetica,sans-serif;
margin: 0.5em 0;
}
address.vcard .type {
display: none;
}
.alternative-contact {
margin: 1.5em 0 1em;
}
hr.addr {
border-top: 1px dashed;
margin: 0;
color: #ddd;
max-width: calc(100% - 16px);
}
/* temporary notes */
.rfcEditorRemove::before {
position: absolute;
top: 0.2em;
right: 0.2em;
padding: 0.2em;
content: "The RFC Editor will remove this note";
color: #9e2a00; /* Arlen: WCAG 2019 */
background-color: #ffd; /* Arlen: WCAG 2019 */
}
.rfcEditorRemove {
position: relative;
padding-top: 1.8em;
background-color: #ffd; /* Arlen: WCAG 2019 */
border-radius: 3px;
}
.cref {
background-color: #ffd; /* Arlen: WCAG 2019 */
padding: 2px 4px;
}
.crefSource {
font-style: italic;
}
/* alternative layout for smaller screens */
@media screen and (max-width: 1023px) {
body {
padding-top: 2em;
}
#title {
padding: 1em 0;
}
h1 {
font-size: 24px;
}
h2 {
font-size: 20px;
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 38px;
}
#identifiers dd {
max-width: 60%;
}
#toc {
position: fixed;
z-index: 2;
top: 0;
right: 0;
padding: 0;
margin: 0;
background-color: inherit;
border-bottom: 1px solid #ccc;
}
#toc h2 {
margin: -1px 0 0 0;
padding: 4px 0 4px 6px;
padding-right: 1em;
min-width: 190px;
font-size: 1.1em;
text-align: right;
background-color: #444;
color: white;
cursor: pointer;
}
#toc h2::before { /* css hamburger */
float: right;
position: relative;
width: 1em;
height: 1px;
left: -164px;
margin: 6px 0 0 0;
background: white none repeat scroll 0 0;
box-shadow: 0 4px 0 0 white, 0 8px 0 0 white;
content: "";
}
#toc nav {
display: none;
padding: 0.5em 1em 1em;
overflow: auto;
height: calc(100vh - 48px);
border-left: 1px solid #ddd;
}
}
/* alternative layout for wide screens */
@media screen and (min-width: 1024px) {
body {
max-width: 724px;
margin: 42px auto;
padding-left: 1.5em;
padding-right: 29em;
}
#toc {
position: fixed;
top: 42px;
right: 42px;
width: 25%;
margin: 0;
padding: 0 1em;
z-index: 1;
}
#toc h2 {
border-top: none;
border-bottom: 1px solid #ddd;
font-size: 1em;
font-weight: normal;
margin: 0;
padding: 0.25em 1em 1em 0;
}
#toc nav {
display: block;
height: calc(90vh - 84px);
bottom: 0;
padding: 0.5em 0 0;
overflow: auto;
}
img { /* future proofing */
max-width: 100%;
height: auto;
}
}
/* pagination */
@media print {
body {
width: 100%;
}
p {
orphans: 3;
widows: 3;
}
#n-copyright-notice {
border-bottom: none;
}
#toc, #n-introduction {
page-break-before: always;
}
#toc {
border-top: none;
padding-top: 0;
}
figure, pre {
page-break-inside: avoid;
}
figure {
overflow: scroll;
}
pre.breakable {
break-inside: auto;
}
h1, h2, h3, h4, h5, h6 {
page-break-after: avoid;
}
h2+*, h3+*, h4+*, h5+*, h6+* {
page-break-before: avoid;
}
pre {
white-space: pre-wrap;
word-wrap: break-word;
font-size: 10pt;
}
table {
border: 1px solid #ddd;
}
td {
border-top: 1px solid #ddd;
}
}
/* This is commented out here, as the string-set: doesn't
pass W3C validation currently */
/*
.ears thead .left {
string-set: ears-top-left content();
}
.ears thead .center {
string-set: ears-top-center content();
}
.ears thead .right {
string-set: ears-top-right content();
}
.ears tfoot .left {
string-set: ears-bottom-left content();
}
.ears tfoot .center {
string-set: ears-bottom-center content();
}
.ears tfoot .right {
string-set: ears-bottom-right content();
}
*/
@page :first {
padding-top: 0;
@top-left {
content: normal;
border: none;
}
@top-center {
content: normal;
border: none;
}
@top-right {
content: normal;
border: none;
}
}
@page {
size: A4;
margin-bottom: 45mm;
padding-top: 20px;
/* The follwing is commented out here, but set appropriately by in code, as
the content depends on the document */
/*
@top-left {
content: 'Internet-Draft';
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-left {
content: string(ears-top-left);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-center {
content: string(ears-top-center);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-right {
content: string(ears-top-right);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@bottom-left {
content: string(ears-bottom-left);
vertical-align: top;
border-top: solid 1px #ccc;
}
@bottom-center {
content: string(ears-bottom-center);
vertical-align: top;
border-top: solid 1px #ccc;
}
@bottom-right {
content: '[Page ' counter(page) ']';
vertical-align: top;
border-top: solid 1px #ccc;
}
*/
}
/* Changes introduced to fix issues found during implementation */
/* Make sure links are clickable even if overlapped by following H* */
a {
z-index: 2;
}
/* Separate body from document info even without intervening H1 */
section {
clear: both;
}
/* Top align author divs, to avoid names without organization dropping level with org names */
.author {
vertical-align: top;
}
/* Leave room in document info to show Internet-Draft on one line */
#identifiers dt {
width: 8em;
}
/* Don't waste quite as much whitespace between label and value in doc info */
#identifiers dd {
margin-left: 1em;
}
/* Give floating toc a background color (needed when it's a div inside section */
#toc {
background-color: white;
}
/* Make the collapsed ToC header render white on gray also when it's a link */
@media screen and (max-width: 1023px) {
#toc h2 a,
#toc h2 a:link,
#toc h2 a:focus,
#toc h2 a:hover,
#toc a.toplink,
#toc a.toplink:hover {
color: white;
background-color: #444;
text-decoration: none;
}
}
/* Give the bottom of the ToC some whitespace */
@media screen and (min-width: 1024px) {
#toc {
padding: 0 0 1em 1em;
}
}
/* Style section numbers with more space between number and title */
.section-number {
padding-right: 0.5em;
}
/* prevent monospace from becoming overly large */
tt, code, pre, code {
font-size: 95%;
}
/* Fix the height/width aspect for ascii art*/
pre.sourcecode,
.art-text pre {
line-height: 1.12;
}
/* Add styling for a link in the ToC that points to the top of the document */
a.toplink {
float: right;
margin-right: 0.5em;
}
/* Fix the dl styling to match the RFC 7992 attributes */
dl > dt,
dl.dlParallel > dt {
float: left;
margin-right: 1em;
}
dl.dlNewline > dt {
float: none;
}
/* Provide styling for table cell text alignment */
table td.text-left,
table th.text-left {
text-align: left;
}
table td.text-center,
table th.text-center {
text-align: center;
}
table td.text-right,
table th.text-right {
text-align: right;
}
/* Make the alternative author contact informatio look less like just another
author, and group it closer with the primary author contact information */
.alternative-contact {
margin: 0.5em 0 0.25em 0;
}
address .non-ascii {
margin: 0 0 0 2em;
}
/* With it being possible to set tables with alignment
left, center, and right, { width: 100%; } does not make sense */
table {
width: auto;
}
/* Avoid reference text that sits in a block with very wide left margin,
because of a long floating dt label.*/
.references dd {
overflow: visible;
}
/* Control caption placement */
caption {
caption-side: bottom;
}
/* Limit the width of the author address vcard, so names in right-to-left
script don't end up on the other side of the page. */
address.vcard {
max-width: 30em;
margin-right: auto;
}
/* For address alignment dependent on LTR or RTL scripts */
address div.left {
text-align: left;
}
address div.right {
text-align: right;
}
/* Provide table alignment support. We can't use the alignX classes above
since they do unwanted things with caption and other styling. */
table.right {
margin-left: auto;
margin-right: 0;
}
table.center {
margin-left: auto;
margin-right: auto;
}
table.left {
margin-left: 0;
margin-right: auto;
}
/* Give the table caption label the same styling as the figcaption */
caption a[href] {
color: #222;
}
@media print {
.toplink {
display: none;
}
/* avoid overwriting the top border line with the ToC header */
#toc {
padding-top: 1px;
}
/* Avoid page breaks inside dl and author address entries */
.vcard {
page-break-inside: avoid;
}
}
/* Tweak the bcp14 keyword presentation */
.bcp14 {
font-variant: small-caps;
font-weight: bold;
font-size: 0.9em;
}
/* Tweak the invisible space above H* in order not to overlay links in text above */
h2 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 31px;
}
h3 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 24px;
}
h4 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 24px;
}
/* Float artwork pilcrow to the right */
@media screen {
.artwork a.pilcrow {
display: block;
line-height: 0.7;
margin-top: 0.15em;
}
}
/* Make pilcrows on dd visible */
@media screen {
dd:hover > a.pilcrow {
visibility: visible;
}
}
/* Make the placement of figcaption match that of a table's caption
by removing the figure's added bottom margin */
.alignLeft.art-text,
.alignCenter.art-text,
.alignRight.art-text {
margin-bottom: 0;
}
.alignLeft,
.alignCenter,
.alignRight {
margin: 1em 0 0 0;
}
/* In print, the pilcrow won't show on hover, so prevent it from taking up space,
possibly even requiring a new line */
@media print {
a.pilcrow {
display: none;
}
}
/* Styling for the external metadata */
div#external-metadata {
background-color: #eee;
padding: 0.5em;
margin-bottom: 0.5em;
display: none;
}
div#internal-metadata {
padding: 0.5em; /* to match the external-metadata padding */
}
/* Styling for title RFC Number */
h1#rfcnum {
clear: both;
margin: 0 0 -1em;
padding: 1em 0 0 0;
}
/* Make .olPercent look the same as <ol><li> */
dl.olPercent > dd {
margin-bottom: 0.25em;
min-height: initial;
}
/* Give aside some styling to set it apart */
aside {
border-left: 1px solid #ddd;
margin: 1em 0 1em 2em;
padding: 0.2em 2em;
}
aside > dl,
aside > ol,
aside > ul,
aside > table,
aside > p {
margin-bottom: 0.5em;
}
/* Additional page break settings */
@media print {
figcaption, table caption {
page-break-before: avoid;
}
}
/* Font size adjustments for print */
@media print {
body { font-size: 10pt; line-height: normal; max-width: 96%; }
h1 { font-size: 1.72em; padding-top: 1.5em; } /* 1*1.2*1.2*1.2 */
h2 { font-size: 1.44em; padding-top: 1.5em; } /* 1*1.2*1.2 */
h3 { font-size: 1.2em; padding-top: 1.5em; } /* 1*1.2 */
h4 { font-size: 1em; padding-top: 1.5em; }
h5, h6 { font-size: 1em; margin: initial; padding: 0.5em 0 0.3em; }
}
/* Sourcecode margin in print, when there's no pilcrow */
@media print {
.artwork,
.sourcecode {
margin-bottom: 1em;
}
}
/* Avoid narrow tables forcing too narrow table captions, which may render badly */
table {
min-width: 20em;
}
/* ol type a */
ol.type-a { list-style-type: lower-alpha; }
ol.type-A { list-style-type: upper-alpha; }
ol.type-i { list-style-type: lower-roman; }
ol.type-I { list-style-type: lower-roman; }
/* Apply the print table and row borders in general, on request from the RPC,
and increase the contrast between border and odd row background sligthtly */
table {
border: 1px solid #ddd;
}
td {
border-top: 1px solid #ddd;
}
tr {
break-inside: avoid;
}
tr:nth-child(2n+1) > td {
background-color: #f8f8f8;
}
/* Use style rules to govern display of the TOC. */
@media screen and (max-width: 1023px) {
#toc nav { display: none; }
#toc.active nav { display: block; }
}
/* Add support for keepWithNext */
.keepWithNext {
break-after: avoid-page;
break-after: avoid-page;
}
/* Add support for keepWithPrevious */
.keepWithPrevious {
break-before: avoid-page;
}
/* Change the approach to avoiding breaks inside artwork etc. */
figure, pre, table, .artwork, .sourcecode {
break-before: auto;
break-after: auto;
}
/* Avoid breaks between <dt> and <dd> */
dl {
break-before: auto;
break-inside: auto;
}
dt {
break-before: auto;
break-after: avoid-page;
}
dd {
break-before: avoid-page;
break-after: auto;
orphans: 3;
widows: 3
}
span.break, dd.break {
margin-bottom: 0;
min-height: 0;
break-before: auto;
break-inside: auto;
break-after: auto;
}
/* Undo break-before ToC */
@media print {
#toc {
break-before: auto;
}
}
/* Text in compact lists should not get extra bottim margin space,
since that would makes the list not compact */
ul.compact p, .ulCompact p,
ol.compact p, .olCompact p {
margin: 0;
}
/* But the list as a whole needs the extra space at the end */
section ul.compact,
section .ulCompact,
section ol.compact,
section .olCompact {
margin-bottom: 1em; /* same as p not within ul.compact etc. */
}
/* The tt and code background above interferes with for instance table cell
backgrounds. Changed to something a bit more selective. */
tt, code {
background-color: transparent;
}
p tt, p code, li tt, li code {
background-color: #f8f8f8;
}
/* Tweak the pre margin -- 0px doesn't come out well */
pre {
margin-top: 0.5px;
}
/* Tweak the comact list text */
ul.compact, .ulCompact,
ol.compact, .olCompact,
dl.compact, .dlCompact {
line-height: normal;
}
/* Don't add top margin for nested lists */
li > ul, li > ol, li > dl,
dd > ul, dd > ol, dd > dl,
dl > dd > dl {
margin-top: initial;
}
/* Elements that should not be rendered on the same line as a <dt> */
/* This should match the element list in writer.text.TextWriter.render_dl() */
dd > div.artwork:first-child,
dd > aside:first-child,
dd > figure:first-child,
dd > ol:first-child,
dd > div:first-child > pre.sourcecode,
dd > table:first-child,
dd > ul:first-child {
clear: left;
}
/* fix for weird browser behaviour when <dd/> is empty */
dt+dd:empty::before{
content: "\00a0";
}
/* Make paragraph spacing inside <li> smaller than in body text, to fit better within the list */
li > p {
margin-bottom: 0.5em
}
/* Don't let p margin spill out from inside list items */
li > p:last-of-type {
margin-bottom: 0;
}
</style>
<link href="rfc-local.css" rel="stylesheet" type="text/css">
<link href="https://dx.doi.org/10.17487/rfc9311" rel="alternate">
<link href="urn:issn:2070-1721" rel="alternate">
<link href="https://datatracker.ietf.org/doc/draft-ietf-shmoo-hackathon-08" rel="prev">
</head>
<body>
<script src="https://www.rfc-editor.org/js/metadata.min.js"></script>
<table class="ears">
<thead><tr>
<td class="left">RFC 9311</td>
<td class="center">IETF Hackathon</td>
<td class="right">September 2022</td>
</tr></thead>
<tfoot><tr>
<td class="left">Eckel</td>
<td class="center">Informational</td>
<td class="right">[Page]</td>
</tr></tfoot>
</table>
<div id="external-metadata" class="document-information"></div>
<div id="internal-metadata" class="document-information">
<dl id="identifiers">
<dt class="label-stream">Stream:</dt>
<dd class="stream">Internet Engineering Task Force (IETF)</dd>
<dt class="label-rfc">RFC:</dt>
<dd class="rfc"><a href="https://www.rfc-editor.org/rfc/rfc9311" class="eref">9311</a></dd>
<dt class="label-category">Category:</dt>
<dd class="category">Informational</dd>
<dt class="label-published">Published:</dt>
<dd class="published">
<time datetime="2022-09" class="published">September 2022</time>
</dd>
<dt class="label-issn">ISSN:</dt>
<dd class="issn">2070-1721</dd>
<dt class="label-authors">Author:</dt>
<dd class="authors">
<div class="author">
<div class="author-name">C. Eckel</div>
<div class="org">Cisco Systems</div>
</div>
</dd>
</dl>
</div>
<h1 id="rfcnum">RFC 9311</h1>
<h1 id="title">Running an IETF Hackathon</h1>
<section id="section-abstract">
<h2 id="abstract"><a href="#abstract" class="selfRef">Abstract</a></h2>
<p id="section-abstract-1">IETF Hackathons encourage the IETF community to collaborate on running code related to existing and evolving Internet standards. This document provides a set of practices that have been used for running IETF Hackathons. These practices apply to Hackathons in which both in-person and remote participation are possible, with adaptations for Hackathons that are online only.<a href="#section-abstract-1" class="pilcrow">¶</a></p>
</section>
<div id="status-of-memo">
<section id="section-boilerplate.1">
<h2 id="name-status-of-this-memo">
<a href="#name-status-of-this-memo" class="section-name selfRef">Status of This Memo</a>
</h2>
<p id="section-boilerplate.1-1">
This document is not an Internet Standards Track specification; it is
published for informational purposes.<a href="#section-boilerplate.1-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-2">
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Not all documents
approved by the IESG are candidates for any level of Internet
Standard; see Section 2 of RFC 7841.<a href="#section-boilerplate.1-2" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-3">
Information about the current status of this document, any
errata, and how to provide feedback on it may be obtained at
<span><a href="https://www.rfc-editor.org/info/rfc9311">https://www.rfc-editor.org/info/rfc9311</a></span>.<a href="#section-boilerplate.1-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="copyright">
<section id="section-boilerplate.2">
<h2 id="name-copyright-notice">
<a href="#name-copyright-notice" class="section-name selfRef">Copyright Notice</a>
</h2>
<p id="section-boilerplate.2-1">
Copyright (c) 2022 IETF Trust and the persons identified as the
document authors. All rights reserved.<a href="#section-boilerplate.2-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.2-2">
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<span><a href="https://trustee.ietf.org/license-info">https://trustee.ietf.org/license-info</a></span>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with
respect to this document. Code Components extracted from this
document must include Revised BSD License text as described in
Section 4.e of the Trust Legal Provisions and are provided without
warranty as described in the Revised BSD License.<a href="#section-boilerplate.2-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="toc">
<section id="section-toc.1">
<a href="#" onclick="scroll(0,0)" class="toplink">▲</a><h2 id="name-table-of-contents">
<a href="#name-table-of-contents" class="section-name selfRef">Table of Contents</a>
</h2>
<nav class="toc"><ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.1">
<p id="section-toc.1-1.1.1" class="keepWithNext"><a href="#section-1" class="xref">1</a>. <a href="#name-introduction" class="xref">Introduction</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.2">
<p id="section-toc.1-1.2.1"><a href="#section-2" class="xref">2</a>. <a href="#name-timing" class="xref">Timing</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.2.2.1">
<p id="section-toc.1-1.2.2.1.1" class="keepWithNext"><a href="#section-2.1" class="xref">2.1</a>. <a href="#name-agenda" class="xref">Agenda</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.2.2.2">
<p id="section-toc.1-1.2.2.2.1" class="keepWithNext"><a href="#section-2.2" class="xref">2.2</a>. <a href="#name-hackdemo-happy-hour" class="xref">Hackdemo Happy Hour</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.2.2.3">
<p id="section-toc.1-1.2.2.3.1"><a href="#section-2.3" class="xref">2.3</a>. <a href="#name-code-lounge" class="xref">Code Lounge</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.2.2.4">
<p id="section-toc.1-1.2.2.4.1"><a href="#section-2.4" class="xref">2.4</a>. <a href="#name-code-sprint" class="xref">Code Sprint</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.2.2.5">
<p id="section-toc.1-1.2.2.5.1"><a href="#section-2.5" class="xref">2.5</a>. <a href="#name-online-only" class="xref">Online Only</a></p>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.3">
<p id="section-toc.1-1.3.1"><a href="#section-3" class="xref">3</a>. <a href="#name-funding" class="xref">Funding</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.3.2.1">
<p id="section-toc.1-1.3.2.1.1"><a href="#section-3.1" class="xref">3.1</a>. <a href="#name-sponsorship" class="xref">Sponsorship</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.3.2.2">
<p id="section-toc.1-1.3.2.2.1"><a href="#section-3.2" class="xref">3.2</a>. <a href="#name-expenses" class="xref">Expenses</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.3.2.2.2.1">
<p id="section-toc.1-1.3.2.2.2.1.1"><a href="#section-3.2.1" class="xref">3.2.1</a>. <a href="#name-in-person-event-expenses" class="xref">In-Person Event Expenses</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.3.2.2.2.2">
<p id="section-toc.1-1.3.2.2.2.2.1"><a href="#section-3.2.2" class="xref">3.2.2</a>. <a href="#name-remote-participation-expens" class="xref">Remote Participation Expenses</a></p>
</li>
</ul>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.4">
<p id="section-toc.1-1.4.1"><a href="#section-4" class="xref">4</a>. <a href="#name-project-presentations" class="xref">Project Presentations</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.4.2.1">
<p id="section-toc.1-1.4.2.1.1"><a href="#section-4.1" class="xref">4.1</a>. <a href="#name-project-pitches" class="xref">Project Pitches</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.4.2.2">
<p id="section-toc.1-1.4.2.2.1"><a href="#section-4.2" class="xref">4.2</a>. <a href="#name-project-results-presentatio" class="xref">Project Results Presentations</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.4.2.2.2.1">
<p id="section-toc.1-1.4.2.2.2.1.1"><a href="#section-4.2.1" class="xref">4.2.1</a>. <a href="#name-templates" class="xref">Templates</a></p>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.4.2.3">
<p id="section-toc.1-1.4.2.3.1"><a href="#section-4.3" class="xref">4.3</a>. <a href="#name-upload-to-github" class="xref">Upload to GitHub</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.4.2.4">
<p id="section-toc.1-1.4.2.4.1"><a href="#section-4.4" class="xref">4.4</a>. <a href="#name-presenting-in-person" class="xref">Presenting in Person</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.4.2.5">
<p id="section-toc.1-1.4.2.5.1"><a href="#section-4.5" class="xref">4.5</a>. <a href="#name-presenting-remotely" class="xref">Presenting Remotely</a></p>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5">
<p id="section-toc.1-1.5.1"><a href="#section-5" class="xref">5</a>. <a href="#name-tooling" class="xref">Tooling</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.1">
<p id="section-toc.1-1.5.2.1.1"><a href="#section-5.1" class="xref">5.1</a>. <a href="#name-datatracker" class="xref">Datatracker</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.2">
<p id="section-toc.1-1.5.2.2.1"><a href="#section-5.2" class="xref">5.2</a>. <a href="#name-ietf-website" class="xref">IETF Website</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.2.2.1">
<p id="section-toc.1-1.5.2.2.2.1.1"><a href="#section-5.2.1" class="xref">5.2.1</a>. <a href="#name-hackathon-website" class="xref">Hackathon Website</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.2.2.2">
<p id="section-toc.1-1.5.2.2.2.2.1"><a href="#section-5.2.2" class="xref">5.2.2</a>. <a href="#name-meeting-website" class="xref">Meeting Website</a></p>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.3">
<p id="section-toc.1-1.5.2.3.1"><a href="#section-5.3" class="xref">5.3</a>. <a href="#name-registration" class="xref">Registration</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.3.2.1">
<p id="section-toc.1-1.5.2.3.2.1.1"><a href="#section-5.3.1" class="xref">5.3.1</a>. <a href="#name-participant-list" class="xref">Participant List</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.3.2.2">
<p id="section-toc.1-1.5.2.3.2.2.1"><a href="#section-5.3.2" class="xref">5.3.2</a>. <a href="#name-caps-on-registrations" class="xref">Caps on Registrations</a></p>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.4">
<p id="section-toc.1-1.5.2.4.1"><a href="#section-5.4" class="xref">5.4</a>. <a href="#name-meeting-wiki" class="xref">Meeting Wiki</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.4.2.1">
<p id="section-toc.1-1.5.2.4.2.1.1"><a href="#section-5.4.1" class="xref">5.4.1</a>. <a href="#name-hackathon" class="xref">Hackathon</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.4.2.2">
<p id="section-toc.1-1.5.2.4.2.2.1"><a href="#section-5.4.2" class="xref">5.4.2</a>. <a href="#name-lost-and-found" class="xref">Lost and Found</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.4.2.3">
<p id="section-toc.1-1.5.2.4.2.3.1"><a href="#section-5.4.3" class="xref">5.4.3</a>. <a href="#name-results-presentation-schedu" class="xref">Results Presentation Schedule</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.4.2.4">
<p id="section-toc.1-1.5.2.4.2.4.1"><a href="#section-5.4.4" class="xref">5.4.4</a>. <a href="#name-in-person-only" class="xref">In Person Only</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.4.2.5">
<p id="section-toc.1-1.5.2.4.2.5.1"><a href="#section-5.4.5" class="xref">5.4.5</a>. <a href="#name-online-only-2" class="xref">Online Only</a></p>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.5">
<p id="section-toc.1-1.5.2.5.1"><a href="#section-5.5" class="xref">5.5</a>. <a href="#name-email-list" class="xref">Email List</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.5.2.1">
<p id="section-toc.1-1.5.2.5.2.1.1"><a href="#section-5.5.1" class="xref">5.5.1</a>. <a href="#name-email-alias-for-hackathon-c" class="xref">Email Alias for Hackathon Chairs</a></p>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.6">
<p id="section-toc.1-1.5.2.6.1"><a href="#section-5.6" class="xref">5.6</a>. <a href="#name-github" class="xref">GitHub</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.7">
<p id="section-toc.1-1.5.2.7.1"><a href="#section-5.7" class="xref">5.7</a>. <a href="#name-meetecho" class="xref">Meetecho</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.8">
<p id="section-toc.1-1.5.2.8.1"><a href="#section-5.8" class="xref">5.8</a>. <a href="#name-network" class="xref">Network</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.8.2.1">
<p id="section-toc.1-1.5.2.8.2.1.1"><a href="#section-5.8.1" class="xref">5.8.1</a>. <a href="#name-remote-networking" class="xref">Remote Networking</a></p>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.9">
<p id="section-toc.1-1.5.2.9.1"><a href="#section-5.9" class="xref">5.9</a>. <a href="#name-webex" class="xref">Webex</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.10">
<p id="section-toc.1-1.5.2.10.1"><a href="#section-5.10" class="xref">5.10</a>. <a href="#name-gather" class="xref">Gather</a></p>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.6">
<p id="section-toc.1-1.6.1"><a href="#section-6" class="xref">6</a>. <a href="#name-statistics-and-metrics" class="xref">Statistics and Metrics</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.6.2.1">
<p id="section-toc.1-1.6.2.1.1"><a href="#section-6.1" class="xref">6.1</a>. <a href="#name-ietf-survey-results" class="xref">IETF Survey Results</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.6.2.2">
<p id="section-toc.1-1.6.2.2.1"><a href="#section-6.2" class="xref">6.2</a>. <a href="#name-hackathon-survey-results" class="xref">Hackathon Survey Results</a></p>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.7">
<p id="section-toc.1-1.7.1"><a href="#section-7" class="xref">7</a>. <a href="#name-roles-and-responsibilities" class="xref">Roles and Responsibilities</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.7.2.1">
<p id="section-toc.1-1.7.2.1.1"><a href="#section-7.1" class="xref">7.1</a>. <a href="#name-hackathon-chairs" class="xref">Hackathon Chair(s)</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.7.2.2">
<p id="section-toc.1-1.7.2.2.1"><a href="#section-7.2" class="xref">7.2</a>. <a href="#name-secretariat" class="xref">Secretariat</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.7.2.3">
<p id="section-toc.1-1.7.2.3.1"><a href="#section-7.3" class="xref">7.3</a>. <a href="#name-sponsor" class="xref">Sponsor</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.7.2.4">
<p id="section-toc.1-1.7.2.4.1"><a href="#section-7.4" class="xref">7.4</a>. <a href="#name-champions-of-projects" class="xref">Champions of Projects</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.7.2.5">
<p id="section-toc.1-1.7.2.5.1"><a href="#section-7.5" class="xref">7.5</a>. <a href="#name-ietf-llc-director-of-commun" class="xref">IETF LLC, Director of Communications and Operations (was ISOC)</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.7.2.6">
<p id="section-toc.1-1.7.2.6.1"><a href="#section-7.6" class="xref">7.6</a>. <a href="#name-judges" class="xref">Judges</a></p>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.8">
<p id="section-toc.1-1.8.1"><a href="#section-8" class="xref">8</a>. <a href="#name-implementation-status" class="xref">Implementation Status</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.9">
<p id="section-toc.1-1.9.1"><a href="#section-9" class="xref">9</a>. <a href="#name-security-considerations" class="xref">Security Considerations</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.9.2.1">
<p id="section-toc.1-1.9.2.1.1"><a href="#section-9.1" class="xref">9.1</a>. <a href="#name-privacy-considerations" class="xref">Privacy Considerations</a></p>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.10">
<p id="section-toc.1-1.10.1"><a href="#section-10" class="xref">10</a>. <a href="#name-iana-considerations" class="xref">IANA Considerations</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.11">
<p id="section-toc.1-1.11.1"><a href="#section-11" class="xref">11</a>. <a href="#name-informative-references" class="xref">Informative References</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.12">
<p id="section-toc.1-1.12.1"><a href="#appendix-A" class="xref"></a><a href="#name-acknowledgments" class="xref">Acknowledgments</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.13">
<p id="section-toc.1-1.13.1"><a href="#appendix-B" class="xref"></a><a href="#name-authors-address" class="xref">Author's Address</a></p>
</li>
</ul>
</nav>
</section>
</div>
<div id="introduction">
<section id="section-1">
<h2 id="name-introduction">
<a href="#section-1" class="section-number selfRef">1. </a><a href="#name-introduction" class="section-name selfRef">Introduction</a>
</h2>
<p id="section-1-1">IETF Hackathons encourage the IETF community to collaborate on running code related to existing and evolving Internet standards. IETF Hackathons aim to:<a href="#section-1-1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-1-2.1">advance the pace and relevance of IETF standards activities by bringing the speed and collaborative spirit of open source development into the IETF<a href="#section-1-2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-1-2.2">bring developers and early career professionals into the IETF and get them exposed to and interested in the IETF<a href="#section-1-2.2" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-1-3">IETF Hackathons are free to attend and open to everyone. Software developers are the primary audience, but participation by subject-matter experts who are not necessarily developers is encouraged and very important as well. Similarly, while the Hackathon is meant to attract newcomers and people who do not typically attend standards meetings, long-time IETF contributors, including Internet-Draft authors, working group chairs, and subject-matter experts, are key participants as well. Collaboration and blending of skill sets and perspectives are extremely valuable aspects of IETF Hackathons.<a href="#section-1-3" class="pilcrow">¶</a></p>
<p id="section-1-4">In addition to the running code created and improved as a result of each Hackathon, the exchange of ideas, extensions of human networks, and establishment of trust, respect, and friendships are some of the most valuable outputs of each Hackathon. Code written in a programming language is often more illustrative and constructive than opinions expressed during a meeting or in an email. Working together to find common understanding of proposals, concerns, and solutions that result in improvements to evolving Internet standards is as important as the development of running code that implements or validates the correctness of these same proposals.<a href="#section-1-4" class="pilcrow">¶</a></p>
<p id="section-1-5">Consequently, IETF Hackathons are collaborative events, not competitions. Any competitiveness among participants is friendly and in the spirit of advancing the pace and relevance of new and evolving Internet standards. IETF Hackathons are inclusive, not only in terms of who can participate but also in terms of the projects included in each Hackathon. All projects should be related to existing or proposed Internet standards in some way. Examples include, but are not limited to, interoperability of implementations, proof of concepts, and tools that help implement, monitor, or deploy network protocols.<a href="#section-1-5" class="pilcrow">¶</a></p>
<p id="section-1-6">IETF Hackathons foster an open environment, with much of the code being open source and results of projects typically shared publicly. The Hackathon operates under the <span>[<a href="#NOTE-WELL" class="xref">NOTE-WELL</a>]</span>; however, the rules and terms around code are those of the license associated with the code. Although code is often and preferably open source, it may be proprietary as well.<a href="#section-1-6" class="pilcrow">¶</a></p>
<p id="section-1-7">This document provides a set of practices that have been used for running IETF Hackathons.<a href="#section-1-7" class="pilcrow">¶</a></p>
</section>
</div>
<div id="timing">
<section id="section-2">
<h2 id="name-timing">
<a href="#section-2" class="section-number selfRef">2. </a><a href="#name-timing" class="section-name selfRef">Timing</a>
</h2>
<p id="section-2-1">The first IETF Hackathon was held the weekend before the start of the IETF 92 meeting. The rationale was to avoid conflicts yet make it relatively convenient for those attending the IETF meeting to participate in the Hackathon as well. Holding the Hackathon on the weekend was also viewed as making it more accessible to those who are not IETF meeting participants, including students and working professionals who would have other commitments during the week. The weekend before was viewed as better than the weekend after so that things learned during the Hackathon could be shared and discussed with the rest of the IETF community during working group sessions and the like. This worked well at IETF 92, was repeated at IETF 93, and quickly became an established norm with the IETF meeting being officially extended to include the Hackathon at the start. An additional benefit of this timing noted and appreciated by participants is that it serves as a more informal and social way to physically and mentally acclimate to changes in time zones and surroundings.<a href="#section-2-1" class="pilcrow">¶</a></p>
<div id="agenda">
<section id="section-2.1">
<h3 id="name-agenda">
<a href="#section-2.1" class="section-number selfRef">2.1. </a><a href="#name-agenda" class="section-name selfRef">Agenda</a>
</h3>
<p id="section-2.1-1">The IETF Hackathon is a strenuous event. Though not a competition, participants want to make the most of their time together, much as with the IETF meeting in general. Competitive Hackathons typically run nonstop for on the order of 40 hours. There is a strict deadline, teams are judged, and winners are declared at the end. Afterward, participants are wiped out and head off to briefly celebrate or commiserate but mainly to recuperate. As the IETF Hackathon serves as the start of the overall IETF meeting, we aim to strike a compromise that provides time to get valuable work accomplished without exhausting everyone before the main IETF meeting even starts. While some people participate in the Hackathon only, the majority of people remain and plan to be actively engaged in the rest of the IETF meeting.<a href="#section-2.1-1" class="pilcrow">¶</a></p>
<p id="section-2.1-2">The typical agenda is as follows:<a href="#section-2.1-2" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-2.1-3">
<pre>
Saturday before IETF meeting week
08:30: Room open for setup by project champions
09:00: Room open for all - pastries and coffee provided
09:30: Hackathon kickoff
09:45: Form teams
12:30: Lunch provided
15:30: Afternoon break - snacks provided
19:00: Dinner provided
22:00: Room closes
Sunday before IETF meeting week
08:30: Room opens - pastries and coffee provided
12:30: Lunch provided
13:30: Hacking stops; prepare brief presentation of project
results
14:00: Present project results to other participants
15:45: Closing remarks and opportunities for next time
16:00: Hackathon ends
17:00: Tear down complete
</pre><a href="#section-2.1-3" class="pilcrow">¶</a>
</div>
<p id="section-2.1-4">The time on Saturday morning provides the opportunity for team champions to set up and participants to socialize and learn more about projects and teams they might want to join. The kickoff presentation and formalities are kept to a minimum to leave as much time as possible for teams to work together on their projects. The proximity of teams fosters communication and collaboration between them as well.<a href="#section-2.1-4" class="pilcrow">¶</a></p>
<p id="section-2.1-5">Lunch and dinner are provided as a convenience and an incentive to remain at the Hackathon. Participants are free to come and go as they like. It is well understood and accepted that there are other things vying for time and that meeting with friends and colleagues outside of the Hackathon is an entirely reasonable thing to do.<a href="#section-2.1-5" class="pilcrow">¶</a></p>
<p id="section-2.1-6">The room closes Saturday evening to give hotel staff unfettered access to the room and to encourage people to pace and take care of themselves. There are no rules against continuing work on projects outside of the Hackathon room. Similarly, working on projects long before and after the Hackathon is allowed and encouraged.<a href="#section-2.1-6" class="pilcrow">¶</a></p>
<p id="section-2.1-7">The end of the Hackathon on Sunday is driven by other IETF meeting events. Typically, there are Newcomer events that start at 16:00. The IETF Hackathon typically includes many newcomers in its list of participants, and it is important to provide them time to participate in the Newcomer events. The opening reception for the IETF typically starts at 17:00, and we want to make it easy for all Hackathon participants to join that as well.<a href="#section-2.1-7" class="pilcrow">¶</a></p>
<p id="section-2.1-8"><span><a href="#hackdemo-happy-hour" class="xref">Hackdemo Happy Hour</a> (<a href="#hackdemo-happy-hour" class="xref">Section 2.2</a>)</span> and the <span><a href="#code-lounge" class="xref">Code Lounge</a> (<a href="#code-lounge" class="xref">Section 2.3</a>)</span> exist to facilitate ongoing discussion and work on projects beyond the official end of the Hackathon weekend.<a href="#section-2.1-8" class="pilcrow">¶</a></p>
</section>
</div>
<div id="hackdemo-happy-hour">
<section id="section-2.2">
<h3 id="name-hackdemo-happy-hour">
<a href="#section-2.2" class="section-number selfRef">2.2. </a><a href="#name-hackdemo-happy-hour" class="section-name selfRef">Hackdemo Happy Hour</a>
</h3>
<p id="section-2.2-1">Hackdemo Happy Hour provides an opportunity for more in-depth sharing and discussion than is possible within the time constraints of the results presentations that occur at the end of the Hackathon. This opportunity is made available to all teams. As with the results presentations, participation is optional.<a href="#section-2.2-1" class="pilcrow">¶</a></p>
<p id="section-2.2-2">Initially, something similar was done as part of <span>[<a href="#BITS-N-BITES" class="xref">BITS-N-BITES</a>]</span>. This worked well for the Hackathon, but the Bits-N-Bites event was eventually abandoned for other reasons. Hackdemo Happy Hour was created as a low-cost, informal event to provide a venue for the IETF community to engage with the Hackathon teams in more in-depth discussions related to their projects.<a href="#section-2.2-2" class="pilcrow">¶</a></p>
<p id="section-2.2-3">Hackdemo Happy Hour is typically Monday evening, roughly from 18:00 - 19:30, often overlapping a bit with the last working group session of the day but continuing long enough to allow everyone an opportunity to join. The goal is to make it convenient to attend by not conflicting with other meetings and also by not running too late into the night.<a href="#section-2.2-3" class="pilcrow">¶</a></p>
<p id="section-2.2-4">Light snacks and beverages are provided, and a cash bar is available to align with the spirit of a happy hour.<a href="#section-2.2-4" class="pilcrow">¶</a></p>
</section>
</div>
<div id="code-lounge">
<section id="section-2.3">
<h3 id="name-code-lounge">
<a href="#section-2.3" class="section-number selfRef">2.3. </a><a href="#name-code-lounge" class="section-name selfRef">Code Lounge</a>
</h3>
<p id="section-2.3-1">The Code Lounge provides space for groups to gather and continue to collaborate on running code after the Hackathon. It is typically in the IETF Lounge and open the same hours as the IETF Lounge. Champions are encouraged to look at the final agenda and determine which time slots are best suited to ensure attendance of Code Lounge sessions, as well as any related working group sessions. It is okay for multiple teams to sign up for the same time slots. This is in fact encouraged for work that spans multiple working groups or projects.<a href="#section-2.3-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="code-sprint">
<section id="section-2.4">
<h3 id="name-code-sprint">
<a href="#section-2.4" class="section-number selfRef">2.4. </a><a href="#name-code-sprint" class="section-name selfRef">Code Sprint</a>
</h3>
<p id="section-2.4-1">The <span>[<a href="#CODE-SPRINT" class="xref">CODE-SPRINT</a>]</span> develops tools that support the work of the IETF. The Code Sprint existed long before the Hackathon and benefited from being a focused event in a quiet space with few interruptions. However, there is a great deal of synergy between the Code Sprint and the Hackathon, and they attract some of the same participants. For example, some Hackathon projects, such as those related to YANG model validation, involve the creation or modification of IETF tools. It is therefore advantageous to co-locate these two events when practical and, when separate space is deemed helpful, to allocate spaces that are physically close to each other to make it easy for participants to switch back and forth between the two events.<a href="#section-2.4-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="online-only">
<section id="section-2.5">
<h3 id="name-online-only">
<a href="#section-2.5" class="section-number selfRef">2.5. </a><a href="#name-online-only" class="section-name selfRef">Online Only</a>
</h3>
<p id="section-2.5-1">The IETF 107 Hackathon was originally scheduled to be the weekend at the start of the IETF meeting in Vancouver. When COVID-19 hit and it became clear the IETF meeting could not occur in person, the Hackathon already had 23 projects and 176 registrations. With only 10 days until the anticipated start of the Hackathon, a <span>[<a href="#SURVEY" class="xref">SURVEY</a>]</span> went out to the Hackathon community, including all project champions and registered participants, to see if they wanted to participate in the Hackathon exactly as planned except with everyone participating remotely rather than in person. A relatively small number of people expressed interest in participating, with even fewer wanting to continue to champion their projects. The fact that the Hackathon was planned for the weekend before the IETF meeting and in the local time zone, both of which were historically very convenient and attractive to Hackathon participants, suddenly became huge obstacles. Consequently, the IETF 107 Hackathon was canceled.<a href="#section-2.5-1" class="pilcrow">¶</a></p>
<p id="section-2.5-2">We knew more in advance that IETF 108 would be an online-only meeting. We moved and expanded the schedule to run the entire work week before the rest of the IETF meeting. The Hackathon kickoff was set for Monday and the closing set for Friday, with all the time in between left for individual project teams to arrange to meet how and when was most convenient for them. The kickoff and closing sessions were scheduled to align with the time frame established for the IETF 108 meeting. All of this was, of course, not ideal, and it worked much better for some people than for others, but at least everyone knew the plan and corresponding time commitment well in advance and had the ability to plan accordingly.<a href="#section-2.5-2" class="pilcrow">¶</a></p>
<p id="section-2.5-3">We ultimately had 19 projects and almost 300 registrations. It is hard to say how many people actually participated and for how long, but many were able to get substantial work done on their projects. For the closing, 10 teams produced and shared presentations summarizing their findings and achievements. All results presentations, as well as the agenda and a recording of the closing session, are available via the <span>[<a href="#IETF-108-HACKATHON-WIKI" class="xref">IETF-108-HACKATHON-WIKI</a>]</span>. This level of participation was strong enough to be considered a success and justifies including the Hackathon in future online-only IETF meetings.<a href="#section-2.5-3" class="pilcrow">¶</a></p>
<p id="section-2.5-4">Hackdemo Happy Hour and the Code Lounge are not applicable for online-only Hackathons.<a href="#section-2.5-4" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="funding">
<section id="section-3">
<h2 id="name-funding">
<a href="#section-3" class="section-number selfRef">3. </a><a href="#name-funding" class="section-name selfRef">Funding</a>
</h2>
<p id="section-3-1">The Hackathon requires funding, and that funding increases with the number of participants. Participating has always been free; therefore, funding from sources other than participant fees is required.<a href="#section-3-1" class="pilcrow">¶</a></p>
<div id="sponsorship">
<section id="section-3.1">
<h3 id="name-sponsorship">
<a href="#section-3.1" class="section-number selfRef">3.1. </a><a href="#name-sponsorship" class="section-name selfRef">Sponsorship</a>
</h3>
<p id="section-3.1-1">The initial funding model was to have Hackathon sponsors sign up to sponsor and fund the Hackathon for one year. As part of starting the Hackathon, Cisco volunteered to sponsor and fund it for the first year (i.e., three Hackathons, one at each IETF meeting during a calendar year). This sponsorship was to rotate. Huawei volunteered to sponsor the second year of the Hackathon. After the second year, a sponsor for the third year was not found. However, the Hackathon had become a proven success. Consequently, the IETF decided to fund the Hackathon as part of the IETF meeting, with Hackathon sponsorship being on a best-effort basis.<a href="#section-3.1-1" class="pilcrow">¶</a></p>
<p id="section-3.1-2">Online-only Hackathons in response to the COVID-19 pandemic and increased remote participating in general result in increased cloud infrastructure requirements that make Hackathon sponsorship more attractive to cloud infrastructure providers.<a href="#section-3.1-2" class="pilcrow">¶</a></p>
<p id="section-3.1-3">Hackathon sponsorship is available at different levels as part of being an IETF <span>[<a href="#RUNNING-CODE-SPONSOR" class="xref">RUNNING-CODE-SPONSOR</a>]</span>.<a href="#section-3.1-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="expenses">
<section id="section-3.2">
<h3 id="name-expenses">
<a href="#section-3.2" class="section-number selfRef">3.2. </a><a href="#name-expenses" class="section-name selfRef">Expenses</a>
</h3>
<p id="section-3.2-1">The primary expenses associated with the Hackathon are those for hosting an in-person event, e.g., meeting space, food and beverage, etc. It is often challenging to quantify what portions of this are associated with the Hackathon versus what is incurred for the IETF meeting overall.<a href="#section-3.2-1" class="pilcrow">¶</a></p>
<div id="in-person-event-expenses">
<section id="section-3.2.1">
<h4 id="name-in-person-event-expenses">
<a href="#section-3.2.1" class="section-number selfRef">3.2.1. </a><a href="#name-in-person-event-expenses" class="section-name selfRef">In-Person Event Expenses</a>
</h4>
<p id="section-3.2.1-1">The following expenses are associated with in-person participation in a Hackathon. When the IETF meeting is online only, these expenses are eliminated.<a href="#section-3.2.1-1" class="pilcrow">¶</a></p>
<div id="meeting-space">
<section id="section-3.2.1.1">
<h5 id="name-meeting-space">
<a href="#section-3.2.1.1" class="section-number selfRef">3.2.1.1. </a><a href="#name-meeting-space" class="section-name selfRef">Meeting Space</a>
</h5>
<p id="section-3.2.1.1-1">The meeting space for the Hackathon is sometimes included as part of the overall contract for the IETF meeting. Other times, an additional expense is incurred to secure a large enough space earlier than would otherwise have been required. Typically, the space is needed for setup from Friday afternoon before the start of the IETF meeting until Sunday afternoon. After the Hackathon, the space is typically repurposed for the IETF Lounge. If the size of the Hackathon continues to increase, it might be necessary to use the same space as is later used for the IETF plenary.<a href="#section-3.2.1.1-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="food-and-beverage">
<section id="section-3.2.1.2">
<h5 id="name-food-and-beverage">
<a href="#section-3.2.1.2" class="section-number selfRef">3.2.1.2. </a><a href="#name-food-and-beverage" class="section-name selfRef">Food and Beverage</a>
</h5>
<p id="section-3.2.1.2-1">Some portion of the food and beverage expense is often included as part of a minimum spend the IETF is obligated to make. When a Hackathon sponsor is identified, funds resulting from this sponsorship are typically used to offset food and beverage expenses or to increase the food and beverage budget.<a href="#section-3.2.1.2-1" class="pilcrow">¶</a></p>
<p id="section-3.2.1.2-2">The minimum food and beverage requirements for the Hackathon have been:<a href="#section-3.2.1.2-2" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-3.2.1.2-3.1">coffee, tea, and water Saturday and Sunday morning<a href="#section-3.2.1.2-3.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3.2.1.2-3.2">lunch Saturday and Sunday<a href="#section-3.2.1.2-3.2" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-3.2.1.2-4">Additional items, in order of importance, include:<a href="#section-3.2.1.2-4" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-3.2.1.2-5.1">beer Saturday evening<a href="#section-3.2.1.2-5.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3.2.1.2-5.2">dinner Saturday evening<a href="#section-3.2.1.2-5.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3.2.1.2-5.3">continental breakfast Saturday and Sunday<a href="#section-3.2.1.2-5.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3.2.1.2-5.4">afternoon snacks Saturday and Sunday<a href="#section-3.2.1.2-5.4" class="pilcrow">¶</a>
</li>
</ul>
</section>
</div>
<div id="t-shirts">
<section id="section-3.2.1.3">
<h5 id="name-t-shirts">
<a href="#section-3.2.1.3" class="section-number selfRef">3.2.1.3. </a><a href="#name-t-shirts" class="section-name selfRef">T-Shirts</a>
</h5>
<p id="section-3.2.1.3-1">Hackathon T-shirts are an important part of the Hackathon. They have been provided for all in-person Hackathons and greatly appreciated by many participants. They also serve as great advertising for the IETF, the Hackathon, and sponsors. Cisco or other event sponsors have often covered expenses associated with T-shirts. The current model is that the Secretariat covers the expenses using whatever funding is available.<a href="#section-3.2.1.3-1" class="pilcrow">¶</a></p>
<p id="section-3.2.1.3-2">The number of size distribution of T-shirts for IETF 107 is provided here as an example.<a href="#section-3.2.1.3-2" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-3.2.1.3-3.1">
<p id="section-3.2.1.3-3.1.1">380 T-shirts at a cost of roughly $10 USD each, with shipping to the Secretariat included:<a href="#section-3.2.1.3-3.1.1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-3.2.1.3-3.1.2.1">50 Small<a href="#section-3.2.1.3-3.1.2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3.2.1.3-3.1.2.2">120 Medium<a href="#section-3.2.1.3-3.1.2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3.2.1.3-3.1.2.3">110 Large<a href="#section-3.2.1.3-3.1.2.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3.2.1.3-3.1.2.4">75 XL<a href="#section-3.2.1.3-3.1.2.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3.2.1.3-3.1.2.5">25 XXL<a href="#section-3.2.1.3-3.1.2.5" class="pilcrow">¶</a>
</li>
</ul>
</li>
</ul>
<p id="section-3.2.1.3-4">The T-shirts are all standard cut. We previously tried providing fitted cut T-shirts as an option for Hackathon participants, but these were not well received.<a href="#section-3.2.1.3-4" class="pilcrow">¶</a></p>
</section>
</div>
<div id="stickers">
<section id="section-3.2.1.4">
<h5 id="name-stickers">
<a href="#section-3.2.1.4" class="section-number selfRef">3.2.1.4. </a><a href="#name-stickers" class="section-name selfRef">Stickers</a>
</h5>
<p id="section-3.2.1.4-1">Laptop stickers are popular with developers. Stickers have been made available at the Hackathon for those that want them. Expenses have been covered by the IETF LLC, which oversees the communications and operations budget.<a href="#section-3.2.1.4-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="remote-participation-expenses">
<section id="section-3.2.2">
<h4 id="name-remote-participation-expens">
<a href="#section-3.2.2" class="section-number selfRef">3.2.2. </a><a href="#name-remote-participation-expens" class="section-name selfRef">Remote Participation Expenses</a>
</h4>
<p id="section-3.2.2-1">The following expenses are associated things done primarily to facilitate remote participation in a Hackathon. This includes participation when the Hackathon is online only, as well as remote participation when the Hackathon is in person.<a href="#section-3.2.2-1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-3.2.2-2.1">Meetecho: cost associated with the Hackathon kickoff and closing<a href="#section-3.2.2-2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3.2.2-2.2">Gather: costs associated with premium service, required to enable more than 25 concurrent users. This has not been necessary but will almost certainly be if Gather becomes a valuable way for Hackathon participants to meet within and across teams.<a href="#section-3.2.2-2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3.2.2-2.3">Webex: IETF Webex accounts are made available to champions for the duration of the Hackathon and some period beyond that encompasses at least the rest of the IETF meeting. These accounts are presently available at no additional cost to the IETF.<a href="#section-3.2.2-2.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3.2.2-2.4">Network: setup and support of the IETF network and remote access to it<a href="#section-3.2.2-2.4" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-3.2.2-3">The change in timing and extended duration of the Hackathon at an online-only IETF meeting increases the duration and use of remote participation facilities from 7 days to 12 days. This may result in increases to the cost of providing these facilities.<a href="#section-3.2.2-3" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
</section>
</div>
<div id="project-presentations">
<section id="section-4">
<h2 id="name-project-presentations">
<a href="#section-4" class="section-number selfRef">4. </a><a href="#name-project-presentations" class="section-name selfRef">Project Presentations</a>
</h2>
<p id="section-4-1">Project presentations are an important mechanism for capturing what each team intends to accomplish, capturing what they actually accomplished, and sharing the results and findings with the IETF community.<a href="#section-4-1" class="pilcrow">¶</a></p>
<p id="section-4-2">For the first few Hackathons, we had two very distinct types of presentations:<a href="#section-4-2" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-4-3">
<li id="section-4-3.1">presentations that served as project pitches at the start of the Hackathon<a href="#section-4-3.1" class="pilcrow">¶</a>
</li>
<li id="section-4-3.2">presentations that summarized results at the end of the Hackathon<a href="#section-4-3.2" class="pilcrow">¶</a>
</li>
</ol>
<div id="project-pitches">
<section id="section-4.1">
<h3 id="name-project-pitches">
<a href="#section-4.1" class="section-number selfRef">4.1. </a><a href="#name-project-pitches" class="section-name selfRef">Project Pitches</a>
</h3>
<p id="section-4.1-1">The project pitches were 5-10 minute presentations by a champion of a project describing what they wanted to do and how they proposed to accomplish it. This gave everyone in the room a better understanding of all the projects and helped participants match themselves with appropriate projects. This worked well when we had few projects, but it became unwieldy as the number of projects increased. As knowledge of the Hackathon grew and advanced planning became more common, many participants knew exactly which team they planned to join and wanted to get to work as quickly as possible rather than spend time listening to presentations. Project pitches were dropped from the Hackathon. Champions are encouraged to share this type of information in advance via the <span><a href="#meeting-wiki" class="xref">IETF Meeting Wiki</a> (<a href="#meeting-wiki" class="xref">Section 5.4</a>)</span> instead.<a href="#section-4.1-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="project-results-presentations">
<section id="section-4.2">
<h3 id="name-project-results-presentatio">
<a href="#section-4.2" class="section-number selfRef">4.2. </a><a href="#name-project-results-presentatio" class="section-name selfRef">Project Results Presentations</a>
</h3>
<p id="section-4.2-1">The project results presentations were brief presentations by each team of what problem they tried to solve, what they achieved, and highlights that included lessons learned, feedback to associated working groups, and collaboration with open source communities and other standards organizations. They also highlight individuals who participated in their first IETF Hackathon or first IETF event, which helps facilitate the introduction of such individuals to the IETF community. The production and presentation of summaries of results is optional. Fortunately, despite the lack of awards and prizes, most teams participate.<a href="#section-4.2-1" class="pilcrow">¶</a></p>
<p id="section-4.2-2">As with the project pitches, project results presentations can become unwieldy as the number of projects increases. With this in mind, the total time for all results presentations is limited to 2 hours. The maximum duration of each presentation is calculated based on the number of teams that indicate the desire to present. This maximum is strictly enforced to ensure all teams have the opportunity to present their results. Maximum durations of 3-5 minutes are typical.<a href="#section-4.2-2" class="pilcrow">¶</a></p>
<div id="templates">
<section id="section-4.2.1">
<h4 id="name-templates">
<a href="#section-4.2.1" class="section-number selfRef">4.2.1. </a><a href="#name-templates" class="section-name selfRef">Templates</a>
</h4>
<p id="section-4.2.1-1">Project results presentation templates provides guidance on what to cover. The use of these templates is optional. They are made available in various formats in a GitHub repo created specifically for the presentations for each IETF Hackathon, e.g., <span>[<a href="#RESULTS-PRESENTATIONS" class="xref">RESULTS-PRESENTATIONS</a>]</span>.<a href="#section-4.2.1-1" class="pilcrow">¶</a></p>
<div id="pptx">
<section id="section-4.2.1.1">
<h5 id="name-microsoft-powerpoint-open-x">
<a href="#section-4.2.1.1" class="section-number selfRef">4.2.1.1. </a><a href="#name-microsoft-powerpoint-open-x" class="section-name selfRef">Microsoft PowerPoint Open XML (PPTX)</a>
</h5>
<p id="section-4.2.1.1-1">For portability, presentations that use the PPTX template should be exported into a PDF format as well.<a href="#section-4.2.1.1-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="html-format">
<section id="section-4.2.1.2">
<h5 id="name-html-format">
<a href="#section-4.2.1.2" class="section-number selfRef">4.2.1.2. </a><a href="#name-html-format" class="section-name selfRef">HTML Format</a>
</h5>
<p id="section-4.2.1.2-1">The HTML format template should render within any browser. It can be rendered as a slideshow using <span>[<a href="#REMARK" class="xref">REMARK</a>]</span>.<a href="#section-4.2.1.2-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
</section>
</div>
<div id="upload-to-github">
<section id="section-4.3">
<h3 id="name-upload-to-github">
<a href="#section-4.3" class="section-number selfRef">4.3. </a><a href="#name-upload-to-github" class="section-name selfRef">Upload to GitHub</a>
</h3>
<p id="section-4.3-1">All project results presentations are uploaded to the GitHub repo created for the Hackathon, e.g., <span>[<a href="#RESULTS-PRESENTATIONS" class="xref">RESULTS-PRESENTATIONS</a>]</span>. The contents of this repo are used as the source for all results presentations at the end of the Hackathon and remain as a reference after the Hackathon.<a href="#section-4.3-1" class="pilcrow">¶</a></p>
<p id="section-4.3-2">One must be a member of the <span>[<a href="#IETF-HACKATHON-GITHUB" class="xref">IETF-HACKATHON-GITHUB</a>]</span> organization to upload a new presentation or update/replace an existing presentation.<a href="#section-4.3-2" class="pilcrow">¶</a></p>
<p id="section-4.3-3">To be added as a member, presenters are asked to:<a href="#section-4.3-3" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-4.3-4.1">include the name by which they are known in their GitHub profile<a href="#section-4.3-4.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-4.3-4.2">enable 2-factor authentication (2FA)<a href="#section-4.3-4.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-4.3-4.3">send their GitHub username to the Hackathon Chair(s)<a href="#section-4.3-4.3" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-4.3-5">Presenters are asked to do this at their earliest convenience, as the Chair(s) typically gets very busy as the start of presentations approaches.<a href="#section-4.3-5" class="pilcrow">¶</a></p>
</section>
</div>
<div id="presenting-in-person">
<section id="section-4.4">
<h3 id="name-presenting-in-person">
<a href="#section-4.4" class="section-number selfRef">4.4. </a><a href="#name-presenting-in-person" class="section-name selfRef">Presenting in Person</a>
</h3>
<p id="section-4.4-1">Presentations are run from a shared Chromebook at the front of the Hackathon room. This Chromebook is provided by the Secretariat.<a href="#section-4.4-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="presenting-remotely">
<section id="section-4.5">
<h3 id="name-presenting-remotely">
<a href="#section-4.5" class="section-number selfRef">4.5. </a><a href="#name-presenting-remotely" class="section-name selfRef">Presenting Remotely</a>
</h3>
<p id="section-4.5-1">Remote presenters are welcome to run their own presentations using the screen-sharing functionality in Meetecho. Alternatively, the Hackathon Chair(s) can share the presentation and advance slides for the presenter.<a href="#section-4.5-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="tooling">
<section id="section-5">
<h2 id="name-tooling">
<a href="#section-5" class="section-number selfRef">5. </a><a href="#name-tooling" class="section-name selfRef">Tooling</a>
</h2>
<p id="section-5-1">The IETF Hackathon uses the same tooling used by the IETF community for its work and meetings.<a href="#section-5-1" class="pilcrow">¶</a></p>
<div id="datatracker">
<section id="section-5.1">
<h3 id="name-datatracker">
<a href="#section-5.1" class="section-number selfRef">5.1. </a><a href="#name-datatracker" class="section-name selfRef">Datatracker</a>
</h3>
<p id="section-5.1-1">The <span>[<a href="#DATATRACKER" class="xref">DATATRACKER</a>]</span> supports the notion of teams that are not part of the standards development process. The Hackathon exists as one such team. From the Datatracker menu, navigate to "Groups" -> "Other" -> "Active Teams" -> "hackathon". Here exists a Datatracker space for the Hackathon similar to what is available for working groups, including meeting materials, agendas, etc. Initially, there was some attempt to copy materials hosted in the <span>[<a href="#IETF-HACKATHON-GITHUB" class="xref">IETF-HACKATHON-GITHUB</a>]</span> to the Datatracker. Now, this is done only when required for integration with other IETF tooling, including:<a href="#section-5.1-1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-5.1-2.1">requesting sessions for the Hackathon kickoff and closing and for Hackdemo Happy Hour, e.g., <span>[<a href="#REQUEST-SESSIONS" class="xref">REQUEST-SESSIONS</a>]</span><a href="#section-5.1-2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.1-2.2">posting agendas (e.g., see <span>[<a href="#AGENDAS" class="xref">AGENDAS</a>]</span>)<a href="#section-5.1-2.2" class="pilcrow">¶</a>
</li>
</ul>
</section>
</div>
<div id="ietf-website">
<section id="section-5.2">
<h3 id="name-ietf-website">
<a href="#section-5.2" class="section-number selfRef">5.2. </a><a href="#name-ietf-website" class="section-name selfRef">IETF Website</a>
</h3>
<div id="hackathon-website">
<section id="section-5.2.1">
<h4 id="name-hackathon-website">
<a href="#section-5.2.1" class="section-number selfRef">5.2.1. </a><a href="#name-hackathon-website" class="section-name selfRef">Hackathon Website</a>
</h4>
<p id="section-5.2.1-1">The IETF website includes a <span>[<a href="#HACKATHON-WEBSITE" class="xref">HACKATHON-WEBSITE</a>]</span>. This website contains information about the Hackathon in general, as well as links to past, present, and future Hackathons. The relevant links are updated after each IETF meeting. Other content on the website is updated on a more ad hoc basis.<a href="#section-5.2.1-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="meeting-website">
<section id="section-5.2.2">
<h4 id="name-meeting-website">
<a href="#section-5.2.2" class="section-number selfRef">5.2.2. </a><a href="#name-meeting-website" class="section-name selfRef">Meeting Website</a>
</h4>
<p id="section-5.2.2-1">Each IETF <span>[<a href="#MEETING-WEBSITE" class="xref">MEETING-WEBSITE</a>]</span> contains information about the corresponding Hackathon, including the dates of the Hackathon in the header and a link to the Hackathon website in the "Additional Events" section.<a href="#section-5.2.2-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="registration">
<section id="section-5.3">
<h3 id="name-registration">
<a href="#section-5.3" class="section-number selfRef">5.3. </a><a href="#name-registration" class="section-name selfRef">Registration</a>
</h3>
<p id="section-5.3-1">Registration for the Hackathon is through the IETF meeting <span>[<a href="#REGISTRATION-SYSTEM" class="xref">REGISTRATION-SYSTEM</a>]</span>. Participant registration for the Hackathon is:<a href="#section-5.3-1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-5.3-2.1">independent of participation registration for the meeting<a href="#section-5.3-2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-2.2">free<a href="#section-5.3-2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-2.3">required<a href="#section-5.3-2.3" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-5.3-3">As with meeting registration, registrants for the Hackathon acknowledge the <span>[<a href="#NOTE-WELL" class="xref">NOTE-WELL</a>]</span> during the registration process.<a href="#section-5.3-3" class="pilcrow">¶</a></p>
<div id="participant-list">
<section id="section-5.3.1">
<h4 id="name-participant-list">
<a href="#section-5.3.1" class="section-number selfRef">5.3.1. </a><a href="#name-participant-list" class="section-name selfRef">Participant List</a>
</h4>
<p id="section-5.3.1-1">An active list of all registered participants, e.g., <span>[<a href="#PARTICIPANTS" class="xref">PARTICIPANTS</a>]</span>, is maintained by the Secretariat. Important information displayed for each registrant includes the set of projects and technologies in which each participant is interested and an email address. This information is optional at the time of registration and may be updated or removed by editing one's registration.<a href="#section-5.3.1-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="caps-on-registrations">
<section id="section-5.3.2">
<h4 id="name-caps-on-registrations">
<a href="#section-5.3.2" class="section-number selfRef">5.3.2. </a><a href="#name-caps-on-registrations" class="section-name selfRef">Caps on Registrations</a>
</h4>
<p id="section-5.3.2-1">Registrations were capped for the first several Hackathons. This was done for both space and costs considerations. The cap was hit multiple times, each time resulting in temporary confusion and frustration among would-be registrants, which led to the cap being increased. Currently, there are no caps enforced by the registration system. In the event the number of participants exceeds the capacity of the main Hackathon room, designated overflow areas within the meeting venue are made available.<a href="#section-5.3.2-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="meeting-wiki">
<section id="section-5.4">
<h3 id="name-meeting-wiki">
<a href="#section-5.4" class="section-number selfRef">5.4. </a><a href="#name-meeting-wiki" class="section-name selfRef">Meeting Wiki</a>
</h3>
<p id="section-5.4-1">The <span>[<a href="#MEETING-WIKI" class="xref">MEETING-WIKI</a>]</span> serves as the primary source of information for each Hackathon.<a href="#section-5.4-1" class="pilcrow">¶</a></p>
<div id="hackathon">
<section id="section-5.4.1">
<h4 id="name-hackathon">
<a href="#section-5.4.1" class="section-number selfRef">5.4.1. </a><a href="#name-hackathon" class="section-name selfRef">Hackathon</a>
</h4>
<p id="section-5.4.1-1">A page within the meeting wiki, e.g., <span>[<a href="#IETF-110-HACKATHON-WIKI" class="xref">IETF-110-HACKATHON-WIKI</a>]</span>, is created by the Secretariat for each Hackathon and initialized with information that is based largely on the information from the previous Hackathon. Once created, the Hackathon Chair(s) updates and moderates this page.
Champions are requested and are responsible for adding information about projects for which they are a champion.<a href="#section-5.4.1-1" class="pilcrow">¶</a></p>
<p id="section-5.4.1-2">Anyone can edit the wiki by logging in using their Datatracker login credentials. Credentials can be obtained by creating a <span>[<a href="#DATATRACKER-ACCOUNT" class="xref">DATATRACKER-ACCOUNT</a>]</span>.<a href="#section-5.4.1-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="lost-and-found">
<section id="section-5.4.2">
<h4 id="name-lost-and-found">
<a href="#section-5.4.2" class="section-number selfRef">5.4.2. </a><a href="#name-lost-and-found" class="section-name selfRef">Lost and Found</a>
</h4>
<p id="section-5.4.2-1">A Lost and Found wiki page, e.g., <span>[<a href="#LOST-AND-FOUND" class="xref">LOST-AND-FOUND</a>]</span>, is created by the Chair(s) for each Hackathon. Participants looking for a team are encouraged to add themselves to the "Skills to Offer" table, providing some information about their skills and interests. This will help others with matching needs and/or interests find them. Champions wanting help on their projects are encouraged to add their teams to the "Skills Needed" table, providing some information about the skills they seek.<a href="#section-5.4.2-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="results-presentation-schedule">
<section id="section-5.4.3">
<h4 id="name-results-presentation-schedu">
<a href="#section-5.4.3" class="section-number selfRef">5.4.3. </a><a href="#name-results-presentation-schedu" class="section-name selfRef">Results Presentation Schedule</a>
</h4>
<p id="section-5.4.3-1">A Results Presentation Schedule wiki page, e.g., <span>[<a href="#RESULTS-PRESENTATION-SCHEDULE" class="xref">RESULTS-PRESENTATION-SCHEDULE</a>]</span>, is created by the Chair(s) for each Hackathon. Hackathon teams are welcome and encouraged to present their results during the Hackathon closing. Hackathon teams add the name of their project and the name of the presenter to the table at the bottom of this page.<a href="#section-5.4.3-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="in-person-only">
<section id="section-5.4.4">
<h4 id="name-in-person-only">
<a href="#section-5.4.4" class="section-number selfRef">5.4.4. </a><a href="#name-in-person-only" class="section-name selfRef">In Person Only</a>
</h4>
<p id="section-5.4.4-1">The following wiki pages are applicable for in-person Hackathons only.<a href="#section-5.4.4-1" class="pilcrow">¶</a></p>
<div id="hackdemo-happy-hour-1">
<section id="section-5.4.4.1">
<h5 id="name-hackdemo-happy-hour-2">
<a href="#section-5.4.4.1" class="section-number selfRef">5.4.4.1. </a><a href="#name-hackdemo-happy-hour-2" class="section-name selfRef">Hackdemo Happy Hour</a>
</h5>
<p id="section-5.4.4.1-1">A Hackdemo Happy Hour wiki page, e.g., <span>[<a href="#HACKDEMO" class="xref">HACKDEMO</a>]</span>, is created by the Chair(s) for each Hackathon. Champions are welcome and encouraged to add their project by entering the project name/acronym and a contact name and email address in the table displayed on the page.<a href="#section-5.4.4.1-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="code-lounge-1">
<section id="section-5.4.4.2">
<h5 id="name-code-lounge-2">
<a href="#section-5.4.4.2" class="section-number selfRef">5.4.4.2. </a><a href="#name-code-lounge-2" class="section-name selfRef">Code Lounge</a>
</h5>
<p id="section-5.4.4.2-1">A Code Lounge wiki page, e.g., <span>[<a href="#CODE-LOUNGE" class="xref">CODE-LOUNGE</a>]</span>, is created by the Chair(s) for each Hackathon. Champions are welcome and encouraged to add their project by entering the project name/acronym and a contact name and email address in the table displayed on the page.<a href="#section-5.4.4.2-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="online-only-1">
<section id="section-5.4.5">
<h4 id="name-online-only-2">
<a href="#section-5.4.5" class="section-number selfRef">5.4.5. </a><a href="#name-online-only-2" class="section-name selfRef">Online Only</a>
</h4>
<p id="section-5.4.5-1">The following wiki pages are applicable for online-only Hackathons.<a href="#section-5.4.5-1" class="pilcrow">¶</a></p>
<div id="team-schedule">
<section id="section-5.4.5.1">
<h5 id="name-team-schedule">
<a href="#section-5.4.5.1" class="section-number selfRef">5.4.5.1. </a><a href="#name-team-schedule" class="section-name selfRef">Team Schedule</a>
</h5>
<p id="section-5.4.5.1-1">A Team Schedule wiki page, e.g., <span>[<a href="#TEAM-SCHEDULE" class="xref">TEAM-SCHEDULE</a>]</span>, is created by the Chair(s) for each online-only Hackathon. Online-only Hackathons take place globally for an entire week. It is up to individual project teams to determine the preferred dates, times, and ways to meet to work on their project within the context of that week (e.g., Zoom, Webex, or Slack). This page is meant to help facilitate coordination of schedules within and across teams.<a href="#section-5.4.5.1-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
</section>
</div>
<div id="email-list">
<section id="section-5.5">
<h3 id="name-email-list">
<a href="#section-5.5" class="section-number selfRef">5.5. </a><a href="#name-email-list" class="section-name selfRef">Email List</a>
</h3>
<p id="section-5.5-1">The Hackathon <span>[<a href="#EMAIL-LIST" class="xref">EMAIL-LIST</a>]</span> is used for all email communication and announcements related to the Hackathon. All registrants are given the option to subscribe to the list. Anyone interested in staying up to date on the Hackathon is able to subscribe at any time. Once subscribed, anyone can send and respond to emails via the list. The same list is used for each Hackathon. Anyone wishing to receive emails for a specific Hackathon only can unsubscribe after that Hackathon has concluded.<a href="#section-5.5-1" class="pilcrow">¶</a></p>
<div id="hackathon-chairs-email-alias">
<section id="section-5.5.1">
<h4 id="name-email-alias-for-hackathon-c">
<a href="#section-5.5.1" class="section-number selfRef">5.5.1. </a><a href="#name-email-alias-for-hackathon-c" class="section-name selfRef">Email Alias for Hackathon Chairs</a>
</h4>
<p id="section-5.5.1-1">The email alias <hackathon-chairs@ietf.org> was created and is maintained by the Secretariat. It is used on Hackathon web pages and wiki pages to provide a single point of contact for the Hackathon.<a href="#section-5.5.1-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="github">
<section id="section-5.6">
<h3 id="name-github">
<a href="#section-5.6" class="section-number selfRef">5.6. </a><a href="#name-github" class="section-name selfRef">GitHub</a>
</h3>
<p id="section-5.6-1">The <span>[<a href="#IETF-HACKATHON-GITHUB" class="xref">IETF-HACKATHON-GITHUB</a>]</span> is used to share code, presentations, and other artifacts at IETF Hackathons. The Hackathon Chair(s) is responsible for administering the GitHub organization.<a href="#section-5.6-1" class="pilcrow">¶</a></p>
<p id="section-5.6-2">Code for Hackathon projects often exist elsewhere, which is perfectly fine. Anyone needing a place to host code for the Hackathon can request the creation of a repository for their project.<a href="#section-5.6-2" class="pilcrow">¶</a></p>
<p id="section-5.6-3">A repository is created and maintained by the Chair(s) for each Hackathon, e.g., <span>[<a href="#RESULTS-PRESENTATIONS" class="xref">RESULTS-PRESENTATIONS</a>]</span>. This repo is for participants to upload project results presentations. The contents of this repo are used as the source for all presentations at the end of the Hackathon and remain as a reference after the Hackathon.<a href="#section-5.6-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="meetecho">
<section id="section-5.7">
<h3 id="name-meetecho">
<a href="#section-5.7" class="section-number selfRef">5.7. </a><a href="#name-meetecho" class="section-name selfRef">Meetecho</a>
</h3>
<p id="section-5.7-1"><span>[<a href="#MEETECHO" class="xref">MEETECHO</a>]</span> is used for the kickoff and closing sessions of the Hackathon. This provides many capabilities, including the following:<a href="#section-5.7-1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-5.7-2.1">allows participants to join Hackathon sessions in person or remotely<a href="#section-5.7-2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.7-2.2">validates the registration of participants at the time of joining Hackathon sessions<a href="#section-5.7-2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.7-2.3">enables remote presenters of project results presentations<a href="#section-5.7-2.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.7-2.4">captures recordings of the Hackathon kickoff and closing<a href="#section-5.7-2.4" class="pilcrow">¶</a>
</li>
</ul>
</section>
</div>
<div id="network">
<section id="section-5.8">
<h3 id="name-network">
<a href="#section-5.8" class="section-number selfRef">5.8. </a><a href="#name-network" class="section-name selfRef">Network</a>
</h3>
<p id="section-5.8-1">Access to the IETF network is an important aspect of the Hackathon. The IETF network provides unfettered Internet access that is not typical within many residential, corporate, and university environments. For many IETF participants and projects, access to the Internet and each other via wireless access to the IETF network is sufficient. However, due to the nature of the work done in the IETF, wired access and special networking capabilities are often required.<a href="#section-5.8-1" class="pilcrow">¶</a></p>
<p id="section-5.8-2">The Network Operations Center (NOC) has graciously met the needs of the Hackathon since its inception and continues to add more capabilities over time. In advance, champions are able to request wired access and special networking functionality, including static IPv4 and IPv6 addresses, IPv6-only networking, a closed user group, Network Address and Protocol Translation from IPv6 Clients to IPv4 Servers (NAT64), and IPv6 Prefix Delegation. All of this, and the IETF network in general, is made available by the start of the Hackathon and in advance for setup to the extent possible.<a href="#section-5.8-2" class="pilcrow">¶</a></p>
<div id="remote-networking">
<section id="section-5.8.1">
<h4 id="name-remote-networking">
<a href="#section-5.8.1" class="section-number selfRef">5.8.1. </a><a href="#name-remote-networking" class="section-name selfRef">Remote Networking</a>
</h4>
<p id="section-5.8.1-1">Online-only meetings present both a personal-networking challenge and a computer-networking challenge. The NOC came to the rescue for the latter with an experimental mechanism that was used to join the IETF network while attending a meeting remotely. This evolved into what is now known as "HackNet" <span>[<a href="#HACKNET" class="xref">HACKNET</a>]</span>, a global Layer 2 VPN designed to support IETF protocol development across teams within the IETF Hackathon. A limited set of devices for connecting to HackNet are supported. In addition to Layer 2 connectivity, a subset of the networking capabilities available at in-person meetings are available. Both the set of devices and the set of networking capabilities are expected to expand and evolve over time. However, it is important to note that HackNet is still an experiment and not a production service. Best-effort support is available via email to <support@ietf.org>.<a href="#section-5.8.1-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="webex">
<section id="section-5.9">
<h3 id="name-webex">
<a href="#section-5.9" class="section-number selfRef">5.9. </a><a href="#name-webex" class="section-name selfRef">Webex</a>
</h3>
<p id="section-5.9-1">Champions can request a <span>[<a href="#WEBEX-ACCOUNT" class="xref">WEBEX-ACCOUNT</a>]</span> they can use to schedule meetings for their team. These are similar to the Webex accounts that are allocated to and used by the working group chairs for virtual interim meetings. An account can be requested by a team champion at any time. Accounts remain active and available throughout the duration of the Hackathon and the associated IETF meeting. A project name may be used in place of "Working Group Name" in the request form.<a href="#section-5.9-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="gather">
<section id="section-5.10">
<h3 id="name-gather">
<a href="#section-5.10" class="section-number selfRef">5.10. </a><a href="#name-gather" class="section-name selfRef">Gather</a>
</h3>
<p id="section-5.10-1"><span>[<a href="#GATHER" class="xref">GATHER</a>]</span> facilitates virtual hallway interaction during IETF meetings. A dedicated area within the overall space is created by the Secretariat for the Hackathon. The area includes tables, identified by letters of the alphabet, that teams are free to self-assign and use as and when they like. Eight to ten seats around each table facilitate group discussions within the team.
A dry erase board or shared notes tablet, e.g., <span>[<a href="#HEDGEDOC" class="xref">HEDGEDOC</a>]</span>, at tables facilitates sharing of information within the team. The tables also facilitate collaboration across teams. One cautionary note: Gather has relative high-network bandwidth and CPU requirements and, as such, may not be well suited for some Hackathon participants.<a href="#section-5.10-1" class="pilcrow">¶</a></p>
<p id="section-5.10-2">The Gather space remains available between IETF meetings, with incremental improvements and additions made during this time. The space is cleaned about a month prior to the start of the next meeting, removing anything left over from the previous meeting. Hackathon teams are encouraged to make a copy of anything they want to retain within a week of the end of the IETF meeting.<a href="#section-5.10-2" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="statistics-and-metrics">
<section id="section-6">
<h2 id="name-statistics-and-metrics">
<a href="#section-6" class="section-number selfRef">6. </a><a href="#name-statistics-and-metrics" class="section-name selfRef">Statistics and Metrics</a>
</h2>
<p id="section-6-1">Statistics for the Hackathon have been gathered informally from the first Hackathon, at IETF 92, and more formally since IETF 101. Registration is required, but it is also free, which can lead to misleading statistics. Starting with IETF 101, an effort has been made by the Secretariat to validate registrations for all in-person participants by checking registrations at the main entrance to the Hackathon room. Badges similar to those issued for the rest of the IETF meeting are now issued for the Hackathon as well. There is still no good mechanism for determining the number of remote participants.<a href="#section-6-1" class="pilcrow">¶</a></p>
<p id="section-6-2">Hackathon participation has grown from 45 participants at IETF 92 to a maximum of 406 participants at IETF 104. Participation tends to be slightly higher when the IETF meeting is located in Europe. Recent in-person Hackathons have had roughly 30-40% as many participants as the corresponding IETF meeting. For roughly 20-30% of Hackathon participants, the Hackathon is their first experience at any IETF event.<a href="#section-6-2" class="pilcrow">¶</a></p>
<div id="ietf-survey-results">
<section id="section-6.1">
<h3 id="name-ietf-survey-results">
<a href="#section-6.1" class="section-number selfRef">6.1. </a><a href="#name-ietf-survey-results" class="section-name selfRef">IETF Survey Results</a>
</h3>
<p id="section-6.1-1">For each IETF meeting, there is a post-event survey that often includes a question or two about the Hackathon, e.g., <span>[<a href="#IETF-106-SURVEY" class="xref">IETF-106-SURVEY</a>]</span>.<a href="#section-6.1-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="hackathon-survey-results">
<section id="section-6.2">
<h3 id="name-hackathon-survey-results">
<a href="#section-6.2" class="section-number selfRef">6.2. </a><a href="#name-hackathon-survey-results" class="section-name selfRef">Hackathon Survey Results</a>
</h3>
<p id="section-6.2-1">Hackathon-specific surveys have been used on some occasions to obtain more detailed feedback about the Hackathon from the IETF community. This has been especially useful for feedback on online-only Hackathons. Surveys have been short with most questions being optional, e.g., <span>[<a href="#IETF-110-SURVEY" class="xref">IETF-110-SURVEY</a>]</span>.<a href="#section-6.2-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="roles-and-responsibilities">
<section id="section-7">
<h2 id="name-roles-and-responsibilities">
<a href="#section-7" class="section-number selfRef">7. </a><a href="#name-roles-and-responsibilities" class="section-name selfRef">Roles and Responsibilities</a>
</h2>
<p id="section-7-1">This section provides a summary of the roles and responsibilities of individuals and groups involved in a successful IETF Hackathon. The summary provided here is not meant to be exhaustive. Some responsibilities are described entirely or in more detail throughout the rest of the document.<a href="#section-7-1" class="pilcrow">¶</a></p>
<div id="hackathon-chairs">
<section id="section-7.1">
<h3 id="name-hackathon-chairs">
<a href="#section-7.1" class="section-number selfRef">7.1. </a><a href="#name-hackathon-chairs" class="section-name selfRef">Hackathon Chair(s)</a>
</h3>
<p id="section-7.1-1">The role of a Hackathon Chair is similar to that of a working group chair. As with working groups, it is typically best to have co-chairs share responsibilities and the workload. The Hackathon Chair(s) works very closely with the Secretariat on all responsibilities. Key responsibilities include the following:<a href="#section-7.1-1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-7.1-2.1">Organize and deliver a Hackathon at each IETF meeting, which involves soliciting help from all other roles to do much of the heavy lifting<a href="#section-7.1-2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.1-2.2">Encourage and provide guidance to champions who volunteer to lead projects<a href="#section-7.1-2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.1-2.3">Maintain the Hackathon wiki, e.g., <span>[<a href="#IETF-110-HACKATHON-WIKI" class="xref">IETF-110-HACKATHON-WIKI</a>]</span>, and all of its child pages.<a href="#section-7.1-2.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.1-2.4">Moderate the <span><a href="#email-list" class="xref">Hackathon email list</a> (<a href="#email-list" class="xref">Section 5.5</a>)</span><a href="#section-7.1-2.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.1-2.5">request sessions for the Hackathon opening and closing in the IETF meeting, e.g., <span>[<a href="#REQUEST-SESSIONS" class="xref">REQUEST-SESSIONS</a>]</span><a href="#section-7.1-2.5" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.1-2.6">Emcee the Hackathon, including the opening and closing sessions and announcements in between<a href="#section-7.1-2.6" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.1-2.7">Create and manage the GitHub repository used for each Hackathon, e.g.,<span>[<a href="#RESULTS-PRESENTATIONS" class="xref">RESULTS-PRESENTATIONS</a>]</span><a href="#section-7.1-2.7" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.1-2.8">Serve as the main point of contact for all Hackathon questions and concerns<a href="#section-7.1-2.8" class="pilcrow">¶</a>
</li>
</ul>
</section>
</div>
<div id="secretariat">
<section id="section-7.2">
<h3 id="name-secretariat">
<a href="#section-7.2" class="section-number selfRef">7.2. </a><a href="#name-secretariat" class="section-name selfRef">Secretariat</a>
</h3>
<p id="section-7.2-1">Key responsibilities include the following:<a href="#section-7.2-1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-7.2-2.1">Configure and manage the Hackathon <span><a href="#registration" class="xref">registration system</a> (<a href="#registration" class="xref">Section 5.3</a>)</span><a href="#section-7.2-2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.2-2.2">Maintain the Hackathon <span><a href="#hackathon-website" class="xref">website</a> (<a href="#hackathon-website" class="xref">Section 5.2.1</a>)</span><a href="#section-7.2-2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.2-2.3">Create and maintain the web page for each Hackathon, e.g., <span>[<a href="#IETF-110-HACKATHON-WEBSITE" class="xref">IETF-110-HACKATHON-WEBSITE</a>]</span><a href="#section-7.2-2.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.2-2.4">Create a wiki page for each Hackathon, e.g., <span>[<a href="#IETF-110-HACKATHON-WIKI" class="xref">IETF-110-HACKATHON-WIKI</a>]</span>. This is initialized and updated at times by the Secretariat, but the Chair(s) is ultimately responsible for maintaining it.<a href="#section-7.2-2.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.2-2.5">Handle venue logistics for the Hackathon, Hackdemo Happy Hour, and the Code Lounge (e.g., reserve room, food and beverages, AV, etc.)<a href="#section-7.2-2.5" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.2-2.6">Handle internal IETF promotion (e.g., via email messages to the IETF community)<a href="#section-7.2-2.6" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.2-2.7">Assist with external outreach, as needed, including finding sponsors<a href="#section-7.2-2.7" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.2-2.8">Validate Hackathon registrations for in-person participants, including issuing badges and <span><a href="#t-shirts" class="xref">Hackathon T-shirts</a> (<a href="#t-shirts" class="xref">Section 3.2.1.3</a>)</span> when available<a href="#section-7.2-2.8" class="pilcrow">¶</a>
</li>
</ul>
</section>
</div>
<div id="sponsor">
<section id="section-7.3">
<h3 id="name-sponsor">
<a href="#section-7.3" class="section-number selfRef">7.3. </a><a href="#name-sponsor" class="section-name selfRef">Sponsor</a>
</h3>
<p id="section-7.3-1">Key responsibilities include the following:<a href="#section-7.3-1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-7.3-2.1">Provide some funding to help offset costs of the Hackathon (either per meeting or per year, depending on the model)<a href="#section-7.3-2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.3-2.2">Optionally provide T-shirts or other giveaways<a href="#section-7.3-2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.3-2.3">Optionally provide support staff to assist with the Hackathon<a href="#section-7.3-2.3" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-7.3-3">Key benefits include the following:<a href="#section-7.3-3" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-7.3-4.1">Sponsor logo on Hackathon T-shirts<a href="#section-7.3-4.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.3-4.2">Sponsor logo on Hackathon signage<a href="#section-7.3-4.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.3-4.3">Sponsor logo on the Hackathon web page and wiki<a href="#section-7.3-4.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.3-4.4">Sponsor logo and call out in the Hackathon kickoff and closing presentations<a href="#section-7.3-4.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.3-4.5">Sponsor logo and call out in the IETF plenary presentation<a href="#section-7.3-4.5" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.3-4.6">Sponsor logo and call out in the Hackathon recap on <span>[<a href="#IETF-BLOG" class="xref">IETF-BLOG</a>]</span><a href="#section-7.3-4.6" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.3-4.7">Recognition in the IETF community for helping the IETF Hackathon remain free and open to everyone<a href="#section-7.3-4.7" class="pilcrow">¶</a>
</li>
</ul>
</section>
</div>
<div id="champions-of-projects">
<section id="section-7.4">
<h3 id="name-champions-of-projects">
<a href="#section-7.4" class="section-number selfRef">7.4. </a><a href="#name-champions-of-projects" class="section-name selfRef">Champions of Projects</a>
</h3>
<p id="section-7.4-1">Champions of projects are the key to a successful Hackathon. Key responsibilities for champions include the following:<a href="#section-7.4-1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-7.4-2.1">Volunteer to lead a project at the Hackathon<a href="#section-7.4-2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.4-2.2">Serve as the primary contact for the project<a href="#section-7.4-2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.4-2.3">Add and manage information on the Hackathon wiki for the project, including the <span><a href="#hackdemo-happy-hour" class="xref">Hackdemo Happy Hour</a> (<a href="#hackdemo-happy-hour" class="xref">Section 2.2</a>)</span>, <span><a href="#code-lounge" class="xref">Code Lounge</a> (<a href="#code-lounge" class="xref">Section 2.3</a>)</span>, and <span><a href="#team-schedule" class="xref">Team Schedule</a> (<a href="#team-schedule" class="xref">Section 5.4.5.1</a>)</span> pages<a href="#section-7.4-2.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.4-2.4">Promote the project to appropriate groups inside the IETF and outside as well<a href="#section-7.4-2.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.4-2.5">Welcome and organize members of the team<a href="#section-7.4-2.5" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.4-2.6">Provide focus, guidance, and leadership for the project<a href="#section-7.4-2.6" class="pilcrow">¶</a>
</li>
</ul>
</section>
</div>
<div id="ietf-llc-director-of-communications-and-operations-was-isoc">
<section id="section-7.5">
<h3 id="name-ietf-llc-director-of-commun">
<a href="#section-7.5" class="section-number selfRef">7.5. </a><a href="#name-ietf-llc-director-of-commun" class="section-name selfRef">IETF LLC, Director of Communications and Operations (was ISOC)</a>
</h3>
<p id="section-7.5-1">Key responsibilities include the following:<a href="#section-7.5-1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-7.5-2.1">Promote the Hackathon outside of the IETF, including web search engine ad words, social media posts, and listing on external event calendars, such as <span>[<a href="#RIPE-CALENDAR" class="xref">RIPE-CALENDAR</a>]</span> and <span>[<a href="#NSRC-CALENDAR" class="xref">NSRC-CALENDAR</a>]</span><a href="#section-7.5-2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.5-2.2">Handle outreach to local universities<a href="#section-7.5-2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.5-2.3">Provide a photographer, including optional team photos and candid photos of collaborating during in-person events<a href="#section-7.5-2.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.5-2.4">Provide <span><a href="#stickers" class="xref">laptop stickers</a> (<a href="#stickers" class="xref">Section 3.2.1.4</a>)</span> at in-person events<a href="#section-7.5-2.4" class="pilcrow">¶</a>
</li>
</ul>
</section>
</div>
<div id="judges">
<section id="section-7.6">
<h3 id="name-judges">
<a href="#section-7.6" class="section-number selfRef">7.6. </a><a href="#name-judges" class="section-name selfRef">Judges</a>
</h3>
<p id="section-7.6-1">The first several Hackathons involved judges who listened to project results presentations by teams at the closing of each Hackathon and identified winning teams for an arbitrary number of project categories. Prizes were made available to members of winning teams. This was done as an incentive to participate in the Hackathon and present results and to provide a fun yet informative end to the Hackathon that could be appreciated by the entire IETF community. Judging and the awarding of prizes led to confusion regarding the nature of the Hackathon, making it appear overly competitive to some. Procurement of appropriate prizes was financially and logistically challenging. The arrangement of judges, determination of winners, and awarding of prizes all became more time consuming, especially as the number of projects and participants grew. Ultimately, it was deemed best to eliminate judging, awards, and prizes entirely. Apparently, the IETF community has an innate incentive to participate and present results in the Hackathon.<a href="#section-7.6-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="implementation-status">
<section id="section-8">
<h2 id="name-implementation-status">
<a href="#section-8" class="section-number selfRef">8. </a><a href="#name-implementation-status" class="section-name selfRef">Implementation Status</a>
</h2>
<p id="section-8-1">The practices described in this document have been established, used, and refined over the course of running numerous IETF Hackathons, including several at online-only IETF meetings. The <span><a href="#GITHUB-REPO" class="xref">GitHub repository</a> [<a href="#GITHUB-REPO" class="xref">GITHUB-REPO</a>]</span> has been used to collaborate on this document. The <span><a href="#github" class="xref">IETF-Hackathon GitHub</a> (<a href="#github" class="xref">Section 5.6</a>)</span> contains code associated with IETF Hackathons.<a href="#section-8-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="security-considerations">
<section id="section-9">
<h2 id="name-security-considerations">
<a href="#section-9" class="section-number selfRef">9. </a><a href="#name-security-considerations" class="section-name selfRef">Security Considerations</a>
</h2>
<p id="section-9-1"><span><a href="#remote-networking" class="xref">HackNet</a> (<a href="#remote-networking" class="xref">Section 5.8.1</a>)</span> enables Hackathon participants to join the IETF network while attending a meeting remotely. The intent is for those connecting remotely to have as open a network as possible, just like those connecting to the IETF network at an in-person meeting. A user must have a Datatracker account to access HackNet and is expected to respect it, just as they are expected to respect the IETF network at an in-person meeting. If HackNet is exploited, it is addressed in the same manner as an exploitation of the IETF network would be at an in-person meeting.<a href="#section-9-1" class="pilcrow">¶</a></p>
<div id="privacy-considerations">
<section id="section-9.1">
<h3 id="name-privacy-considerations">
<a href="#section-9.1" class="section-number selfRef">9.1. </a><a href="#name-privacy-considerations" class="section-name selfRef">Privacy Considerations</a>
</h3>
<p id="section-9.1-1">The Hackathon complies with the IETF/IRTF/IAB <span>[<a href="#PRIVACY-STATEMENT" class="xref">PRIVACY-STATEMENT</a>]</span>.<a href="#section-9.1-1" class="pilcrow">¶</a></p>
<p id="section-9.1-2">Participant names are displayed publicly in the <span><a href="#participant-list" class="xref">Participant List</a> (<a href="#participant-list" class="xref">Section 5.3.1</a>)</span>. As part of their registration, participants may opt in to display their email address as well.<a href="#section-9.1-2" class="pilcrow">¶</a></p>
<p id="section-9.1-3">The email addresses of individual champions are often shared publicly by the champions on the wiki. This is done voluntarily by individual champions to make it easier for others to contact them.<a href="#section-9.1-3" class="pilcrow">¶</a></p>
<p id="section-9.1-4">Photos taken during the Hackathon, and during the IETF meeting in general, are sometimes included in blog posts or on social media. Red lanyards are made available to Hackathon participants to wear to indicate that they do not wish to be photographed individually or in small groups.<a href="#section-9.1-4" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="iana-considerations">
<section id="section-10">
<h2 id="name-iana-considerations">
<a href="#section-10" class="section-number selfRef">10. </a><a href="#name-iana-considerations" class="section-name selfRef">IANA Considerations</a>
</h2>
<p id="section-10-1">This document has no IANA actions.<a href="#section-10-1" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-11">
<h2 id="name-informative-references">
<a href="#section-11" class="section-number selfRef">11. </a><a href="#name-informative-references" class="section-name selfRef">Informative References</a>
</h2>
<dl class="references">
<dt id="AGENDAS">[AGENDAS]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF Meeting Agenda"</span>, <span><<a href="https://datatracker.ietf.org/meeting/agenda/">https://datatracker.ietf.org/meeting/agenda/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="BITS-N-BITES">[BITS-N-BITES]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"About Bits-N-Bites"</span>, <span><<a href="https://www.ietf.org/how/meetings/98/bits-n-bites/">https://www.ietf.org/how/meetings/98/bits-n-bites/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="CODE-LOUNGE">[CODE-LOUNGE]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF 113 Code Lounge"</span>, <span><<a href="https://trac.ietf.org/trac/ietf/meeting/wiki/113hackathon/codelounge">https://trac.ietf.org/trac/ietf/meeting/wiki/113hackathon/codelounge</a>></span>. </dd>
<dd class="break"></dd>
<dt id="CODE-SPRINT">[CODE-SPRINT]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"Code Sprint"</span>, <span><<a href="https://www.ietf.org/how/runningcode/code-sprint/">https://www.ietf.org/how/runningcode/code-sprint/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="DATATRACKER">[DATATRACKER]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF Datatracker"</span>, <span><<a href="https://datatracker.ietf.org/">https://datatracker.ietf.org/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="DATATRACKER-ACCOUNT">[DATATRACKER-ACCOUNT]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF Datatracker Account Creation"</span>, <span><<a href="https://datatracker.ietf.org/accounts/create/">https://datatracker.ietf.org/accounts/create/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="EMAIL-LIST">[EMAIL-LIST]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF Hackathon Mailing List"</span>, <span><<a href="https://www.ietf.org/mailman/listinfo/Hackathon/">https://www.ietf.org/mailman/listinfo/Hackathon/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="GATHER">[GATHER]</dt>
<dd>
<span class="refTitle">"Gather"</span>, <span><<a href="https://gather.town/">https://gather.town/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="GITHUB-REPO">[GITHUB-REPO]</dt>
<dd>
<span class="refTitle">"draft-ietf-shmoo-hackathon: IETF SHMOO working group draft on running an IETF Hackathon"</span>, <span class="refContent">commit 6a8aad6</span>, <time datetime="2022-07" class="refDate">July 2022</time>, <span><<a href="https://github.com/eckelcu/draft-ietf-shmoo-hackathon/">https://github.com/eckelcu/draft-ietf-shmoo-hackathon/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="HACKATHON-WEBSITE">[HACKATHON-WEBSITE]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF Hackathons"</span>, <span><<a href="https://www.ietf.org/how/runningcode/hackathons/">https://www.ietf.org/how/runningcode/hackathons/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="HACKDEMO">[HACKDEMO]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF 113 Hackdemo Happy Hour"</span>, <span><<a href="https://trac.ietf.org/trac/ietf/meeting/wiki/113hackathon/hackdemo">https://trac.ietf.org/trac/ietf/meeting/wiki/113hackathon/hackdemo</a>></span>. </dd>
<dd class="break"></dd>
<dt id="HACKNET">[HACKNET]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"HackNet"</span>, <span><<a href="https://hacknet.meeting.ietf.org/">https://hacknet.meeting.ietf.org/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="HEDGEDOC">[HEDGEDOC]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"HedgeDoc"</span>, <span><<a href="https://notes.ietf.org/">https://notes.ietf.org/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="IETF-106-SURVEY">[IETF-106-SURVEY]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF 106 Meeting Survey"</span>, <span><<a href="https://www.ietf.org/media/documents/IETF_106_Meeting_Survey.pdf">https://www.ietf.org/media/documents/IETF_106_Meeting_Survey.pdf</a>></span>. </dd>
<dd class="break"></dd>
<dt id="IETF-108-HACKATHON-WIKI">[IETF-108-HACKATHON-WIKI]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF 108 Hackathon Wiki"</span>, <span><<a href="https://trac.ietf.org/trac/ietf/meeting/wiki/108hackathon/">https://trac.ietf.org/trac/ietf/meeting/wiki/108hackathon/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="IETF-110-HACKATHON-WEBSITE">[IETF-110-HACKATHON-WEBSITE]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF 110 Hackathon Online"</span>, <span><<a href="https://www.ietf.org/how/runningcode/hackathons/110-hackathon/">https://www.ietf.org/how/runningcode/hackathons/110-hackathon/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="IETF-110-HACKATHON-WIKI">[IETF-110-HACKATHON-WIKI]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF 110 Hackathon Wiki"</span>, <span><<a href="https://trac.ietf.org/trac/ietf/meeting/wiki/110hackathon/">https://trac.ietf.org/trac/ietf/meeting/wiki/110hackathon/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="IETF-110-SURVEY">[IETF-110-SURVEY]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF 110 Meeting Survey"</span>, <span><<a href="https://ql.tc/8K1JeZ/">https://ql.tc/8K1JeZ/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="IETF-BLOG">[IETF-BLOG]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF Blog"</span>, <span><<a href="https://www.ietf.org/blog/">https://www.ietf.org/blog/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="IETF-HACKATHON-GITHUB">[IETF-HACKATHON-GITHUB]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF-Hackathon Repositories"</span>, <span><<a href="https://github.com/ietf-hackathon/">https://github.com/ietf-hackathon/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="LOST-AND-FOUND">[LOST-AND-FOUND]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF 110 Hackathon Lost and Found"</span>, <span><<a href="https://trac.ietf.org/trac/ietf/meeting/wiki/110hackathon/lost&found">https://trac.ietf.org/trac/ietf/meeting/wiki/110hackathon/lost&found</a>></span>. </dd>
<dd class="break"></dd>
<dt id="MEETECHO">[MEETECHO]</dt>
<dd>
<span class="refTitle">"Meetecho"</span>, <span><<a href="https://www.meetecho.com/">https://www.meetecho.com/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="MEETING-WEBSITE">[MEETING-WEBSITE]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"Meetings and events"</span>, <span><<a href="https://www.ietf.org/how/meetings/">https://www.ietf.org/how/meetings/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="MEETING-WIKI">[MEETING-WIKI]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF Meeting Wiki"</span>, <span><<a href="https://trac.ietf.org/trac/ietf/meeting/wiki">https://trac.ietf.org/trac/ietf/meeting/wiki</a>></span>. </dd>
<dd class="break"></dd>
<dt id="NOTE-WELL">[NOTE-WELL]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"Note Well"</span>, <span><<a href="https://ietf.org/about/note-well/">https://ietf.org/about/note-well/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="NSRC-CALENDAR">[NSRC-CALENDAR]</dt>
<dd>
<span class="refAuthor">Network Startup Resource Center</span>, <span class="refTitle">"Education Outreach and Training (EOT) Calendar for Internet Development"</span>, <span><<a href="https://nsrc.org/calendar/">https://nsrc.org/calendar/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="PARTICIPANTS">[PARTICIPANTS]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF 110 Hackathon Participant List"</span>, <span><<a href="https://registration.ietf.org/110/participants/hackathon/">https://registration.ietf.org/110/participants/hackathon/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="PRIVACY-STATEMENT">[PRIVACY-STATEMENT]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF/IRTF/IAB Privacy Statement"</span>, <span><<a href="https://www.ietf.org/privacy-statement/">https://www.ietf.org/privacy-statement/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="REGISTRATION-SYSTEM">[REGISTRATION-SYSTEM]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF Meeting Registration System"</span>, <span><<a href="https://registration.ietf.org/">https://registration.ietf.org/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="REMARK">[REMARK]</dt>
<dd>
<span class="refTitle">"remark: A simple, in-browser, markdown-driven slideshow tool"</span>, <span class="refContent">commit 1bbce13</span>, <time datetime="2022-05" class="refDate">May 2022</time>, <span><<a href="https://github.com/gnab/remark/">https://github.com/gnab/remark/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="REQUEST-SESSIONS">[REQUEST-SESSIONS]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF Session Request"</span>, <span><<a href="https://datatracker.ietf.org/secr/sreq/">https://datatracker.ietf.org/secr/sreq/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RESULTS-PRESENTATION-SCHEDULE">[RESULTS-PRESENTATION-SCHEDULE]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF 110 Hackathon Results Presentation Schedule"</span>, <span><<a href="https://trac.ietf.org/trac/ietf/meeting/wiki/110hackathon/resultspresentationschedule">https://trac.ietf.org/trac/ietf/meeting/wiki/110hackathon/resultspresentationschedule</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RESULTS-PRESENTATIONS">[RESULTS-PRESENTATIONS]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF 110 Hackathon Project Results Presentations"</span>, <span class="refContent">commit a6a12bd</span>, <time datetime="2021-03" class="refDate">March 2021</time>, <span><<a href="https://github.com/ietf-hackathon/ietf110-project-presentations">https://github.com/ietf-hackathon/ietf110-project-presentations</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RIPE-CALENDAR">[RIPE-CALENDAR]</dt>
<dd>
<span class="refAuthor">RIPE NCC</span>, <span class="refTitle">"Upcoming Events"</span>, <span><<a href="https://www.ripe.net/participate/meetings/calendar/">https://www.ripe.net/participate/meetings/calendar/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RUNNING-CODE-SPONSOR">[RUNNING-CODE-SPONSOR]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF Meeting Sponsorship: Running Code Sponsors"</span>, <span><<a href="https://www.ietf.org/support-us/sponsorship/#running-code">https://www.ietf.org/support-us/sponsorship/#running-code</a>></span>. </dd>
<dd class="break"></dd>
<dt id="SURVEY">[SURVEY]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF 107 Hackathon Results: Participant Survey"</span>, <span><<a href="https://www.surveymonkey.com/results/SM-9HLRXN8M7/">https://www.surveymonkey.com/results/SM-9HLRXN8M7/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="TEAM-SCHEDULE">[TEAM-SCHEDULE]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF 110 Hackathon Team Schedule"</span>, <span><<a href="https://trac.ietf.org/trac/ietf/meeting/wiki/110hackathon/teamschedule">https://trac.ietf.org/trac/ietf/meeting/wiki/110hackathon/teamschedule</a>></span>. </dd>
<dd class="break"></dd>
<dt id="WEBEX-ACCOUNT">[WEBEX-ACCOUNT]</dt>
<dd>
<span class="refAuthor">IETF</span>, <span class="refTitle">"IETF Webex Account"</span>, <span><<a href="https://ietf.webex.com/webappng/sites/ietf/dashboard?siteurl=ietf/">https://ietf.webex.com/webappng/sites/ietf/dashboard?siteurl=ietf/</a>></span>. </dd>
<dd class="break"></dd>
</dl>
</section>
<div id="acknowledgments">
<section id="appendix-A">
<h2 id="name-acknowledgments">
<a href="#name-acknowledgments" class="section-name selfRef">Acknowledgments</a>
</h2>
<p id="appendix-A-1">The IETF Secretariat, notably <span class="contact-name">Alexa Morris</span> and <span class="contact-name">Stephanie McCammon</span>, contributed significantly to the creation of the IETF Hackathon and the practices in this document. Among other things, <span class="contact-name">Alexa</span> drafted the initial breakdown of <span><a href="#roles-and-responsibilities" class="xref">"Roles and Responsibilities"</a> (<a href="#roles-and-responsibilities" class="xref">Section 7</a>)</span>, and <span class="contact-name">Stephanie</span> created the initial Hackathon website and wiki. These have evolved over time and are used to run each Hackathon.<a href="#appendix-A-1" class="pilcrow">¶</a></p>
<p id="appendix-A-2"><span class="contact-name">Greg Wood</span>, <span class="contact-name">Barry Leiba</span>, <span class="contact-name">Michael Richardson</span>, <span class="contact-name">Benson Muite</span>, <span class="contact-name">Dhruv Dhody</span>, <span class="contact-name">Karl Auerbach</span>, <span class="contact-name">Mallory Knodel</span>, <span class="contact-name">Lars Eggert</span>, <span class="contact-name">Robert Sparks</span>, <span class="contact-name">Thomas Fossati</span>, <span class="contact-name">Alvaro Retana</span>, <span class="contact-name">Erik Kline</span>, <span class="contact-name">John Scudder</span>, <span class="contact-name">Roman Danyliw</span>, and <span class="contact-name">Éric Vyncke</span> also provided significant contributions to the Hackathon and to this document.<a href="#appendix-A-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="authors-addresses">
<section id="appendix-B">
<h2 id="name-authors-address">
<a href="#name-authors-address" class="section-name selfRef">Author's Address</a>
</h2>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Charles Eckel</span></div>
<div dir="auto" class="left"><span class="org">Cisco Systems</span></div>
<div dir="auto" class="left"><span class="country-name">United States of America</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:eckelcu@cisco.com" class="email">eckelcu@cisco.com</a>
</div>
</address>
</section>
</div>
<script>const toc = document.getElementById("toc");
toc.querySelector("h2").addEventListener("click", e => {
toc.classList.toggle("active");
});
toc.querySelector("nav").addEventListener("click", e => {
toc.classList.remove("active");
});
</script>
</body>
</html>
|