File size: 122,418 Bytes
c7f2604 | 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 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 | [
{
"text": "Wow I didn't know gliders could do that",
"sentiment": "Neutral",
"id": 427
},
{
"text": "\"Stopping A Laser Beam In Mid-Air\" haha just kidding, we used a camera trick, Gotcha!",
"sentiment": "Positive",
"id": 157
},
{
"text": "Originally I thought it would have something to do with floating point numbers. Like maybe 2 + 2 = 4.00000000001 and when converting to an integer it rounds it up to 5. But of course I know integer conversions always round down. <br>So maybe 4f - 2f could equal 1.,(reply>), I guess precision errors wouldn't happen with this simple arithmetic though",
"sentiment": "Neutral",
"id": 76
},
{
"text": "techlinked in 390fps or riot",
"sentiment": "Neutral",
"id": 408
},
{
"text": "I literally would have gotten up and walked out of this game due to disappointment.<br>This is what's wrong with humanity.",
"sentiment": "Negative",
"id": 792
},
{
"text": "It's specially a matter of historical perspective. Videogames are an important cultural product as say, literature or film, and letting a game dissappear without archiving it is like letting old films in film reels rot away. And saying that that doesn't matter because \"it's old, who cares\" really grinds my gears.",
"sentiment": "Negative",
"id": 81
},
{
"text": "They don't teach you that in English class...",
"sentiment": "Neutral",
"id": 815
},
{
"text": "Love u riley",
"sentiment": "Positive",
"id": 315
},
{
"text": "that is so beautiful.",
"sentiment": "Positive",
"id": 4911
},
{
"text": "Ah yes, the YouTube algorithm, feeding me tech news about 1 month late XD",
"sentiment": "Neutral",
"id": 432
},
{
"text": "Everytime I listen to Stephen talk over the years, he is always full of new surprises while always keeping the same values",
"sentiment": "Positive",
"id": 480
},
{
"text": "My only comment, we need more dancing crabs!!!",
"sentiment": "Neutral",
"id": 417
},
{
"text": "Wow. It became depressing at the end.",
"sentiment": "Neutral",
"id": 186
},
{
"text": "amen to that brother god bless all of y'all \ud83d\udc93",
"sentiment": "Positive",
"id": 4889
},
{
"text": "honestly all of Lenovo's announcements seem like they are from like 2011-2013",
"sentiment": "Negative",
"id": 13
},
{
"text": "Cannabis-based batteries are gonna be a game changer compared to Oppo's...",
"sentiment": "Neutral",
"id": 546
},
{
"text": "My balls hurt, watching this entire video.",
"sentiment": "Negative",
"id": 290
},
{
"text": "Bring back James",
"sentiment": "Neutral",
"id": 91
},
{
"text": "Question.. how many red shirts do you own? Plus blue jeans?",
"sentiment": "Neutral",
"id": 861
},
{
"text": "Aw, poor Tom.",
"sentiment": "Negative",
"id": 4
},
{
"text": "love you paul",
"sentiment": "Positive",
"id": 4870
},
{
"text": "Love the fact you said \"Soldered\" and not \"SAWdered\"<br>However, I wouldn't trust a Ewan Spence article with my cat. I mean, have you seen his picture on Forbes?!",
"sentiment": "Positive",
"id": 35
},
{
"text": "the filter has way too many noise in it. it ruins the athmosphere",
"sentiment": "Negative",
"id": 747
},
{
"text": "Don't they do a lot of that stuff in certain runs of DC and Marvel, though?",
"sentiment": "Neutral",
"id": 869
},
{
"text": "At least now Lawyer's will see a big chunk of money and will start to take on the tech companies in wrong doing accounts.",
"sentiment": "Negative",
"id": 737
},
{
"text": "I have to say, Lex, this is one of the best podcasts on the internet. Thank you for stimulating my brain in a world full of nonsense. We need this.",
"sentiment": "Positive",
"id": 653
},
{
"text": "Actually, a foldable pc makes much more sense than a foldable phone to me. You could use it as a laptop, as a tablet, it can be smaller than a normal laptop, and if they do it right, it could be a great system for productivity.",
"sentiment": "Neutral",
"id": 757
},
{
"text": "What's a music video? Do you mean soundtrack?",
"sentiment": "Neutral",
"id": 289
},
{
"text": "<b>Abcd\u2019s have entered the chat</b>",
"sentiment": "Neutral",
"id": 522
},
{
"text": "Love gamestop... I'm in South Africa, but what I hear about gamestop... Man... Hilarious!",
"sentiment": "Positive",
"id": 695
},
{
"text": "FIVE EARRINGS?!?!?!",
"sentiment": "Neutral",
"id": 413
},
{
"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)",
"sentiment": "Negative",
"id": 21
},
{
"text": "Clever that you, in real-time, called out the time stamp accurately on the final video. :)",
"sentiment": "Positive",
"id": 31
},
{
"text": "I've learned something today.<br><br>Do not delete your internet history,rather set it to be publicly available about 100 years after you die.",
"sentiment": "Neutral",
"id": 305
},
{
"text": "Wow, this is the first thing I actually DID know. Woot!",
"sentiment": "Positive",
"id": 870
},
{
"text": "Helsingborg sounds like a rip-off of Helsinki.",
"sentiment": "Neutral",
"id": 412
},
{
"text": "I'm suddenly here",
"sentiment": "Neutral",
"id": 27
},
{
"text": "Haha. Memory express sure has come a long way.<br>I was a customer of theirs when it was just a couple of guys selling memory from a dusty office above a ceramics shop back in the nineties.<br>Nice to see them so successful today.",
"sentiment": "Positive",
"id": 552
},
{
"text": "Intel it's on 14nm since silicon was invented, and i mean the mineral not the chips.",
"sentiment": "Neutral",
"id": 49
},
{
"text": "Turns out I can still hear that high-pitched noise, even at 30. Why you gotta do that to us, Tom?",
"sentiment": "Neutral",
"id": 2
},
{
"text": "Brilliant mind",
"sentiment": "Positive",
"id": 651
},
{
"text": "If Educational Videos Were Filmed Like Music Videos feat. dodie OFFICIAL MUSIC VIDEO",
"sentiment": "Neutral",
"id": 770
},
{
"text": "Of course I\u2019d love to see Lex let loose and talk trash.",
"sentiment": "Positive",
"id": 547
},
{
"text": "Yup they're in a tree",
"sentiment": "Neutral",
"id": 92
},
{
"text": "Well its almost like your a dick Riley. We're just as upset about the fact we have an angry orange toddler running our country as everyone else.",
"sentiment": "Negative",
"id": 1017
},
{
"text": "I may not be first nor am I last but when tech linked upload s i click it fast",
"sentiment": "Neutral",
"id": 97
},
{
"text": "That's why I'm playing only japanese and indie games.",
"sentiment": "Neutral",
"id": 474
},
{
"text": "Heavy mp3 compression on \"Rule Britannia\", sorry!",
"sentiment": "Neutral",
"id": 18
},
{
"text": "I am relieved to discover that the rock I didn't know existed 4 minutes and 53 seconds ago does in fact, still exist.",
"sentiment": "Neutral",
"id": 886
},
{
"text": "It makes me feel so uncomfortable and anxious",
"sentiment": "Negative",
"id": 77
},
{
"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",
"sentiment": "Positive",
"id": 302
},
{
"text": "I should be in there. I'm a failure.",
"sentiment": "Negative",
"id": 858
},
{
"text": "all i wanna know is how many files are left/how far along the current file is",
"sentiment": "Neutral",
"id": 193
},
{
"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!",
"sentiment": "Positive",
"id": 211
},
{
"text": "Finnally you dont fucking shout in your tech news, but now its weird...",
"sentiment": "Negative",
"id": 248
},
{
"text": "Now his voice became minimalist",
"sentiment": "Neutral",
"id": 706
},
{
"text": "Lex, I love how you approach this topic with a cautious yet individualistic viewpoint - not letting prejudice or bias, positive or negative, cloud your interpretation of the data, while also considering the various arguments of the optimistic and pessimistic viewpoints.",
"sentiment": "Positive",
"id": 54
},
{
"text": "I have balance issues and also terrified oc that hight.. the whole video gave me brrrr moments",
"sentiment": "Positive",
"id": 98
},
{
"text": "I'm not sure why anyone thinks that games of the Epic store would be cheaper. The whole point of developers going to Epic is to get a bigger cut, if they sell the game for less they negate that bigger cut and they might as well have just stayed on Steam.",
"sentiment": "Neutral",
"id": 666
},
{
"text": "If it goes sideways... Is it really an elevator..?!",
"sentiment": "Neutral",
"id": 488
},
{
"text": "sparkie like or love",
"sentiment": "Positive",
"id": 4855
},
{
"text": "I love this man's brain n heart! Blessings to him n his vision",
"sentiment": "Positive",
"id": 57
},
{
"text": "my TV always makes a blurp when turned on thanks to chromecast",
"sentiment": "Neutral",
"id": 773
},
{
"text": "yo this is the best comment i've ever read. this comment deserves more like my respects",
"sentiment": "Positive",
"id": 4884
},
{
"text": "People trusted mainstream media?",
"sentiment": "Neutral",
"id": 893
},
{
"text": "Long Live AMD!",
"sentiment": "Positive",
"id": 655
},
{
"text": "Literally Google Nest is making your home its nest...<br><br>You are putting Radar in your home..<br>Now Google know how lonely you are",
"sentiment": "Negative",
"id": 130
},
{
"text": "Hackers be like 'challenge accepted' <br><br>And win.",
"sentiment": "Neutral",
"id": 303
},
{
"text": "here after i heard about chat gpt 3 years later",
"sentiment": "Neutral",
"id": 486
},
{
"text": "best episode ive ever seen",
"sentiment": "Positive",
"id": 862
},
{
"text": "Counter<br>Rock: 3<br>Stone: 2",
"sentiment": "Neutral",
"id": 138
},
{
"text": "I'm waiting for the progress bar in the title to move for hours now.",
"sentiment": "Neutral",
"id": 42
},
{
"text": "I really miss this series",
"sentiment": "Positive",
"id": 347
},
{
"text": "9 years later this song has 6 billion views...\u2764",
"sentiment": "Positive",
"id": 4834
},
{
"text": "I would have though everyone would have assumed this to be the reason.",
"sentiment": "Neutral",
"id": 880
},
{
"text": "Excellent video. I think of the Higgs as more of a Buddha particle.",
"sentiment": "Positive",
"id": 613
},
{
"text": "WhO\u2019s LiStEnInG tO tHiS iN 2020???????",
"sentiment": "Negative",
"id": 61
},
{
"text": "Khyan Mansley spotted in the description!!! I hope you are doing, your YouTube presence is missed :)",
"sentiment": "Positive",
"id": 352
},
{
"text": "I took all that dudes shit.",
"sentiment": "Negative",
"id": 787
},
{
"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",
"sentiment": "Neutral",
"id": 405
},
{
"text": "My Sony Xperia One charges so quick it finally isn't a nuisance anymore...they've done it!",
"sentiment": "Neutral",
"id": 308
},
{
"text": "worst rewind",
"sentiment": "Negative",
"id": 4775
},
{
"text": "Same things as Hamilton island in Australia.<br>All golf buggies.",
"sentiment": "Neutral",
"id": 530
},
{
"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.",
"sentiment": "Neutral",
"id": 296
},
{
"text": "\u201cHappening in real time.\u201d Lets rephrase that. \u201cHappening with this camera.\u201d",
"sentiment": "Neutral",
"id": 677
},
{
"text": "Are reindeer sweaters ugly?? Shocking to me, cause I don't have anything but just that.",
"sentiment": "Negative",
"id": 543
},
{
"text": "Have Ayaan Hirsi Ali on.,(reply>), She has been proved to be a fraud, no one believes her anymore \ud83d\ude02",
"sentiment": "Neutral",
"id": 111
},
{
"text": "Ive been there! :3",
"sentiment": "Positive",
"id": 268
},
{
"text": "Best podcast EVER. I fuckn love John.",
"sentiment": "Positive",
"id": 824
},
{
"text": "4 a new Xbox controller,<br>Looks pretty nice \ud83d\udc4c",
"sentiment": "Positive",
"id": 84
},
{
"text": "Triggered af!!!<br>FU Monolith for ruining this amazing game...<br>The Orc chest were awesome. All I did was play the game for a week and had enough Miriam monies to buy tons of Orc chest...that shouldn\u2019t have changed this..",
"sentiment": "Negative",
"id": 829
},
{
"text": "This is awesome. I have been dealing with list of list of list of lists. This will help my code be cleaner!",
"sentiment": "Positive",
"id": 415
},
{
"text": "How did it take me this long to find this channel......fill the hole left by NCIX",
"sentiment": "Positive",
"id": 30
},
{
"text": "u have to rotate the screen 90 degrees right!",
"sentiment": "Neutral",
"id": 169
},
{
"text": "wouldn't the velocity of the object in the infinite portal loop still be limited by the terminal velocity of the object moving?",
"sentiment": "Neutral",
"id": 899
},
{
"text": "black mirror deepfake coming soon",
"sentiment": "Neutral",
"id": 434
},
{
"text": "They have ginormous catfish there.\ud83d\ude02",
"sentiment": "Neutral",
"id": 354
},
{
"text": "Hahaha, no matter what, iSheep will still be iSheep",
"sentiment": "Positive",
"id": 783
},
{
"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.",
"sentiment": "Neutral",
"id": 132
},
{
"text": "\u2018Something to keep her spirits up\u2019<br>Helium!",
"sentiment": "Positive",
"id": 137
},
{
"text": "Yes",
"sentiment": "Positive",
"id": 154
},
{
"text": "As an American I had no idea this was even a thing. Trucks still beep around here just outside of D.C.",
"sentiment": "Neutral",
"id": 638
},
{
"text": "well probably uses similar things to google, look up deet deet deet song ...",
"sentiment": "Neutral",
"id": 874
},
{
"text": "Can't decide if that looks like a dong or just a creepy severed off finger",
"sentiment": "Neutral",
"id": 436
},
{
"text": "I'd fae rather see the entire collapse of the gaming industry as we know it and rebuilt into something actually good then have these companies get their precious money and make shit games. Hell even if its 5 years till it rebuilds I got plenty of games to fill 5 years up",
"sentiment": "Neutral",
"id": 143
},
{
"text": "Great explanation of a flyback Tom... Thank You.",
"sentiment": "Positive",
"id": 906
},
{
"text": "Is it just me or Linus is slowly turning into David Tennant ?",
"sentiment": "Neutral",
"id": 149
},
{
"text": "This is amazing <br>I\u2019ve always thought of us as a bunch of bags inside a pretty neat bag but this is brilliant!",
"sentiment": "Positive",
"id": 760
},
{
"text": "FROG BUTCHER!! I AM TRIGGERED!",
"sentiment": "Negative",
"id": 267
},
{
"text": "Still waiting for the gpu selling :D",
"sentiment": "Positive",
"id": 715
},
{
"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",
"sentiment": "Positive",
"id": 511
},
{
"text": "\u201cLasers don\u2019t work like they do in movies\u201d<br><br>My guy obviously has never heard of plasma",
"sentiment": "Neutral",
"id": 931
},
{
"text": "i sideloaded everything my hole life and I'm still alive i think ill be fine tim",
"sentiment": "Neutral",
"id": 904
},
{
"text": "I so really hate modern music,(reply>), Ok boomer",
"sentiment": "Negative",
"id": 75
},
{
"text": "\"Sorry, I got distracted by ducks.\" Story of Tom's life.",
"sentiment": "Neutral",
"id": 901
},
{
"text": "In low or zero gravity, our bodies inevitably (and perpetually) degrade. What's the latest on solving this problem?",
"sentiment": "Neutral",
"id": 562
},
{
"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",
"sentiment": "Neutral",
"id": 428
},
{
"text": "...but he drives a Toyota bro so all is forgiven",
"sentiment": "Neutral",
"id": 71
},
{
"text": "Lex love all your doing at the minute. Hope your safe brother, keep up the work.",
"sentiment": "Positive",
"id": 37
},
{
"text": "ok. im happy to have heard it very clearly at 30 years of age.",
"sentiment": "Positive",
"id": 22
},
{
"text": "I lived in warsaw, that river is one of the most putrid thing i have ever smelled.",
"sentiment": "Neutral",
"id": 849
},
{
"text": "Bye bye whatsapp, hello Telegram",
"sentiment": "Neutral",
"id": 535
},
{
"text": "How do u teleport?",
"sentiment": "Neutral",
"id": 145
},
{
"text": "Edge has been really good the last year. I will keep continue using it on my Windows PC",
"sentiment": "Positive",
"id": 89
},
{
"text": "pronouncing Euros like Euler is megabased",
"sentiment": "Positive",
"id": 29
},
{
"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",
"sentiment": "Negative",
"id": 524
},
{
"text": "Semitic languages just looking from the side...",
"sentiment": "Neutral",
"id": 260
},
{
"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",
"sentiment": "Neutral",
"id": 16
},
{
"text": "That intro was perfect.",
"sentiment": "Positive",
"id": 127
},
{
"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.",
"sentiment": "Neutral",
"id": 38
},
{
"text": "Her skill is next level.",
"sentiment": "Positive",
"id": 907
},
{
"text": "yes he does :-)",
"sentiment": "Positive",
"id": 4873
},
{
"text": "The one thing Stevens dad is scared of",
"sentiment": "Neutral",
"id": 786
},
{
"text": "hmmm I feel like purchasing an industrial excavator \ud83d\ude33",
"sentiment": "Neutral",
"id": 111
},
{
"text": "the irony is that youtube created the most disliked video on youtube. can't get enough of that.",
"sentiment": "Negative",
"id": 4799
},
{
"text": "IBM: we can make 2nm!!!!<br>TSMC: 1nm!!!!!!<br>IBM: Huuummmnn... annn... We are happy to announce 0nm!!!!!",
"sentiment": "Neutral",
"id": 117
},
{
"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.",
"sentiment": "Neutral",
"id": 368
},
{
"text": "The surface duo always makes me think of the Nintendo DS.",
"sentiment": "Neutral",
"id": 426
},
{
"text": "WHY IS Riley the one on vacation Linus is hosting three channels on his own he's the one who needs a vacation",
"sentiment": "Neutral",
"id": 916
},
{
"text": "\"A bit wet\" says the guy from an island known for its raininess...",
"sentiment": "Neutral",
"id": 510
},
{
"text": "Lex is simply the best.",
"sentiment": "Positive",
"id": 129
},
{
"text": "Ray Tracing Xnowlegy",
"sentiment": "Neutral",
"id": 90
},
{
"text": "Discord store review?",
"sentiment": "Neutral",
"id": 222
},
{
"text": "50/50 men and women, so there ARE only 2 genders!",
"sentiment": "Neutral",
"id": 1026
},
{
"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\"",
"sentiment": "Neutral",
"id": 477
},
{
"text": "Do Atlantis next, you might get lucky!",
"sentiment": "Positive",
"id": 650
},
{
"text": "An elevator that does not elevate you?!?!",
"sentiment": "Neutral",
"id": 1192
},
{
"text": "\"We are a way for the universe to know itself.\" <i>~ Carl Sagan</i>",
"sentiment": "Neutral",
"id": 379
},
{
"text": "\"Ask any of the traumatized <a href=\"\"http://www.youtube.com/results?search_query=%23gamergate\"\">#gamergate</a> \"survivors\"\", there is nothing harmless about video game commentary",
"sentiment": "Neutral",
"id": 121
},
{
"text": "I mean like people have been asking for NO ports and now people are complaining?",
"sentiment": "Neutral",
"id": 818
},
{
"text": "Hot pie? I think you mean hot potato. Cause iphones are potatos made of glue and fragile glass.",
"sentiment": "Neutral",
"id": 834
},
{
"text": "Nice spot for a house on stilts.",
"sentiment": "Positive",
"id": 46
},
{
"text": "I now know how creeper Riley sounds.",
"sentiment": "Neutral",
"id": 346
},
{
"text": "hey we like samsung internet",
"sentiment": "Positive",
"id": 652
},
{
"text": "Hate apple.",
"sentiment": "Negative",
"id": 86
},
{
"text": "no question about it",
"sentiment": "Neutral",
"id": 4875
},
{
"text": "beautiful",
"sentiment": "Positive",
"id": 4828
},
{
"text": "When steam copies your concept so you copy steams concept,(reply>), Spat my drink +1",
"sentiment": "Neutral",
"id": 266
},
{
"text": "Dr Strange Want's Your Location...",
"sentiment": "Neutral",
"id": 450
},
{
"text": "Awesome! :D",
"sentiment": "Positive",
"id": 259
},
{
"text": "you had no audio issues while lots of players had 0 audio at all :P",
"sentiment": "Neutral",
"id": 341
},
{
"text": "Honestly its not the size I'm amazed of. It's how cleaned the thing is",
"sentiment": "Positive",
"id": 41
},
{
"text": "Everyone: He predicted how long the video would be!<br>The timer in front of him: \ud83d\ude0e",
"sentiment": "Neutral",
"id": 101
},
{
"text": "And I still prefer intel",
"sentiment": "Neutral",
"id": 574
},
{
"text": "a few hours ago I was watching a documentary about electricity with Jim Al Khalili that described the Humphry Davy experiment in that very room. Amazing conversation Lex! I too believe Harry has a very precise and easy way to communicate science. And he used some very original examples, too.",
"sentiment": "Positive",
"id": 1189
},
{
"text": "Fake News. You labeled Kathy Griffin as a \"high profile comedian\". . .",
"sentiment": "Negative",
"id": 358
},
{
"text": "Thank you for this!!!",
"sentiment": "Positive",
"id": 602
},
{
"text": "Salley on the pack bench for behind the scenes with Matt please!,(reply>), *park",
"sentiment": "Neutral",
"id": 278
},
{
"text": "I\u2019m great with all this except the fbi are a bunch of pedophile protectors",
"sentiment": "Positive",
"id": 57
},
{
"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.",
"sentiment": "Neutral",
"id": 185
},
{
"text": "this is a comment complaining about Rileys tone of voice",
"sentiment": "Negative",
"id": 30
},
{
"text": "Ever seen Japanese TV? Some of those things... All of those things were not left in the past...",
"sentiment": "Neutral",
"id": 473
},
{
"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.",
"sentiment": "Positive",
"id": 17
},
{
"text": "This is easily one of you best vids. But you should do a MV anyways xD",
"sentiment": "Positive",
"id": 864
},
{
"text": "awesome host",
"sentiment": "Positive",
"id": 823
},
{
"text": "I really think it was your unfixable iMac video that got to them. Just sayin.",
"sentiment": "Neutral",
"id": 482
},
{
"text": "because companies want more money",
"sentiment": "Negative",
"id": 86
},
{
"text": "well done! :))",
"sentiment": "Positive",
"id": 762
},
{
"text": "Hey Lex. Canada needs Cash App",
"sentiment": "Neutral",
"id": 445
},
{
"text": "i know all the animation channels. no idea who anyone else is though.",
"sentiment": "Neutral",
"id": 4802
},
{
"text": "who's watching this in 2020",
"sentiment": "Neutral",
"id": 127
},
{
"text": "You want to create robots capable of suffering? I'm not sure I can put into words how much I despise that idea.",
"sentiment": "Negative",
"id": 492
},
{
"text": "Jiggahertz? I bet you also say Jif James",
"sentiment": "Neutral",
"id": 145
},
{
"text": "\"Be neutral\" x)",
"sentiment": "Neutral",
"id": 429
},
{
"text": "valve banning nft games rules actually",
"sentiment": "Neutral",
"id": 732
},
{
"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",
"sentiment": "Neutral",
"id": 188
},
{
"text": "Love",
"sentiment": "Positive",
"id": 195
},
{
"text": "Cardano is the future.",
"sentiment": "Neutral",
"id": 382
},
{
"text": "Lazy fuckers!",
"sentiment": "Negative",
"id": 256
},
{
"text": "It\u2019s funny how free games like warframe press micro transactions way less than $60 titles like RDR2, battlefield, COD etc.",
"sentiment": "Positive",
"id": 90
},
{
"text": "Your intros are cool but sometimes very annoying...real talk \ud83d\udcaf",
"sentiment": "Neutral",
"id": 131
},
{
"text": "All of this applies to time travel. Transport yourself a week into the future, and when you arrive, the planet is thousands of miles away. Good luck surviving that!",
"sentiment": "Neutral",
"id": 414
},
{
"text": "Oh my gosh apple why dont they like holes so much",
"sentiment": "Neutral",
"id": 73
},
{
"text": "Fabulous conversation! Very nourishing..",
"sentiment": "Positive",
"id": 606
},
{
"text": "what do you use to edit?",
"sentiment": "Neutral",
"id": 525
},
{
"text": "Lysanne is so cool.",
"sentiment": "Positive",
"id": 338
},
{
"text": "It's a pretty elegant teapot; I quite like it.",
"sentiment": "Positive",
"id": 686
},
{
"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...",
"sentiment": "Neutral",
"id": 130
},
{
"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.",
"sentiment": "Neutral",
"id": 491
},
{
"text": "lex, you are a very sweet, brave man. Thank you for using your platform in this way. Your ancestors would be proud.",
"sentiment": "Positive",
"id": 397
},
{
"text": "I liked this video because 'Wang Shang haha'",
"sentiment": "Positive",
"id": 719
},
{
"text": "did you forget to colour correct this one or is this one of the test videos for parsec?",
"sentiment": "Neutral",
"id": 123
},
{
"text": "A snake oil salesman revered by midwits",
"sentiment": "Neutral",
"id": 601
},
{
"text": "30 min on Regal Reserve oh I am super interested. Let me roll this joint",
"sentiment": "Positive",
"id": 129
},
{
"text": "I love the heckling \ud83d\ude02\ud83d\ude02\ud83d\ude02",
"sentiment": "Positive",
"id": 116
},
{
"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.",
"sentiment": "Neutral",
"id": 306
},
{
"text": "Just make enough tunnels to fit all of the world's oceans. Boom, sea level problem solved.,(reply>), build a tunnel to carry some of the water to Mars - two birds one stone",
"sentiment": "Neutral",
"id": 774
},
{
"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",
"sentiment": "Positive",
"id": 384
},
{
"text": "I've been watching this channel for only one day and I'm already beginning to question the existence of superheroes.",
"sentiment": "Positive",
"id": 128
},
{
"text": "Crazy! When did they apply for the patent? Idr but I have seen this in agricultural application for years.",
"sentiment": "Neutral",
"id": 333
},
{
"text": "heres my view on politics in video games... KEEP EM OUT... end of story=)",
"sentiment": "Positive",
"id": 50
},
{
"text": "Ambi the only one who noticed all the stains on his shirt! Lol",
"sentiment": "Positive",
"id": 475
},
{
"text": "Imagine setting Earth's momentum to 0 relatively to Sun,(reply>), @Coy Raig doesn't matter when we'll be plunging towards it,(reply>), Which part of the sun? It's a ball of plasma with sections that move relative to one another",
"sentiment": "Neutral",
"id": 102
},
{
"text": "The minesweeper joke was brilliant!",
"sentiment": "Positive",
"id": 245
},
{
"text": "Excellent interview. Mr. Fridman is very good at what he does. He let his guest talk and does not interrupt. He know he is good and doesnt want to show his skills by asking question just to show he knows a lot .",
"sentiment": "Positive",
"id": 803
},
{
"text": "Interesting topic",
"sentiment": "Positive",
"id": 35
},
{
"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.",
"sentiment": "Negative",
"id": 270
},
{
"text": "This is an absolute bop",
"sentiment": "Neutral",
"id": 192
},
{
"text": "At least you could have warned us.",
"sentiment": "Neutral",
"id": 3
},
{
"text": "trollman14 that\u2019s deep and true man",
"sentiment": "Positive",
"id": 4844
},
{
"text": "Holographic generator seems doable",
"sentiment": "Neutral",
"id": 658
},
{
"text": "@vikimoananu4705\u00a0 these people are the worst examples of foreign youtubers.",
"sentiment": "Negative",
"id": 4820
},
{
"text": "the drag queens were the worst",
"sentiment": "Negative",
"id": 4770
},
{
"text": "The bars is nor moving",
"sentiment": "Neutral",
"id": 755
},
{
"text": "He believes he can achieve God mode<br><br>He said he had Ai and he is going to use it to create Ai",
"sentiment": "Neutral",
"id": 132
},
{
"text": "Why don\u2019t we use AI to iterate cpu gate technologies so we can make Moore\u2019s law faster?",
"sentiment": "Neutral",
"id": 108
},
{
"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.",
"sentiment": "Neutral",
"id": 269
},
{
"text": "there are 2 types of music videos:<br><br> - ones like these<br>- life in technicolor ii<br><br>idk what they were thinking with that music video",
"sentiment": "Neutral",
"id": 389
},
{
"text": "Is she Italian? Damn does Italian women age well :),(reply>), Yeah,I thought she was Swiss...",
"sentiment": "Neutral",
"id": 800
},
{
"text": "When's Riley's baby gonna host",
"sentiment": "Neutral",
"id": 244
},
{
"text": "I SAW THIS VIDEO YESTERDAY AND I SWEAR TO GOD THE VIDEO THUMBNAIL IS CHANGING, IT WAS SO MUCH FARTHRE AHEAD YESTERDAY",
"sentiment": "Neutral",
"id": 255
},
{
"text": "Don't fool yourself. You're not getting older. You're getting old. Be proud of it. Cherish it.",
"sentiment": "Positive",
"id": 540
},
{
"text": "Amazing bouldering there too! Rocks are great!",
"sentiment": "Positive",
"id": 261
},
{
"text": "So there isn't a battery large enough to cover the supply/demand-gap but there may be lots of small batteries plenty enough to cover said gap.",
"sentiment": "Neutral",
"id": 612
},
{
"text": "3080 is more than $1,100 on my region \ud83e\udd2e<br>Increase of $100 in price since i bought mine 3 weeks ago",
"sentiment": "Neutral",
"id": 435
},
{
"text": "If they make 12 incompatible with as many systems as 11, Microsoft is worse than Apple.",
"sentiment": "Neutral",
"id": 262
},
{
"text": "love australia",
"sentiment": "Positive",
"id": 611
},
{
"text": "Lmao rashguard again",
"sentiment": "Positive",
"id": 667
},
{
"text": "Is this guy Hari Seldon's great grandad?",
"sentiment": "Neutral",
"id": 8
},
{
"text": "+shmuel berzon show ur respect mate",
"sentiment": "Neutral",
"id": 4831
},
{
"text": "Stupid \u201chey I was correct vid\u201d save your time and hit back.",
"sentiment": "Negative",
"id": 406
},
{
"text": "Neat experiment regardless!",
"sentiment": "Positive",
"id": 890
},
{
"text": "Nice :-) The psychological side of this game is very fascinating.",
"sentiment": "Positive",
"id": 307
},
{
"text": "It truly gives me goosebumps, realizing how good Harry Cliff as a physicist is, when he's able to explain such complex aspects of particle physics in such an easy and intelligible way. Hats off! Thank you Lex for having him at your podcast!",
"sentiment": "Positive",
"id": 725
},
{
"text": "A duck cast distraction on Tom Scott and it was super effective!",
"sentiment": "Positive",
"id": 37
},
{
"text": "Definitely more content like this. It takes down the barrier of the interview.",
"sentiment": "Positive",
"id": 402
},
{
"text": "Barriers to discovery are now political. 'Offensive' facts will be 'discovered', minds will change slowly.",
"sentiment": "Neutral",
"id": 264
},
{
"text": "Best T-Shirt modification ever",
"sentiment": "Positive",
"id": 29
},
{
"text": "With my new PC; Progress bar goes brrrrr.....",
"sentiment": "Neutral",
"id": 536
},
{
"text": "Hi",
"sentiment": "Neutral",
"id": 768
},
{
"text": "Where the dragon go , I want it in background",
"sentiment": "Neutral",
"id": 96
},
{
"text": "Already disable her code",
"sentiment": "Negative",
"id": 497
},
{
"text": "Sorry Mark, you can\u2019t have my data! \ud83d\ude21",
"sentiment": "Negative",
"id": 242
},
{
"text": "Someone please turn this into a song.",
"sentiment": "Neutral",
"id": 605
},
{
"text": "who cares",
"sentiment": "Negative",
"id": 591
},
{
"text": "anti-clickbaite titles, like, you make the title so bad that no one wants to watch it.<br>does it work with views and the algorithim and what's not?",
"sentiment": "Neutral",
"id": 227
},
{
"text": "False advertising.<br>Thumbnail showed the dude in the water \ud83d\udc4e",
"sentiment": "Negative",
"id": 292
},
{
"text": "I hate when Windows tells me 5 seconds left for 5+ minutes.",
"sentiment": "Negative",
"id": 857
},
{
"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",
"sentiment": "Neutral",
"id": 95
},
{
"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",
"sentiment": "Positive",
"id": 226
},
{
"text": "So quiet",
"sentiment": "Neutral",
"id": 579
},
{
"text": "To the haters: people need to stop fighting over the dumbest issues. Really, you're going to despise someone because they added an operator you don't personally like? Here's an idea: don't use the operator. Obviously SOMEONE likes the operator so unless the implementation has real impact on your project, shut up. People need to stop trying to cancel everything they don't like.",
"sentiment": "Negative",
"id": 388
},
{
"text": "Yes",
"sentiment": "Positive",
"id": 300
},
{
"text": "eliminating dislikes is one of the worst ideas they have ever had, but it seems that for years they have been competing to do the wrong thing",
"sentiment": "Negative",
"id": 4774
},
{
"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.",
"sentiment": "Positive",
"id": 416
},
{
"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",
"sentiment": "Neutral",
"id": 320
},
{
"text": "Love you \ud83d\udc97",
"sentiment": "Positive",
"id": 407
},
{
"text": "I didn\u2019t find this game offensive at all",
"sentiment": "Neutral",
"id": 184
},
{
"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",
"sentiment": "Neutral",
"id": 448
},
{
"text": "You know, I\u2019d love to see Lex interview Matt Mercer. Anybody with me?",
"sentiment": "Neutral",
"id": 141
},
{
"text": "This was absolutely amazing. Utterly breathtaking. Everything from camera work to sound design added to the suspense of the wonderfully crafted games themselves. Feels really unjust for Mike to hold up his end of the bargain and get the least amount of money (while also playing the best game out of everyone at the table! really reminded me of that time a guy broke the finale of the Golden Balls' Split or Steal and ensured his win by just saying he will take all the money and nothing can change that, and if the opponent lets him, he will split the money after the show) but at least we can all say that he deserves utmost respect for what he did,(reply>), The only ways to have a high likelihood of deception is to either have strangers as contestants to effectively negate any post-game consequences, or to have players as featured but playing for charity.",
"sentiment": "Positive",
"id": 565
},
{
"text": "Great interview,(reply>), Let's talk \ud83c\udf40\u2b06\ufe0f\u2b06\ufe0f\u2705",
"sentiment": "Positive",
"id": 776
},
{
"text": "everyone wants to be so damn special. just be you.",
"sentiment": "Neutral",
"id": 607
},
{
"text": "Is really mad ?",
"sentiment": "Negative",
"id": 494
},
{
"text": "What a great venue",
"sentiment": "Positive",
"id": 144
},
{
"text": "Smart contract soon since 2015. What a snake oil salesman with dpos crap",
"sentiment": "Negative",
"id": 52
},
{
"text": "Superhero Help Academic Foundation Trust, Education Division = S.H.A.F.T.E.D.<br>Nice.",
"sentiment": "Neutral",
"id": 181
},
{
"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",
"sentiment": "Neutral",
"id": 191
},
{
"text": "Probably higher percentage",
"sentiment": "Neutral",
"id": 866
},
{
"text": "I feel like meditation apps should reach out to him for a collab",
"sentiment": "Positive",
"id": 113
},
{
"text": "Its good to know what linus assumes americans did with the stimulus. \ud83e\udd23\ud83d\ude02 lol.",
"sentiment": "Positive",
"id": 553
},
{
"text": "Not just games it just about 90% of what u buy people companys are not giving u what u pay for like these companies made stuff and put there all to it in the past then now but the price goes up but the quality dont",
"sentiment": "Neutral",
"id": 123
},
{
"text": "I clicked on this thinking iron bars I have no idea why",
"sentiment": "Neutral",
"id": 678
},
{
"text": "Love the RE movie theme in the background",
"sentiment": "Positive",
"id": 544
},
{
"text": "This is crazy!",
"sentiment": "Positive",
"id": 597
},
{
"text": "I love that Tom is in Georgia! I would have never expected to see all these towns on Tom's video.",
"sentiment": "Positive",
"id": 70
},
{
"text": "Good on ya Tom. Aircraft rotating and both ailerons pointing skyward!\ud83d\ude02",
"sentiment": "Positive",
"id": 136
},
{
"text": "Based on dozens of past examples, there's no reason to believe they aren't just making a vehicle for monetization.",
"sentiment": "Neutral",
"id": 128
},
{
"text": "Isn't Martian regolith incredibly toxic?,(reply>), Yep! Well at least some of it is. I wanted to address that more in this video - about having to remove toxic perchlorates - but I spoke about it on another video on my channel recently so didn't want to add an extra minute to this one!",
"sentiment": "Neutral",
"id": 80
},
{
"text": "ARM can get bent",
"sentiment": "Neutral",
"id": 496
},
{
"text": "Loved this video.......I've learned so much over the last 3 years of watching YouTube. It's opened my mind to so many topics and taught me so much about algorithms....I have little knowledge of AI but have spent all this time being guided by them and only now can I see what was working behind the scenes. It's amazing....and gives me great hope for the future. I know I've became a better person and have a better understanding of the world because of my time on YouTube. <br>I may not understand it all.....but my mind in blown all the same.",
"sentiment": "Positive",
"id": 501
},
{
"text": "One step closer to a turbolift.",
"sentiment": "Neutral",
"id": 122
},
{
"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",
"sentiment": "Positive",
"id": 39
},
{
"text": "Great interaction between two great contributors to society , enjoyed this episode and looks like you two good guys did too.<br>Nice One !",
"sentiment": "Positive",
"id": 36
},
{
"text": "nicely said my friend!\ud83e\udd19\u2764\ud83c\uddfa\ud83c\uddf8",
"sentiment": "Positive",
"id": 4895
},
{
"text": "Can\u2019t wait to see what lift tom goes to see this June!",
"sentiment": "Positive",
"id": 281
},
{
"text": "Real life rick",
"sentiment": "Neutral",
"id": 344
},
{
"text": "Come on, Samsung! You and Opera can do it! Let's put a bullet in that feral animal's head.",
"sentiment": "Positive",
"id": 140
},
{
"text": "It's incredible what human beings can create.",
"sentiment": "Positive",
"id": 115
},
{
"text": "The comment section is gold \ud83e\udd23",
"sentiment": "Positive",
"id": 197
},
{
"text": "Some scientists come across as aloof (NDT) or fail to explain things simply. Brian is the best",
"sentiment": "Neutral",
"id": 254
},
{
"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.\"",
"sentiment": "Neutral",
"id": 335
},
{
"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.",
"sentiment": "Neutral",
"id": 349
},
{
"text": "worst rewind ever.",
"sentiment": "Negative",
"id": 4793
},
{
"text": "Is this on I-tunes?",
"sentiment": "Neutral",
"id": 119
},
{
"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",
"sentiment": "Neutral",
"id": 498
},
{
"text": "oh hi mark",
"sentiment": "Neutral",
"id": 118
},
{
"text": "Really excited to hear the ocean meet the storm in this interview! :O",
"sentiment": "Positive",
"id": 687
},
{
"text": "Can we all agree that it sitting at 100% for 5 minutes is an issue though?",
"sentiment": "Neutral",
"id": 44
},
{
"text": "What.. is the point this video is trying to get across to me? I don't understand what the video is specifically about.",
"sentiment": "Negative",
"id": 82
},
{
"text": "So giving people the option to increse privacy is bad? How much are people going to let facebook get away with?",
"sentiment": "Neutral",
"id": 337
},
{
"text": "Not sure how an increase is even possible when schools are dropping standards to keep them within an achievable range",
"sentiment": "Neutral",
"id": 598
},
{
"text": "Regular Show irl",
"sentiment": "Neutral",
"id": 627
},
{
"text": "This is great idea",
"sentiment": "Positive",
"id": 107
},
{
"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.",
"sentiment": "Neutral",
"id": 251
},
{
"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!",
"sentiment": "Positive",
"id": 356
},
{
"text": "\"tech news could be the difference between life and death\" can confirm, watched the tech news and then I died",
"sentiment": "Neutral",
"id": 610
},
{
"text": "lol",
"sentiment": "Positive",
"id": 228
},
{
"text": "James, you are soo beautiful! More tech news!!!!!",
"sentiment": "Positive",
"id": 721
},
{
"text": "Tom, you are a legend for doing that",
"sentiment": "Positive",
"id": 139
},
{
"text": "I don't think it's actually 'waste water'. I believe it's the cooling water for reactors and equipment. it never gets contaminated, which is what waste water is considered",
"sentiment": "Neutral",
"id": 158
},
{
"text": "What happened to her towel?",
"sentiment": "Neutral",
"id": 479
},
{
"text": "I LOVED THIS VIDEO!",
"sentiment": "Positive",
"id": 724
},
{
"text": "Waaaaaay beyond interesting!",
"sentiment": "Positive",
"id": 155
},
{
"text": "Boomerang 2.0",
"sentiment": "Neutral",
"id": 467
},
{
"text": "No one can tell a story like Tom can!",
"sentiment": "Positive",
"id": 779
},
{
"text": "ranger of death he\u2019s not that good of a youtuber tbh... most of his subscribers are probably people who liked him in 2013 and abondoned their accounts.",
"sentiment": "Negative",
"id": 4782
},
{
"text": "I can not imagine my Xbox controller without haptic feedback",
"sentiment": "Neutral",
"id": 745
},
{
"text": "Is it in stock?",
"sentiment": "Neutral",
"id": 134
},
{
"text": "I dropped chrome... they removed option to mute tabs because commercials, so fuck them.",
"sentiment": "Negative",
"id": 322
},
{
"text": "This ep was almost not pg13",
"sentiment": "Neutral",
"id": 174
},
{
"text": "Cyberpunk 2077, need I say more?",
"sentiment": "Neutral",
"id": 751
},
{
"text": "Tom seems to have aged like 5 years in the span of 6 months",
"sentiment": "Neutral",
"id": 39
},
{
"text": "yes he does paul does deserve it",
"sentiment": "Positive",
"id": 4839
},
{
"text": "i only listen to real music",
"sentiment": "Neutral",
"id": 194
},
{
"text": "What was that morse code at the end",
"sentiment": "Neutral",
"id": 8
},
{
"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.",
"sentiment": "Positive",
"id": 252
},
{
"text": "Finally linus has become a man he's finally growing a beard lol",
"sentiment": "Positive",
"id": 684
},
{
"text": "so basically with teleportation you can do what fujitora do",
"sentiment": "Neutral",
"id": 65
},
{
"text": "The Java VM is a propaganda machine that subjugates the truth.",
"sentiment": "Neutral",
"id": 299
},
{
"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?",
"sentiment": "Negative",
"id": 69
},
{
"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.",
"sentiment": "Positive",
"id": 385
},
{
"text": "...Breakdancing is an Olympic sport now, but not diving?",
"sentiment": "Neutral",
"id": 847
},
{
"text": "Lex asked the most important question you can ask.<br><br>\u201cWhat does it mean to be good?\u201d<br><br>Every religion agrees that having the wisdom to be good is the most important thing. And then slaughter each other over the differences of opinion about what that means.<br><br>That\u2019s so entirely human and incompatible with any discussion about \u201cwhat is good\u201d that those that have violence in their hearts immediately disqualify themselves from the religion.,(reply>), *\u2709\ufe0f\ud83d\udcca\ud83d\udce9\ua731\u1d07\u0274\u1d05 \u1d0d\u1d07 \u1d00 \u1d05\u026a\u0280\u1d07\u1d04\u1d1b \u1d0d\u1d07\ua731\ua731\u1d00\u0262\u1d07\ua731 \u0280\u026a\u0262\u029c\u1d1b \u1d00\u1d21\u1d00\u028f,",
"sentiment": "Positive",
"id": 38
},
{
"text": "It's still legendary after 5 years",
"sentiment": "Positive",
"id": 96
},
{
"text": "Joji is that you",
"sentiment": "Neutral",
"id": 146
},
{
"text": "Anyone know the best way we can voice our opinion so they listen also the more the better",
"sentiment": "Neutral",
"id": 545
},
{
"text": "Well I am impressed.",
"sentiment": "Positive",
"id": 26
},
{
"text": "Okay BOOMER!",
"sentiment": "Positive",
"id": 878
},
{
"text": "lmao\ud83d\ude02\ud83d\ude02",
"sentiment": "Positive",
"id": 4830
},
{
"text": "Now we just need this but with audio",
"sentiment": "Neutral",
"id": 150
},
{
"text": "At some point, someone needs to make a supercut of Lex asking \"Who is GOD\". I'd love to have all the takes together in a video.",
"sentiment": "Neutral",
"id": 831
},
{
"text": "What an amazing interview. Blessings",
"sentiment": "Positive",
"id": 583
},
{
"text": "Software developed by Ford?<br>We're all dead.",
"sentiment": "Neutral",
"id": 452
},
{
"text": "Colton should host more",
"sentiment": "Neutral",
"id": 754
},
{
"text": "same. this was bad",
"sentiment": "Negative",
"id": 4792
},
{
"text": "Tom still got distracted by ducks.",
"sentiment": "Neutral",
"id": 797
},
{
"text": "i took the claAaAaAaAaAaAams to poland",
"sentiment": "Neutral",
"id": 317
},
{
"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",
"sentiment": "Neutral",
"id": 451
},
{
"text": "sounds interesting not gonna lie",
"sentiment": "Positive",
"id": 162
},
{
"text": "\"throw another nuclear rod on the barbe\" is a great quote",
"sentiment": "Positive",
"id": 72
},
{
"text": "500 million is such a joke",
"sentiment": "Negative",
"id": 291
},
{
"text": "Congrats Riley!<br>Can we have Riley's baby to host techlinked next?",
"sentiment": "Positive",
"id": 214
},
{
"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....",
"sentiment": "Positive",
"id": 390
},
{
"text": "Nice \"hackers\" movie reference in thumbnail \ud83d\ude0e\ud83d\ude02",
"sentiment": "Positive",
"id": 697
},
{
"text": "This surprises me nil about CC and is exactly something that scumbag of a company would do",
"sentiment": "Positive",
"id": 16
},
{
"text": "If it is any consolation Tom, you look great for a 50 year old.",
"sentiment": "Positive",
"id": 519
},
{
"text": "I would love to see some poker players OR world leaders play this game x)",
"sentiment": "Positive",
"id": 549
},
{
"text": "bruh imma live in iceland this sounds amazing",
"sentiment": "Neutral",
"id": 141
},
{
"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.",
"sentiment": "Negative",
"id": 112
},
{
"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 :)",
"sentiment": "Positive",
"id": 133
},
{
"text": "Thank you Lex you're an great host and off course we love representor of Muslim community Imam Omar.\u2764",
"sentiment": "Positive",
"id": 449
},
{
"text": "The only thing exciting so far are my intense allergies finally kicking in for the Fall season :D",
"sentiment": "Positive",
"id": 481
},
{
"text": "Hi Linus. You do realise that it is your first mention of the Rome CPU since it is launched. Why only now?",
"sentiment": "Neutral",
"id": 258
},
{
"text": "damn they have a flavor with mexican in the name yet they dont ship to Mexico. guess ill have to eat traditional junk food. <b>*sigh*</b>",
"sentiment": "Negative",
"id": 645
},
{
"text": "This clock is scarily accurate to how I experience time.",
"sentiment": "Neutral",
"id": 216
},
{
"text": "If you are reading this comment: BE BLESSED!!! x1,000,000!!!\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b",
"sentiment": "Positive",
"id": 885
},
{
"text": "How does youtbe not strike this video for misinformation???",
"sentiment": "Negative",
"id": 515
},
{
"text": "Riley has some real Steve Carrell vibes",
"sentiment": "Neutral",
"id": 394
},
{
"text": "\"wooden keycaps for old guys like linus\"",
"sentiment": "Neutral",
"id": 365
},
{
"text": "It seems to be fine now. Just a few minor hiccups now and then.",
"sentiment": "Neutral",
"id": 794
},
{
"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",
"sentiment": "Neutral",
"id": 15
},
{
"text": "When i watch this mans vid i feel like im in physic class",
"sentiment": "Neutral",
"id": 698
},
{
"text": "pauk walker i\u0307s good man \"(",
"sentiment": "Positive",
"id": 4995
},
{
"text": "They are not hacked. They just made it open-source. So they could fix bugs and glitches quickly.",
"sentiment": "Neutral",
"id": 410
},
{
"text": "well if you look at it without a sound, anyone would think I am indeed watching a music video..",
"sentiment": "Neutral",
"id": 286
},
{
"text": "I think I got clickbaited by the thumbnail",
"sentiment": "Negative",
"id": 58
},
{
"text": "Anyone else get a \"Mark Zuckerberg\" vibe from her...",
"sentiment": "Neutral",
"id": 506
},
{
"text": "5:26 \u201clets give the people what they want\u201d ",
"sentiment": "Neutral",
"id": 4827
},
{
"text": "So which one uses the most power ?",
"sentiment": "Neutral",
"id": 1051
},
{
"text": "The description says \"Buy AMD on Amazon\", is it the whole company that's being sold or just a meagre amount of shares?",
"sentiment": "Neutral",
"id": 852
},
{
"text": "Xbox not apple Phil Spencer i thought i was on drugs oh wait I am and this guy is way messed up",
"sentiment": "Negative",
"id": 53
},
{
"text": "thanks for that high pitched sound at the end to let my know my hearing is still good",
"sentiment": "Neutral",
"id": 288
},
{
"text": "i'm getting a new iPhone tomorrow because android is horrible for software updates and Google goes and does this...dammit",
"sentiment": "Negative",
"id": 118
},
{
"text": "What are we going to do when we've pissed away all the gold?",
"sentiment": "Neutral",
"id": 88
},
{
"text": "Meh Many beaches in Brazil are mildly radioactive, because they contain natural Thorium, and some daughter products. The beaches are still in use.",
"sentiment": "Neutral",
"id": 353
},
{
"text": "The next video was a Captain Disillusion video",
"sentiment": "Neutral",
"id": 103
},
{
"text": "What is happening with the audio in the outro",
"sentiment": "Neutral",
"id": 14
},
{
"text": "I do not understand how Tom can come off as \"just a youtuber\" who isn't professional, just does a lot of research and tries to get by while saying sentences like \"So I chartered a plane\"",
"sentiment": "Negative",
"id": 67
},
{
"text": "I loved it.",
"sentiment": "Positive",
"id": 139
},
{
"text": "The \"h\" in \"hablo\" is silent",
"sentiment": "Neutral",
"id": 21
},
{
"text": "webcam mic e.e",
"sentiment": "Neutral",
"id": 235
},
{
"text": "If they actually release Mario Sunshine on the Switch I will figuratively shit myself.",
"sentiment": "Negative",
"id": 490
},
{
"text": "Dimensions outside our own, there here around us now, it's the blanket effect they know and feed off us but there's reasons of why we don't know and have been keep away from this knowledge. The higher the dimension the species feed off the other greys forth Reptilians' fifth and so on.",
"sentiment": "Neutral",
"id": 712
},
{
"text": "true atleast he's at peace now",
"sentiment": "Positive",
"id": 4981
},
{
"text": "Back in secondary school they had old crts and I couldn't use them because the noise and flickering of the screen would make it so i couldn't focus or even hear myself think dunno why though",
"sentiment": "Neutral",
"id": 872
},
{
"text": "now imagine if they build all citys in the USA like this, people wouldn't be do car dependent then",
"sentiment": "Positive",
"id": 20
},
{
"text": "wow Lex really struggled with the idea that there is no point trying to communicate with us because we are so dumb. The perfect example of why they wouldn't bother.",
"sentiment": "Positive",
"id": 617
},
{
"text": "I am surprised that they haven't found a way to shut you down yet?????.",
"sentiment": "Negative",
"id": 33
},
{
"text": "it feels strange seeing two of my favourite youtubers from different parts of the internet all on one video aha",
"sentiment": "Neutral",
"id": 310
},
{
"text": "shafted?",
"sentiment": "Neutral",
"id": 4
},
{
"text": "Never been this fast,(reply>), Me neither XD",
"sentiment": "Neutral",
"id": 74
},
{
"text": "its not rubbish officer, its midden",
"sentiment": "Negative",
"id": 233
},
{
"text": "Amazing setting for a video. Love it!",
"sentiment": "Positive",
"id": 499
},
{
"text": "The intro and mustache...<br><br><br>I like",
"sentiment": "Positive",
"id": 623
},
{
"text": "Cool to have had you in my home city, would have been cool to meet you",
"sentiment": "Positive",
"id": 24
},
{
"text": "why are people surprised...",
"sentiment": "Negative",
"id": 689
},
{
"text": "good",
"sentiment": "Positive",
"id": 4910
},
{
"text": "Damn Tom, you always find such interesting things. I've been to Florida a few times but I've never heard of this or the mermaid shows you did last week...",
"sentiment": "Positive",
"id": 837
},
{
"text": "You should give it inputs like a human baby, then give it more power as it\u2019s intelligence grows... the inputs are audio, electro mechanical feedback from the motors etc. Just show it babies and make it try to mimic, it\u2019s interests will grow like human interest.... you can\u2019t make AI, it needs to grow in a specific way.",
"sentiment": "Neutral",
"id": 889
},
{
"text": "Imagine having an iPhone.... Makes me laugh \ud83d\ude02",
"sentiment": "Positive",
"id": 153
},
{
"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",
"sentiment": "Neutral",
"id": 97
},
{
"text": "Now take a look at Twitter \u2013 there's stuff like this there as well. And you can report it all day long.",
"sentiment": "Neutral",
"id": 311
},
{
"text": "Information theory in physics has been a thing already for a long time, don't you worry, Demis :)",
"sentiment": "Neutral",
"id": 534
},
{
"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",
"sentiment": "Neutral",
"id": 110
},
{
"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",
"sentiment": "Positive",
"id": 454
},
{
"text": "i literally have completely no idea who 90% of the people in this are",
"sentiment": "Negative",
"id": 4798
},
{
"text": "A salad grown in MMS...? I feel like Miles Power might have something to say about that.",
"sentiment": "Neutral",
"id": 520
},
{
"text": "All this and no mention of Internet Explorers progress bar? -- Oh for a nickle for each of the times I had a user of my apps call up with a \"bug\" that was because the IE progress bar showed it was still loading or \"almost done\" or that the progress bar just started again. (Progress bar entirely decoupled from ANY actual estimate of time and was purely put there to make the user feel better).",
"sentiment": "Negative",
"id": 101
},
{
"text": "Damn it Linus you triggered Siri\ud83d\ude21",
"sentiment": "Negative",
"id": 769
},
{
"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.",
"sentiment": "Neutral",
"id": 75
},
{
"text": "Patrolling the Mojave almost makes you wish for a... martian salad.",
"sentiment": "Neutral",
"id": 575
},
{
"text": "does it have to be people only you know? yall are arrogant asf!",
"sentiment": "Negative",
"id": 4816
},
{
"text": "This is genius",
"sentiment": "Positive",
"id": 763
},
{
"text": "My stomach hurts from the anxiety of these games",
"sentiment": "Negative",
"id": 714
},
{
"text": "The people that actually wrote the filter, Weebl doing the graphics, and a Continuity AnnounceMatt? This video has it all!",
"sentiment": "Neutral",
"id": 275
},
{
"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",
"sentiment": "Positive",
"id": 202
},
{
"text": "It's an LED thingi current. I have the same thing going on 2 years with modern electronics.",
"sentiment": "Neutral",
"id": 386
},
{
"text": "Oh man, I LOVE slides like those!",
"sentiment": "Positive",
"id": 741
},
{
"text": "I'm actually thinking that the iconic chrome stovetop teapot that whistles is far more famous than the Utah teapot.",
"sentiment": "Neutral",
"id": 504
},
{
"text": "Hi Lex, This is an awesome interview. Your intro was so inspiring. Thank you for the work you do and have shared so lovingly. May 2022 be a year of more clarity for us all. Happy New Year.",
"sentiment": "Positive",
"id": 826
},
{
"text": "same, worst one yet",
"sentiment": "Negative",
"id": 4806
},
{
"text": "the best",
"sentiment": "Positive",
"id": 4947
},
{
"text": "Gran Turismo 7 is the first always online game that has pissed me off. Really a gran turismo game.",
"sentiment": "Negative",
"id": 371
},
{
"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.",
"sentiment": "Neutral",
"id": 176
},
{
"text": "I believe I saw one of these in person",
"sentiment": "Neutral",
"id": 585
},
{
"text": "\u201cI have TWO magnifying glasses!!!\u201d",
"sentiment": "Positive",
"id": 554
},
{
"text": "I thought loading bars and etc. were a lie. More to make users not think the system where frozen. And restart.",
"sentiment": "Neutral",
"id": 323
},
{
"text": "Well Lincoln got the mathematics correct, so all's well that ends well.",
"sentiment": "Positive",
"id": 953
},
{
"text": "he reminds me of that guy from dmv from blacklist!",
"sentiment": "Neutral",
"id": 439
},
{
"text": "you mean life is a race and we are all racing to die? pretty sure thats not how i see it but teenagers are getting more emo by the day :p",
"sentiment": "Neutral",
"id": 4872
},
{
"text": "When you were talking about the 3050 and went \"that's the.. actual.. price you'll pay\", you seriously grounded me again dude damn",
"sentiment": "Negative",
"id": 513
},
{
"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",
"sentiment": "Positive",
"id": 462
},
{
"text": "Why not the white noise and the beep together? People hear white noise all the time, why would they think it's a truck backing up? The beep, however, you only hear from those trucks. It's a very distinct sound and easy to associate with them without you having to try. So, you'd have the beep to alert you to \"truck!\", and the white noise to tell you where it's coming from.",
"sentiment": "Neutral",
"id": 14
},
{
"text": "A combination of Skype and Discord XD",
"sentiment": "Neutral",
"id": 182
},
{
"text": "And there is a Teapot Museum in a tiny little town in South Carolina USA. I wonder if they know about this?",
"sentiment": "Neutral",
"id": 731
},
{
"text": "Linus is on roll ..!!!",
"sentiment": "Neutral",
"id": 88
},
{
"text": "If I ever moved to Georgia, I now know what city I'd want to live in.",
"sentiment": "Neutral",
"id": 656
},
{
"text": "AWh why at the end of the video AHHHHHHH thAt HuRt<br>Seriously y",
"sentiment": "Neutral",
"id": 223
},
{
"text": "Right, Packing my jack hammer and C4 sticks...",
"sentiment": "Neutral",
"id": 750
},
{
"text": "How come I dont live here?",
"sentiment": "Positive",
"id": 120
},
{
"text": "Lex good work!! I like your style",
"sentiment": "Positive",
"id": 660
},
{
"text": "why do all your thumbnails look like ads",
"sentiment": "Neutral",
"id": 738
},
{
"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.",
"sentiment": "Negative",
"id": 26
},
{
"text": "I watch this for the lulz, not for the news. Never disappoints in the realm of lulz",
"sentiment": "Positive",
"id": 600
},
{
"text": "but vivo nex 3 charges 100%, 4000mAh in like less than 15 min with its 120w charger..",
"sentiment": "Neutral",
"id": 903
},
{
"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.",
"sentiment": "Positive",
"id": 203
},
{
"text": "omg if you can actually draw and be an artist you wouldnt need computers yeah huh",
"sentiment": "Neutral",
"id": 550
},
{
"text": "Amazing!",
"sentiment": "Positive",
"id": 707
},
{
"text": "it may have been different with strangers.",
"sentiment": "Neutral",
"id": 812
},
{
"text": "amd to the rescue... again, time and time again, amd is the dark knight fighting against industry stomping and feature taking criminals",
"sentiment": "Positive",
"id": 11
},
{
"text": "TechLinked using MKBHD for cloud",
"sentiment": "Neutral",
"id": 533
},
{
"text": "Tom is single handedly keeping the airplane industry alive",
"sentiment": "Neutral",
"id": 891
},
{
"text": "Would",
"sentiment": "Neutral",
"id": 1027
},
{
"text": "One the toughest topics to discuss, let alone in public. Thanks for this podcast.",
"sentiment": "Positive",
"id": 94
},
{
"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.",
"sentiment": "Positive",
"id": 87
},
{
"text": "love you guys",
"sentiment": "Positive",
"id": 440
},
{
"text": "Ok, where do I sign?",
"sentiment": "Neutral",
"id": 224
},
{
"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.",
"sentiment": "Negative",
"id": 387
},
{
"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.",
"sentiment": "Negative",
"id": 167
},
{
"text": "$2*1.5= $3<br>$3 / 5 = $.60<br>They couldn't have both put a dollar in.",
"sentiment": "Neutral",
"id": 99
},
{
"text": "reminds me of the paths in the Upper Peninsula of Michigan during the winter...everyone uses their snowmobiles...the local authorities actually groom all the trails and paths. Many business only have sleds parked in front of them.",
"sentiment": "Neutral",
"id": 1213
},
{
"text": "Yo dawg, I heard you like elevators..",
"sentiment": "Neutral",
"id": 748
},
{
"text": "I've just noticed that i press like button to Tom's video even before starting to watch the video.",
"sentiment": "Positive",
"id": 89
},
{
"text": "i came into this with no expectations and was still disappointed",
"sentiment": "Negative",
"id": 4772
},
{
"text": "I have just one question: What the hell is consciousness? It's being talked about as-a-matter-of-factly throughout the interview. But in the end i haven't a clue what it is.",
"sentiment": "Negative",
"id": 532
},
{
"text": "Accurate intro",
"sentiment": "Positive",
"id": 32
},
{
"text": "it is indeed a masterpiece ",
"sentiment": "Positive",
"id": 4874
},
{
"text": "Riley when did you become a mind reader? I was going to go do something else but you called me out and you had my full attention ;)",
"sentiment": "Positive",
"id": 106
},
{
"text": "Bring back old Riley",
"sentiment": "Neutral",
"id": 446
},
{
"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.",
"sentiment": "Neutral",
"id": 505
},
{
"text": "he is a legend in my heart",
"sentiment": "Positive",
"id": 4891
},
{
"text": "\"so i chartered a plane\"<br>i love this channel",
"sentiment": "Positive",
"id": 718
},
{
"text": "when you use that magic weapon from the travelling merchant:",
"sentiment": "Neutral",
"id": 404
},
{
"text": "Yeahhh we won't be able to pay back for our gpu!! Only to sell more cmp!!<br>Only amd in the future for me^^",
"sentiment": "Positive",
"id": 672
},
{
"text": "Linus, showing why he's the boss, again",
"sentiment": "Neutral",
"id": 343
},
{
"text": "That is damn cool.. where did you film that by the way? I want my room like that :P",
"sentiment": "Positive",
"id": 234
},
{
"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.",
"sentiment": "Neutral",
"id": 400
},
{
"text": "IKEA still sells the snail hat \ud83d\udc0c",
"sentiment": "Neutral",
"id": 79
},
{
"text": "when i see new posts from lex i get excited like im stagediving to BadBrains @ CBGB's in 1982",
"sentiment": "Positive",
"id": 835
},
{
"text": "Holy shit...never thought of it that way! Blew my mind!",
"sentiment": "Positive",
"id": 77
},
{
"text": "Guys the trailer is so lit, it might not be hl3 but it look gooood",
"sentiment": "Positive",
"id": 694
},
{
"text": "again i get that but the english creators aren't anybody nobodie knows them why not add like for example pewdiepie as an english creator or just reconizable english people enstade of these nobodies. also that emoji disproves your whole argument.",
"sentiment": "Negative",
"id": 4784
},
{
"text": "Thanks for inspiring me to make my own youtube channel",
"sentiment": "Positive",
"id": 716
},
{
"text": "Could you look at the first \"5G connected forest\" \ud83d\ude01",
"sentiment": "Neutral",
"id": 802
},
{
"text": "Lex: \"Some kid sitting in the middle of nowhere might not even have a 1080.\"<br>Me: <b>*overclocks 980ti for training fire*</b>",
"sentiment": "Neutral",
"id": 772
},
{
"text": "Galaxy is big , do we really understand what time means? I dont think so, we have some sort of ideas, but if we would really understand what time is , we would be able to manipulate it , but say nothing is impossible we just need to put really smart people at work and pay them good.",
"sentiment": "Neutral",
"id": 1007
},
{
"text": "As I got to know Lex through his podcast I was kind of thinking his naivitate was calculated. I am now revisiting that assumption.",
"sentiment": "Neutral",
"id": 433
},
{
"text": "You got Martin Rees!! Gravity Propulsion is UFO easy, thanks.",
"sentiment": "Positive",
"id": 1223
},
{
"text": "If you come to Central Ontario, ill take you out to a nice Canadian Dinner Tom. Great video as always",
"sentiment": "Positive",
"id": 582
},
{
"text": "This is longer than the JRE Alex Jones podcast!!!",
"sentiment": "Neutral",
"id": 637
},
{
"text": "I don't roll. Just like to listen to this man speak.",
"sentiment": "Positive",
"id": 713
},
{
"text": "I think it is cool, to sometimes be prooven wrong",
"sentiment": "Positive",
"id": 663
},
{
"text": "Correct! 6000 hulls!",
"sentiment": "Positive",
"id": 569
},
{
"text": "I think based on the amount of diverse life here on earth there is 0 other life anywhere else its all here on earth! \ud83c\udf0e",
"sentiment": "Neutral",
"id": 9
},
{
"text": "That sound on the end <br><br>And he just said protect your hearing",
"sentiment": "Neutral",
"id": 168
},
{
"text": "Not to defend steam's 30% cut, but it is easier to take a smaller cut, when you have a worse service and not even near the same features. Just look a steam servers for multiplayer, running long after a game has stop making any money, or have even been added after the it's none-steam servers was taken down, compare that to Epic/Microsoft and EA that closes them down.",
"sentiment": "Positive",
"id": 7
},
{
"text": "I will never call Facebook meta. Ever.",
"sentiment": "Neutral",
"id": 33
},
{
"text": "No Philippines for Youtube Premium?! Ugh.",
"sentiment": "Neutral",
"id": 200
},
{
"text": "Great one Lex! This whole playing with monsters thing needs to stop.",
"sentiment": "Positive",
"id": 821
},
{
"text": "For some reason, my brain tries to fill the abscense of music with some weird random music out of nowhere",
"sentiment": "Neutral",
"id": 570
},
{
"text": "Finally<br><br><br><br><br>Someone who thought the same",
"sentiment": "Neutral",
"id": 81
},
{
"text": "My boy tom needs some minoxidil rogaine",
"sentiment": "Neutral",
"id": 771
},
{
"text": "42069 subs with a sexy lizard? that\u2019s me and my bestie when watching this. who the hell are half these people.",
"sentiment": "Negative",
"id": 4787
},
{
"text": "I loved the jumper series for that, he took it so seriously and expanded on the power of teleportation instead of just saying: this guy can teleport places, now he does shit",
"sentiment": "Positive",
"id": 798
},
{
"text": "The upper floors of that tower look terrifying. <br><br>I would never go inside.<br>10/10 very impressive",
"sentiment": "Neutral",
"id": 103
},
{
"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.",
"sentiment": "Positive",
"id": 65
},
{
"text": "Don't care",
"sentiment": "Negative",
"id": 785
},
{
"text": "Was fortunate to purchase ada at .06usd because I believed in this mans.",
"sentiment": "Neutral",
"id": 45
},
{
"text": "I really don\u2019t mind getting out of one and walk to another 2 meters away",
"sentiment": "Neutral",
"id": 778
},
{
"text": "Why I get this recommend",
"sentiment": "Neutral",
"id": 756
},
{
"text": "What if Tom Scott's videos were filmed like Porno's",
"sentiment": "Neutral",
"id": 326
},
{
"text": "Theres a movie based on the giver's book, Mindblowing as this podcast",
"sentiment": "Neutral",
"id": 40
},
{
"text": "Well said, Lex. Cheers.",
"sentiment": "Positive",
"id": 580
},
{
"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 ?",
"sentiment": "Neutral",
"id": 124
},
{
"text": "That beard tho",
"sentiment": "Neutral",
"id": 329
},
{
"text": "Dude your videos are really quite interesting. Rare to find one of a kinda on YouTube these days...keep it up!",
"sentiment": "Positive",
"id": 56
},
{
"text": "this is BS, you can cut a file from desktop, and paste it to a drive, and it will start at a high speed, then just drop off, for no reason, despite memory capacity of your computer. even when your machine is not performing any other tasks",
"sentiment": "Negative",
"id": 95
},
{
"text": "Oh noooo.... Anyway..",
"sentiment": "Negative",
"id": 336
},
{
"text": "you are such a",
"sentiment": "Neutral",
"id": 206
},
{
"text": "Ahg, that sound at the end though. Rude Tom, rude...",
"sentiment": "Neutral",
"id": 509
},
{
"text": "\"I have done nothing but teleport bread for 3 days\"",
"sentiment": "Neutral",
"id": 514
},
{
"text": "Now 1+ fuckkkkkkkkkkkkkkk",
"sentiment": "Negative",
"id": 528
},
{
"text": "In Eastern Europe there were coal and nuclear powerplants to provide warm water and heating through similar pipes to cities. That idea itself is not just for geothermal power plants.",
"sentiment": "Neutral",
"id": 83
},
{
"text": "Awwww, no mention of lesbian space crime.",
"sentiment": "Neutral",
"id": 79
},
{
"text": "this song is very good!",
"sentiment": "Positive",
"id": 4975
},
{
"text": "Loved it!!",
"sentiment": "Positive",
"id": 173
},
{
"text": "Great podcast as always. Thanks \ud83c\uddf5\ud83c\uddea",
"sentiment": "Positive",
"id": 345
},
{
"text": "@astralbelt asmr is so stupid... shouldn't have it at all.",
"sentiment": "Negative",
"id": 4773
},
{
"text": "I have never heard Lex this animated before.",
"sentiment": "Neutral",
"id": 456
},
{
"text": "what's up with the beard",
"sentiment": "Neutral",
"id": 840
},
{
"text": "And here i am using opera GX",
"sentiment": "Neutral",
"id": 541
},
{
"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",
"sentiment": "Neutral",
"id": 239
},
{
"text": "u guys are the best<br>this channel is just wat i wanted xD",
"sentiment": "Positive",
"id": 170
},
{
"text": "That was Riley? I thought it was Linus...",
"sentiment": "Neutral",
"id": 272
},
{
"text": "Doesn\u2019t Kim Jong Un have one of these?",
"sentiment": "Neutral",
"id": 844
},
{
"text": "*****\u00a0this video is made for paul, that's why i say ''he deserves it''! \u2665",
"sentiment": "Positive",
"id": 4849
},
{
"text": "Discoveries are still made on the planet and even elsewhere in the solar system. Heck even elsewhere in the universe",
"sentiment": "Neutral",
"id": 615
},
{
"text": "cant wait fior the first rgb acer backpack",
"sentiment": "Positive",
"id": 537
},
{
"text": "Aye lemme get this techlinked at at LEAST 300fps though",
"sentiment": "Neutral",
"id": 1002
},
{
"text": "Waiting for that parker square diss track",
"sentiment": "Neutral",
"id": 240
},
{
"text": "AMD would probably be even worse than Intel and NVidia combined given the same market domination these competitors enjoyed.",
"sentiment": "Neutral",
"id": 884
},
{
"text": "Good god, the dry humour is amazing.",
"sentiment": "Negative",
"id": 6
},
{
"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",
"sentiment": "Positive",
"id": 507
},
{
"text": "how many milli amps?",
"sentiment": "Neutral",
"id": 273
},
{
"text": "they are",
"sentiment": "Neutral",
"id": 114
},
{
"text": "But is it still there??",
"sentiment": "Neutral",
"id": 836
},
{
"text": "Alas, a place where my golf carts can feel at home",
"sentiment": "Neutral",
"id": 696
},
{
"text": "I've been there almost every year since i was 4 . Its lovely",
"sentiment": "Positive",
"id": 201
},
{
"text": "At 23 I'm incapable of hearing anything above ~14.5KHz I know exactly why. Given the opportunity I probably wouldn't do it again, none the less I really enjoyed my teenage years of loud heavy metal",
"sentiment": "Neutral",
"id": 459
},
{
"text": "Ask me about robots",
"sentiment": "Neutral",
"id": 109
},
{
"text": "42069 subs with a sexy lizard? me too. i thought 2017 was bad but this is worst.",
"sentiment": "Negative",
"id": 4791
},
{
"text": "Best Rick roll in history",
"sentiment": "Positive",
"id": 438
},
{
"text": "but, can you ride it yet?",
"sentiment": "Neutral",
"id": 558
},
{
"text": "I don't understand the whole \"gaming keyboard\" thing. Don't people on computers all day want a split keyboard. When I was in college (typing uphill in the snow both ways) all of us programmers wanted split keyboards. I've used a split keyboard for decades to prevent carpal tunnel. I don't get these ultra tiny keyboards.",
"sentiment": "Neutral",
"id": 313
},
{
"text": "dont u dare quit this podcast",
"sentiment": "Neutral",
"id": 98
},
{
"text": "This is already happening imo, we can only emulate the server locally, but that is a lot of effort. Reverse engineering is hard.",
"sentiment": "Neutral",
"id": 573
},
{
"text": "I used to swim in waste water from power plant....",
"sentiment": "Neutral",
"id": 563
},
{
"text": "I enjoyed that thank you Sally",
"sentiment": "Positive",
"id": 229
},
{
"text": "what was that noise at the end was it morse code .O.",
"sentiment": "Neutral",
"id": 361
},
{
"text": "that hand rail ruling is beyond bizzare..",
"sentiment": "Negative",
"id": 503
},
{
"text": "If the tom hardy section didnt hit you right in your patriotism, feels,\" and love for jiu-jitsu all at once idk if we can be <a href=\"\"http://friends.lol/\"\">friends.lol</a>\",(reply>), s\u1d07\u0274\u1d05 \u1d00 \u1d0d\u1d07ss\u1d00\u0262\u1d07\ud83d\udc46\ud83c\udffd\ud83d\udc46\ud83c\udffd\u2026",
"sentiment": "Neutral",
"id": 67
},
{
"text": "I've been there, its actually really cool",
"sentiment": "Positive",
"id": 125
},
{
"text": "Subscribed to soph for her honesty!<br>Mike played the game perfectly, Rohin and Sam played reactively",
"sentiment": "Neutral",
"id": 342
},
{
"text": "There are dozens of battery chemistries, some of the more modern batteries don't use cobalt and in the near future we will be using sodium or calcium instead of lithium, batteries will be incredibly cheap and easy to recycle... Give it 5 years.",
"sentiment": "Neutral",
"id": 393
},
{
"text": "Rocking that new beard and hairstye is TIGHT! Lenovo, bring on that nipple!",
"sentiment": "Positive",
"id": 395
},
{
"text": "you're not alone xd",
"sentiment": "Positive",
"id": 4808
},
{
"text": "I wish Ron was a real product",
"sentiment": "Positive",
"id": 688
},
{
"text": "sounds like a dem trying to sell something",
"sentiment": "Neutral",
"id": 180
},
{
"text": "But everything lit up isn't always a star look how bright Venus is. I have a lot to say but I won't,although I will say they are here but ask the American Indian how their meeting worked out.",
"sentiment": "Neutral",
"id": 518
},
{
"text": "Just going by the title, that seems on the low end for a geology video...",
"sentiment": "Negative",
"id": 722
},
{
"text": "This a much needed conversation in a world full of Fake News. Thanks Lex",
"sentiment": "Positive",
"id": 717
},
{
"text": "Really hope the dice weren't surprisingly hurtful.",
"sentiment": "Negative",
"id": 548
},
{
"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.",
"sentiment": "Neutral",
"id": 271
},
{
"text": "...and suddenly a wild Dorothy appeared",
"sentiment": "Neutral",
"id": 74
},
{
"text": "Hah, use Firefox so I only need half a gig of ram to open 70 tabs",
"sentiment": "Neutral",
"id": 784
},
{
"text": "Damn I have only been to the top of that building not the swimming pool. Really cool and welcome to Canada Tom Scott!",
"sentiment": "Positive",
"id": 827
},
{
"text": "YouTube music is terrible but YouTube red is awesome",
"sentiment": "Positive",
"id": 110
},
{
"text": "what a bunch of pieces of shit.",
"sentiment": "Negative",
"id": 539
},
{
"text": "Hes either 23 or 50",
"sentiment": "Neutral",
"id": 298
},
{
"text": "Do you reckon the gorilla should go for the kimura Vs the bear and lion?",
"sentiment": "Neutral",
"id": 430
},
{
"text": "is that Snowden?",
"sentiment": "Neutral",
"id": 636
},
{
"text": "that cimon dude looks like a early adoption of kvn... i need a kvn in my life!",
"sentiment": "Neutral",
"id": 483
},
{
"text": "astral belt that was how ridiculous at that part. they drop stuff they have never made an asmr. so wtf so confused",
"sentiment": "Negative",
"id": 4796
},
{
"text": "thank you Lex I appreciate this Podcast very much",
"sentiment": "Positive",
"id": 109
},
{
"text": "this video didnt age well because there is new leaks again",
"sentiment": "Neutral",
"id": 304
},
{
"text": "Wow, that was an unexpected reminder of Mortality.",
"sentiment": "Neutral",
"id": 285
},
{
"text": "Ya declining windows 11 update was the best decision.",
"sentiment": "Neutral",
"id": 493
},
{
"text": "If you are watching in 2020, you have a nice taste in music,(reply>), Ok",
"sentiment": "Positive",
"id": 221
},
{
"text": "Thanks sir.",
"sentiment": "Positive",
"id": 43
},
{
"text": "Clever zero carbon way to cross a river indeed!",
"sentiment": "Positive",
"id": 830
},
{
"text": "best song ever",
"sentiment": "Positive",
"id": 4848
},
{
"text": "Imagine the engines fail and he crash lands.",
"sentiment": "Neutral",
"id": 383
},
{
"text": "you forgot a lot of us are not elitists in AMD and other CPU users are not going to laugh at Intel users",
"sentiment": "Neutral",
"id": 287
},
{
"text": "Gordon vs apex predators conversation was hilarious. The disgust on John's face when he was asked how he would fair against these animal's.",
"sentiment": "Neutral",
"id": 106
},
{
"text": "thx bro its my birthday too",
"sentiment": "Positive",
"id": 4890
},
{
"text": "N-no i wasn't i was just... okay you got me.",
"sentiment": "Neutral",
"id": 282
},
{
"text": "very interested in build guides! please do a advanced and thanks this video was very informative keep up the great work!",
"sentiment": "Positive",
"id": 34
},
{
"text": "It's time for the dick pics! I mean.... quick bits",
"sentiment": "Neutral",
"id": 116
},
{
"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",
"sentiment": "Neutral",
"id": 263
},
{
"text": "Who has the keys to the millennium dome. I have an idea.",
"sentiment": "Neutral",
"id": 853
},
{
"text": "I want a CIGAR HOLDER in my bathroom. Part of being a gentleman.",
"sentiment": "Neutral",
"id": 112
},
{
"text": "Honestly bro i think you should shave it all off, it would look great",
"sentiment": "Neutral",
"id": 125
},
{
"text": "Never before have I subscribed to someone from just one video. Until now.",
"sentiment": "Positive",
"id": 49
},
{
"text": "Black belt? Nah, he still jew belt.",
"sentiment": "Neutral",
"id": 100
},
{
"text": "Like in the comments of every music video on youtube: <br>Who is still watching in 2018?",
"sentiment": "Neutral",
"id": 246
},
{
"text": "this one was changed my life i like it\u2764\u2764\u2764\u2764",
"sentiment": "Positive",
"id": 4909
},
{
"text": "The humidity must be unbearable.",
"sentiment": "Neutral",
"id": 204
},
{
"text": "Hey its just 58 :D",
"sentiment": "Neutral",
"id": 1253
},
{
"text": "I like this format so much...you guys make this fun and informative. Love it.",
"sentiment": "Positive",
"id": 237
},
{
"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.",
"sentiment": "Positive",
"id": 369
},
{
"text": "My God! What an interesting discussion!",
"sentiment": "Positive",
"id": 484
},
{
"text": "Anybody on mobile have the new comments section? I just got it and it really sucks.",
"sentiment": "Negative",
"id": 790
},
{
"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.",
"sentiment": "Neutral",
"id": 241
},
{
"text": "Because you had no instruments, you had an impossible task to stop the spinning. That was the ENTIRE point. If you cannot fly by instrument, you cannot keep the box from spinning. So you did nothing wrong, Tom.",
"sentiment": "Neutral",
"id": 683
},
{
"text": "Brilliant interview! Thank you Lex and Omar Suleiman,(reply>), *\u270d\ufe0f\u270d\ufe0f\u270d\ufe0f\ud83d\udd1d<br> Let's communicate. <br> \ud83d\udde8\ufe0f\ud83d\udde8\ufe0f\ud83d\udde8\ufe0f\u2934\ufe0f\u270d\ufe0f\u270d\ufe0f*",
"sentiment": "Positive",
"id": 28
},
{
"text": "Saw a non-functional one of these at the Norwich Aviation Museum in the UK.",
"sentiment": "Neutral",
"id": 746
},
{
"text": "What a beautiful conversation. One of the few podcast episodes that I\u2019ve listened to more than once \u2764,(reply>), Thanks for your comment. Reach out, I've got something to introduce you to!!!\ud83d\udc46",
"sentiment": "Positive",
"id": 54
},
{
"text": "Used to go to a youth club in that church in Middleton, never once heard anything about a coin heist",
"sentiment": "Neutral",
"id": 502
},
{
"text": "I didnt even hear the white noise. I heard the beep and got nervous as if i was about to get run over.",
"sentiment": "Neutral",
"id": 5
},
{
"text": "someone download this before it is deleted",
"sentiment": "Neutral",
"id": 161
},
{
"text": "computers are synthetic organisms in a way",
"sentiment": "Neutral",
"id": 107
},
{
"text": "Definitely sharing this one. Thanks Lex!",
"sentiment": "Positive",
"id": 398
},
{
"text": "Lex, I clearly see how much you struggle to digest the complexity of the universe.",
"sentiment": "Neutral",
"id": 217
},
{
"text": "I never considered life bombing dead worlds . . . but that's a great idea someone should start working on",
"sentiment": "Positive",
"id": 508
},
{
"text": "press f to pay respects for the 19m dislikes.",
"sentiment": "Negative",
"id": 4779
},
{
"text": "Doesnt seem to be sufficient to gain superpower. Prefer the bite of a radiated grizzly.",
"sentiment": "Neutral",
"id": 172
},
{
"text": "I've actually dreamed too often of that kind of elevator...",
"sentiment": "Positive",
"id": 142
},
{
"text": "This process only makes sense; as any outdoorsman knows, you drink from the stream where the animals drink.",
"sentiment": "Positive",
"id": 12
},
{
"text": "One of the most stupid community ever",
"sentiment": "Negative",
"id": 443
},
{
"text": "good or been better \u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764",
"sentiment": "Positive",
"id": 4860
},
{
"text": "Stay safe your a legend man",
"sentiment": "Positive",
"id": 643
},
{
"text": "Am i gonna get a super power, is that why you were recomended to me",
"sentiment": "Neutral",
"id": 319
},
{
"text": "So finally the GPU prices will be more uniform globally",
"sentiment": "Neutral",
"id": 805
},
{
"text": "This is sooooo cool !!",
"sentiment": "Positive",
"id": 3
},
{
"text": "I still want Lucky back \ud83d\ude41",
"sentiment": "Negative",
"id": 324
},
{
"text": "Nice to will be knowing the origin of that successful Maths show on Netflix when it airs.",
"sentiment": "Neutral",
"id": 236
},
{
"text": "They should make a rule. TechLinked only gets 1 take.",
"sentiment": "Neutral",
"id": 134
},
{
"text": "Your beard is weird",
"sentiment": "Negative",
"id": 230
},
{
"text": "I learnt that if you are on a budget for a project, buy stuff, keep the receipt, return to store when done..",
"sentiment": "Neutral",
"id": 105
},
{
"text": "Yay for palm now I can upgrade from my palm pilot 200",
"sentiment": "Neutral",
"id": 47
},
{
"text": "Why is Riley speaking with a strange voice? :D",
"sentiment": "Positive",
"id": 376
},
{
"text": "love paul walker also rip l love him best movie actor of all time",
"sentiment": "Positive",
"id": 4965
},
{
"text": "in super monkey ball 2: level advanced extra 10, that teapot is used.",
"sentiment": "Neutral",
"id": 189
},
{
"text": "How old are you Tom?",
"sentiment": "Neutral",
"id": 409
},
{
"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!",
"sentiment": "Positive",
"id": 232
},
{
"text": "Bixby still sucks.",
"sentiment": "Negative",
"id": 284
},
{
"text": "I wonder if the Juicero is there",
"sentiment": "Neutral",
"id": 461
},
{
"text": "I have been thinking about buying a old spec graphics card, if the price is right. All I want is to play all games at least at 1080p, 720p might be ok I just want to game any game without paying thousands on a graphics card..",
"sentiment": "Neutral",
"id": 668
},
{
"text": "This title is a lie, Apple loves our money.",
"sentiment": "Negative",
"id": 564
},
{
"text": "where are the other 7?",
"sentiment": "Neutral",
"id": 740
},
{
"text": "can we get a second Instagram co-founder podcasted, please?",
"sentiment": "Neutral",
"id": 58
},
{
"text": "So on The junkenstein REVENGE gamemode on Nintendo switch Mercys face is so buggy",
"sentiment": "Neutral",
"id": 816
},
{
"text": "skip the cut scene",
"sentiment": "Neutral",
"id": 138
},
{
"text": "BRAVOOOOO!",
"sentiment": "Positive",
"id": 144
},
{
"text": "ranger of death pewds wouldn\u2019t even wanna be part of this trash",
"sentiment": "Negative",
"id": 4778
},
{
"text": "I don't agree with your word placement. It should be 'overwatch is ... bad on switch' because it is the switch version not a seperet game.<br>Not that it's ever grammatically correct but i think in this context it's aspesaly agreeges.",
"sentiment": "Negative",
"id": 690
},
{
"text": "First off A-10's for the win.",
"sentiment": "Neutral",
"id": 529
},
{
"text": "please... more people like this!!! thank you",
"sentiment": "Positive",
"id": 114
},
{
"text": "Cool!",
"sentiment": "Positive",
"id": 137
},
{
"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",
"sentiment": "Neutral",
"id": 247
},
{
"text": "I ordered a volta cable from Wednesdays video link. Pretty hyped to get it honestly.",
"sentiment": "Neutral",
"id": 120
},
{
"text": "It's the best podcasts ever,(reply>), T\u029c\u1d00\u0274\u1d0b\ua731...\ua731\u1d07\u0274\u1d05 \u1d0d\u1d07 \u1d00 \u1d05\u026a\u0280\u1d07\u1d04\u1d1b \u1d0d\u1d07\ua731\ua731\u1d00\u0262\u1d07 \u1d0f\u0274<br><br>T\u1d07\u026a\u1d07\u0262\u0280\u1d00\u1d0d \u1d21\u026a\u1d1b\u029c \u1d1b\u029c\u1d07 \u1d00\u0299\u1d0f\u1d20\u1d07\ud83d\udd1d.",
"sentiment": "Positive",
"id": 55
},
{
"text": "These component names are really getting out of hand almost an incomprehensible level of combinations of letters and numbers that will make sense and yet..",
"sentiment": "Neutral",
"id": 489
}
] |