File size: 106,290 Bytes
0a09242 |
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 |
[
{
"start": 0.0,
"end": 7.0,
"text": " This is an MPB Think Radio Podcast."
},
{
"start": 7.0,
"end": 10.0,
"text": " What is chalkboard chat?"
},
{
"start": 10.0,
"end": 13.0,
"text": " It's an MPB education podcast."
},
{
"start": 13.0,
"end": 18.0,
"text": " It's a variety show providing information and resources for teachers, students, parents,"
},
{
"start": 18.0,
"end": 22.0,
"text": " guardians, and everyday people on various topics."
},
{
"start": 22.0,
"end": 25.0,
"text": " It's learning something new with every publication."
},
{
"start": 25.0,
"end": 26.0,
"text": " It's a chalkboard chat."
},
{
"start": 26.0,
"end": 32.0,
"text": " Find the podcast or listen from chalkboardchat.npbonline.org."
},
{
"start": 32.0,
"end": 38.0,
"text": " Hello there, good morning."
},
{
"start": 38.0,
"end": 41.0,
"text": " Welcome into everyday tech on MPB Think Radio."
},
{
"start": 41.0,
"end": 42.0,
"text": " I'm your host, Jay White."
},
{
"start": 42.0,
"end": 46.0,
"text": " I'm here today with Jeremy Thompson, the Hattiesburg computer doctor."
},
{
"start": 46.0,
"end": 51.0,
"text": " Everyday tech is MPB Think Radio show about consumer technology in your very own personal IT"
},
{
"start": 51.0,
"end": 54.0,
"text": " department all wrapped up into one convenient package."
},
{
"start": 54.0,
"end": 55.0,
"text": " We can help you fix it."
},
{
"start": 55.0,
"end": 57.0,
"text": " We can help you keep it safe."
},
{
"start": 57.0,
"end": 58.0,
"text": " And we can do both."
},
{
"start": 58.0,
"end": 59.0,
"text": " Well, so we can't."
},
{
"start": 59.0,
"end": 61.0,
"text": " Jeremy and Wilts can."
},
{
"start": 61.0,
"end": 63.0,
"text": " So you're in good hands either way."
},
{
"start": 63.0,
"end": 65.0,
"text": " I can tell you who's on the phone."
},
{
"start": 65.0,
"end": 66.0,
"text": " That's about all I can do."
},
{
"start": 66.0,
"end": 67.0,
"text": " We want to hear from you."
},
{
"start": 67.0,
"end": 69.0,
"text": " I can tell you to kick it a couple times."
},
{
"start": 69.0,
"end": 70.0,
"text": " Unplug it from the wall."
},
{
"start": 70.0,
"end": 71.0,
"text": " Count to 10."
},
{
"start": 71.0,
"end": 72.0,
"text": " We don't count to 10."
},
{
"start": 72.0,
"end": 73.0,
"text": " You count to about three and a half."
},
{
"start": 73.0,
"end": 74.0,
"text": " Then you plug it back in."
},
{
"start": 74.0,
"end": 75.0,
"text": " That's what I do anyway."
},
{
"start": 75.0,
"end": 76.0,
"text": " So that's what I can get."
},
{
"start": 76.0,
"end": 77.0,
"text": " I can get you there."
},
{
"start": 77.0,
"end": 79.0,
"text": " Then you want to call Jeremy."
},
{
"start": 79.0,
"end": 80.0,
"text": " We want to hear from you today."
},
{
"start": 80.0,
"end": 82.0,
"text": " Got any tech problems issues or questions."
},
{
"start": 82.0,
"end": 84.0,
"text": " You have a story or experience to share."
},
{
"start": 84.0,
"end": 87.0,
"text": " You can email us every tech at MPBOnline.org."
},
{
"start": 87.0,
"end": 89.0,
"text": " It is the week of Black Friday."
},
{
"start": 89.0,
"end": 91.0,
"text": " That is a big shop and holiday."
},
{
"start": 91.0,
"end": 93.0,
"text": " I don't know if it was what it once was."
},
{
"start": 93.0,
"end": 95.0,
"text": " Because everybody does so much online."
},
{
"start": 95.0,
"end": 100.0,
"text": " But it is a huge, huge week for the consumer technology industry."
},
{
"start": 100.0,
"end": 109.0,
"text": " It is interesting that a little juxtaposition that this is coming right on the back end of a week where I don't know how many things are going to happen."
},
{
"start": 109.0,
"end": 113.0,
"text": " So how many 30, 40,000 tech workers were laid off."
},
{
"start": 113.0,
"end": 117.0,
"text": " There's some, some uninspired irony right there."
},
{
"start": 117.0,
"end": 119.0,
"text": " But it is interesting that this is happening."
},
{
"start": 119.0,
"end": 124.0,
"text": " Man, what a terrible time to be laid off right before Thanksgiving going right into the holidays."
},
{
"start": 124.0,
"end": 126.0,
"text": " I don't know that there's a good time to be laid off."
},
{
"start": 126.0,
"end": 128.0,
"text": " So that was pretty smart to say, Jay."
},
{
"start": 128.0,
"end": 129.0,
"text": " Anyway, Jeremy, good morning."
},
{
"start": 129.0,
"end": 130.0,
"text": " What's going on, man?"
},
{
"start": 130.0,
"end": 133.0,
"text": " How have things been the past week or so at the shop for you?"
},
{
"start": 133.0,
"end": 135.0,
"text": " Hey, good morning, Jay."
},
{
"start": 135.0,
"end": 142.0,
"text": " First off, I want to say that you bring a lot more to the table than just telling who's on the phone."
},
{
"start": 142.0,
"end": 151.0,
"text": " A lot of times you offer some very good perspective on things and you also your techie, but not so techie that you're lost in the woods."
},
{
"start": 151.0,
"end": 154.0,
"text": " Can you give us a good outside looking in perspective?"
},
{
"start": 154.0,
"end": 155.0,
"text": " And we need that, man."
},
{
"start": 155.0,
"end": 158.0,
"text": " I mean, like that's, that's what that's the heartbeat of this show."
},
{
"start": 158.0,
"end": 159.0,
"text": " Oh, man."
},
{
"start": 159.0,
"end": 161.0,
"text": " I get some technical."
},
{
"start": 161.0,
"end": 163.0,
"text": " People won't know what I'm talking about."
},
{
"start": 163.0,
"end": 171.0,
"text": " So Jay, you help Ray, me and you're like, all right, let's keep this, you know, let's let's keep this educational from the listeners without."
},
{
"start": 171.0,
"end": 173.0,
"text": " That's very sweet of you to say."
},
{
"start": 173.0,
"end": 176.0,
"text": " I'm home trained just about well enough to be dangerous."
},
{
"start": 176.0,
"end": 178.0,
"text": " That's about that's about what I am."
},
{
"start": 178.0,
"end": 179.0,
"text": " Thanksgiving week."
},
{
"start": 179.0,
"end": 183.0,
"text": " And I'm extremely thankful for you and everything you bring to the show."
},
{
"start": 183.0,
"end": 184.0,
"text": " Well, thank you, man."
},
{
"start": 184.0,
"end": 185.0,
"text": " Likewise."
},
{
"start": 185.0,
"end": 186.0,
"text": " I miss Will."
},
{
"start": 186.0,
"end": 192.0,
"text": " Man, he's been he's been underneath it since he switched jobs and he's working for the county over here and they got him."
},
{
"start": 192.0,
"end": 194.0,
"text": " They got him doing all all the business."
},
{
"start": 194.0,
"end": 196.0,
"text": " So, but I hope special guests."
},
{
"start": 196.0,
"end": 197.0,
"text": " That's right."
},
{
"start": 197.0,
"end": 201.0,
"text": " I look forward to the next time that we get to have them on the show."
},
{
"start": 201.0,
"end": 202.0,
"text": " Oh, no, no."
},
{
"start": 202.0,
"end": 203.0,
"text": " What's been happening, man?"
},
{
"start": 203.0,
"end": 207.0,
"text": " As things get into the holiday, do things ramp up for you or do they slow down?"
},
{
"start": 207.0,
"end": 212.0,
"text": " Do you get a whole bunch of people calling with new stuff that they don't know how to work or how does that work for you during the holidays?"
},
{
"start": 212.0,
"end": 215.0,
"text": " I think it's kind of a mixed bag."
},
{
"start": 215.0,
"end": 219.0,
"text": " It can be busy and sometimes it can be really slow."
},
{
"start": 219.0,
"end": 222.0,
"text": " This week, it's been pretty busy."
},
{
"start": 222.0,
"end": 233.0,
"text": " I have put my location on campus set by appointment only because, you know, if it is slow, I don't want to just be sitting up there to win my thumbs, which I've done."
},
{
"start": 233.0,
"end": 235.0,
"text": " Plenty of times in the past."
},
{
"start": 235.0,
"end": 238.0,
"text": " So I've learned to adapt to that."
},
{
"start": 238.0,
"end": 245.0,
"text": " But I've been working on a gaming rig for a client that's been with me for many years."
},
{
"start": 245.0,
"end": 252.0,
"text": " His alienware fell victim to a small."
},
{
"start": 252.0,
"end": 254.0,
"text": " Roach infestation."
},
{
"start": 254.0,
"end": 262.0,
"text": " So we salvage what we could from it, which was basically just his storage draws in his RAM."
},
{
"start": 262.0,
"end": 268.0,
"text": " And moved all his stuff over to a new case that is Roach free."
},
{
"start": 268.0,
"end": 273.0,
"text": " And he tells me that he likes to play flight simulator."
},
{
"start": 273.0,
"end": 274.0,
"text": " Okay."
},
{
"start": 274.0,
"end": 277.0,
"text": " And he said, I need this rig to really get down."
},
{
"start": 277.0,
"end": 280.0,
"text": " He said, I will do 12 hour flights."
},
{
"start": 280.0,
"end": 281.0,
"text": " So."
},
{
"start": 281.0,
"end": 286.0,
"text": " And with flight simulator, it's it's it's literal time."
},
{
"start": 286.0,
"end": 287.0,
"text": " Yeah."
},
{
"start": 287.0,
"end": 295.0,
"text": " I mean, I you might there might be some mod the speed up or whatever, but like, you know, if you fly from Texas to London, if you can even do that."
},
{
"start": 295.0,
"end": 298.0,
"text": " Um, it takes as long as it takes."
},
{
"start": 298.0,
"end": 299.0,
"text": " So."
},
{
"start": 299.0,
"end": 305.0,
"text": " I, uh, I had to fire this rig up and let it run."
},
{
"start": 305.0,
"end": 310.0,
"text": " Test for over 12 hours because he said that his previous rig would crash on him."
},
{
"start": 310.0,
"end": 315.0,
"text": " Not sure if that was due to the Roach infestation or some other issue with his build."
},
{
"start": 315.0,
"end": 320.0,
"text": " But, um, I was able to run a 12 hour test on it."
},
{
"start": 320.0,
"end": 323.0,
"text": " Um, pass with flying colors."
},
{
"start": 323.0,
"end": 331.0,
"text": " This GPU got around 73 C, which is it's pretty warm, but for running for 12 hours, that's also pretty good."
},
{
"start": 331.0,
"end": 340.0,
"text": " So he will be able to do his flight sims and, uh, he'll be able to do him over the next given break."
},
{
"start": 340.0,
"end": 342.0,
"text": " So we got everything."
},
{
"start": 342.0,
"end": 350.0,
"text": " Yes, 73 Celsius. Is that what you're saying? That's hot, but not hot for, uh, for a mega mega gaming rig."
},
{
"start": 350.0,
"end": 361.0,
"text": " Well, it's not really hot for processors. In fact, I've noticed that these new Intel EVO processors, they live on thermal throttling."
},
{
"start": 361.0,
"end": 365.0,
"text": " So it's like, uh, new, the new, the new approaches. All right."
},
{
"start": 365.0,
"end": 373.0,
"text": " I'm gonna let it get so hot that it tunes itself down and, um, this is how it works. It just gets hot. Yeah."
},
{
"start": 373.0,
"end": 378.0,
"text": " So 73 C for, uh, your tech is not super hot. Yeah."
},
{
"start": 378.0,
"end": 381.0,
"text": " And it's not too hot for your GPU. I mean, it is hot. It's hot."
},
{
"start": 381.0,
"end": 386.0,
"text": " But it's not so hot that the hardware can't handle it now long term."
},
{
"start": 386.0,
"end": 395.0,
"text": " You know, depending on how many 12 hours since he does over the course of five years, um, he might burn out his graphics card pretty fast."
},
{
"start": 395.0,
"end": 399.0,
"text": " I, I don't know, but graphics cards."
},
{
"start": 399.0,
"end": 429.0,
"text": " I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I"
},
{
"start": 429.0,
"end": 459.0,
"text": " I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I think that's why I"
},
{
"start": 459.0,
"end": 472.06,
"text": " think that's when you talk about later on then talk about that that is when you talk about that is when you talk about reality and the real world you want to I believe that's Film"
},
{
"start": 472.06,
"end": 480.26,
"text": " WHATgrens is that the real world that you think that's \ubcf8\ufffd\uc2dcu Gubb truth that's what I know that's why I think that's when I think that's what I know that's the real world medium and it's not what it's for movies but it's like a huge"
},
{
"start": 480.26,
"end": 480.66,
"text": " screen in the ocean for a long time, but it's like a huge screen in the ocean for a long time, but it's like a huge screen for a long time, but it's like a huge screen in magic. Without surgery, there's never a specific thing that's, for every single thing that you have subject to remains legal"
},
{
"start": 480.66,
"end": 484.82,
"text": " without any adequacy, there were a lot of things going on a big issue like the different Syndrome or debates that you have during training, that's why Iqu\u00e9out"
},
{
"start": 484.82,
"end": 493.62,
"text": " Yeah, yeah, it's it was it was a lot of fun playing with it. I actually did go download it because if you have Xbox Game Pass you have access to it"
},
{
"start": 493.62,
"end": 500.14,
"text": " But man it is huge. Oh, yeah, it's a beast. I'm like a 100 plus gigabyte"
},
{
"start": 500.62,
"end": 502.62,
"text": " File once you get the game installed"
},
{
"start": 503.38,
"end": 509.94,
"text": " To upload a bunch of airports and stuff like that. I have no experience with it"
},
{
"start": 509.94,
"end": 513.9399999999999,
"text": " But I am gonna you know go fly them once in a while. It's pretty cool"
},
{
"start": 514.1,
"end": 517.46,
"text": " Yeah, that's that game has has quite a legacy"
},
{
"start": 518.2600000000001,
"end": 522.1,
"text": " Lots of people have self taught themselves to some extent how to fly"
},
{
"start": 522.94,
"end": 524.94,
"text": " using that game"
},
{
"start": 524.94,
"end": 531.22,
"text": " That's yeah, that's scary, but also kind of cool at the same time. I mean it can't be scary"
},
{
"start": 531.22,
"end": 533.7800000000001,
"text": " It's been used to do scary things so yeah"
},
{
"start": 534.6600000000001,
"end": 542.34,
"text": " So plenty of stuff to get into is there a tech thing this year that you have circled that you're hoping maybe you get"
},
{
"start": 542.82,
"end": 544.82,
"text": " During the holidays"
},
{
"start": 545.3000000000001,
"end": 550.62,
"text": " Not kind of I hit you out of nowhere with that one. Yeah, I don't know where and you keep you keep up"
},
{
"start": 550.62,
"end": 553.94,
"text": " You get tech stuff through I mean you're a tech guy so it's not like you know"
},
{
"start": 554.34,
"end": 559.94,
"text": " You're out of the tech circle through the year so you get you get cool tech stuff all through the calendar year"
},
{
"start": 559.94,
"end": 565.0600000000001,
"text": " But is there one that you've been holding back maybe that you would get for that big gift for Christmas from somebody?"
},
{
"start": 565.98,
"end": 567.5,
"text": " Okay, so"
},
{
"start": 567.5,
"end": 569.5,
"text": " Actually the answer is yes"
},
{
"start": 569.66,
"end": 578.02,
"text": " There is something that I have been holding back on for a while. Okay. I have had the same laptop for like six years and"
},
{
"start": 579.22,
"end": 581.9,
"text": " I recently replaced it with a"
},
{
"start": 582.74,
"end": 584.74,
"text": " spiffier rig"
},
{
"start": 585.74,
"end": 587.74,
"text": " And I went a little"
},
{
"start": 588.3,
"end": 590.7,
"text": " A little more than I would usually go"
},
{
"start": 591.58,
"end": 594.06,
"text": " Because I do a little bit of"
},
{
"start": 594.82,
"end": 596.82,
"text": " Gaming on the go now"
},
{
"start": 597.82,
"end": 603.1400000000001,
"text": " So I got a gaming laptop which I normally wouldn't do because I don't"
},
{
"start": 603.58,
"end": 609.98,
"text": " Like how hot these things get because they I mean they eventually just cook themselves to death. Yeah having said that"
},
{
"start": 609.98,
"end": 616.58,
"text": " I found a good deal on one and it was like you know what I've had this laptop long enough and it is certain to"
},
{
"start": 617.38,
"end": 619.38,
"text": " To show its age"
},
{
"start": 619.74,
"end": 623.0200000000001,
"text": " You know it's time to move on so I did I"
},
{
"start": 623.66,
"end": 625.66,
"text": " Found a great deal"
},
{
"start": 626.78,
"end": 629.26,
"text": " It was six hundred dollars of"
},
{
"start": 630.22,
"end": 636.5799999999999,
"text": " One laptop. Yeah, and it had a 500 gig SSD in it and it's 16 gigs around and"
},
{
"start": 637.42,
"end": 639.42,
"text": " It had"
},
{
"start": 639.42,
"end": 641.42,
"text": " What the graphics card was but it's the higher-end"
},
{
"start": 642.66,
"end": 646.86,
"text": " AMD there's so many numbers out there now, but yeah, I"
},
{
"start": 647.38,
"end": 650.18,
"text": " I opted for that because I was like man 600 bucks off now"
},
{
"start": 650.18,
"end": 658.9799999999999,
"text": " It's like it's the older generation, but it's still it's still plenty spiffy for what I do. Yeah, and I've gotten to use it a little bit"
},
{
"start": 659.9799999999999,
"end": 665.06,
"text": " But I recently upgraded the SSD in and I put a two-charibot in there and I went ahead"
},
{
"start": 665.06,
"end": 671.3399999999999,
"text": " I was like why not this is my uber rig, you know, so I bumped the ram up to 32 gigs"
},
{
"start": 672.26,
"end": 677.5,
"text": " Wow, yeah, it's got an RX 6800 in it, which is the mobile 6800"
},
{
"start": 678.5,
"end": 684.54,
"text": " GPU which is it's pretty spiffy. It's right in the same line is like a 3070"
},
{
"start": 684.78,
"end": 690.42,
"text": " So that was what I was looking for and the price I was like man, that's yes. All right, time it"
},
{
"start": 691.42,
"end": 695.94,
"text": " Absolutely, that's you know that I've been I've had a"
},
{
"start": 696.7,
"end": 698.7,
"text": " gaming rig"
},
{
"start": 698.7,
"end": 703.14,
"text": " in my computer room we have like an extra bedroom and it's kind of"
},
{
"start": 703.14,
"end": 708.42,
"text": " It's become my computer room and I have a gaming rig in there and"
},
{
"start": 709.02,
"end": 713.9,
"text": " It's kind of been taken over by my sons who do all right who to a bunch of gaming and"
},
{
"start": 715.5,
"end": 721.54,
"text": " So I don't and I try not to get in there way with that and want them to have their thing"
},
{
"start": 721.54,
"end": 724.78,
"text": " I do have a laptop that I bought"
},
{
"start": 724.78,
"end": 731.42,
"text": " Hmm maybe 18 months two years ago and I bought it to have two and one functionality"
},
{
"start": 731.54,
"end": 739.9,
"text": " It's too big. I didn't I didn't get exactly what I wanted but it is a a windows laptop with touchscreen"
},
{
"start": 739.9,
"end": 743.06,
"text": " It's Lenovo. It's it's one of the the the cheaper"
},
{
"start": 744.26,
"end": 748.3399999999999,
"text": " General consumption gigs or rigs that you could have bought it best by a couple of years ago"
},
{
"start": 748.3399999999999,
"end": 752.2199999999999,
"text": " I was like 500 or something like that, which is said it's 15 inches. It is"
},
{
"start": 752.78,
"end": 759.5,
"text": " And that's a little big for touchscreen. It's it's kind of like how what's the point? It is it is and I I"
},
{
"start": 759.66,
"end": 762.86,
"text": " Love the functionality of it. I just want something smaller"
},
{
"start": 762.86,
"end": 767.08,
"text": " It's so clunky to pull around because it's not a two and one you can't really use it as a"
},
{
"start": 767.9,
"end": 772.34,
"text": " Like it doesn't fold around all the way and so you can't really use it as a tablet"
},
{
"start": 772.34,
"end": 776.26,
"text": " So I failed in my two for one search or two and one I should say but"
},
{
"start": 776.82,
"end": 778.02,
"text": " and"
},
{
"start": 778.02,
"end": 779.54,
"text": " a friend of mine"
},
{
"start": 779.54,
"end": 782.26,
"text": " Got an older iPad mini and"
},
{
"start": 782.58,
"end": 785.66,
"text": " Dude, it's just the right size. It's the size I want"
},
{
"start": 785.9399999999999,
"end": 791.02,
"text": " It's not the two and one functionality. I want because I mean, and I say this seemingly weekly"
},
{
"start": 791.02,
"end": 797.4599999999999,
"text": " I had a surface pro three back in the day and that I mean, that's the perfect two and one because I'm a Windows guy"
},
{
"start": 797.4599999999999,
"end": 805.16,
"text": " It's it's what I learned first and so it's it's what's intuitive to me even though every other person on earth uses Mac"
},
{
"start": 805.66,
"end": 808.1,
"text": " it's it's still intuitive to me and"
},
{
"start": 808.6999999999999,
"end": 814.88,
"text": " I love the idea of having a touchscreen two and one that can be a tablet but run Windows"
},
{
"start": 814.92,
"end": 816.92,
"text": " That's like that's the dream"
},
{
"start": 817.18,
"end": 822.22,
"text": " But that iPad mini it's so small, but it's still a touchscreen tablet that it's man"
},
{
"start": 822.72,
"end": 826.48,
"text": " The UI of Apple at my ripe old age of 43"
},
{
"start": 826.6,
"end": 832.06,
"text": " Well, I've gotten to the point where that that streamlined interface sure does"
},
{
"start": 832.76,
"end": 838.04,
"text": " Have a lot to offer in that it doesn't screw up ever and it's super easy to use and pretty intuitive"
},
{
"start": 839.04,
"end": 841.04,
"text": " So I'm torn between those things"
},
{
"start": 841.76,
"end": 844.4399999999999,
"text": " If I'm gonna go out and get this get another"
},
{
"start": 845.1999999999999,
"end": 848.12,
"text": " kind of go all in on another surface"
},
{
"start": 848.8399999999999,
"end": 856.5999999999999,
"text": " Pro or maybe not the pro because the pros are a little bit too big and I don't know what they offer in terms of one that's small enough to kind of be a two and one"
},
{
"start": 856.8399999999999,
"end": 858.8399999999999,
"text": " But not be a clunky tablet"
},
{
"start": 859.16,
"end": 865.4,
"text": " But that that iPad mini, but that's a that's a perfect size thing man. I don't know because I do a lot of"
},
{
"start": 866.36,
"end": 867.76,
"text": " Go ahead"
},
{
"start": 867.92,
"end": 872.4,
"text": " I used to have a mini and I really liked it because of what you're saying like it's like the perfect size"
},
{
"start": 872.4,
"end": 874.88,
"text": " It's like a tiny little book you can carry around with you"
},
{
"start": 874.88,
"end": 880.0,
"text": " Yeah, it's nice and when Apple discontinued the mini I was like"
},
{
"start": 880.76,
"end": 882.76,
"text": " They're doing what?"
},
{
"start": 882.76,
"end": 889.64,
"text": " I guess it just what I guess everybody's inclination is to buy the biggest baddest thing right because it can do the most"
},
{
"start": 889.64,
"end": 892.92,
"text": " It has the most power to haul the most of whatever you're trying to do"
},
{
"start": 893.56,
"end": 898.0,
"text": " Right, but where does that leave people in their children because nobody wants to give their kid an iPad pro?"
},
{
"start": 898.0,
"end": 904.02,
"text": " I mean, I personally if I had a kid I wouldn't even give them a mini until they were you know a teenager or so"
},
{
"start": 904.02,
"end": 909.5,
"text": " But I'm a client that would give their kids those minis and they loved them. They give them fixed a lot"
},
{
"start": 909.5,
"end": 914.9599999999999,
"text": " But they still come back to the kid, you know, it was the perfect size like you said and also"
},
{
"start": 915.76,
"end": 917.76,
"text": " recently Apple"
},
{
"start": 918.12,
"end": 923.22,
"text": " They had a major overhaul with iOS because for the last several versions"
},
{
"start": 923.3199999999999,
"end": 931.88,
"text": " They did not natively support touch like as far as like a mouse goes and now you've got the the magic keyboard"
},
{
"start": 932.7,
"end": 936.52,
"text": " Which is a full-on keyboard and touch pad?"
},
{
"start": 936.52,
"end": 944.46,
"text": " Yeah, they're bridging that gap between the MacBook and the iPad and this is where things are gonna start to get blurry because it's like"
},
{
"start": 944.46,
"end": 946.46,
"text": " Well, which one do I need because"
},
{
"start": 947.76,
"end": 952.8199999999999,
"text": " The small ones gonna be pretty good at certain things and in the MacBooks are gonna be the ones that you're used for your"
},
{
"start": 953.14,
"end": 954.68,
"text": " Graphic editing and whatnot"
},
{
"start": 954.68,
"end": 961.28,
"text": " But I'm curious to see what they're gonna do with this because they've never had native mouse support"
},
{
"start": 961.6,
"end": 967.36,
"text": " Until this latest iOS and with these magic keyboards there are several different versions out there"
},
{
"start": 968.76,
"end": 972.3199999999999,
"text": " There's the ones for the 12.9 inch iPad pro"
},
{
"start": 972.48,
"end": 977.0400000000001,
"text": " There's one so the 11 inch iPad pro and there's ones for the iPad air"
},
{
"start": 977.0400000000001,
"end": 982.48,
"text": " So if you're looking to get one of these for your iPad make sure you get the right size and also"
},
{
"start": 982.96,
"end": 988.2800000000001,
"text": " Call and let us know how much you like it because I had to find it to recently upgrade one of these"
},
{
"start": 988.2800000000001,
"end": 992.48,
"text": " I never even seen it and I was blown away because it works really cool"
},
{
"start": 992.7600000000001,
"end": 995.36,
"text": " Absolutely, but as an another thing"
},
{
"start": 995.36,
"end": 1001.32,
"text": " I mean if you've got an opportunity to go to you know a big box store or whatever it is and hold one of these things in your hand"
},
{
"start": 1002.24,
"end": 1006.48,
"text": " That's yeah, that would be something good now if you're buying it for a gift for somebody else"
},
{
"start": 1006.48,
"end": 1007.5200000000001,
"text": " I mean take their word for it"
},
{
"start": 1007.5200000000001,
"end": 1011.72,
"text": " I mean they got a they got to be particular about what they want which is something I'm terrible about"
},
{
"start": 1012.24,
"end": 1014.24,
"text": " Hey Jay what for Christmas? I don't"
},
{
"start": 1015.0,
"end": 1017.08,
"text": " Hangers or something on it, you know, but"
},
{
"start": 1018.08,
"end": 1023.88,
"text": " Yeah, if you can go hold one of these things in your hand and feel you know because I mean as soon as you pick one of these things up"
},
{
"start": 1023.88,
"end": 1025.88,
"text": " If it's what you want your brain is gonna start running"
},
{
"start": 1026.1200000000001,
"end": 1028.1200000000001,
"text": " You're gonna start seeing it, you know"
},
{
"start": 1031.32,
"end": 1036.2,
"text": " I like the keyboard. I like the way the mouth feels or maybe you don't and you want to look at something else"
},
{
"start": 1036.2,
"end": 1041.08,
"text": " But you're buying a gift for numero uno on the same way you gotta go get your hands on it"
},
{
"start": 1041.08,
"end": 1043.08,
"text": " You gotta get some experience with it because"
},
{
"start": 1043.28,
"end": 1046.28,
"text": " Jay you settled on your laptop and you still got buyers"
},
{
"start": 1046.28,
"end": 1050.0,
"text": " Rehorse about it and you're sitting here eyeball on one of these eye pads"
},
{
"start": 1050.0,
"end": 1058.28,
"text": " Or one of these surfaces because you didn't quite fulfill what you were looking for I didn't and it's a it's a it's an awesome laptop"
},
{
"start": 1058.28,
"end": 1060.28,
"text": " I just I want man"
},
{
"start": 1060.8799999999999,
"end": 1068.32,
"text": " To set it up, I mean it's still like five or six steps right and and I've had many is not you just grab it and there it is"
},
{
"start": 1069.52,
"end": 1074.08,
"text": " The battery life on iPads is insanely good"
},
{
"start": 1075.56,
"end": 1079.76,
"text": " I mean you can't nothing stacks up to it. It's not it's not surfaces"
},
{
"start": 1080.76,
"end": 1086.44,
"text": " Any of the definitely no laptop running windows windows still does not sleep well"
},
{
"start": 1087.0800000000002,
"end": 1091.72,
"text": " Anything with an apple logo on it that battery life is nuts and if you hit the off button"
},
{
"start": 1091.72,
"end": 1095.96,
"text": " I mean it's gonna be the same when you turn it on next. It's not like"
},
{
"start": 1096.52,
"end": 1101.24,
"text": " Did my battery die while it was in my bag because that's why that lottery every day"
},
{
"start": 1101.24,
"end": 1109.0800000000002,
"text": " And that's why the reasons for the reasons battery oh my old laptop with that because I would forget to put windows in"
},
{
"start": 1109.3200000000002,
"end": 1113.3600000000001,
"text": " To shut it down rather than put it to sleep and then I pull it out and go oh it died"
},
{
"start": 1113.36,
"end": 1120.24,
"text": " Am I supposed to be still the same thing? Yeah, and you totally busted me out because I'm sitting here looking at this page on the verge website the verge.com"
},
{
"start": 1120.24,
"end": 1126.8,
"text": " And it's the best black Friday iPad deals and here it is. There's a 2021 iPad mini"
},
{
"start": 1127.12,
"end": 1133.76,
"text": " Wi-Fi 64 gig and it's 20% off. It's normally 500 it's 400 right now you can get it at Target or Amazon"
},
{
"start": 1134.56,
"end": 1139.76,
"text": " Not that's a total ad for that, but there you go, but there's there I mean hey, it's black Friday week"
},
{
"start": 1139.84,
"end": 1145.52,
"text": " So there's deals on absolutely everything right now. I feel like we could have talked a whole hour about what we were talking about right there"
},
{
"start": 1146.32,
"end": 1150.64,
"text": " So we can dig some other stuff up right here including this. Let me tell you"
},
{
"start": 1151.36,
"end": 1156.16,
"text": " Jeremy do you if I asked you what could a car manufacturer"
},
{
"start": 1156.96,
"end": 1163.12,
"text": " Locked behind a paywall or what kind of car manufacturer turn into a subscription service"
},
{
"start": 1164.4,
"end": 1169.36,
"text": " Think about that for a second and I'll tell you what Mercedes the German auto manufacturer"
},
{
"start": 1170.0,
"end": 1173.04,
"text": " Has put behind a paywall from Mercedes owners"
},
{
"start": 1173.92,
"end": 1178.32,
"text": " I got you thinking I'll be thinking evil thoughts right exactly"
},
{
"start": 1178.48,
"end": 1182.8799999999999,
"text": " We're talking about whatever is going on in your world if something's broken or something's not acting right"
},
{
"start": 1183.2,
"end": 1186.72,
"text": " And you need somebody that desperately help you try to work through it Jeremy is here"
},
{
"start": 1186.96,
"end": 1189.6,
"text": " I'll also accept your call and I'll be here as well"
},
{
"start": 1189.6,
"end": 1191.84,
"text": " I'll watch while you'll figure it out and fix it"
},
{
"start": 1192.32,
"end": 1199.36,
"text": " Also, you could talk with us about what's on your black Friday list or what's been handed to you mom or dad or grandma or grandpa"
},
{
"start": 1199.4399999999998,
"end": 1201.4399999999998,
"text": " Nana whoever what's been handed to you"
},
{
"start": 1202.32,
"end": 1210.3999999999999,
"text": " And to go buy for black Friday or for the upcoming holiday this is every day tech on MPB think radio with Jeremy Thompson"
},
{
"start": 1210.9599999999998,
"end": 1212.4799999999998,
"text": " I am Jay white"
},
{
"start": 1212.4799999999998,
"end": 1218.08,
"text": " Thanks for listening this morning. I gave you a tease about something that an automaker or I said German automaker"
},
{
"start": 1218.24,
"end": 1220.0,
"text": " Mercedes is doing"
},
{
"start": 1220.0,
"end": 1224.4799999999998,
"text": " They've come up with a subscription a paywall concept for part of their"
},
{
"start": 1225.3600000000001,
"end": 1231.2,
"text": " Their product now they make cars right? So what could what from a car could go behind a paywall and look"
},
{
"start": 1231.52,
"end": 1234.56,
"text": " There are other manufacturers in other parts of the world that may have been doing this for a while"
},
{
"start": 1234.56,
"end": 1240.8,
"text": " But this is the first time I've seen it in man. I'm like that is evil and a fantastic idea at the same time"
},
{
"start": 1240.88,
"end": 1242.48,
"text": " So Jeremy"
},
{
"start": 1242.56,
"end": 1246.56,
"text": " The German auto manufacturer Mercedes has locked faster acceleration"
},
{
"start": 1248.16,
"end": 1249.68,
"text": " In their cars"
},
{
"start": 1249.68,
"end": 1254.24,
"text": " Behind an annual paywall that's $1200"
},
{
"start": 1254.88,
"end": 1259.6000000000001,
"text": " So you can go fast and Mercedes, but if you want to go Mercedes fast sir"
},
{
"start": 1260.48,
"end": 1262.0,
"text": " That'll be a $1200"
},
{
"start": 1262.96,
"end": 1268.48,
"text": " Subscription service fee hundred bucks a month they go faster and the grand scheme of things if I've paid money to buy Mercedes"
},
{
"start": 1268.48,
"end": 1271.8400000000001,
"text": " A hundred bucks a month ain't a big deal if I can really go zoom zoom"
},
{
"start": 1272.88,
"end": 1274.88,
"text": " That's that's fair"
},
{
"start": 1274.88,
"end": 1277.3600000000001,
"text": " I thought that like you were gonna ask me to guess"
},
{
"start": 1278.1599999999999,
"end": 1284.0,
"text": " Um, I went dark dystopia with it in my head. I was like, I don't know air conditioning. Yeah, I did"
},
{
"start": 1285.76,
"end": 1289.6799999999998,
"text": " That would be truly evil, but yeah, I did before the break. I did ask you"
},
{
"start": 1290.3999999999999,
"end": 1295.1999999999998,
"text": " What you thought they might could put in there so I kind of blew that question right there, but holy cow, dude"
},
{
"start": 1296.1599999999999,
"end": 1299.76,
"text": " Here's here's where we are with cars now. I mean like did the"
},
{
"start": 1300.7199999999998,
"end": 1306.1599999999999,
"text": " The mechanism behind cars is completely changed man. This is a computer thing now. So yeah"
},
{
"start": 1307.36,
"end": 1309.36,
"text": " Model of car ownership"
},
{
"start": 1309.36,
"end": 1311.36,
"text": " Absolutely"
},
{
"start": 1311.9199999999998,
"end": 1313.6,
"text": " Absolutely"
},
{
"start": 1313.6799999999998,
"end": 1314.8,
"text": " But yeah"
},
{
"start": 1314.8,
"end": 1320.0,
"text": " Mercedes is the latest manufacturer as they read the story now to to lock an acceleration"
},
{
"start": 1320.3999999999999,
"end": 1325.6799999999998,
"text": " Increase add-on that lets drivers pay to access motor performance their vehicle is already capable of"
},
{
"start": 1326.3999999999999,
"end": 1328.3999999999999,
"text": " the 1200 year"
},
{
"start": 1328.8,
"end": 1333.9199999999998,
"text": " Subscription improves performance by boosting output from the motors by 20 to 24 percent"
},
{
"start": 1334.48,
"end": 1341.04,
"text": " Increasing torque and shaving around 0.8 to 0.9 seconds off a 0 to 60 malprower acceleration"
},
{
"start": 1341.44,
"end": 1343.44,
"text": " When in dynamic drive mode"
},
{
"start": 1343.92,
"end": 1347.68,
"text": " The subscription doesn't come with any physical hardware upgrades instead"
},
{
"start": 1347.68,
"end": 1350.72,
"text": " It simply unlocks the full capabilities that the car already has"
},
{
"start": 1351.28,
"end": 1356.96,
"text": " Indicating that Mercedes intentionally limits performance to later sell as an optional extra"
},
{
"start": 1357.52,
"end": 1360.96,
"text": " acceleration increase that's caps. So this is uh their their"
},
{
"start": 1361.92,
"end": 1368.72,
"text": " Official terminology for it acceleration increase is only available for the Mercedes Mercedes EQ EQE"
},
{
"start": 1369.8400000000001,
"end": 1376.24,
"text": " The EQ EQE okay, and Mercedes EQE QS those are easy things to say electric"
},
{
"start": 1377.1200000000001,
"end": 1381.8400000000001,
"text": " Car models so just on a couple of electric car models can you buy"
},
{
"start": 1382.88,
"end": 1384.88,
"text": " the extra"
},
{
"start": 1384.88,
"end": 1390.88,
"text": " Subscription for zoom as global sales for new cars have fallen recent years manufacturers have pivoted towards"
},
{
"start": 1390.96,
"end": 1396.24,
"text": " selling software updates and features as subscription to get some of that money back"
},
{
"start": 1396.88,
"end": 1398.88,
"text": " That's pretty ingenious"
},
{
"start": 1399.04,
"end": 1402.72,
"text": " We're not selling a whole bunch of cars so how can we make more money on the cars we are selling"
},
{
"start": 1403.76,
"end": 1408.08,
"text": " This is more tolerable in my opinion then Tesla"
},
{
"start": 1408.16,
"end": 1416.08,
"text": " Living in the battery life in your car if you don't pay out. Oh is that an annual fee also or is that just a payout right?"
},
{
"start": 1416.16,
"end": 1419.52,
"text": " Because see if it was a payout right to unlock it and have it that'd be cool"
},
{
"start": 1419.6,
"end": 1427.36,
"text": " But they went immediately for software as a service in a subscription form and I hate that like you know"
},
{
"start": 1427.52,
"end": 1433.2,
"text": " I like the the 90s and 2000s when you installed a piece of software on your computer. It was yours"
},
{
"start": 1434.0,
"end": 1440.32,
"text": " Right, but now everything is subscription based so it's just this is just you know late stage capitalism"
},
{
"start": 1440.4,
"end": 1448.08,
"text": " And this is the way businesses have to do business and I'm it's more tolerable for speed and for battery life"
},
{
"start": 1448.08,
"end": 1452.24,
"text": " Because I mean battery life is about getting where you need to go being efficient"
},
{
"start": 1452.72,
"end": 1458.6399999999999,
"text": " This is about getting there faster. Yeah, so it's it's less of a blow in my opinion. It's not really"
},
{
"start": 1459.52,
"end": 1461.52,
"text": " Too big of an issue"
},
{
"start": 1461.6799999999998,
"end": 1465.12,
"text": " Especially like you said if you've got a Mercedes you're already"
},
{
"start": 1466.1599999999999,
"end": 1470.96,
"text": " You're already up the money to pay for your extra speed if you want it. Yeah, well"
},
{
"start": 1471.52,
"end": 1476.72,
"text": " You're either have the money or your leverage. Yeah, you're you're leveraged"
},
{
"start": 1477.3600000000001,
"end": 1479.84,
"text": " Out there we are in into a Mercedes or"
},
{
"start": 1481.28,
"end": 1486.72,
"text": " One other company another European automaker who's done this BMW sparked outrage"
},
{
"start": 1487.52,
"end": 1491.68,
"text": " Just a couple of months ago by similarly charging $18 a month"
},
{
"start": 1492.88,
"end": 1496.08,
"text": " For subscription in some countries for owners to use the heated seats"
},
{
"start": 1496.8,
"end": 1499.1200000000001,
"text": " That are already installed within its vehicles"
},
{
"start": 1500.08,
"end": 1504.32,
"text": " Just one of many features pay walled by the car manufacturer since 2020"
},
{
"start": 1504.3999999999999,
"end": 1508.32,
"text": " So BMW has been doing this for a while they also also previously tried and failed"
},
{
"start": 1509.12,
"end": 1514.48,
"text": " To charge its customers $80 a month to access Apple car play in Android auto"
},
{
"start": 1515.2,
"end": 1522.96,
"text": " Features that other vehicle makers have included for free. So what BMW tried to charge you to have access to your heated seats"
},
{
"start": 1524.0,
"end": 1525.76,
"text": " and Apple"
},
{
"start": 1525.76,
"end": 1531.28,
"text": " Car play and Android auto. I gotta imagine that Apple and Android were like wait a minute"
},
{
"start": 1532.24,
"end": 1533.2,
"text": " Uh"
},
{
"start": 1533.2,
"end": 1538.16,
"text": " What's the split on that with us balls and they were like we didn't think about that and they were like well"
},
{
"start": 1538.16,
"end": 1543.36,
"text": " That's over you're not doing that anymore budding. We're just gonna take it out of your cars and BMW's like yeah, you know what"
},
{
"start": 1544.08,
"end": 1548.48,
"text": " Maybe we can find that money somewhere else to come on back Apple car play and Android auto, please"
},
{
"start": 1548.96,
"end": 1553.04,
"text": " So yeah, but that's interesting that it is so far Mercedes and BMW"
},
{
"start": 1553.84,
"end": 1555.84,
"text": " and I'm shocked"
},
{
"start": 1556.1599999999999,
"end": 1562.1599999999999,
"text": " That car manufacturers in the EU right which is which is bending Apple"
},
{
"start": 1562.48,
"end": 1568.48,
"text": " Apple to its will right now with these usbc adapters right or usbc connectors"
},
{
"start": 1569.12,
"end": 1574.9599999999998,
"text": " Uh, I'm surprised that auto manufacturers in Europe are the ones who came out with this"
},
{
"start": 1575.28,
"end": 1581.4399999999998,
"text": " Uh, and not North America like I'm surprised this is a whole thing in North America right like because"
},
{
"start": 1582.4,
"end": 1585.76,
"text": " North America is a place where this will be a thing like they'll totally"
},
{
"start": 1585.76,
"end": 1588.88,
"text": " I mean, we're totally into make as much money off of everything as you possibly can"
},
{
"start": 1589.44,
"end": 1591.44,
"text": " And over there is where they're like hey wait a minute"
},
{
"start": 1592.0,
"end": 1593.28,
"text": " This seems a little"
},
{
"start": 1593.28,
"end": 1595.28,
"text": " Upnoxious. Maybe you should walk this back"
},
{
"start": 1595.76,
"end": 1597.76,
"text": " But anyway"
},
{
"start": 1597.8400000000001,
"end": 1599.8400000000001,
"text": " I'm gonna assume it's"
},
{
"start": 1599.8400000000001,
"end": 1602.0,
"text": " lobbyists that are uh"
},
{
"start": 1602.0,
"end": 1603.52,
"text": " pushing against it"
},
{
"start": 1603.52,
"end": 1606.8,
"text": " Cuz you know, Apple's got plenty of money to do that um"
},
{
"start": 1607.44,
"end": 1609.44,
"text": " But I for one and very"
},
{
"start": 1610.16,
"end": 1612.0,
"text": " Very happy that"
},
{
"start": 1612.88,
"end": 1618.16,
"text": " Everything is gonna be usbc. Yeah, it's just gonna be easier that way"
},
{
"start": 1618.72,
"end": 1624.64,
"text": " I have had a heck of a time explaining to a large number of people that"
},
{
"start": 1625.2,
"end": 1632.56,
"text": " The charger on their phone that they used for the last 10 years is now in theory or doesn't charge their phone as well"
},
{
"start": 1632.96,
"end": 1637.3600000000001,
"text": " It would just be easier if they all use the same cord that way we didn't have to risk"
},
{
"start": 1637.84,
"end": 1644.6399999999999,
"text": " Messing on devices up or slow charging them or whatever because they'll all be on the same format. So as a repair guy"
},
{
"start": 1645.1999999999998,
"end": 1646.3999999999999,
"text": " Whoo"
},
{
"start": 1646.3999999999999,
"end": 1648.0,
"text": " Thank you any you"
},
{
"start": 1648.08,
"end": 1656.56,
"text": " You know what's funny is do you ever run into the old like the original Apple like that the long send wide charger that they had from the original phones"
},
{
"start": 1656.56,
"end": 1658.56,
"text": " Ever in to that one"
},
{
"start": 1658.8799999999999,
"end": 1663.9199999999998,
"text": " Every once in a blue moon. I haven't seen one in probably about a year. Yeah"
},
{
"start": 1664.0800000000002,
"end": 1670.5600000000002,
"text": " I still got baskets in my house. It's got a couple of those in it that usba uh or the original Android Chargers"
},
{
"start": 1670.88,
"end": 1673.52,
"text": " Was that was that usba micro usb?"
},
{
"start": 1673.52,
"end": 1679.68,
"text": " Micro usb. Thank you usba. What am I talking about anyway, but the thing is though is like if you buy"
},
{
"start": 1681.6000000000001,
"end": 1688.96,
"text": " The thing the thing about that mini usb there's so much stuff like so much random so many random things that still use that"
},
{
"start": 1689.6000000000001,
"end": 1693.1200000000001,
"text": " You still kind of have that as a charger especially like off brand stuff"
},
{
"start": 1694.4,
"end": 1699.28,
"text": " Man, I'm still I look for chargers for that all the time and uh"
},
{
"start": 1700.0800000000002,
"end": 1704.88,
"text": " Well anyway, I usually tucked in somewhere with my PlayStation 3 controllers wherever those are"
},
{
"start": 1705.76,
"end": 1711.44,
"text": " Know what you were right james mini is mini usb. That was the first one. I was like the square"
},
{
"start": 1712.16,
"end": 1715.28,
"text": " Shaked one and then the next one was the micro usb"
},
{
"start": 1715.76,
"end": 1719.3600000000001,
"text": " That had the one flat end with the hooks on it. That's the one I'm talking about"
},
{
"start": 1720.0800000000002,
"end": 1722.0800000000002,
"text": " Yeah, that was micro usb"
},
{
"start": 1722.8799999999999,
"end": 1727.9199999999998,
"text": " Second Android Charger, but it was the more popular when yeah, we're a very long time"
},
{
"start": 1728.56,
"end": 1734.48,
"text": " Yep, and a bunch of you know third party stuff still uses that so I still need to have those around so I don't know"
},
{
"start": 1734.56,
"end": 1738.0,
"text": " But most of mine are like a foot and a half long because that's what came with those PlayStation"
},
{
"start": 1740.1599999999999,
"end": 1744.24,
"text": " Yeah, all right. Let's go to the phones. We got Mike who's called us up from her nando this morning Mike"
},
{
"start": 1745.1999999999998,
"end": 1747.1999999999998,
"text": " Happy Thanksgiving week to you. What's going on?"
},
{
"start": 1748.0,
"end": 1755.2,
"text": " Thank you guys um you just talked about over there updates for cars like Mercedes is doing that's become common"
},
{
"start": 1755.6000000000001,
"end": 1760.88,
"text": " But there's a new one coming on the market and I've been reading about it in the trademags and it's uh"
},
{
"start": 1761.8400000000001,
"end": 1769.3600000000001,
"text": " It just sounds a little weird to me the new vennfast vennemies SUV you buy the vehicle but lease the battery"
},
{
"start": 1769.8400000000001,
"end": 1777.04,
"text": " And I thought that man, I don't know. I mean that sounds weird with their buying back the battery when it runs out of power and everything in the place"
},
{
"start": 1777.76,
"end": 1784.24,
"text": " Over's a subscription type thing. I don't know if I want that to become common or not if I'm going to buy the dang car"
},
{
"start": 1784.24,
"end": 1789.92,
"text": " I want the battery with it and not have to worry about and uh, you know 25,000 miles"
},
{
"start": 1790.3999999999999,
"end": 1791.36,
"text": " Uh"
},
{
"start": 1791.36,
"end": 1797.6,
"text": " Replace in the battery because it's under a contract is that going to become common is that sound weird to you guys too"
},
{
"start": 1798.6399999999999,
"end": 1805.36,
"text": " Hard to speculate on what's going to become common because evs are not the mainstream vehicles yet"
},
{
"start": 1805.4399999999998,
"end": 1813.1999999999998,
"text": " However, I can kind of see the purpose behind this because especially if you're fast charging a battery in an ev"
},
{
"start": 1813.6799999999998,
"end": 1817.28,
"text": " The battery is going to wear out sooner and that's probably the most expensive"
},
{
"start": 1817.4399999999998,
"end": 1819.6799999999998,
"text": " Well, I mean, I might be talking with my foot in my mouth here"
},
{
"start": 1819.6799999999998,
"end": 1823.6799999999998,
"text": " But I think it's one of the most expensive things to replace in an electric vehicle"
},
{
"start": 1824.08,
"end": 1829.36,
"text": " So I'm monthly fee will guarantee that you always have a fully functional battery"
},
{
"start": 1829.9199999999998,
"end": 1830.8799999999999,
"text": " um"
},
{
"start": 1830.88,
"end": 1836.64,
"text": " If it affects the price of the vehicle then I would be more for it if it's you know, still"
},
{
"start": 1837.6000000000001,
"end": 1843.44,
"text": " Uh, seeing costs on top of the vehicle then or the seeing cost for the vehicle and then on top of that"
},
{
"start": 1843.44,
"end": 1845.92,
"text": " I would say that you know, it might not do so well"
},
{
"start": 1846.24,
"end": 1849.8400000000001,
"text": " But with evs for people that are fast charging them they are"
},
{
"start": 1850.4,
"end": 1853.8400000000001,
"text": " sacrificing the lifespan of that battery so this"
},
{
"start": 1854.48,
"end": 1859.2800000000002,
"text": " This makes more sense than say subscribing to an extra uh, what was it uh"
},
{
"start": 1860.96,
"end": 1862.0,
"text": " Point"
},
{
"start": 1862.0,
"end": 1866.0,
"text": " What seconds to zero to 16 point four seconds or something"
},
{
"start": 1866.96,
"end": 1868.96,
"text": " Something like that whatever it was"
},
{
"start": 1868.96,
"end": 1871.2,
"text": " I think it was point eight to point nine something like that"
},
{
"start": 1872.0,
"end": 1876.3200000000002,
"text": " Okay, I really don't know that bad does it it really doesn't sound that bad a deal does it?"
},
{
"start": 1876.3200000000002,
"end": 1881.5200000000002,
"text": " I mean you buy the car and release the battery over the life of the car and never know then when it runs out of power"
},
{
"start": 1881.68,
"end": 1884.48,
"text": " If they just take it in they would place it for the fee you've been paying"
},
{
"start": 1885.2800000000002,
"end": 1887.3600000000001,
"text": " I don't know maybe it's the future of electric cars"
},
{
"start": 1888.1599999999999,
"end": 1891.4399999999998,
"text": " I think I think part of it I think part of it is name brand leverage"
},
{
"start": 1891.76,
"end": 1896.0,
"text": " You know, especially like we were talking about Mercedes earlier right. I mean Mercedes is uh"
},
{
"start": 1897.12,
"end": 1902.0,
"text": " For some people and I'm not judging it all but for some people that's a status symbol type of car right and so"
},
{
"start": 1902.56,
"end": 1908.56,
"text": " They want a Mercedes and so if you've got somebody that's leveraged that much into having the brand that you present"
},
{
"start": 1909.04,
"end": 1912.1599999999999,
"text": " Yeah, I mean 100 bucks a month. I'll get that"
},
{
"start": 1912.9599999999998,
"end": 1916.08,
"text": " I can I can totally see it and I've already justified it three four different ways"
},
{
"start": 1916.8,
"end": 1921.6,
"text": " Since we started since my first since I first introduced the story talking about how terrible it is"
},
{
"start": 1921.6,
"end": 1923.6,
"text": " I've already justified it about five different ways"
},
{
"start": 1924.56,
"end": 1925.36,
"text": " Right"
},
{
"start": 1925.36,
"end": 1931.12,
"text": " Well, you know what I was reading about this thing and it just sounds like the Vietnamese have come up with an extremely clever"
},
{
"start": 1931.84,
"end": 1938.08,
"text": " Way to leverage against the life of the the electric vehicle and they're starting to sell these things in California right now"
},
{
"start": 1938.6399999999999,
"end": 1944.96,
"text": " And they said it's extremely well made, but I just thought it was intriguing to think that that might be a possibility that you buy your car"
},
{
"start": 1945.3600000000001,
"end": 1950.64,
"text": " But leash the battery for the life of the time that you own the car and then selects such a bad deal right"
},
{
"start": 1951.6000000000001,
"end": 1954.48,
"text": " Unless you get like a lemon car and it keeps your ruining batteries"
},
{
"start": 1954.64,
"end": 1957.1200000000001,
"text": " Then I guess they'll they'll figure out a way to fix that real quick"
},
{
"start": 1957.92,
"end": 1964.48,
"text": " Well there the program says that they will replace your battery once it drops below 70% efficiency"
},
{
"start": 1965.04,
"end": 1968.8,
"text": " Interesting, so I don't know if robots gonna show up on your driveway"
},
{
"start": 1969.1200000000001,
"end": 1973.1200000000001,
"text": " Let's put your car and pull your battery out or if you're gonna have to take it into a"
},
{
"start": 1974.08,
"end": 1977.84,
"text": " Facility and have a change or somebody's gonna come do it there. It's your house"
},
{
"start": 1978.08,
"end": 1982.08,
"text": " I'm curious to see how they do this and how they service it. This could be a really"
},
{
"start": 1983.76,
"end": 1988.7199999999998,
"text": " I've seen now because because they're a foreign car maker and they don't have a bunch of dealerships over here or any maybe"
},
{
"start": 1989.6,
"end": 1994.56,
"text": " That's that's where they got to work out a deal with like a minikeer or something like that one of these"
},
{
"start": 1995.36,
"end": 1997.36,
"text": " You know franchise shops over here"
},
{
"start": 1997.52,
"end": 2000.56,
"text": " Yeah, you got to work out a deal where you know they're getting paid for"
},
{
"start": 2001.04,
"end": 2006.3999999999999,
"text": " You know sending their cars into that that shop to get that work done. I see now making money on both sides for them"
},
{
"start": 2007.44,
"end": 2014.8,
"text": " I've been reading about them. They said there they have blanketed Vietnam with these cars and they're selling them like mad in"
},
{
"start": 2015.12,
"end": 2021.44,
"text": " Southeast Asia and they've already built dealerships in California and they their intention is to spread all across the country"
},
{
"start": 2021.6,
"end": 2026.0,
"text": " And I kind of like the idea. I've been living in a little electric car anyway"
},
{
"start": 2026.0,
"end": 2029.84,
"text": " But to get one where you have this kind of a guarantee that there's a battery once out"
},
{
"start": 2030.24,
"end": 2034.9599999999998,
"text": " You're going to get a replacement battery for the feed that you've been paying and not have to worry about going and spending"
},
{
"start": 2035.52,
"end": 2037.28,
"text": " $25,000 for new battery"
},
{
"start": 2037.28,
"end": 2039.52,
"text": " So I it's kind of an intriguing thing"
},
{
"start": 2040.1599999999999,
"end": 2044.1599999999999,
"text": " Absolutely. Hey Mike. Thanks for calling us this morning and bringing that to our attention"
},
{
"start": 2045.1999999999998,
"end": 2051.12,
"text": " You betcha all right have a happy thanks given holiday later this week all the best black Friday to you"
},
{
"start": 2051.84,
"end": 2058.56,
"text": " I the one thing I haven't asked is if people are going to go out in black Friday shop or if they're going to do it all online"
},
{
"start": 2059.12,
"end": 2065.68,
"text": " That's I mean more more people have are not going out although. I think maybe now like it there was such a crush physically"
},
{
"start": 2066.7999999999997,
"end": 2071.12,
"text": " On that for a while that that everybody was like no thanks. I'd rather not do anything than that"
},
{
"start": 2071.92,
"end": 2077.7599999999998,
"text": " But now it's kind of that's enough people have kind of pulled off of that and do all their shopping online that"
},
{
"start": 2078.0,
"end": 2082.72,
"text": " I don't think it's as bad now and besides so many stores now start their black Friday deals"
},
{
"start": 2082.7999999999997,
"end": 2086.16,
"text": " They're not black Friday anymore. It's like stores already have it stuff out now"
},
{
"start": 2086.8799999999997,
"end": 2088.96,
"text": " So it makes a little bit easier. I guess maybe"
},
{
"start": 2089.6,
"end": 2094.8799999999997,
"text": " Like instead of going on on Friday morning at like four o'clock in the morning like I don't know you could go this afternoon if you wanted to"
},
{
"start": 2096.96,
"end": 2098.96,
"text": " Maybe"
},
{
"start": 2106.56,
"end": 2111.2,
"text": " Or the day after Christmas right that's the that's the big return date December 26"
},
{
"start": 2111.7599999999998,
"end": 2113.7599999999998,
"text": " I try not to do too much at all"
},
{
"start": 2114.7200000000003,
"end": 2119.92,
"text": " I did want to add which will be a Monday this year. That's the December 26 will be a Monday. So that'll be a train right day"
},
{
"start": 2120.96,
"end": 2123.92,
"text": " Or some actual costs for those EVs"
},
{
"start": 2124.4,
"end": 2131.1200000000003,
"text": " The lower end models 42,200 and then you've got the monthly battery subscription"
},
{
"start": 2131.1200000000003,
"end": 2135.0400000000004,
"text": " But you can buy the vehicle outright with the battery"
},
{
"start": 2135.5200000000004,
"end": 2141.28,
"text": " So if you buy it right with the battery it's going to cost you almost 15,000 dollars more"
},
{
"start": 2142.2400000000002,
"end": 2147.92,
"text": " For the battery. So they're just kind of saving you that cost on the battery or not saving you but"
},
{
"start": 2148.6400000000003,
"end": 2150.6400000000003,
"text": " 15,000"
},
{
"start": 2150.88,
"end": 2152.48,
"text": " Yeah"
},
{
"start": 2153.1200000000003,
"end": 2161.1200000000003,
"text": " Wow, that's a good that then the the higher end model is 185 for the battery and I say let me like"
},
{
"start": 2162.32,
"end": 2164.32,
"text": " I don't know. I'm trying to think"
},
{
"start": 2164.32,
"end": 2166.6400000000003,
"text": " Okay, so that that seems prohibitive"
},
{
"start": 2167.44,
"end": 2170.48,
"text": " Like a like a 15,000 dollar upcharge for this battery"
},
{
"start": 2170.48,
"end": 2174.48,
"text": " But I guess what they're doing is yeah to make people"
},
{
"start": 2177.04,
"end": 2184.48,
"text": " And also because a bad battery will look bad on the EV so to have a program where they can maintain the battery"
},
{
"start": 2184.48,
"end": 2187.44,
"text": " Those will look better and people will be complaining about them as much. Yeah"
},
{
"start": 2188.24,
"end": 2190.24,
"text": " Yeah, so they can maintain their product"
},
{
"start": 2190.24,
"end": 2194.7999999999997,
"text": " Well, that's good publicly. Yeah, that's that's kind of what I was thinking about is that you know"
},
{
"start": 2194.8,
"end": 2200.96,
"text": " We talk about during our drives here on MPB that hey if you become a monthly sustainer it gives us a better idea of of"
},
{
"start": 2201.36,
"end": 2205.04,
"text": " You know cash flow through instead of doing and let's say a hundred and twenty dollar"
},
{
"start": 2206.6400000000003,
"end": 2207.6000000000004,
"text": " uh"
},
{
"start": 2207.6000000000004,
"end": 2213.04,
"text": " Donation MPB do in ten dollars a month if more people do that it's you know"
},
{
"start": 2213.04,
"end": 2218.0800000000004,
"text": " We get we have a better idea of what the cash flow is over the course of the year and it gives us a better idea how to project"
},
{
"start": 2219.1200000000003,
"end": 2221.92,
"text": " Uh, you know costs and assessments and you know"
},
{
"start": 2222.32,
"end": 2226.0,
"text": " How we're gonna move forward and things like that. I can imagine this the same way for a car dealership boy"
},
{
"start": 2226.0,
"end": 2230.08,
"text": " This did not turn out how I thought it was gonna turn out. I've all I've done is is"
},
{
"start": 2231.12,
"end": 2233.12,
"text": " Is cosine on all this"
},
{
"start": 2233.12,
"end": 2237.6,
"text": " Egregious behavior from these car dealerships and I totally didn't think that's how this was gonna play out today"
},
{
"start": 2238.0,
"end": 2242.88,
"text": " I'm totally I'm totally the wrestling bad guy of this year's show. Let's go back to the phones"
},
{
"start": 2243.2000000000003,
"end": 2246.88,
"text": " Let's go to Dave who's called us from Bethel Springs, Tennessee. Dave. What's going on good morning?"
},
{
"start": 2247.84,
"end": 2253.28,
"text": " Yes, sir. Good morning. Hope you guys got some turkey lined up for tomorrow. Try and to yes, sir. How about you still?"
},
{
"start": 2254.2400000000002,
"end": 2256.2400000000002,
"text": " Well, I'm gonna eat more than I need to"
},
{
"start": 2256.2400000000002,
"end": 2263.04,
"text": " But that's normal right I caught two months back and I'm the guy that complained about the poor internet service"
},
{
"start": 2263.04,
"end": 2265.44,
"text": " I live out in the country and I was signed up for our"
},
{
"start": 2267.6800000000003,
"end": 2269.6800000000003,
"text": " I'm the guy"
},
{
"start": 2269.6800000000003,
"end": 2272.32,
"text": " I'm gonna try to narrow it down to less than that but"
},
{
"start": 2273.2000000000003,
"end": 2276.56,
"text": " I just want to know that our buddy that just bought Twitter"
},
{
"start": 2277.12,
"end": 2282.4,
"text": " I have received his service and I just to tell you some a little bit of background on it"
},
{
"start": 2283.12,
"end": 2285.84,
"text": " It's not the full residential service"
},
{
"start": 2286.24,
"end": 2288.24,
"text": " calling it best effort"
},
{
"start": 2288.48,
"end": 2295.12,
"text": " And what that means is that you can be subject to parrologists with your internet. It could drop your connection"
},
{
"start": 2295.12,
"end": 2298.08,
"text": " It could be streaming real slow but not"
},
{
"start": 2298.64,
"end": 2302.4,
"text": " Understand what streaming is that we've never been exposed to it until now"
},
{
"start": 2303.28,
"end": 2308.2400000000002,
"text": " But what happened is being a eternal optimist I went ahead and took the service"
},
{
"start": 2308.32,
"end": 2311.92,
"text": " The fee is the same as if you're getting full residential service"
},
{
"start": 2311.92,
"end": 2316.4,
"text": " So that part of it is a little bit uncertain, but I thought what the heck so"
},
{
"start": 2317.04,
"end": 2319.6800000000003,
"text": " I went ahead and took the service after a week"
},
{
"start": 2320.4,
"end": 2326.1600000000003,
"text": " I dropped the other internet service satellite like a bad habit and I'm telling you"
},
{
"start": 2326.32,
"end": 2328.56,
"text": " If this thing gets better than it is"
},
{
"start": 2329.2799999999997,
"end": 2334.48,
"text": " I'll be tickled at death the only question I have now is there is so much in the streaming"
},
{
"start": 2334.72,
"end": 2336.96,
"text": " Stratosphere that I have no idea"
},
{
"start": 2337.6,
"end": 2341.2799999999997,
"text": " You know what's all involved with that, but I have a question on the speed test"
},
{
"start": 2342.16,
"end": 2347.84,
"text": " When you're doing a speed test on that and you you're actually on your laptop doing a speed test"
},
{
"start": 2348.0,
"end": 2352.48,
"text": " Is the speed test that it shows up? Is that what you have available?"
},
{
"start": 2352.7999999999997,
"end": 2356.88,
"text": " Not counting what's on there or what someone else is using for example"
},
{
"start": 2356.96,
"end": 2362.0,
"text": " If my wife is streaming a TV show in another room and I'm on the laptop and I get"
},
{
"start": 2362.56,
"end": 2370.0,
"text": " 10 megabits per second is that mean not including her streaming speed because I know it slows down the more you have on it"
},
{
"start": 2370.0,
"end": 2372.0,
"text": " So how does that work?"
},
{
"start": 2372.0,
"end": 2378.2400000000002,
"text": " Okay, so if somebody is streaming something while you're doing a speed test that absolutely affects the quality of the speed test"
},
{
"start": 2378.8,
"end": 2386.7200000000003,
"text": " However, um if you're still getting a good speed test in addition to that then you should be you should have enough bandwidth to go around the household"
},
{
"start": 2386.96,
"end": 2390.88,
"text": " Other people to do other things, but if you want to get the full potential of your"
},
{
"start": 2391.6800000000003,
"end": 2398.7200000000003,
"text": " Your network you need to limit usage while you do the speed test if you want to see what it tops out at"
},
{
"start": 2399.12,
"end": 2405.92,
"text": " Also your performance will vary throughout the day and based on which server that you've decided to do your speed test with"
},
{
"start": 2406.32,
"end": 2411.28,
"text": " We'll also affect the speed and the quality of the purport that you get"
},
{
"start": 2411.84,
"end": 2413.84,
"text": " Okay, I"
},
{
"start": 2413.92,
"end": 2420.0,
"text": " I follow you on all that and I'm just doing this my wife and I we don't have anybody else going a regular basis at the house"
},
{
"start": 2420.0,
"end": 2424.88,
"text": " But I've got things like I've got for Bell. I've got my security system on it and"
},
{
"start": 2425.52,
"end": 2431.28,
"text": " The it will list everything that's attached to your router whenever you I even bought the mesh routers"
},
{
"start": 2431.84,
"end": 2434.6400000000003,
"text": " I bought two of them so far. I've only used one but"
},
{
"start": 2435.44,
"end": 2438.7200000000003,
"text": " I'm telling you I did a speed test on it and I got"
},
{
"start": 2438.72,
"end": 2442.3199999999997,
"text": " 247 megabits at eight o'clock"
},
{
"start": 2443.52,
"end": 2447.04,
"text": " Morning from satellite and the other company"
},
{
"start": 2448.3199999999997,
"end": 2450.3199999999997,
"text": " Um, I assume it is"
},
{
"start": 2450.64,
"end": 2455.52,
"text": " When it said that you were under a best effort connection"
},
{
"start": 2456.16,
"end": 2461.6,
"text": " Um, you said that that could be allergies drop a day, you know connections drop so forth"
},
{
"start": 2462.0,
"end": 2466.72,
"text": " How frequently have you experienced those and how long have you had Starlink as a service?"
},
{
"start": 2466.8799999999997,
"end": 2473.7599999999998,
"text": " I've had it. This is going on the third month. I have zero outages zero"
},
{
"start": 2476.3999999999996,
"end": 2480.16,
"text": " He's been streaming a TV show and it wasn't one of the older ones"
},
{
"start": 2480.16,
"end": 2484.3199999999997,
"text": " It was a Disney plus just to give you a name to show you that it's high depth"
},
{
"start": 2485.04,
"end": 2490.56,
"text": " And he's streaming and I've I've actually gotten single digits on my speed test"
},
{
"start": 2491.04,
"end": 2496.08,
"text": " But it did not buffer one second on that streaming that she was watching the movie"
},
{
"start": 2496.08,
"end": 2502.0,
"text": " I'm testing this I'm moving the routers around in the building and I'm doing all this stuff to try to understand it"
},
{
"start": 2502.64,
"end": 2507.52,
"text": " And I'm just well play with what it is if it's going to get better than this. I'm tickled at that"
},
{
"start": 2508.16,
"end": 2510.16,
"text": " But you know, I guess"
},
{
"start": 2510.16,
"end": 2515.44,
"text": " It's just fantastic considering and they underline they underscore and put it in caps"
},
{
"start": 2515.44,
"end": 2518.3199999999997,
"text": " We do not recommend that you take this service"
},
{
"start": 2518.96,
"end": 2523.2,
"text": " And they tell you that but like I said, I have not been dropped in three months"
},
{
"start": 2523.8399999999997,
"end": 2527.2,
"text": " And it's just been super but it's going to get better"
},
{
"start": 2527.6,
"end": 2534.72,
"text": " Everything you know, they're saying mid 2023 will be I'll be upgraded to a residential what they have three layers"
},
{
"start": 2534.72,
"end": 2541.52,
"text": " It's best effort residential and business and you know the plan that I have is unlimited"
},
{
"start": 2542.08,
"end": 2548.0,
"text": " And like I said, it's I'm tickled at death with it the only thing now is I have seven TVs in the house"
},
{
"start": 2548.0,
"end": 2550.24,
"text": " I've got a 4,000 square foot house"
},
{
"start": 2550.64,
"end": 2555.68,
"text": " And I'm in the process to put a fire strip for fire sticks on them just to try to make them"
},
{
"start": 2556.16,
"end": 2560.72,
"text": " compatible so my wife doesn't call me every time she wants to watch something in the bedroom"
},
{
"start": 2561.04,
"end": 2563.04,
"text": " Doing something now"
},
{
"start": 2563.04,
"end": 2565.04,
"text": " To make or her"
},
{
"start": 2565.3599999999997,
"end": 2571.7599999999998,
"text": " But my point is I would have been on hold for this thing since you know June of 2021"
},
{
"start": 2572.3999999999996,
"end": 2576.9599999999996,
"text": " So that's just giving an idea for your app with that and I know they're launching more satellites"
},
{
"start": 2576.96,
"end": 2581.12,
"text": " By the week and by the month and all that I get that but I was shocked"
},
{
"start": 2581.2,
"end": 2585.36,
"text": " I wasn't expecting anything like this and it may fall apart tomorrow"
},
{
"start": 2585.44,
"end": 2587.92,
"text": " But like I said, I've been up three months now and"
},
{
"start": 2588.64,
"end": 2593.12,
"text": " My I keep adding to it to see how many things I can watch before something starts"
},
{
"start": 2594.48,
"end": 2597.68,
"text": " I'm trying to kill it, but it just won't die. Okay, so"
},
{
"start": 2598.16,
"end": 2600.7200000000003,
"text": " As far as your wife I coverage in your house goes"
},
{
"start": 2601.36,
"end": 2604.32,
"text": " Have you adopted a mesh router system?"
},
{
"start": 2604.48,
"end": 2606.48,
"text": " I do"
},
{
"start": 2606.48,
"end": 2609.6800000000003,
"text": " Yeah, I thought you got an area square foot is there"
},
{
"start": 2610.96,
"end": 2615.92,
"text": " Yeah, I've got 4,000 but I've got 4,000 on the ground floor and I've got a second floor"
},
{
"start": 2615.92,
"end": 2619.52,
"text": " And I've got a workshop attached to that so I'm trying to spread this out"
},
{
"start": 2620.0800000000004,
"end": 2625.44,
"text": " And on top of that the base floor is made out of metal studs which makes it more interesting for"
},
{
"start": 2626.0,
"end": 2630.88,
"text": " You know look getting Wi-Fi so I've got that pretty fairly worked out so far"
},
{
"start": 2630.96,
"end": 2632.56,
"text": " I've only used the one mesh"
},
{
"start": 2633.36,
"end": 2636.32,
"text": " router a chancement you know they come from the manufacturer"
},
{
"start": 2636.32,
"end": 2640.32,
"text": " I'm staying with the company that's got the satellite you know they offer them and"
},
{
"start": 2641.2000000000003,
"end": 2647.44,
"text": " It's kind of funny because they everything they sell now is a la carte that there's no ethernet plug that comes with it"
},
{
"start": 2647.44,
"end": 2653.28,
"text": " If you want to plug something up on the ethernet cable you have to buy an adapter for another 40"
},
{
"start": 2653.28,
"end": 2655.28,
"text": " Oh"
},
{
"start": 2656.7200000000003,
"end": 2661.28,
"text": " If you want to mount your antenna on the pole you got to buy another 40 dollar adapter"
},
{
"start": 2661.28,
"end": 2664.88,
"text": " You know which it it comes out of the box you can set it on the ground"
},
{
"start": 2664.88,
"end": 2668.48,
"text": " I literally set it out in the driveway and started up and I was getting a"
},
{
"start": 2669.28,
"end": 2671.36,
"text": " 60 megabits per second"
},
{
"start": 2671.36,
"end": 2676.32,
"text": " After about 15 minutes of setup and downloading the app and stringing the cable"
},
{
"start": 2676.32,
"end": 2679.44,
"text": " I wasn't didn't leave it in the driveway obviously I put it on the building but"
},
{
"start": 2680.0800000000004,
"end": 2682.48,
"text": " I mean I can't say enough about it"
},
{
"start": 2682.48,
"end": 2685.28,
"text": " If it's going to get better than this sign me up you know"
},
{
"start": 2685.84,
"end": 2688.4,
"text": " Absolutely and what is your monthly fee for that right now?"
},
{
"start": 2689.44,
"end": 2691.76,
"text": " A hundred and ten dollars. I'm limited"
},
{
"start": 2692.72,
"end": 2694.72,
"text": " That's pretty good"
},
{
"start": 2695.12,
"end": 2698.72,
"text": " That's a that's a lot better than what most people with other"
},
{
"start": 2699.04,
"end": 2703.36,
"text": " satellite providers who are very displeased with their service are paying"
},
{
"start": 2703.92,
"end": 2709.84,
"text": " So I hope that people are listening because this this can be the game changer for the rural internet community"
},
{
"start": 2710.08,
"end": 2714.32,
"text": " Well, it it is for a couple of reasons and I won't keep you"
},
{
"start": 2714.32,
"end": 2716.08,
"text": " I know you got other people but"
},
{
"start": 2716.1600000000003,
"end": 2720.1600000000003,
"text": " Our local fire company was in the business of stringing fiber optics"
},
{
"start": 2720.1600000000003,
"end": 2724.6400000000003,
"text": " So that gives me some hope I was going to have some competition to get the price down even lower"
},
{
"start": 2725.1200000000003,
"end": 2730.0,
"text": " So I go down and talk to them after two years and I said well where you at with the fiber optic"
},
{
"start": 2730.4,
"end": 2732.8,
"text": " Well, we don't do fiber optic anymore"
},
{
"start": 2734.2400000000002,
"end": 2739.04,
"text": " Got all this money, you know from the fed you were supposed to do rural, you know fiber optic"
},
{
"start": 2739.52,
"end": 2744.96,
"text": " Well, and he named the company. He said they got most of the money because they're doing it in rural areas"
},
{
"start": 2745.44,
"end": 2751.68,
"text": " And there's seven houses on our road. We're three miles outside the city limits and what you figure the odds are that we're going to get"
},
{
"start": 2751.84,
"end": 2753.84,
"text": " You know fiber optic strung out there"
},
{
"start": 2754.64,
"end": 2764.4,
"text": " But he just laughed he said I he told me the figure it's something like 55,000 dollars a mile or something to string it some kind of real high figure"
},
{
"start": 2764.48,
"end": 2765.6,
"text": " So"
},
{
"start": 2765.6,
"end": 2770.64,
"text": " What what are the odds that we're going to get that with seven houses on the road and of those seven a lot of them are old"
},
{
"start": 2770.64,
"end": 2776.64,
"text": " timers like myself that probably don't even have the internet to start out with we don't have a lot of school kids or anything so"
},
{
"start": 2777.44,
"end": 2778.96,
"text": " You know that"
},
{
"start": 2778.96,
"end": 2784.16,
"text": " We're not going to get it, but like I said, I just want to give you an update on that because it's going to get better"
},
{
"start": 2784.16,
"end": 2790.16,
"text": " They're saying and they're telling you not to buy it because they can't guarantee it, but I'm telling you"
},
{
"start": 2790.72,
"end": 2795.36,
"text": " I'm not in their zone where they're telling you it's supposed to be, you know, ready to go yet"
},
{
"start": 2795.44,
"end": 2799.1200000000003,
"text": " If you look at their map, but I'm telling you it's working great for me and I"
},
{
"start": 2800.2400000000002,
"end": 2802.2400000000002,
"text": " Hope it gets better, you know"
},
{
"start": 2802.4,
"end": 2806.32,
"text": " Absolutely and Dave thanks for calling us and giving us an update on that we really appreciate it"
},
{
"start": 2807.1200000000003,
"end": 2809.1200000000003,
"text": " Very much"
},
{
"start": 2809.28,
"end": 2814.4,
"text": " Answer my 200 plus questions and the speed test one because I've got a notebook"
},
{
"start": 2814.88,
"end": 2819.92,
"text": " Probably 10 pages of speed test different times a day different router location. Oh, well that"
},
{
"start": 2820.4,
"end": 2824.7200000000003,
"text": " For this out so I appreciate your help. Thank you very much. And you're all your show"
},
{
"start": 2825.36,
"end": 2827.04,
"text": " Thank you, Dave"
},
{
"start": 2827.04,
"end": 2831.92,
"text": " Likewise, we appreciate it very much. Man, what do you think about that? That's good news to hear awesome"
},
{
"start": 2832.32,
"end": 2834.32,
"text": " Yeah, we've been we've been ragging on Elon Musk"
},
{
"start": 2834.4,
"end": 2840.56,
"text": " But it seems like Starlink is doing what it's designed to do and I am happy here that um this is"
},
{
"start": 2841.04,
"end": 2846.7200000000003,
"text": " One reason that all the other stuff that's going on had me banging my head against the wall like what are you doing?"
},
{
"start": 2846.7999999999997,
"end": 2852.3999999999996,
"text": " You were doing so good you're like public, you know, you got Tesla you got Starlink you got space X you"
},
{
"start": 2852.72,
"end": 2854.72,
"text": " You're doing things and now"
},
{
"start": 2854.7999999999997,
"end": 2860.16,
"text": " Anyways, I'm glad we haven't talked about that much it is fantastic to hear the Starlink works well for Dave"
},
{
"start": 2860.3199999999997,
"end": 2867.7599999999998,
"text": " And I hope that we hear more reports of the performance improving and other colors calling in a let us know how it does for them"
},
{
"start": 2868.48,
"end": 2871.2799999999997,
"text": " Yeah, and um the thing is I"
},
{
"start": 2871.52,
"end": 2875.36,
"text": " And I understand what Dave was saying. It's not going to be so much about"
},
{
"start": 2876.0800000000004,
"end": 2881.6800000000003,
"text": " You know who lives in those houses or even like how much money they make or the fact that they don't have kids or whatever"
},
{
"start": 2881.84,
"end": 2883.84,
"text": " it's going to be"
},
{
"start": 2883.84,
"end": 2885.36,
"text": " somebody"
},
{
"start": 2885.36,
"end": 2887.36,
"text": " Is responsible for that area"
},
{
"start": 2888.7200000000003,
"end": 2890.5600000000004,
"text": " uh, you know getting"
},
{
"start": 2890.5600000000004,
"end": 2894.6400000000003,
"text": " Wired high speed internet to that area eventually and it's just about"
},
{
"start": 2895.84,
"end": 2899.2000000000003,
"text": " How much it'll cost basically it's it's cost effectiveness"
},
{
"start": 2899.2,
"end": 2902.96,
"text": " It's not about anybody who lives in any of those houses or anything like that. It's about how much"
},
{
"start": 2903.68,
"end": 2908.56,
"text": " Will it cost to build the infrastructure to get that wiring to those seven houses on that street?"
},
{
"start": 2909.8399999999997,
"end": 2912.24,
"text": " Versus what they can make back from it"
},
{
"start": 2913.04,
"end": 2918.8799999999997,
"text": " Until we get to a point where something like that is basically instituted and and they have to do it"
},
{
"start": 2919.8399999999997,
"end": 2925.2,
"text": " Which is what we're getting close to and it's awesome that we have something like Starlink that can fill in that gap"
},
{
"start": 2926.0,
"end": 2927.2,
"text": " until"
},
{
"start": 2927.6,
"end": 2928.3999999999996,
"text": " more"
},
{
"start": 2928.3999999999996,
"end": 2930.3999999999996,
"text": " Utilities in the state"
},
{
"start": 2930.7999999999997,
"end": 2934.24,
"text": " Have the money to build out the infrastructure because that is not"
},
{
"start": 2935.04,
"end": 2937.04,
"text": " especially in a place as rural"
},
{
"start": 2937.8399999999997,
"end": 2940.48,
"text": " As Mississippi is in 98% of the state"
},
{
"start": 2941.3599999999997,
"end": 2946.48,
"text": " That's just going to be a ridiculously expensive build out it will happen eventually"
},
{
"start": 2946.7999999999997,
"end": 2953.04,
"text": " But it's I mean it's going to be like like oh like old folks like me getting out of the bed all creaky and moaning and"
},
{
"start": 2953.7599999999998,
"end": 2955.7599999999998,
"text": " Go give you all sorts of"
},
{
"start": 2956.24,
"end": 2959.2,
"text": " Give you an earful while they're doing it but eventually they'll get around to doing it"
},
{
"start": 2959.7599999999998,
"end": 2962.24,
"text": " Why pass me to full clothes? It's kind of how that will work out"
},
{
"start": 2963.36,
"end": 2971.04,
"text": " Starlink with our hell marry for the rural internet community and it looks like it's working while we're still waiting for power company to get there"
},
{
"start": 2971.12,
"end": 2973.84,
"text": " So yep, that's the news, but they are"
},
{
"start": 2975.12,
"end": 2980.88,
"text": " There are utilities locally that are doing work. I was trying to find a story about something that just happened in Northeast Mississippi"
},
{
"start": 2980.88,
"end": 2986.32,
"text": " We'll update that the next time we're on this is everyday tech don't think radio"
},
{
"start": 2986.48,
"end": 2998.1600000000003,
"text": " This is an mpb think radio podcast to hear previous shows visit mpbonline.org or download the mpb public radio app to listen on your iPhone or android phone on the main"
}
] |