File size: 125,130 Bytes
2cade26 | 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 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 | [
{
"text": "I don't notice it anymore.",
"id": 177,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 181,
"created_at": "2024-11-25T16:51:59.181677Z",
"updated_at": "2024-11-25T16:51:59.181677Z",
"lead_time": 2.176
},
{
"text": "Everyone: He predicted how long the video would be!<br>The timer in front of him: \ud83d\ude0e",
"id": 101,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 104,
"created_at": "2024-11-25T14:49:44.517171Z",
"updated_at": "2024-11-25T14:49:44.517171Z",
"lead_time": 10.871
},
{
"text": "They may need water, DNA ...",
"id": 295,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 301,
"created_at": "2024-11-25T17:12:24.822739Z",
"updated_at": "2024-11-25T17:12:24.822739Z",
"lead_time": 2.661
},
{
"text": "I'm not happy with the video title. Obviously, playing with shutter isn't anything new and it's definitely not \"stopping a laser\".<br><br>Of course, I didn't expect a laser actually stopping in mid-air, but this is not the quality I signed up for.",
"id": 167,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 171,
"created_at": "2024-11-25T16:50:21.055970Z",
"updated_at": "2024-11-25T16:50:21.055970Z",
"lead_time": 13.183
},
{
"text": "So the Non-English speaking loan, not only did I clean his house including whatever he was hiding. While leaving I took his horse, only to have him burst from the house screaming mercy...",
"id": 476,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 484,
"created_at": "2024-11-26T05:41:06.817875Z",
"updated_at": "2024-11-26T05:41:06.817875Z",
"lead_time": 13.493
},
{
"text": "Discord store review?",
"id": 222,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 227,
"created_at": "2024-11-25T17:00:39.567549Z",
"updated_at": "2024-11-25T17:00:39.567549Z",
"lead_time": 4.821
},
{
"text": "Bring back old Riley",
"id": 446,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 454,
"created_at": "2024-11-26T05:35:14.483944Z",
"updated_at": "2024-11-26T05:35:14.483944Z",
"lead_time": 2.496
},
{
"text": "This is great idea",
"id": 107,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 110,
"created_at": "2024-11-25T14:50:52.837991Z",
"updated_at": "2024-11-25T14:50:52.837991Z",
"lead_time": 4.934
},
{
"text": "One step closer to a turbolift.",
"id": 122,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 126,
"created_at": "2024-11-25T14:59:57.114761Z",
"updated_at": "2024-11-25T14:59:57.114761Z",
"lead_time": 2.547
},
{
"text": "\"A bit wet\" says the guy from an island known for its raininess...",
"id": 510,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 518,
"created_at": "2024-11-26T06:06:01.628174Z",
"updated_at": "2024-11-26T06:06:01.628174Z",
"lead_time": 4.152
},
{
"text": "The surface duo always makes me think of the Nintendo DS.",
"id": 426,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 434,
"created_at": "2024-11-26T05:33:12.522890Z",
"updated_at": "2024-11-26T05:33:12.522890Z",
"lead_time": 3.409
},
{
"text": "When's this year's elevator video, Tom?",
"id": 32,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 33,
"created_at": "2024-11-25T14:34:24.460036Z",
"updated_at": "2024-11-25T14:34:24.460036Z",
"lead_time": 6.087
},
{
"text": "did you forget to colour correct this one or is this one of the test videos for parsec?",
"id": 123,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 127,
"created_at": "2024-11-25T15:00:05.549913Z",
"updated_at": "2024-11-25T15:00:05.549913Z",
"lead_time": 8.176
},
{
"text": "Watching this just helps reassure me there are still sane, rational voices in the world. The truth will win. Thank you for all you both do.",
"id": 252,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 257,
"created_at": "2024-11-25T17:07:24.761232Z",
"updated_at": "2024-11-25T17:07:24.761232Z",
"lead_time": 14.264
},
{
"text": "Wow, that was an unexpected reminder of Mortality.",
"id": 285,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 291,
"created_at": "2024-11-25T17:11:20.724552Z",
"updated_at": "2024-11-25T17:11:20.724552Z",
"lead_time": 4.96
},
{
"text": "So giving people the option to increse privacy is bad? How much are people going to let facebook get away with?",
"id": 337,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 345,
"created_at": "2024-11-25T17:18:00.689477Z",
"updated_at": "2024-11-25T17:18:00.689477Z",
"lead_time": 5.807
},
{
"text": "Originality 2000",
"id": 213,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 218,
"created_at": "2024-11-25T16:59:42.037688Z",
"updated_at": "2024-11-25T16:59:42.037688Z",
"lead_time": 1.63
},
{
"text": "Well I know you played a Morse code message at the end card at a high frequency but I don\u2019t know Morse code",
"id": 188,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 193,
"created_at": "2024-11-25T16:56:58.905975Z",
"updated_at": "2024-11-25T16:56:58.905975Z",
"lead_time": 6.673
},
{
"text": "Would love to play this",
"id": 423,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 431,
"created_at": "2024-11-26T05:33:02.744093Z",
"updated_at": "2024-11-26T05:33:02.744093Z",
"lead_time": 4.372
},
{
"text": "Meh Many beaches in Brazil are mildly radioactive, because they contain natural Thorium, and some daughter products. The beaches are still in use.",
"id": 353,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 361,
"created_at": "2024-11-25T17:20:04.329811Z",
"updated_at": "2024-11-25T17:20:04.329811Z",
"lead_time": 7.293
},
{
"text": "If it goes sideways... Is it really an elevator..?!",
"id": 488,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 496,
"created_at": "2024-11-26T05:42:41.423865Z",
"updated_at": "2024-11-26T05:42:41.423865Z",
"lead_time": 39.118
},
{
"text": "Do you reckon the gorilla should go for the kimura Vs the bear and lion?",
"id": 430,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 438,
"created_at": "2024-11-26T05:33:55.102756Z",
"updated_at": "2024-11-26T05:33:55.102756Z",
"lead_time": 13.687
},
{
"text": "I am locked into STEAM and I like it... Daddy GabeN was the only one who trusted the platform, all the rest went to support consoles mofos such as Epic, they talked a lot of shit about PC when they started with Gears of War, now look at them, loosing a lot of money just because they want to gain the good faith of the community... FUCK YOU TIM SWEENEY, fuck you twice after what you did to the UT4.",
"id": 270,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 276,
"created_at": "2024-11-25T17:09:52.571529Z",
"updated_at": "2024-11-25T17:09:52.571529Z",
"lead_time": 8.32
},
{
"text": "God damnit if I had known I could have been a willy wonka elevator engineer i would have gone to school for that instead",
"id": 239,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 244,
"created_at": "2024-11-25T17:03:21.385677Z",
"updated_at": "2024-11-25T17:03:21.385677Z",
"lead_time": 8.797
},
{
"text": "The reason the trolley problem has no right answer is because it\u2019s a bullshit question. It wouldn\u2019t happen in the field because a human body has no effect on the trajectory of a trolley. Anything that would have its trajectory affected by one body would not kill 20 people. If the scenario is not plodible than it\u2019s just some blas\u00e9 disconnected bullshit pseudo intellectual bullshit question for professional academics.",
"id": 387,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 395,
"created_at": "2024-11-26T05:26:52.224706Z",
"updated_at": "2024-11-26T05:26:52.224706Z",
"lead_time": 14.849
},
{
"text": "If they make 12 incompatible with as many systems as 11, Microsoft is worse than Apple.",
"id": 262,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 267,
"created_at": "2024-11-25T17:08:29.480458Z",
"updated_at": "2024-11-25T17:08:29.480458Z",
"lead_time": 8.575
},
{
"text": "Hi Martin, <br><br>An important topic that would interest many, and probably most, of your listeners, is that of the failed military expedition in 1946 by Richard E. Byrd, to destroy the German UFO base in Antarctica. It is also known as Operation Highjump",
"id": 405,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 413,
"created_at": "2024-11-26T05:30:50.953030Z",
"updated_at": "2024-11-26T05:30:50.953030Z",
"lead_time": 4.695
},
{
"text": "Wonderful video",
"id": 309,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 315,
"created_at": "2024-11-25T17:14:28.639638Z",
"updated_at": "2024-11-25T17:14:28.639638Z",
"lead_time": 1.953
},
{
"text": "How does youtbe not strike this video for misinformation???",
"id": 515,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 523,
"created_at": "2024-11-26T06:06:58.839040Z",
"updated_at": "2024-11-26T06:06:58.839040Z",
"lead_time": 3.786
},
{
"text": "There used to be canary birds in cages in coalmines here in the US to check for dangerous methane and other poisonous gas levels. They are more susceptible and keel over, warning the miners.",
"id": 349,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 357,
"created_at": "2024-11-25T17:19:42.644885Z",
"updated_at": "2024-11-25T17:19:42.644885Z",
"lead_time": 4.662
},
{
"text": "sounds interesting not gonna lie",
"id": 162,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 166,
"created_at": "2024-11-25T16:49:39.290516Z",
"updated_at": "2024-11-25T16:49:39.290516Z",
"lead_time": 1.867
},
{
"text": "Dogecoin ftw! HOLD HOLD HOLD!!!!!",
"id": 72,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 73,
"created_at": "2024-11-25T14:39:50.643399Z",
"updated_at": "2024-11-25T14:39:50.643399Z",
"lead_time": 3.082
},
{
"text": "This dude is so charismatic and nicely funny i could listen to him all day \ud83d\ude4f\ud83c\udffb\ud83d\ude04\ud83e\udd17 you a cool dude ! \ud83d\ude4f\ud83c\udffb",
"id": 39,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 40,
"created_at": "2024-11-25T14:35:21.406761Z",
"updated_at": "2024-11-25T14:35:21.406761Z",
"lead_time": 3.742
},
{
"text": "At this point in time with what has been said about underreported cases and the fact that the 1st infection is the worst why are we still trying to hold peoples feet to the fire to get jabbed. They likely have already been in contact with the virus and are trying to go about their lives the same way everyone wants to.",
"id": 48,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 49,
"created_at": "2024-11-25T14:36:29.500438Z",
"updated_at": "2024-11-25T14:36:43.155784Z",
"lead_time": 22.385
},
{
"text": "all i wanna know is how many files are left/how far along the current file is",
"id": 193,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 198,
"created_at": "2024-11-25T16:57:39.564950Z",
"updated_at": "2024-11-25T16:57:39.564950Z",
"lead_time": 6.149
},
{
"text": "I remember hearing about this on the radio! I'd been very excited to see what it would look like! And so far, it looks amazing!",
"id": 232,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 237,
"created_at": "2024-11-25T17:02:23.667856Z",
"updated_at": "2024-11-25T17:02:23.667856Z",
"lead_time": 4.858
},
{
"text": "The minesweeper joke was brilliant!",
"id": 245,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 250,
"created_at": "2024-11-25T17:03:55.892906Z",
"updated_at": "2024-11-25T17:03:55.892906Z",
"lead_time": 2.996
},
{
"text": "My only comment, we need more dancing crabs!!!",
"id": 417,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 425,
"created_at": "2024-11-26T05:32:26.531805Z",
"updated_at": "2024-11-26T05:32:26.531805Z",
"lead_time": 4.579
},
{
"text": "Great podcast as always. Thanks \ud83c\uddf5\ud83c\uddea",
"id": 345,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 353,
"created_at": "2024-11-25T17:18:42.567295Z",
"updated_at": "2024-11-25T17:18:42.567295Z",
"lead_time": 2.617
},
{
"text": "You know, I\u2019d love to see Lex interview Matt Mercer. Anybody with me?",
"id": 141,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 145,
"created_at": "2024-11-25T16:47:49.357208Z",
"updated_at": "2024-11-25T16:47:49.357208Z",
"lead_time": 9.512
},
{
"text": "this video didnt age well because there is new leaks again",
"id": 304,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 310,
"created_at": "2024-11-25T17:13:27.072851Z",
"updated_at": "2024-11-25T17:13:27.072851Z",
"lead_time": 5.126
},
{
"text": "I wish I had enough hours in the day to catch up on all your podcast. You have the most interesting guest of any podcast series I've heard. ty",
"id": 226,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 231,
"created_at": "2024-11-25T17:01:25.395126Z",
"updated_at": "2024-11-25T17:01:25.395126Z",
"lead_time": 8.213
},
{
"text": "I am an agnostic by faith, but I really enjoyed listening to imam Omar talk about his life and his faith. I wish everyone practiced their faith the way he does. Such an amazing individual.",
"id": 17,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 18,
"created_at": "2024-11-25T14:32:02.934596Z",
"updated_at": "2024-11-25T14:32:02.934596Z",
"lead_time": 9.696
},
{
"text": "I now know how creeper Riley sounds.",
"id": 346,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 354,
"created_at": "2024-11-25T17:18:55.385313Z",
"updated_at": "2024-11-25T17:18:55.385313Z",
"lead_time": 7.967
},
{
"text": "My God! What an interesting discussion!",
"id": 484,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 492,
"created_at": "2024-11-26T05:41:50.553804Z",
"updated_at": "2024-11-26T05:41:50.553804Z",
"lead_time": 2.222
},
{
"text": "Loved it!!",
"id": 173,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 177,
"created_at": "2024-11-25T16:51:18.577325Z",
"updated_at": "2024-11-25T16:51:18.577325Z",
"lead_time": 1.422
},
{
"text": "thanks for that high pitched sound at the end to let my know my hearing is still good",
"id": 288,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 294,
"created_at": "2024-11-25T17:11:45.156319Z",
"updated_at": "2024-11-25T17:11:45.156319Z",
"lead_time": 6.421
},
{
"text": "This can be used for make a hologram?",
"id": 51,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 52,
"created_at": "2024-11-25T14:37:09.090946Z",
"updated_at": "2024-11-25T14:37:09.090946Z",
"lead_time": 6.558
},
{
"text": "you are such a",
"id": 206,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 211,
"created_at": "2024-11-25T16:58:58.755718Z",
"updated_at": "2024-11-25T16:58:58.755718Z",
"lead_time": 2.57
},
{
"text": "Crazy! When did they apply for the patent? Idr but I have seen this in agricultural application for years.",
"id": 333,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 341,
"created_at": "2024-11-25T17:17:45.143656Z",
"updated_at": "2024-11-25T17:17:45.143656Z",
"lead_time": 5.954
},
{
"text": "Hey Lex. Canada needs Cash App",
"id": 445,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 453,
"created_at": "2024-11-26T05:35:11.444010Z",
"updated_at": "2024-11-26T05:35:11.444010Z",
"lead_time": 2.582
},
{
"text": "Yay for palm now I can upgrade from my palm pilot 200",
"id": 47,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 48,
"created_at": "2024-11-25T14:36:12.998794Z",
"updated_at": "2024-11-25T14:36:12.998794Z",
"lead_time": 4.132
},
{
"text": "Great interaction between two great contributors to society , enjoyed this episode and looks like you two good guys did too.<br>Nice One !",
"id": 36,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 37,
"created_at": "2024-11-25T14:35:02.413370Z",
"updated_at": "2024-11-25T14:35:02.413370Z",
"lead_time": 4.649
},
{
"text": "I prefer the colour grading in the sponsor section to the rest of the video. Much brighter, and punchier. More pleasing to the eye. Great video anyway, as always! \ud83d\ude0a",
"id": 202,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 207,
"created_at": "2024-11-25T16:58:35.255927Z",
"updated_at": "2024-11-25T16:58:35.255927Z",
"lead_time": 9.147
},
{
"text": "An appeal to you, are you good, a woman from Palestine, I live in a rented house for my orphaned children, I need you to contact a number in my channel\ud83c\uddf5\ud83c\uddf8",
"id": 95,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 98,
"created_at": "2024-11-25T14:48:51.339246Z",
"updated_at": "2024-11-25T14:48:51.339246Z",
"lead_time": 8.473
},
{
"text": "Fake News. You labeled Kathy Griffin as a \"high profile comedian\". . .",
"id": 358,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 366,
"created_at": "2024-11-25T17:20:23.768301Z",
"updated_at": "2024-11-25T17:20:23.768301Z",
"lead_time": 2.878
},
{
"text": "Aged like milk",
"id": 43,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 44,
"created_at": "2024-11-25T14:35:52.194894Z",
"updated_at": "2024-11-25T14:35:52.194894Z",
"lead_time": 3.319
},
{
"text": "That was Riley? I thought it was Linus...",
"id": 272,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 278,
"created_at": "2024-11-25T17:10:21.767707Z",
"updated_at": "2024-11-25T17:10:21.767707Z",
"lead_time": 18.046
},
{
"text": "And that's what happen when kid grow up to be talented adult. They play with bigger toys.",
"id": 41,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 42,
"created_at": "2024-11-25T14:35:38.636040Z",
"updated_at": "2024-11-25T14:35:38.636040Z",
"lead_time": 8.375
},
{
"text": "Can\u2019t wait to see what lift tom goes to see this June!",
"id": 281,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 287,
"created_at": "2024-11-25T17:11:05.825047Z",
"updated_at": "2024-11-25T17:11:05.825047Z",
"lead_time": 8.242
},
{
"text": "you had no audio issues while lots of players had 0 audio at all :P",
"id": 341,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 349,
"created_at": "2024-11-25T17:18:25.421373Z",
"updated_at": "2024-11-25T17:18:25.421373Z",
"lead_time": 6.621
},
{
"text": "I thought loading bars and etc. were a lie. More to make users not think the system where frozen. And restart.",
"id": 323,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 329,
"created_at": "2024-11-25T17:16:22.664148Z",
"updated_at": "2024-11-25T17:16:22.664148Z",
"lead_time": 9.507
},
{
"text": "Semitic languages just looking from the side...",
"id": 260,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 265,
"created_at": "2024-11-25T17:08:18.969099Z",
"updated_at": "2024-11-25T17:08:18.969099Z",
"lead_time": 5.143
},
{
"text": "what was that noise at the end was it morse code .O.",
"id": 361,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 369,
"created_at": "2024-11-25T17:20:44.480082Z",
"updated_at": "2024-11-25T17:20:44.480082Z",
"lead_time": 3.971
},
{
"text": "Now take a look at Twitter \u2013 there's stuff like this there as well. And you can report it all day long.",
"id": 311,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 317,
"created_at": "2024-11-25T17:14:42.096503Z",
"updated_at": "2024-11-25T17:14:42.096503Z",
"lead_time": 5.577
},
{
"text": "A duck cast distraction on Tom Scott and it was super effective!",
"id": 37,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 38,
"created_at": "2024-11-25T14:35:07.004239Z",
"updated_at": "2024-11-25T14:35:07.004239Z",
"lead_time": 4.338
},
{
"text": "Stupid \u201chey I was correct vid\u201d save your time and hit back.",
"id": 406,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 414,
"created_at": "2024-11-26T05:30:58.500684Z",
"updated_at": "2024-11-26T05:30:58.500684Z",
"lead_time": 7.042
},
{
"text": "here after i heard about chat gpt 3 years later",
"id": 486,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 494,
"created_at": "2024-11-26T05:41:58.464939Z",
"updated_at": "2024-11-26T05:41:58.464939Z",
"lead_time": 4.273
},
{
"text": "I never considered life bombing dead worlds . . . but that's a great idea someone should start working on",
"id": 508,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 516,
"created_at": "2024-11-26T06:05:52.863581Z",
"updated_at": "2024-11-26T06:05:52.863581Z",
"lead_time": 9.513
},
{
"text": "Intel it's on 14nm since silicon was invented, and i mean the mineral not the chips.",
"id": 49,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 50,
"created_at": "2024-11-25T14:36:57.722588Z",
"updated_at": "2024-11-25T14:36:57.722588Z",
"lead_time": 10.258
},
{
"text": "Wisdom is the opposite of that in my opinion wisdom to me is being empty so life can paint on your consciousness the senses without the senseless labels and biases",
"id": 320,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 326,
"created_at": "2024-11-25T17:16:04.706939Z",
"updated_at": "2024-11-25T17:16:04.706939Z",
"lead_time": 9.189
},
{
"text": "Subscribed to soph for her honesty!<br>Mike played the game perfectly, Rohin and Sam played reactively",
"id": 342,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 350,
"created_at": "2024-11-25T17:18:33.532499Z",
"updated_at": "2024-11-25T17:18:33.532499Z",
"lead_time": 7.807
},
{
"text": "The Xbox controller has always been superior. Hell all they need to do now is relocate the left stick and all will be well",
"id": 372,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 380,
"created_at": "2024-11-25T17:33:43.794120Z",
"updated_at": "2024-11-25T17:33:43.794120Z",
"lead_time": 9.279
},
{
"text": "I dropped chrome... they removed option to mute tabs because commercials, so fuck them.",
"id": 322,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 328,
"created_at": "2024-11-25T17:16:12.866606Z",
"updated_at": "2024-11-25T17:16:12.866606Z",
"lead_time": 6.31
},
{
"text": "Ah yes, the YouTube algorithm, feeding me tech news about 1 month late XD",
"id": 432,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 440,
"created_at": "2024-11-26T05:34:16.594027Z",
"updated_at": "2024-11-26T05:34:16.594027Z",
"lead_time": 5.86
},
{
"text": "Waheyyyyy Mr. Weebl with the graphics :D,(reply>), Also excellent video as always",
"id": 293,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 299,
"created_at": "2024-11-25T17:12:12.647313Z",
"updated_at": "2024-11-25T17:12:12.647313Z",
"lead_time": 9.458
},
{
"text": "Rocking that new beard and hairstye is TIGHT! Lenovo, bring on that nipple!",
"id": 395,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 403,
"created_at": "2024-11-26T05:29:00.149330Z",
"updated_at": "2024-11-26T05:29:00.149330Z",
"lead_time": 5.999
},
{
"text": "Why don\u2019t we use AI to iterate cpu gate technologies so we can make Moore\u2019s law faster?",
"id": 108,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 111,
"created_at": "2024-11-25T14:50:59.219240Z",
"updated_at": "2024-11-25T14:50:59.219240Z",
"lead_time": 6.118
},
{
"text": "This ep was almost not pg13",
"id": 174,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 178,
"created_at": "2024-11-25T16:51:21.927433Z",
"updated_at": "2024-11-25T16:51:21.927433Z",
"lead_time": 3.083
},
{
"text": "Congrats to Everyone Who is Early and who found this comment\ud83d\udc98",
"id": 104,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 107,
"created_at": "2024-11-25T14:49:59.857413Z",
"updated_at": "2024-11-25T14:49:59.857413Z",
"lead_time": 7.455
},
{
"text": "This is a really nicely shot video, comes up really smooth on my monitor. Anything special about the equipment used?",
"id": 357,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 365,
"created_at": "2024-11-25T17:20:20.594801Z",
"updated_at": "2024-11-25T17:20:20.594801Z",
"lead_time": 4.131
},
{
"text": "Best Rick roll in history",
"id": 438,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 446,
"created_at": "2024-11-26T05:34:46.843348Z",
"updated_at": "2024-11-26T05:34:50.580091Z",
"lead_time": 2.889
},
{
"text": "Love",
"id": 195,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 200,
"created_at": "2024-11-25T16:57:43.505554Z",
"updated_at": "2024-11-25T16:57:43.505554Z",
"lead_time": 1.704
},
{
"text": "earned a sub from me! love it bro",
"id": 31,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 32,
"created_at": "2024-11-25T14:34:18.100179Z",
"updated_at": "2024-11-25T14:34:18.100179Z",
"lead_time": 5.202
},
{
"text": "Lysanne is so cool.",
"id": 338,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 346,
"created_at": "2024-11-25T17:18:02.988716Z",
"updated_at": "2024-11-25T17:18:02.988716Z",
"lead_time": 2.005
},
{
"text": "Alien technology, calling it now",
"id": 175,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 179,
"created_at": "2024-11-25T16:51:24.331732Z",
"updated_at": "2024-11-25T16:51:24.331732Z",
"lead_time": 2.114
},
{
"text": "Gran Turismo 7 is the first always online game that has pissed me off. Really a gran turismo game.",
"id": 371,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 379,
"created_at": "2024-11-25T17:33:34.211626Z",
"updated_at": "2024-11-25T17:33:34.211626Z",
"lead_time": 694.552
},
{
"text": "u have to rotate the screen 90 degrees right!",
"id": 169,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 173,
"created_at": "2024-11-25T16:51:00.848176Z",
"updated_at": "2024-11-25T16:51:00.848176Z",
"lead_time": 3.734
},
{
"text": "I ordered a volta cable from Wednesdays video link. Pretty hyped to get it honestly.",
"id": 120,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 123,
"created_at": "2024-11-25T14:57:25.376550Z",
"updated_at": "2024-11-25T14:57:25.376550Z",
"lead_time": 114.11
},
{
"text": "My sister just had a brain tumor removed recently . She\u2019s fine now, but that drill part kind of freaked me out and made me laugh.",
"id": 251,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 256,
"created_at": "2024-11-25T17:07:10.145210Z",
"updated_at": "2024-11-25T17:07:10.146215Z",
"lead_time": 7.661
},
{
"text": "I learnt that if you are on a budget for a project, buy stuff, keep the receipt, return to store when done..",
"id": 105,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 108,
"created_at": "2024-11-25T14:50:15.776295Z",
"updated_at": "2024-11-25T14:50:15.776295Z",
"lead_time": 12.136
},
{
"text": "Perhaps the bell was very resonant, I seen similar production line electric motors show huge differences in efficiency, when taken apart and struck with a small hammer the inefficient ones ring for a few seconds while the efficient ones ring for ages.",
"id": 460,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 468,
"created_at": "2024-11-26T05:37:22.611283Z",
"updated_at": "2024-11-26T05:37:22.611283Z",
"lead_time": 8.69
},
{
"text": "Dude your videos are really quite interesting. Rare to find one of a kinda on YouTube these days...keep it up!",
"id": 56,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 57,
"created_at": "2024-11-25T14:37:35.393068Z",
"updated_at": "2024-11-25T14:37:35.393068Z",
"lead_time": 4.802
},
{
"text": "Where the dragon go , I want it in background",
"id": 96,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 99,
"created_at": "2024-11-25T14:48:56.273924Z",
"updated_at": "2024-11-25T14:48:56.273924Z",
"lead_time": 4.679
},
{
"text": "Time for vague clickbaity names and thumbnails, Linus.",
"id": 212,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 217,
"created_at": "2024-11-25T16:59:40.132140Z",
"updated_at": "2024-11-25T16:59:40.132140Z",
"lead_time": 18.015
},
{
"text": "I still want Lucky back \ud83d\ude41",
"id": 324,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 330,
"created_at": "2024-11-25T17:16:26.125748Z",
"updated_at": "2024-11-25T17:16:26.125748Z",
"lead_time": 3.17
},
{
"text": "I\u2019d push back on the positive aspects of the NIH. Consider interviewing Robert Kennedy Jr. on your show.,(reply>), \ud83d\udc46\ud83d\udce9",
"id": 247,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 252,
"created_at": "2024-11-25T17:06:08.992469Z",
"updated_at": "2024-11-25T17:06:08.992469Z",
"lead_time": 10.711
},
{
"text": "They SUCC",
"id": 190,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 195,
"created_at": "2024-11-25T16:57:07.379555Z",
"updated_at": "2024-11-25T16:57:07.380556Z",
"lead_time": 2.518
},
{
"text": "Tom just chilling and thinking; \u201cFascinating\u201d",
"id": 113,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 116,
"created_at": "2024-11-25T14:54:02.680413Z",
"updated_at": "2024-11-25T14:54:02.680413Z",
"lead_time": 19.069
},
{
"text": "<b>Abcd\u2019s have entered the chat</b>",
"id": 522,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 530,
"created_at": "2024-11-26T06:07:40.640477Z",
"updated_at": "2024-11-26T06:07:40.640477Z",
"lead_time": 3.961
},
{
"text": "in super monkey ball 2: level advanced extra 10, that teapot is used.",
"id": 189,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 194,
"created_at": "2024-11-25T16:57:04.597830Z",
"updated_at": "2024-11-25T16:57:04.597830Z",
"lead_time": 5.41
},
{
"text": "Yes",
"id": 154,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 158,
"created_at": "2024-11-25T16:49:02.982693Z",
"updated_at": "2024-11-25T16:49:02.982693Z",
"lead_time": 3.505
},
{
"text": "Your beard is weird",
"id": 230,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 235,
"created_at": "2024-11-25T17:01:42.848312Z",
"updated_at": "2024-11-25T17:02:09.868227Z",
"lead_time": 13.239
},
{
"text": "isnt it wonderful how the entire earth is experiencing more frequent and hotter heatwaves over the last 100-200 years and it has been peer reviewed and proven that humans are gradually increasing the temperature of the earth but the big companies of the world still won't accept it",
"id": 428,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 436,
"created_at": "2024-11-26T05:33:36.581388Z",
"updated_at": "2024-11-26T05:33:36.581388Z",
"lead_time": 18.845
},
{
"text": "When I was doing my C1 test, one of the show me tell me questions was the reversing beeper. My vehicle had had the beeper disconnected/removed. \"Well, this is how I would engage it if it had one.\"",
"id": 335,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 343,
"created_at": "2024-11-25T17:17:51.915733Z",
"updated_at": "2024-11-25T17:17:51.915733Z",
"lead_time": 4.737
},
{
"text": "Can't decide if that looks like a dong or just a creepy severed off finger",
"id": 436,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 444,
"created_at": "2024-11-26T05:34:42.927272Z",
"updated_at": "2024-11-26T05:34:42.927272Z",
"lead_time": 8.483
},
{
"text": "The Java VM is a propaganda machine that subjugates the truth.",
"id": 299,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 305,
"created_at": "2024-11-25T17:13:04.118037Z",
"updated_at": "2024-11-25T17:13:04.118037Z",
"lead_time": 10.202
},
{
"text": "I really miss this series",
"id": 347,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 355,
"created_at": "2024-11-25T17:19:31.380241Z",
"updated_at": "2024-11-25T17:19:31.380241Z",
"lead_time": 9.871
},
{
"text": "Boomerang 2.0",
"id": 467,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 475,
"created_at": "2024-11-26T05:39:44.036810Z",
"updated_at": "2024-11-26T05:39:44.036810Z",
"lead_time": 8.126
},
{
"text": "Turns out I can still hear that high-pitched noise, even at 30. Why you gotta do that to us, Tom?",
"id": 2,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 3,
"created_at": "2024-11-25T09:23:41.976832Z",
"updated_at": "2024-11-25T09:23:41.976832Z",
"lead_time": 16.488
},
{
"text": "What.. is the point this video is trying to get across to me? I don't understand what the video is specifically about.",
"id": 82,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 85,
"created_at": "2024-11-25T14:46:58.813297Z",
"updated_at": "2024-11-25T14:46:58.813297Z",
"lead_time": 15.864
},
{
"text": "False advertising.<br>Thumbnail showed the dude in the water \ud83d\udc4e",
"id": 292,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 298,
"created_at": "2024-11-25T17:11:59.997083Z",
"updated_at": "2024-11-25T17:11:59.997083Z",
"lead_time": 2.301
},
{
"text": "I wonder if the Juicero is there",
"id": 461,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 469,
"created_at": "2024-11-26T05:37:25.294003Z",
"updated_at": "2024-11-26T05:37:25.294003Z",
"lead_time": 2.096
},
{
"text": "Fuck Starwars - Bad movies and games....",
"id": 143,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 147,
"created_at": "2024-11-25T16:48:01.368702Z",
"updated_at": "2024-11-25T16:48:01.368702Z",
"lead_time": 5.34
},
{
"text": "Ever seen Japanese TV? Some of those things... All of those things were not left in the past...",
"id": 473,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 481,
"created_at": "2024-11-26T05:40:38.972960Z",
"updated_at": "2024-11-26T05:40:38.972960Z",
"lead_time": 8.353
},
{
"text": "Ok I listened about 20 seconds and it's already a stupid take. No \"electric cars didn't vanosh because of the pressure from oil companies\". They vanished because the storage options were terrible. Batteries are used everywhere. They just haven't been good.",
"id": 112,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 115,
"created_at": "2024-11-25T14:51:53.010423Z",
"updated_at": "2024-11-25T14:51:53.010423Z",
"lead_time": 18.585
},
{
"text": "Interested to know how is it better than the original ?? Trust the Aussie's to turn something upside down ;-)",
"id": 470,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 478,
"created_at": "2024-11-26T05:40:20.300121Z",
"updated_at": "2024-11-26T05:40:20.300121Z",
"lead_time": 16.168
},
{
"text": "ok. im happy to have heard it very clearly at 30 years of age.",
"id": 22,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 23,
"created_at": "2024-11-25T14:32:44.004601Z",
"updated_at": "2024-11-25T14:32:44.004601Z",
"lead_time": 4.169
},
{
"text": "Love u riley",
"id": 315,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 321,
"created_at": "2024-11-25T17:15:23.674049Z",
"updated_at": "2024-11-25T17:15:23.674049Z",
"lead_time": 1.725
},
{
"text": "Betamax was SOOOOOOOO much better than VHS. My dad used to write tv and movie reviews so we got loads of full seasons of shows. That was fun but we needed a Beta player as the tv studios would only use Beta. I'd go to my friends houses to watch a video and was always disappointed with the playback quality. Movie marathon nights were always at my place due to this.",
"id": 65,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 66,
"created_at": "2024-11-25T14:38:40.326598Z",
"updated_at": "2024-11-25T14:38:40.326598Z",
"lead_time": 17.426
},
{
"text": "Tom, you are a legend for doing that",
"id": 139,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 143,
"created_at": "2024-11-25T16:47:32.252643Z",
"updated_at": "2024-11-25T16:47:32.252643Z",
"lead_time": 2.267
},
{
"text": "That is damn cool.. where did you film that by the way? I want my room like that :P",
"id": 234,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 239,
"created_at": "2024-11-25T17:02:39.099259Z",
"updated_at": "2024-11-25T17:02:45.108492Z",
"lead_time": 7.588
},
{
"text": "One of the most stupid community ever",
"id": 443,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 451,
"created_at": "2024-11-26T05:35:06.803755Z",
"updated_at": "2024-11-26T05:35:06.803755Z",
"lead_time": 2.245
},
{
"text": "The people that actually wrote the filter, Weebl doing the graphics, and a Continuity AnnounceMatt? This video has it all!",
"id": 275,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 281,
"created_at": "2024-11-25T17:10:35.056456Z",
"updated_at": "2024-11-25T17:10:35.056456Z",
"lead_time": 9.458
},
{
"text": "i took the claAaAaAaAaAaAams to poland",
"id": 317,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 323,
"created_at": "2024-11-25T17:15:34.300584Z",
"updated_at": "2024-11-25T17:15:34.300584Z",
"lead_time": 6.825
},
{
"text": "lol",
"id": 228,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 233,
"created_at": "2024-11-25T17:01:33.735057Z",
"updated_at": "2024-11-25T17:01:33.735057Z",
"lead_time": 1.188
},
{
"text": "Lex, do you have any T-shirts for sale (or other merch) ala the XKCD style? <br><br>Also, Randall Monroe would be a cool guest to interview on your podcast.",
"id": 250,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 255,
"created_at": "2024-11-25T17:07:02.204525Z",
"updated_at": "2024-11-25T17:07:02.204525Z",
"lead_time": 3.015
},
{
"text": "Lex, your podcast has quickly become one of my favorites to tune into. I love multi-tasking while listening in and broadening my intellectual horizons. Cheers and keep up the great work, much love from Colorado,(reply>), Thank you! Perfectly said: Broadening intellectual horizons!!!,(reply>), Save the rogue planets!,(reply>), Same here. At first I saw an episode, and I didn't like it. Can't remember which one, but then I saw a good episode and now Lex is my favorite. Funny how that happens, like music sometimes.,(reply>), Thank you Lex for making these podcasts on different subjects and with exceptional people. You truly make a difference in my 63 years of life.,(reply>), Same here :)",
"id": 133,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 137,
"created_at": "2024-11-25T16:47:05.484278Z",
"updated_at": "2024-11-25T16:47:05.484278Z",
"lead_time": 9.26
},
{
"text": "Nice spot for a house on stilts.",
"id": 46,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 47,
"created_at": "2024-11-25T14:36:08.616086Z",
"updated_at": "2024-11-25T14:36:08.616086Z",
"lead_time": 1.506
},
{
"text": "For the second round the people who picked 4 and 5 I must wonder about. <br>Literally impossible for those 2 numbers to win,(reply>), Nope. There was a good chance those lower numbers got picked by more than 1 person and you maximise your earnings.",
"id": 59,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 60,
"created_at": "2024-11-25T14:37:52.781722Z",
"updated_at": "2024-11-25T14:37:52.781722Z",
"lead_time": 12.631
},
{
"text": "So did you return the leafblower?",
"id": 330,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 338,
"created_at": "2024-11-25T17:17:30.160565Z",
"updated_at": "2024-11-25T17:17:30.160565Z",
"lead_time": 2.969
},
{
"text": "Ah yes, another Skylake 14nm refresh... Can't wait to replace my heater with another vulnerable laptop processor from Intel, but it'll suck to have to recharge it all the time since it draws so much power. Remember when AMD was the hot and loud brand?",
"id": 69,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 70,
"created_at": "2024-11-25T14:39:30.749876Z",
"updated_at": "2024-11-25T14:39:30.749876Z",
"lead_time": 14.825
},
{
"text": "I remember playing with some animation software. Or maybe a level editor. I don't remember exactly. But I remember the teapot.",
"id": 198,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 203,
"created_at": "2024-11-25T16:58:09.196525Z",
"updated_at": "2024-11-25T16:58:09.196525Z",
"lead_time": 6.577
},
{
"text": "\"Be neutral\" x)",
"id": 429,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 437,
"created_at": "2024-11-26T05:33:40.865361Z",
"updated_at": "2024-11-26T05:33:40.865361Z",
"lead_time": 3.757
},
{
"text": "Lock-downs are were the wealthy get to role play as heroes on the backs of the poor. Just stay home and uber eats your dinner! Get take out!! Just order it on amazon!! As if wage slaves aren't performing all those functions.",
"id": 132,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 136,
"created_at": "2024-11-25T16:46:47.606242Z",
"updated_at": "2024-11-25T16:46:47.606242Z",
"lead_time": 15.052
},
{
"text": "At least you could have warned us.",
"id": 3,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 4,
"created_at": "2024-11-25T09:24:17.326564Z",
"updated_at": "2024-11-25T09:24:17.326564Z",
"lead_time": 34.207
},
{
"text": "A combination of Skype and Discord XD",
"id": 182,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 187,
"created_at": "2024-11-25T16:55:48.860942Z",
"updated_at": "2024-11-25T16:55:48.860942Z",
"lead_time": 3.707
},
{
"text": "Bixby still sucks.",
"id": 284,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 290,
"created_at": "2024-11-25T17:11:15.472358Z",
"updated_at": "2024-11-25T17:11:15.472358Z",
"lead_time": 2.43
},
{
"text": "When is Dr Cronin going to submit his proposal to create a biological cell to the Evo2.0 OoL $10M prize that was announced at the Royal Society? Will he split the prize with Dr Szostak? What about Dr Walker?",
"id": 126,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 130,
"created_at": "2024-11-25T15:49:58.336256Z",
"updated_at": "2024-11-25T15:49:58.336256Z",
"lead_time": 5.369
},
{
"text": "My Sony Xperia One charges so quick it finally isn't a nuisance anymore...they've done it!",
"id": 308,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 314,
"created_at": "2024-11-25T17:14:26.411534Z",
"updated_at": "2024-11-25T17:14:26.411534Z",
"lead_time": 11.945
},
{
"text": "Imagine the engines fail and he crash lands.",
"id": 383,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 391,
"created_at": "2024-11-25T17:34:52.968540Z",
"updated_at": "2024-11-25T17:34:52.968540Z",
"lead_time": 6.357
},
{
"text": "Already disable her code",
"id": 497,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 505,
"created_at": "2024-11-26T05:59:37.986839Z",
"updated_at": "2024-11-26T05:59:37.986839Z",
"lead_time": 3.371
},
{
"text": "I prefer Sally.",
"id": 178,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 182,
"created_at": "2024-11-25T16:52:01.014560Z",
"updated_at": "2024-11-25T16:52:01.014560Z",
"lead_time": 1.556
},
{
"text": "Lex, I clearly see how much you struggle to digest the complexity of the universe.",
"id": 217,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 222,
"created_at": "2024-11-25T17:00:15.207125Z",
"updated_at": "2024-11-25T17:00:15.207125Z",
"lead_time": 5.614
},
{
"text": "How old are you Tom?",
"id": 409,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 417,
"created_at": "2024-11-26T05:31:06.441935Z",
"updated_at": "2024-11-26T05:31:06.441935Z",
"lead_time": 1.201
},
{
"text": "he reminds me of that guy from dmv from blacklist!",
"id": 439,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 447,
"created_at": "2024-11-26T05:34:59.025861Z",
"updated_at": "2024-11-26T05:34:59.025861Z",
"lead_time": 7.17
},
{
"text": "Aw, poor Tom.",
"id": 4,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 5,
"created_at": "2024-11-25T09:24:21.338522Z",
"updated_at": "2024-11-25T09:24:21.338522Z",
"lead_time": 2.9
},
{
"text": "This got recommended to me multiple times for a year now and I finally decided to watch it, I actually regret not watching it earlier",
"id": 191,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 196,
"created_at": "2024-11-25T16:57:18.409113Z",
"updated_at": "2024-11-25T16:57:18.409113Z",
"lead_time": 10.767
},
{
"text": "I find it absolutely fascinating that you've figured out a way to talk about the zeitgeist and like 98% of it hasn't been censored or fucked with. Kudos and dobre noche.,(reply>), mainly cause he's not spreading complete nonsense",
"id": 507,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 515,
"created_at": "2024-11-26T06:05:42.842018Z",
"updated_at": "2024-11-26T06:05:42.842018Z",
"lead_time": 3.884
},
{
"text": "That you keep finding new things to make videos about is amazing! Thank you for yet again succeeding to show me interesting stuff I didn't know.",
"id": 203,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 208,
"created_at": "2024-11-25T16:58:38.863500Z",
"updated_at": "2024-11-25T16:58:38.863500Z",
"lead_time": 3.339
},
{
"text": "Imagine having an iPhone.... Makes me laugh \ud83d\ude02",
"id": 153,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 157,
"created_at": "2024-11-25T16:48:59.216804Z",
"updated_at": "2024-11-25T16:48:59.216804Z",
"lead_time": 3.201
},
{
"text": "We got'em",
"id": 321,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 327,
"created_at": "2024-11-25T17:16:06.270413Z",
"updated_at": "2024-11-25T17:16:06.270413Z",
"lead_time": 1.278
},
{
"text": "AWh why at the end of the video AHHHHHHH thAt HuRt<br>Seriously y",
"id": 223,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 228,
"created_at": "2024-11-25T17:00:50.285108Z",
"updated_at": "2024-11-25T17:00:50.285108Z",
"lead_time": 10.448
},
{
"text": "that hand rail ruling is beyond bizzare..",
"id": 503,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 511,
"created_at": "2024-11-26T06:05:15.513694Z",
"updated_at": "2024-11-26T06:05:15.513694Z",
"lead_time": 24.862
},
{
"text": "Best T-Shirt modification ever",
"id": 29,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 30,
"created_at": "2024-11-25T14:34:09.092442Z",
"updated_at": "2024-11-25T14:34:09.092442Z",
"lead_time": 4.085
},
{
"text": "The aerial view of the rocks is so good, and super helpful in seeing the mesh of the two types of rocks. Thank you so much for including that!",
"id": 211,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 216,
"created_at": "2024-11-25T16:59:21.863367Z",
"updated_at": "2024-11-25T16:59:21.863367Z",
"lead_time": 9.292
},
{
"text": "\"We are a way for the universe to know itself.\" <i>~ Carl Sagan</i>",
"id": 379,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 387,
"created_at": "2024-11-25T17:34:25.931904Z",
"updated_at": "2024-11-25T17:34:25.931904Z",
"lead_time": 6.373
},
{
"text": "Btw good job on adding the subtle backgroung music. The format works better with some sort of bg music here and there during the show IMO",
"id": 302,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 308,
"created_at": "2024-11-25T17:13:16.970654Z",
"updated_at": "2024-11-25T17:13:16.970654Z",
"lead_time": 7.018
},
{
"text": "When's Riley's baby gonna host",
"id": 244,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 249,
"created_at": "2024-11-25T17:03:52.625804Z",
"updated_at": "2024-11-25T17:03:52.625804Z",
"lead_time": 4.1
},
{
"text": "I just found your page today. Love it! Very informative and entertaining. Totally subscribing! Keep up the great work and effort :)",
"id": 378,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 386,
"created_at": "2024-11-25T17:34:11.117302Z",
"updated_at": "2024-11-25T17:34:16.245974Z",
"lead_time": 6.622
},
{
"text": "Oh noooo.... Anyway..",
"id": 336,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 344,
"created_at": "2024-11-25T17:17:54.589971Z",
"updated_at": "2024-11-25T17:17:54.589971Z",
"lead_time": 2.396
},
{
"text": "I like it! It gives a completely different perspective (see what I did there?) on the old Pythagorean screw, that I haven't thought of before!",
"id": 356,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 364,
"created_at": "2024-11-25T17:20:16.181710Z",
"updated_at": "2024-11-25T17:20:16.181710Z",
"lead_time": 2.683
},
{
"text": "This is awesome. I have been dealing with list of list of list of lists. This will help my code be cleaner!",
"id": 415,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 423,
"created_at": "2024-11-26T05:32:11.519186Z",
"updated_at": "2024-11-26T05:32:11.519186Z",
"lead_time": 7.204
},
{
"text": "2 robots go for an autonomous drive using a smartphone hacked into a Hyundai car, what a great time to be alive!,(reply>), @Kibryn Crow q,(reply>), \ud83d\ude02",
"id": 110,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 113,
"created_at": "2024-11-25T14:51:26.453136Z",
"updated_at": "2024-11-25T14:51:26.453136Z",
"lead_time": 12.975
},
{
"text": "Lazy fuckers!",
"id": 256,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 261,
"created_at": "2024-11-25T17:07:55.307523Z",
"updated_at": "2024-11-25T17:07:55.307523Z",
"lead_time": 3.046
},
{
"text": "I like this format so much...you guys make this fun and informative. Love it.",
"id": 237,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 242,
"created_at": "2024-11-25T17:03:11.148437Z",
"updated_at": "2024-11-25T17:03:11.148437Z",
"lead_time": 4.559
},
{
"text": "Ive been there! :3",
"id": 268,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 274,
"created_at": "2024-11-25T17:09:25.846368Z",
"updated_at": "2024-11-25T17:09:25.846368Z",
"lead_time": 4.551
},
{
"text": "Waiting for that parker square diss track",
"id": 240,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 245,
"created_at": "2024-11-25T17:03:27.504390Z",
"updated_at": "2024-11-25T17:03:27.504390Z",
"lead_time": 5.826
},
{
"text": "lex, you are a very sweet, brave man. Thank you for using your platform in this way. Your ancestors would be proud.",
"id": 397,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 405,
"created_at": "2024-11-26T05:29:33.213061Z",
"updated_at": "2024-11-26T05:29:33.213061Z",
"lead_time": 21.92
},
{
"text": "stop with the terrible thumbnails",
"id": 381,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 389,
"created_at": "2024-11-25T17:34:44.420755Z",
"updated_at": "2024-11-25T17:34:44.420755Z",
"lead_time": 2.96
},
{
"text": "I love that Tom is in Georgia! I would have never expected to see all these towns on Tom's video.",
"id": 70,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 71,
"created_at": "2024-11-25T14:39:41.263264Z",
"updated_at": "2024-11-25T14:39:41.263264Z",
"lead_time": 10.255
},
{
"text": "I enjoyed that thank you Sally",
"id": 229,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 234,
"created_at": "2024-11-25T17:01:36.277498Z",
"updated_at": "2024-11-25T17:01:36.277498Z",
"lead_time": 2.272
},
{
"text": "There are no others we are unique in the world",
"id": 63,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 64,
"created_at": "2024-11-25T14:38:19.105862Z",
"updated_at": "2024-11-25T14:38:19.105862Z",
"lead_time": 6.025
},
{
"text": "The same people that moan about pred, are the same people that use striker with AA shotguns, like that's not aids! Ive used pred and striker and Stryker is way more o.p. than pred.",
"id": 75,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 76,
"created_at": "2024-11-25T14:40:21.944239Z",
"updated_at": "2024-11-25T14:40:21.944239Z",
"lead_time": 19.829
},
{
"text": "Everytime I listen to Stephen talk over the years, he is always full of new surprises while always keeping the same values",
"id": 480,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 488,
"created_at": "2024-11-26T05:41:26.851755Z",
"updated_at": "2024-11-26T05:41:26.851755Z",
"lead_time": 5.186
},
{
"text": "The only thing exciting so far are my intense allergies finally kicking in for the Fall season :D",
"id": 481,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 489,
"created_at": "2024-11-26T05:41:33.279889Z",
"updated_at": "2024-11-26T05:41:33.279889Z",
"lead_time": 5.869
},
{
"text": "The humidity must be unbearable.",
"id": 204,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 209,
"created_at": "2024-11-25T16:58:48.977118Z",
"updated_at": "2024-11-25T16:58:48.977118Z",
"lead_time": 6.685
},
{
"text": "Tom, you are by far my most favourite person in all of YouTube!",
"id": 457,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 465,
"created_at": "2024-11-26T05:36:50.420405Z",
"updated_at": "2024-11-26T05:36:50.420405Z",
"lead_time": 5.458
},
{
"text": "Yes i would. Before even listening to this. Yes i would. Well mostly depends on what kind of powerplant. If its a nuclear powerplant then yes why not the water is actually cleaner than it was when it went into the powerplant",
"id": 498,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 506,
"created_at": "2024-11-26T05:59:45.120323Z",
"updated_at": "2024-11-26T05:59:45.120323Z",
"lead_time": 6.604
},
{
"text": "You want to create robots capable of suffering? I'm not sure I can put into words how much I despise that idea.",
"id": 492,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 500,
"created_at": "2024-11-26T05:56:19.841276Z",
"updated_at": "2024-11-26T05:56:19.841276Z",
"lead_time": 10.023
},
{
"text": "Look who\u2019s a papa",
"id": 487,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 495,
"created_at": "2024-11-26T05:42:01.765677Z",
"updated_at": "2024-11-26T05:42:01.765677Z",
"lead_time": 2.746
},
{
"text": "when you use that magic weapon from the travelling merchant:",
"id": 404,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 412,
"created_at": "2024-11-26T05:30:45.730978Z",
"updated_at": "2024-11-26T05:30:45.730978Z",
"lead_time": 3.777
},
{
"text": "Finally<br><br><br><br><br>Someone who thought the same",
"id": 81,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 84,
"created_at": "2024-11-25T14:46:42.699893Z",
"updated_at": "2024-11-25T14:46:42.699893Z",
"lead_time": 12.112000000000002
},
{
"text": "that cimon dude looks like a early adoption of kvn... i need a kvn in my life!",
"id": 483,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 491,
"created_at": "2024-11-26T05:41:47.703767Z",
"updated_at": "2024-11-26T05:41:47.703767Z",
"lead_time": 5.142
},
{
"text": "someone download this before it is deleted",
"id": 161,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 165,
"created_at": "2024-11-25T16:49:37.138337Z",
"updated_at": "2024-11-25T16:49:37.138337Z",
"lead_time": 1.875
},
{
"text": "You can drink the waste water from a powerplant here in Alaska. The water is poured into the river so it's extremely clean. It's simply boiled to spin the turbine then condenses and is dumped in the river.",
"id": 505,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 513,
"created_at": "2024-11-26T06:05:33.959784Z",
"updated_at": "2024-11-26T06:05:33.959784Z",
"lead_time": 7.808
},
{
"text": "I don\u2019t agree that Origin of Life experiments are guaranteed to produce only feeble (thus harmless) results, simply because of the example of prion, which are proteins that are relatively simple, yet can totally \u201cinfect\u201d and co-opt (destroy) mammalian brains.",
"id": 306,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 312,
"created_at": "2024-11-25T17:13:52.022033Z",
"updated_at": "2024-11-25T17:13:52.022033Z",
"lead_time": 15.299
},
{
"text": "Lots of languages have essentially this feature... Pretty dumb thing for people to fight against. IMO making it so you have to wrap your variable assignment in parenthesis is a bit strange since I would think that that would mean to check if the assignment is truthy, but that's probably just based on my preference for how I write ternary operators...",
"id": 130,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 134,
"created_at": "2024-11-25T15:50:21.931534Z",
"updated_at": "2024-11-25T15:50:21.931534Z",
"lead_time": 13.069
},
{
"text": "My balls hurt, watching this entire video.",
"id": 290,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 296,
"created_at": "2024-11-25T17:11:53.305675Z",
"updated_at": "2024-11-25T17:11:53.305675Z",
"lead_time": 3.663
},
{
"text": "Imagine if there was a stable version of windows with simple layout and without bloatware and data collection that resets every week and annoying bugs showing up every other day and where you decide what features you want instead of windows just keeps enabling them.... where things just works as intended.<br><br><br><br><br><br><br><br><br>Windows 7",
"id": 16,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 17,
"created_at": "2024-11-25T14:31:52.974582Z",
"updated_at": "2024-11-25T14:31:52.974582Z",
"lead_time": 20.92
},
{
"text": "Africa and other third world places don\u2019t have great hygiene, healthcare or living conditions. You would think Covid19 like other horrible illnesses would spread rapidly once it hit African Asian , South American borders? I guess it is primarily an rich, seniors disease. I can\u2019t believe that",
"id": 524,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 532,
"created_at": "2024-11-26T06:09:12.247327Z",
"updated_at": "2024-11-26T06:09:12.247327Z",
"lead_time": 87.904
},
{
"text": "Your Big Bang,I get it.\ud83d\ude4f\ud83c\udffb<br> Lex,your show is/will continue to be,as influential as Rogan,young sir.\ud83d\udc4c\ud83c\udffb\ud83d\ude4f\ud83c\udffb",
"id": 462,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 470,
"created_at": "2024-11-26T05:37:38.049763Z",
"updated_at": "2024-11-26T05:37:38.049763Z",
"lead_time": 12.249
},
{
"text": "Mr. Who's the Boss did a great video evaluation of how \"green\" Apple was being by not including a charger. He showed that they aren't being green at all, they are just pushing the waste to other vendors and he raked Apple over the coals for it.",
"id": 271,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 277,
"created_at": "2024-11-25T17:10:03.445756Z",
"updated_at": "2024-11-25T17:10:03.445756Z",
"lead_time": 10.602
},
{
"text": "Thank you Lex you're an great host and off course we love representor of Muslim community Imam Omar.\u2764",
"id": 449,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 457,
"created_at": "2024-11-26T05:35:41.742023Z",
"updated_at": "2024-11-26T05:35:41.742023Z",
"lead_time": 8.05
},
{
"text": "\"wooden keycaps for old guys like linus\"",
"id": 365,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 373,
"created_at": "2024-11-25T17:21:19.516820Z",
"updated_at": "2024-11-25T17:21:19.516820Z",
"lead_time": 2.474
},
{
"text": "Awesome! :D",
"id": 259,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 264,
"created_at": "2024-11-25T17:08:13.540926Z",
"updated_at": "2024-11-25T17:08:13.540926Z",
"lead_time": 1.373
},
{
"text": "On the AI Audiobook narration, Google Assistant has had a really good web page \"Read Aloud\" function for years, It's kind of a curse, cuz I can't stop listening to stuff with it, I always have some book or novel I'm listening to",
"id": 451,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 459,
"created_at": "2024-11-26T05:35:57.742307Z",
"updated_at": "2024-11-26T05:35:57.742307Z",
"lead_time": 11.414
},
{
"text": "\"I have done nothing but teleport bread for 3 days\"",
"id": 514,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 522,
"created_at": "2024-11-26T06:06:48.006636Z",
"updated_at": "2024-11-26T06:06:53.069463Z",
"lead_time": 13.664000000000001
},
{
"text": "Ok, where do I sign?",
"id": 224,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 229,
"created_at": "2024-11-25T17:00:53.673640Z",
"updated_at": "2024-11-25T17:00:53.673640Z",
"lead_time": 3.118
},
{
"text": "Finnally you dont fucking shout in your tech news, but now its weird...",
"id": 248,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 253,
"created_at": "2024-11-25T17:06:54.063800Z",
"updated_at": "2024-11-25T17:06:54.063800Z",
"lead_time": 44.792
},
{
"text": "They have ginormous catfish there.\ud83d\ude02",
"id": 354,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 362,
"created_at": "2024-11-25T17:20:11.831112Z",
"updated_at": "2024-11-25T17:20:11.831112Z",
"lead_time": 7.205
},
{
"text": "Ambi the only one who noticed all the stains on his shirt! Lol",
"id": 475,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 483,
"created_at": "2024-11-26T05:40:52.778387Z",
"updated_at": "2024-11-26T05:40:52.778387Z",
"lead_time": 11.158
},
{
"text": "Hate apple.",
"id": 86,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 89,
"created_at": "2024-11-25T14:47:32.692561Z",
"updated_at": "2024-11-25T14:47:32.692561Z",
"lead_time": 7.216
},
{
"text": "Is it just me or Linus is slowly turning into David Tennant ?",
"id": 149,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 153,
"created_at": "2024-11-25T16:48:25.173838Z",
"updated_at": "2024-11-25T16:48:25.173838Z",
"lead_time": 6.075
},
{
"text": "I've been there, its actually really cool",
"id": 125,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 129,
"created_at": "2024-11-25T15:00:18.966889Z",
"updated_at": "2024-11-25T15:00:18.966889Z",
"lead_time": 2.588
},
{
"text": "I love this man's brain n heart! Blessings to him n his vision",
"id": 57,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 58,
"created_at": "2024-11-25T14:37:37.181808Z",
"updated_at": "2024-11-25T14:37:37.181808Z",
"lead_time": 1.533
},
{
"text": "As a Polish person, I'm not sure if I heard about it before - but it didn't actually strike me as so exceptional. As you mentioned, we use animals for all sorts of similar things.",
"id": 269,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 275,
"created_at": "2024-11-25T17:09:43.973987Z",
"updated_at": "2024-11-25T17:09:43.973987Z",
"lead_time": 17.855
},
{
"text": "Waaaaaay beyond interesting!",
"id": 155,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 159,
"created_at": "2024-11-25T16:49:05.681389Z",
"updated_at": "2024-11-25T16:49:05.681389Z",
"lead_time": 2.442
},
{
"text": "I've just noticed that i press like button to Tom's video even before starting to watch the video.",
"id": 89,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 92,
"created_at": "2024-11-25T14:48:22.880047Z",
"updated_at": "2024-11-25T14:48:22.880047Z",
"lead_time": 4.862
},
{
"text": "When I went to the Blue Lagoon, it was very calming - even though a very cold and snowy day. Careful - the restaurant attached was very expensive. A fantastic trip if you visit is to get a tour of the nearby geothermal plant. It is absolutely mind-boggling.",
"id": 416,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 424,
"created_at": "2024-11-26T05:32:21.440237Z",
"updated_at": "2024-11-26T05:32:21.440237Z",
"lead_time": 9.416
},
{
"text": "Bring back James",
"id": 91,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 94,
"created_at": "2024-11-25T14:48:29.658608Z",
"updated_at": "2024-11-25T14:48:29.658608Z",
"lead_time": 3.182
},
{
"text": "So many people won't understand or care about this issue until they get forced off of their favorite online-only game and onto a sequel that has half the content, two-thirds the features, triple the bugs, and most of the complexity streamlined out. So many games will be permanently lost over the next decade. So many kids and teens growing up right now will never be able to return to many of their top 10 games.<br><br>Eventually there will be a generation of kids that will have no access to nostalgic games later in life.",
"id": 185,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 190,
"created_at": "2024-11-25T16:56:29.947289Z",
"updated_at": "2024-11-25T16:56:29.947289Z",
"lead_time": 31.551
},
{
"text": "Amazing bouldering there too! Rocks are great!",
"id": 261,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 266,
"created_at": "2024-11-25T17:08:20.634622Z",
"updated_at": "2024-11-25T17:08:20.634622Z",
"lead_time": 1.384
},
{
"text": "sounds like a dem trying to sell something",
"id": 180,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 184,
"created_at": "2024-11-25T16:54:49.026959Z",
"updated_at": "2024-11-25T16:54:49.026959Z",
"lead_time": 4.507
},
{
"text": "How can you not hate thsie guys annoying voice wtf????",
"id": 364,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 372,
"created_at": "2024-11-25T17:21:09.462722Z",
"updated_at": "2024-11-25T17:21:09.462722Z",
"lead_time": 12.724
},
{
"text": "Why is Riley speaking with a strange voice? :D",
"id": 376,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 384,
"created_at": "2024-11-25T17:34:03.323042Z",
"updated_at": "2024-11-25T17:34:03.323042Z",
"lead_time": 3.703
},
{
"text": "Hes either 23 or 50",
"id": 298,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 304,
"created_at": "2024-11-25T17:12:53.633815Z",
"updated_at": "2024-11-25T17:12:53.633815Z",
"lead_time": 1.843
},
{
"text": "Interesting that climate change is an obvious answer of machine learning. I don't think it will be a tech solution to fix climate change but a political one",
"id": 511,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 519,
"created_at": "2024-11-26T06:06:06.576961Z",
"updated_at": "2024-11-26T06:06:06.576961Z",
"lead_time": 4.371
},
{
"text": "Software developed by Ford?<br>We're all dead.",
"id": 452,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 460,
"created_at": "2024-11-26T05:36:13.189181Z",
"updated_at": "2024-11-26T05:36:13.189181Z",
"lead_time": 6.121
},
{
"text": "Amazing setting for a video. Love it!",
"id": 499,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 507,
"created_at": "2024-11-26T06:00:08.555387Z",
"updated_at": "2024-11-26T06:00:08.555387Z",
"lead_time": 22.916
},
{
"text": "Firefox likely lost a bunch of their market share when Mozilla went off the deep end and decided to jump in on board with censorship and tracking. I know a lot of people dropped Firefox like a hot potato when that happened.",
"id": 400,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 408,
"created_at": "2024-11-26T05:29:53.791913Z",
"updated_at": "2024-11-26T05:29:53.791913Z",
"lead_time": 10.095
},
{
"text": "It's a Wonkavator. An elevator can only go up and down, but the Wonkavator can go sideways and slantways and longways and backways and squareways and front ways and any other ways that you can think of",
"id": 466,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 474,
"created_at": "2024-11-26T05:39:35.367343Z",
"updated_at": "2024-11-26T05:39:35.367343Z",
"lead_time": 9.262
},
{
"text": "4 a new Xbox controller,<br>Looks pretty nice \ud83d\udc4c",
"id": 84,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 87,
"created_at": "2024-11-25T14:47:21.077542Z",
"updated_at": "2024-11-25T14:47:21.078543Z",
"lead_time": 10.941
},
{
"text": "Me in the developed world - \"I cant afford another child\", women in Yemen weighting 70 pounds and having no food - \"Nah, I'm fine, will have a child on the way\"",
"id": 477,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 485,
"created_at": "2024-11-26T05:41:11.613494Z",
"updated_at": "2024-11-26T05:41:11.613494Z",
"lead_time": 4.305
},
{
"text": "I don't care for that game, not my cup of tea. Equally I wouldn't want it banned, that's just stupid. If it's good it'll defend itself, if it's bad it'll flop and fall to obscurity. The whole shitstorm around it is just for muppets to fuel their egos (I'm sorry for offending The Muppets),(reply>), I don't think you offended them, or the fanbase.",
"id": 179,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 183,
"created_at": "2024-11-25T16:54:44.254290Z",
"updated_at": "2024-11-25T16:54:44.254290Z",
"lead_time": 162.977
},
{
"text": "I don't know whether to believe any of this...I hate April fools day",
"id": 377,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 385,
"created_at": "2024-11-25T17:34:07.800789Z",
"updated_at": "2024-11-25T17:34:07.800789Z",
"lead_time": 4.181
},
{
"text": "It's time for the dick pics! I mean.... quick bits",
"id": 116,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 119,
"created_at": "2024-11-25T14:55:09.996584Z",
"updated_at": "2024-11-25T14:55:09.996584Z",
"lead_time": 7.603
},
{
"text": "The Morse code is loud af for me.",
"id": 5,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 6,
"created_at": "2024-11-25T09:24:28.639535Z",
"updated_at": "2024-11-25T09:24:28.639535Z",
"lead_time": 6.192
},
{
"text": "I hope he never makes any life - if he did we are doomed. But rather finds out that all the infinite information that ADN \ud83e\uddec withholds to create life in so many forms under so many environments is not found our physical world. Why ? Where is the hard drive? He says the in nature materials have memory but where is it stored ?",
"id": 124,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 128,
"created_at": "2024-11-25T15:00:16.096054Z",
"updated_at": "2024-11-25T15:00:16.096054Z",
"lead_time": 10.282
},
{
"text": "Quick news in a fun way, i'm in",
"id": 25,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 26,
"created_at": "2024-11-25T14:33:19.071012Z",
"updated_at": "2024-11-25T14:33:19.071012Z",
"lead_time": 4.172
},
{
"text": "I can solve this in 2 seconds, download speeds can\u2019t stay they same , that\u2019s why when you download something it can go from 3 minutes to 3 hours",
"id": 160,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 164,
"created_at": "2024-11-25T16:49:34.978538Z",
"updated_at": "2024-11-25T16:49:34.978538Z",
"lead_time": 5.906
},
{
"text": "i only listen to real music",
"id": 194,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 199,
"created_at": "2024-11-25T16:57:41.541126Z",
"updated_at": "2024-11-25T16:57:41.541126Z",
"lead_time": 1.715
},
{
"text": "I've been there almost every year since i was 4 . Its lovely",
"id": 201,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 206,
"created_at": "2024-11-25T16:58:25.827248Z",
"updated_at": "2024-11-25T16:58:25.827248Z",
"lead_time": 5.132
},
{
"text": "Isn't this the whole premise behind Bill Nye the science Guy.",
"id": 64,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 65,
"created_at": "2024-11-25T14:38:22.625619Z",
"updated_at": "2024-11-25T14:38:22.625619Z",
"lead_time": 3.267
},
{
"text": "The likelihood of no one thinking of a simple solution seems exponentially unlikely given the Earth's population plus time. But perhaps it's the problem itself that is obscure, not the solution.",
"id": 241,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 246,
"created_at": "2024-11-25T17:03:36.495502Z",
"updated_at": "2024-11-25T17:03:36.495502Z",
"lead_time": 8.703
},
{
"text": "Love you \ud83d\udc97",
"id": 407,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 415,
"created_at": "2024-11-26T05:31:01.065502Z",
"updated_at": "2024-11-26T05:31:01.065502Z",
"lead_time": 2.101
},
{
"text": "i think i remember the Chinese one, i believe it was on the waybackmachine",
"id": 253,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 258,
"created_at": "2024-11-25T17:07:29.705279Z",
"updated_at": "2024-11-25T17:07:29.705279Z",
"lead_time": 4.651
},
{
"text": "\"This is not a song\"?<br>I beg to differ",
"id": 332,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 340,
"created_at": "2024-11-25T17:17:38.897486Z",
"updated_at": "2024-11-25T17:17:38.897486Z",
"lead_time": 3.411
},
{
"text": "It would be nice to be able to open EXT4 hard drives on windows... I don't really care that much about the subsystem.",
"id": 491,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 499,
"created_at": "2024-11-26T05:56:09.281643Z",
"updated_at": "2024-11-26T05:56:09.281643Z",
"lead_time": 5.278
},
{
"text": "Anyone else get a \"Mark Zuckerberg\" vibe from her...",
"id": 506,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 514,
"created_at": "2024-11-26T06:05:38.424244Z",
"updated_at": "2024-11-26T06:05:38.424244Z",
"lead_time": 3.933
},
{
"text": "Now we just need this but with audio",
"id": 150,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 154,
"created_at": "2024-11-25T16:48:27.876291Z",
"updated_at": "2024-11-25T16:48:27.876291Z",
"lead_time": 2.453
},
{
"text": "black mirror deepfake coming soon",
"id": 434,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 442,
"created_at": "2024-11-26T05:34:29.729749Z",
"updated_at": "2024-11-26T05:34:29.729749Z",
"lead_time": 3.705
},
{
"text": "really great video, This is the real-life version of the game \"the evolution of trust\". I was honestly shocked when mia decided not to keep the 1000 dollars for herself. Awesome to see everyone come to a consensus at the end, I look forward to watching more of these in the future.",
"id": 369,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 377,
"created_at": "2024-11-25T17:21:40.342756Z",
"updated_at": "2024-11-25T17:21:47.872826Z",
"lead_time": 4.74
},
{
"text": "Solar system's most famous teapot: Russel's teapot",
"id": 370,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 378,
"created_at": "2024-11-25T17:21:54.447511Z",
"updated_at": "2024-11-25T17:21:54.447511Z",
"lead_time": 2.752
},
{
"text": "Riley is trying so hard not to be eccentric and it's brilliant.,(reply>), Tbh I love his voice like this, tho I love him normally aswell so I'm happy either way",
"id": 218,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 223,
"created_at": "2024-11-25T17:00:20.157747Z",
"updated_at": "2024-11-25T17:00:20.157747Z",
"lead_time": 4.65
},
{
"text": "The next video was a Captain Disillusion video",
"id": 103,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 106,
"created_at": "2024-11-25T14:49:52.124717Z",
"updated_at": "2024-11-25T14:49:52.124717Z",
"lead_time": 3.634
},
{
"text": "I must say Lex, you interview some of the most interesting and intelligent people Ive ever heard of but whats REALLY amazing , is your shared knowledge about your guests expertise is ridiculous, like you know SOOO much about SOOO much, with great input on what EVERY guest says, and not like simple pre podcast research, you can tell that you have a vast amount of knowledge, I wish we could have a Lex Fridman: Lex Fridman episode \ud83d\ude04\ud83d\ude04\ud83d\ude04 get to know more about how you came to be , but great work as always",
"id": 454,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 462,
"created_at": "2024-11-26T05:36:23.068464Z",
"updated_at": "2024-11-26T05:36:23.068464Z",
"lead_time": 6.598
},
{
"text": "they are",
"id": 114,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 117,
"created_at": "2024-11-25T14:54:58.867760Z",
"updated_at": "2024-11-25T14:54:58.867760Z",
"lead_time": 55.911
},
{
"text": "I really think it was your unfixable iMac video that got to them. Just sayin.",
"id": 482,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 490,
"created_at": "2024-11-26T05:41:42.016946Z",
"updated_at": "2024-11-26T05:41:42.016946Z",
"lead_time": 8.213
},
{
"text": "AWESOME CONCEPT! I hope you have a Betamax VCR. Also, you have to have some write-up about Thomas Edison's big failure pushing DC current.",
"id": 385,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 393,
"created_at": "2024-11-25T17:34:57.781791Z",
"updated_at": "2024-11-25T17:34:57.781791Z",
"lead_time": 1.169
},
{
"text": "Rent seeking",
"id": 187,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 192,
"created_at": "2024-11-25T16:56:51.971762Z",
"updated_at": "2024-11-25T16:56:51.971762Z",
"lead_time": 1.597
},
{
"text": "FROG BUTCHER!! I AM TRIGGERED!",
"id": 267,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 273,
"created_at": "2024-11-25T17:09:17.482933Z",
"updated_at": "2024-11-25T17:09:17.482933Z",
"lead_time": 13.789
},
{
"text": "If you are watching in 2020, you have a nice taste in music,(reply>), Ok",
"id": 221,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 226,
"created_at": "2024-11-25T17:00:34.470496Z",
"updated_at": "2024-11-25T17:00:34.470496Z",
"lead_time": 5.921
},
{
"text": "Nice :-) The psychological side of this game is very fascinating.",
"id": 307,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 313,
"created_at": "2024-11-25T17:14:09.450407Z",
"updated_at": "2024-11-25T17:14:12.693516Z",
"lead_time": 15.112
},
{
"text": "When steam copies your concept so you copy steams concept,(reply>), Spat my drink +1",
"id": 266,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 272,
"created_at": "2024-11-25T17:09:00.370893Z",
"updated_at": "2024-11-25T17:09:00.370893Z",
"lead_time": 8.298
},
{
"text": "What is happening with the audio in the outro",
"id": 14,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 15,
"created_at": "2024-11-25T09:33:52.694884Z",
"updated_at": "2024-11-25T09:33:52.694884Z",
"lead_time": 10.785
},
{
"text": "Always just thought these were archimedes screws but hey ho toms at it again with the amazing lessons",
"id": 152,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 156,
"created_at": "2024-11-25T16:48:43.602138Z",
"updated_at": "2024-11-25T16:48:47.318576Z",
"lead_time": 13.306000000000001
},
{
"text": "Linus is on roll ..!!!",
"id": 88,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 91,
"created_at": "2024-11-25T14:48:17.764488Z",
"updated_at": "2024-11-25T14:48:17.764488Z",
"lead_time": 36.397
},
{
"text": "hi",
"id": 80,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 82,
"created_at": "2024-11-25T14:46:28.373594Z",
"updated_at": "2024-11-25T14:46:28.373594Z",
"lead_time": 5.640000000000001
},
{
"text": "Thought this video was gonna be about that secret rail tunnel under the city created for the president during I believe the cold war...,(reply>), Correction* ww2",
"id": 97,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 100,
"created_at": "2024-11-25T14:49:05.739075Z",
"updated_at": "2024-11-25T14:49:05.739075Z",
"lead_time": 9.214
},
{
"text": "What was that morse code at the end",
"id": 8,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 9,
"created_at": "2024-11-25T09:33:05.815107Z",
"updated_at": "2024-11-25T09:33:05.815107Z",
"lead_time": 5.42
},
{
"text": "Riley has some real Steve Carrell vibes",
"id": 394,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 402,
"created_at": "2024-11-26T05:28:53.660851Z",
"updated_at": "2024-11-26T05:28:53.660851Z",
"lead_time": 3.392
},
{
"text": "FIVE EARRINGS?!?!?!",
"id": 413,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 421,
"created_at": "2024-11-26T05:31:23.228065Z",
"updated_at": "2024-11-26T05:31:23.228065Z",
"lead_time": 2.744
},
{
"text": "I think the way that AI and quantum computing are going to be linked is going to be key. Redefinition of physics",
"id": 52,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 53,
"created_at": "2024-11-25T14:37:17.276473Z",
"updated_at": "2024-11-25T14:37:17.276473Z",
"lead_time": 7.921
},
{
"text": "I think I got clickbaited by the thumbnail",
"id": 58,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 59,
"created_at": "2024-11-25T14:37:39.884888Z",
"updated_at": "2024-11-25T14:37:39.884888Z",
"lead_time": 2.444
},
{
"text": "No Philippines for Youtube Premium?! Ugh.",
"id": 200,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 205,
"created_at": "2024-11-25T16:58:20.428530Z",
"updated_at": "2024-11-25T16:58:20.428530Z",
"lead_time": 9.409
},
{
"text": "Apple deserves to be sued by every single country and should be legally required to include the charging brick. Why? They include a USBc charge cable in the box fucking idiots all my ones are USB a I\u2019m going to need to buy a new brick JUST for this purpose causing more ewaste. <br><br>Nothing better about buying a new phone and plugging in the new adapter with new power brick it\u2019s part of the experience.",
"id": 26,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 27,
"created_at": "2024-11-25T14:33:39.054228Z",
"updated_at": "2024-11-25T14:33:39.054228Z",
"lead_time": 19.718
},
{
"text": "fuck hype and stop pre-ordering - there! Not so much, yet essential in order to move forward!",
"id": 458,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 466,
"created_at": "2024-11-26T05:37:05.335935Z",
"updated_at": "2024-11-26T05:37:05.335935Z",
"lead_time": 8.358
},
{
"text": "Ya declining windows 11 update was the best decision.",
"id": 493,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 501,
"created_at": "2024-11-26T05:58:11.997577Z",
"updated_at": "2024-11-26T05:58:11.997577Z",
"lead_time": 111.604
},
{
"text": "A salad grown in MMS...? I feel like Miles Power might have something to say about that.",
"id": 520,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 528,
"created_at": "2024-11-26T06:07:30.991681Z",
"updated_at": "2024-11-26T06:07:30.991681Z",
"lead_time": 5.959
},
{
"text": "BRAVOOOOO!",
"id": 144,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 148,
"created_at": "2024-11-25T16:48:03.279525Z",
"updated_at": "2024-11-25T16:48:03.279525Z",
"lead_time": 1.631
},
{
"text": "i'm getting a new iPhone tomorrow because android is horrible for software updates and Google goes and does this...dammit",
"id": 118,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 121,
"created_at": "2024-11-25T14:55:24.848121Z",
"updated_at": "2024-11-25T14:55:24.848121Z",
"lead_time": 5.269
},
{
"text": "Someone send him a copy of No Man's Sky",
"id": 148,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 152,
"created_at": "2024-11-25T16:48:18.820987Z",
"updated_at": "2024-11-25T16:48:18.820987Z",
"lead_time": 3.562
},
{
"text": "Saw the title. Knew where it was immediately. I live there.",
"id": 478,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 486,
"created_at": "2024-11-26T05:41:19.532541Z",
"updated_at": "2024-11-26T05:41:19.532541Z",
"lead_time": 7.396
},
{
"text": "Sick Linus",
"id": 24,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 25,
"created_at": "2024-11-25T14:33:14.651017Z",
"updated_at": "2024-11-25T14:33:14.651017Z",
"lead_time": 7.79
},
{
"text": "Heavy mp3 compression on \"Rule Britannia\", sorry!",
"id": 18,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 19,
"created_at": "2024-11-25T14:32:09.460057Z",
"updated_at": "2024-11-25T14:32:09.460057Z",
"lead_time": 6.257
},
{
"text": "That sound on the end <br><br>And he just said protect your hearing",
"id": 168,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 172,
"created_at": "2024-11-25T16:50:56.840262Z",
"updated_at": "2024-11-25T16:50:56.840262Z",
"lead_time": 35.512
},
{
"text": "I'm actually thinking that the iconic chrome stovetop teapot that whistles is far more famous than the Utah teapot.",
"id": 504,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 512,
"created_at": "2024-11-26T06:05:25.596496Z",
"updated_at": "2024-11-26T06:05:25.597496Z",
"lead_time": 9.556
},
{
"text": "Would have been a lot better if it was shown in a map or through aereal photos, a lot more informative that seeing Tom's face 90% of the video. Hearing names of rivers and places without knowing their relative positions doesn't really teach anything.",
"id": 176,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 180,
"created_at": "2024-11-25T16:51:39.658589Z",
"updated_at": "2024-11-25T16:51:39.658589Z",
"lead_time": 15.057
},
{
"text": "Keep it up man great podcast!!",
"id": 20,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 21,
"created_at": "2024-11-25T14:32:25.399130Z",
"updated_at": "2024-11-25T14:32:25.399130Z",
"lead_time": 4.851
},
{
"text": "This is one of the most beautiful ideas.. I sometimes view everyday life where people are so busy with I dont know what... and then switching to the superwide unfathomable universe which seems to go on eternally ..which perspective blows everyones mind....",
"id": 390,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 398,
"created_at": "2024-11-26T05:27:22.871515Z",
"updated_at": "2024-11-26T05:27:22.871515Z",
"lead_time": 3.626
},
{
"text": "Laughs in AMD \ud83d\ude02",
"id": 277,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 283,
"created_at": "2024-11-25T17:10:42.337910Z",
"updated_at": "2024-11-25T17:10:42.337910Z",
"lead_time": 4.447
},
{
"text": "who's watching this in 2020",
"id": 127,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 131,
"created_at": "2024-11-25T15:50:00.832208Z",
"updated_at": "2024-11-25T15:50:00.832208Z",
"lead_time": 2.217
},
{
"text": "Like in the comments of every music video on youtube: <br>Who is still watching in 2018?",
"id": 246,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 251,
"created_at": "2024-11-25T17:05:58.000067Z",
"updated_at": "2024-11-25T17:05:58.000067Z",
"lead_time": 121.827
},
{
"text": "All these new gpus.<br>Miners and Scalpers would be Very excited!!! There are so lucky!!! They can make more money.<br>That's what i like!!!! Nice to see the trend continues to 2022",
"id": 215,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 220,
"created_at": "2024-11-25T16:59:58.983043Z",
"updated_at": "2024-11-25T16:59:58.983043Z",
"lead_time": 6.519
},
{
"text": "N-no i wasn't i was just... okay you got me.",
"id": 282,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 288,
"created_at": "2024-11-25T17:11:10.772686Z",
"updated_at": "2024-11-25T17:11:10.772686Z",
"lead_time": 4.673
},
{
"text": "I live in Cumbria, my lights flicker daily.",
"id": 340,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 348,
"created_at": "2024-11-25T17:18:18.442982Z",
"updated_at": "2024-11-25T17:18:18.442982Z",
"lead_time": 4.101
},
{
"text": "Cool!",
"id": 137,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 141,
"created_at": "2024-11-25T16:47:26.836331Z",
"updated_at": "2024-11-25T16:47:26.836331Z",
"lead_time": 1.103
},
{
"text": "That beard tho",
"id": 329,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 337,
"created_at": "2024-11-25T17:17:26.902162Z",
"updated_at": "2024-11-25T17:17:26.902162Z",
"lead_time": 2.262
},
{
"text": "Theres a movie based on the giver's book, Mindblowing as this podcast",
"id": 40,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 41,
"created_at": "2024-11-25T14:35:30.005293Z",
"updated_at": "2024-11-25T14:35:30.005293Z",
"lead_time": 8.328
},
{
"text": "The fact that Lex is going viral gives me hope that the mental health vaccine isn't NECESSARILY withdrawing from social media. If you are here, you are using the tool, not the tool using you.",
"id": 38,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 39,
"created_at": "2024-11-25T14:35:17.409643Z",
"updated_at": "2024-11-25T14:35:17.409643Z",
"lead_time": 10.149
},
{
"text": "I have never heard Lex this animated before.",
"id": 456,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 464,
"created_at": "2024-11-26T05:36:44.420448Z",
"updated_at": "2024-11-26T05:36:44.420448Z",
"lead_time": 5.27
},
{
"text": "Yvonne please do something for Linus",
"id": 257,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 262,
"created_at": "2024-11-25T17:07:58.817525Z",
"updated_at": "2024-11-25T17:07:58.817525Z",
"lead_time": 3.226
},
{
"text": "what do you use to edit?",
"id": 525,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 533,
"created_at": "2024-11-26T06:09:14.541720Z",
"updated_at": "2024-11-26T06:09:14.541720Z",
"lead_time": 1.763
},
{
"text": "Definitely sharing this one. Thanks Lex!",
"id": 398,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 406,
"created_at": "2024-11-26T05:29:38.025955Z",
"updated_at": "2024-11-26T05:29:38.025955Z",
"lead_time": 4.307
},
{
"text": "Awwww, no mention of lesbian space crime.",
"id": 79,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 80,
"created_at": "2024-11-25T14:46:20.393422Z",
"updated_at": "2024-11-25T14:46:20.393422Z",
"lead_time": 11.975
},
{
"text": "This is insane",
"id": 471,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 479,
"created_at": "2024-11-26T05:40:21.964155Z",
"updated_at": "2024-11-26T05:40:21.964155Z",
"lead_time": 1.095
},
{
"text": "500 million is such a joke",
"id": 291,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 297,
"created_at": "2024-11-25T17:11:57.396374Z",
"updated_at": "2024-11-25T17:11:57.396374Z",
"lead_time": 3.815
},
{
"text": "Dr Strange Want's Your Location...",
"id": 450,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 458,
"created_at": "2024-11-26T05:35:45.768693Z",
"updated_at": "2024-11-26T05:35:45.768693Z",
"lead_time": 3.493
},
{
"text": "Coming back to this after a few years, with more experience of it in the wild... While it's marginally easier to locate the source of the sound by ear, it takes several seconds for me to realise it's a reversing alarm and to actually look around or care where it's coming from. <br>Sometimes safety has more aspects than are immediately obvious.",
"id": 368,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 376,
"created_at": "2024-11-25T17:21:38.951283Z",
"updated_at": "2024-11-25T17:21:38.952283Z",
"lead_time": 13.828
},
{
"text": "I loved his video so much, sometimes u forget the simplest things and this in a nice way makes u remember them, now on my favourites. \ud83d\ude00",
"id": 384,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 392,
"created_at": "2024-11-25T17:34:56.312545Z",
"updated_at": "2024-11-25T17:34:56.313540Z",
"lead_time": 3.053
},
{
"text": "Thanks!",
"id": 238,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 243,
"created_at": "2024-11-25T17:03:12.320933Z",
"updated_at": "2024-11-25T17:03:12.320933Z",
"lead_time": 0.863
},
{
"text": "Barriers to discovery are now political. 'Offensive' facts will be 'discovered', minds will change slowly.",
"id": 264,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 269,
"created_at": "2024-11-25T17:08:48.304448Z",
"updated_at": "2024-11-25T17:08:48.304448Z",
"lead_time": 6.986
},
{
"text": "Linus still thinking cherry switches are good and still claiming to be a keyboard person is the best part of his videos hands down \ud83d\udc80 its like calling a 1996 corolla the best car on the market",
"id": 15,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 16,
"created_at": "2024-11-25T14:31:31.752150Z",
"updated_at": "2024-11-25T14:31:31.752150Z",
"lead_time": 69.884
},
{
"text": "Doesnt seem to be sufficient to gain superpower. Prefer the bite of a radiated grizzly.",
"id": 172,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 176,
"created_at": "2024-11-25T16:51:16.885353Z",
"updated_at": "2024-11-25T16:51:16.885353Z",
"lead_time": 7.164
},
{
"text": "Sorry Mark, you can\u2019t have my data! \ud83d\ude21",
"id": 242,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 247,
"created_at": "2024-11-25T17:03:42.817429Z",
"updated_at": "2024-11-25T17:03:42.817429Z",
"lead_time": 6.026
},
{
"text": "skip the cut scene",
"id": 138,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 142,
"created_at": "2024-11-25T16:47:29.719450Z",
"updated_at": "2024-11-25T16:47:29.719450Z",
"lead_time": 2.621
},
{
"text": "If it is any consolation Tom, you look great for a 50 year old.",
"id": 519,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 527,
"created_at": "2024-11-26T06:07:24.494841Z",
"updated_at": "2024-11-26T06:07:24.494841Z",
"lead_time": 3.438
},
{
"text": "Salley on the pack bench for behind the scenes with Matt please!,(reply>), *park",
"id": 278,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 284,
"created_at": "2024-11-25T17:10:49.494220Z",
"updated_at": "2024-11-25T17:10:49.494220Z",
"lead_time": 6.877
},
{
"text": "What happened to her towel?",
"id": 479,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 487,
"created_at": "2024-11-26T05:41:21.095335Z",
"updated_at": "2024-11-26T05:41:21.095335Z",
"lead_time": 0.996
},
{
"text": "dont u dare quit this podcast",
"id": 98,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 101,
"created_at": "2024-11-25T14:49:17.499406Z",
"updated_at": "2024-11-25T14:49:17.499406Z",
"lead_time": 11.51
},
{
"text": "webcam mic e.e",
"id": 235,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 240,
"created_at": "2024-11-25T17:02:50.857164Z",
"updated_at": "2024-11-25T17:02:50.857164Z",
"lead_time": 3.026
},
{
"text": "Based on dozens of past examples, there's no reason to believe they aren't just making a vehicle for monetization.",
"id": 128,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 132,
"created_at": "2024-11-25T15:50:06.463901Z",
"updated_at": "2024-11-25T15:50:06.463901Z",
"lead_time": 5.361
},
{
"text": "Ahg, that sound at the end though. Rude Tom, rude...",
"id": 509,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 517,
"created_at": "2024-11-26T06:05:56.919101Z",
"updated_at": "2024-11-26T06:05:56.919101Z",
"lead_time": 3.555
},
{
"text": "Superhero Help Academic Foundation Trust, Education Division = S.H.A.F.T.E.D.<br>Nice.",
"id": 181,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 186,
"created_at": "2024-11-25T16:55:41.774234Z",
"updated_at": "2024-11-25T16:55:41.774234Z",
"lead_time": 49.864
},
{
"text": "Helsingborg sounds like a rip-off of Helsinki.",
"id": 412,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 420,
"created_at": "2024-11-26T05:31:19.933883Z",
"updated_at": "2024-11-26T05:31:19.934886Z",
"lead_time": 2.201
},
{
"text": "I'm just gonna put this out there, they should probably investigate the engineer's claims, if it turns out he's wrong oh well, if it turns out he's right there's big potential issues that could arise.",
"id": 166,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 170,
"created_at": "2024-11-25T16:50:07.619986Z",
"updated_at": "2024-11-25T16:50:07.619986Z",
"lead_time": 12.137
},
{
"text": "Just a few minutes into the podcast, there is no such thing as 'our' God in Islam. There is Allah and he is God. This is all bullshit.,(reply>), Allah is the Arabic translation of the word God.",
"id": 60,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 61,
"created_at": "2024-11-25T14:38:00.441403Z",
"updated_at": "2024-11-25T14:38:00.441403Z",
"lead_time": 7.405
},
{
"text": "aight here me out you can use power outlets from any place no matter the length of the cords need some power out in the dessert in particular teleport home and make a portal back to the dessert put power cord through boom",
"id": 448,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 456,
"created_at": "2024-11-26T05:35:29.139398Z",
"updated_at": "2024-11-26T05:35:29.139398Z",
"lead_time": 11.067
},
{
"text": "Why isn't this 4K",
"id": 102,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 105,
"created_at": "2024-11-25T14:49:48.206106Z",
"updated_at": "2024-11-25T14:49:48.206106Z",
"lead_time": 3.418
},
{
"text": "I like the process bars rn because when it goes faster than normal it makes me think it will get it done faster than what it will get done.",
"id": 87,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 90,
"created_at": "2024-11-25T14:47:41.074036Z",
"updated_at": "2024-11-25T14:47:41.074036Z",
"lead_time": 8.116
},
{
"text": "this is a comment complaining about Rileys tone of voice",
"id": 30,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 31,
"created_at": "2024-11-25T14:34:12.642426Z",
"updated_at": "2024-11-25T14:34:12.642426Z",
"lead_time": 3.299
},
{
"text": "That's why I'm playing only japanese and indie games.",
"id": 474,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 482,
"created_at": "2024-11-26T05:40:41.076983Z",
"updated_at": "2024-11-26T05:40:41.076983Z",
"lead_time": 1.509
},
{
"text": "Reminds me of how freddiew did his fake ad for liquid slam. He actually put it on a VHS and the result is very good.",
"id": 296,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 302,
"created_at": "2024-11-25T17:12:48.323372Z",
"updated_at": "2024-11-25T17:12:48.323372Z",
"lead_time": 23.213
},
{
"text": "Cardano is the future.",
"id": 382,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 390,
"created_at": "2024-11-25T17:34:46.275737Z",
"updated_at": "2024-11-25T17:34:46.275737Z",
"lead_time": 1.565
},
{
"text": "oh so the answers the really obvious one that requires 00.0000001 iq to figure out. wonder who actually needed this video. show of hands. (the things at the end of your arms)",
"id": 21,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 22,
"created_at": "2024-11-25T14:32:39.577871Z",
"updated_at": "2024-11-25T14:32:39.577871Z",
"lead_time": 13.91
},
{
"text": "notification squad",
"id": 156,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 160,
"created_at": "2024-11-25T16:49:07.796867Z",
"updated_at": "2024-11-25T16:49:07.796867Z",
"lead_time": 1.85
},
{
"text": "Good on ya Tom. Aircraft rotating and both ailerons pointing skyward!\ud83d\ude02",
"id": 136,
"sentiment": "Positive",
"annotator": 1,
"annotation_id": 140,
"created_at": "2024-11-25T16:47:25.467705Z",
"updated_at": "2024-11-25T16:47:25.467705Z",
"lead_time": 10.085
},
{
"text": "$2*1.5= $3<br>$3 / 5 = $.60<br>They couldn't have both put a dollar in.",
"id": 99,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 102,
"created_at": "2024-11-25T14:49:29.715616Z",
"updated_at": "2024-11-25T14:49:29.715616Z",
"lead_time": 11.943
},
{
"text": "Is really mad ?",
"id": 494,
"sentiment": "Negative",
"annotator": 1,
"annotation_id": 502,
"created_at": "2024-11-26T05:58:27.776832Z",
"updated_at": "2024-11-26T05:58:27.776832Z",
"lead_time": 15.191
},
{
"text": "I SAW THIS VIDEO YESTERDAY AND I SWEAR TO GOD THE VIDEO THUMBNAIL IS CHANGING, IT WAS SO MUCH FARTHRE AHEAD YESTERDAY",
"id": 255,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 260,
"created_at": "2024-11-25T17:07:51.979116Z",
"updated_at": "2024-11-25T17:07:51.979116Z",
"lead_time": 8.328
},
{
"text": "hmmm I feel like purchasing an industrial excavator \ud83d\ude33",
"id": 111,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 114,
"created_at": "2024-11-25T14:51:34.095737Z",
"updated_at": "2024-11-25T14:51:34.095737Z",
"lead_time": 7.378
},
{
"text": "Mark Cuban in all his wisdom said Charles sounded like a scammer, at the same time praises doge and gets pump n dumped haha",
"id": 263,
"sentiment": "Neutral",
"annotator": 1,
"annotation_id": 268,
"created_at": "2024-11-25T17:08:41.039361Z",
"updated_at": "2024-11-25T17:08:41.039361Z",
"lead_time": 11.266
}
] |