File size: 178,754 Bytes
3517760 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 |
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<sentences>
<sentence id="892:1">
<text>Boot time is super fast, around anywhere from 35 seconds to 1 minute.</text>
<aspectTerms>
<aspectTerm term="Boot time" polarity="positive" from="0" to="9"/>
</aspectTerms>
</sentence>
<sentence id="1144:1">
<text>tech support would not fix the problem unless I bought your plan for $150 plus.</text>
<aspectTerms>
<aspectTerm term="tech support" polarity="negative" from="0" to="12"/>
</aspectTerms>
</sentence>
<sentence id="805:2">
<text>but in resume this computer rocks!</text>
</sentence>
<sentence id="359:1">
<text>Set up was easy.</text>
<aspectTerms>
<aspectTerm term="Set up" polarity="positive" from="0" to="6"/>
</aspectTerms>
</sentence>
<sentence id="562:1">
<text>Did not enjoy the new Windows 8 and touchscreen functions.</text>
<aspectTerms>
<aspectTerm term="Windows 8" polarity="negative" from="22" to="31"/>
<aspectTerm term="touchscreen functions" polarity="negative" from="36" to="57"/>
</aspectTerms>
</sentence>
<sentence id="323:1">
<text>I expected so as it's an Apple product, but I was glad to see my expectations exceeded, this is THE laptop to buy right now.</text>
</sentence>
<sentence id="958:1">
<text>Other than not being a fan of click pads (industry standard these days) and the lousy internal speakers, it's hard for me to find things about this notebook I don't like, especially considering the $350 price tag.</text>
<aspectTerms>
<aspectTerm term="internal speakers" polarity="negative" from="86" to="103"/>
<aspectTerm term="price tag" polarity="positive" from="203" to="212"/>
<aspectTerm term="click pads" polarity="negative" from="30" to="40"/>
</aspectTerms>
</sentence>
<sentence id="684:1">
<text>excellent in every way.</text>
</sentence>
<sentence id="282:9">
<text>No installation disk (DVD) is included.</text>
<aspectTerms>
<aspectTerm term="installation disk (DVD)" polarity="neutral" from="3" to="26"/>
</aspectTerms>
</sentence>
<sentence id="819:1">
<text>It's fast, light, and simple to use.</text>
<aspectTerms>
<aspectTerm term="use" polarity="positive" from="32" to="35"/>
</aspectTerms>
</sentence>
<sentence id="130:1">
<text>Works well, and I am extremely happy to be back to an apple OS.</text>
<aspectTerms>
<aspectTerm term="Works" polarity="positive" from="0" to="5"/>
<aspectTerm term="apple OS" polarity="positive" from="54" to="62"/>
</aspectTerms>
</sentence>
<sentence id="787:270">
<text>This mac has been a problem since we got it.</text>
</sentence>
<sentence id="593:1">
<text>Sure it's not light and slim but the features make up for it 100%.</text>
<aspectTerms>
<aspectTerm term="features" polarity="positive" from="37" to="45"/>
</aspectTerms>
</sentence>
<sentence id="996:1">
<text>I am pleased with the fast log on, speedy WiFi connection and the long battery life (>6 hrs).</text>
<aspectTerms>
<aspectTerm term="log on" polarity="positive" from="27" to="33"/>
<aspectTerm term="WiFi connection" polarity="positive" from="42" to="57"/>
<aspectTerm term="battery life" polarity="positive" from="71" to="83"/>
</aspectTerms>
</sentence>
<sentence id="314:21">
<text>The Apple engineers have not yet discovered the delete key.</text>
<aspectTerms>
<aspectTerm term="delete key" polarity="negative" from="48" to="58"/>
</aspectTerms>
</sentence>
<sentence id="147:5">
<text>Made interneting (part of my business) very difficult to maintain.</text>
<aspectTerms>
<aspectTerm term="interneting" polarity="negative" from="5" to="16"/>
</aspectTerms>
</sentence>
<sentence id="3:1">
<text>Luckily, for all of us contemplating the decision, the Mac Mini is priced just right.</text>
<aspectTerms>
<aspectTerm term="priced" polarity="positive" from="67" to="73"/>
</aspectTerms>
</sentence>
<sentence id="132:1">
<text>Small and still VERY powerful.</text>
</sentence>
<sentence id="293:1">
<text>I had gotten this model for $1199.00 on my State's tax-free weekend and had a $100 off coupon for a MacBook at the local BestBuy!</text>
</sentence>
<sentence id="663:1">
<text>Super light, super sexy and everything just works.</text>
<aspectTerms>
<aspectTerm term="works" polarity="positive" from="44" to="49"/>
</aspectTerms>
</sentence>
<sentence id="373:1">
<text>Only problem that I had was that the track pad was not very good for me, I only had a problem once or twice with it, But probably my computer was a bit defective.</text>
<aspectTerms>
<aspectTerm term="track pad" polarity="negative" from="37" to="46"/>
</aspectTerms>
</sentence>
<sentence id="787:709">
<text>And if you are switching from a pc I hilghy sugest this one.</text>
</sentence>
<sentence id="759:1">
<text>It is super fast and has outstanding graphics.</text>
<aspectTerms>
<aspectTerm term="graphics" polarity="positive" from="37" to="45"/>
</aspectTerms>
</sentence>
<sentence id="326:1">
<text>But the mountain lion is just too slow.</text>
<aspectTerms>
<aspectTerm term="mountain lion" polarity="negative" from="8" to="21"/>
</aspectTerms>
</sentence>
<sentence id="488:1">
<text>Strong build though which really adds to its durability.</text>
<aspectTerms>
<aspectTerm term="durability" polarity="positive" from="45" to="55"/>
<aspectTerm term="build" polarity="positive" from="7" to="12"/>
</aspectTerms>
</sentence>
<sentence id="847:1">
<text>The battery life is excellent- 6-7 hours without charging.</text>
<aspectTerms>
<aspectTerm term="battery life" polarity="positive" from="4" to="16"/>
</aspectTerms>
</sentence>
<sentence id="641:1">
<text>I enjoy having apple products.</text>
</sentence>
<sentence id="561:1">
<text>I've had my computer for 2 weeks already and it works perfectly.</text>
<aspectTerms>
<aspectTerm term="works" polarity="positive" from="48" to="53"/>
</aspectTerms>
</sentence>
<sentence id="357:1">
<text>I will never go back to a PC again!</text>
</sentence>
<sentence id="1062:1">
<text>And I may be the only one but I am really liking Windows 8.</text>
<aspectTerms>
<aspectTerm term="Windows 8" polarity="positive" from="49" to="58"/>
</aspectTerms>
</sentence>
<sentence id="792:2">
<text>The baterry is very longer.</text>
<aspectTerms>
<aspectTerm term="baterry" polarity="positive" from="4" to="11"/>
</aspectTerms>
</sentence>
<sentence id="81:1">
<text>And it's so quiet that I don't hear it at all.</text>
</sentence>
<sentence id="809:1">
<text>Its size is ideal and the weight is acceptable.</text>
<aspectTerms>
<aspectTerm term="size" polarity="positive" from="4" to="8"/>
<aspectTerm term="weight" polarity="positive" from="26" to="32"/>
</aspectTerms>
</sentence>
<sentence id="787:467">
<text>I know Apples are more expensive than PCs, but he thinks it is worth every penny.</text>
</sentence>
<sentence id="144:1">
<text>To me it's a workhorse... and quiet as can be... you even save big bucks not dishing out any extra to Uncle Sam... Definite Buy...</text>
</sentence>
<sentence id="495:1">
<text>I can say that I am fully satisfied with the performance that the computer has supplied.</text>
<aspectTerms>
<aspectTerm term="performance" polarity="positive" from="45" to="56"/>
</aspectTerms>
</sentence>
<sentence id="393:1">
<text>I'm pretty sure when I bought it, my bank account went 'ouch!</text>
</sentence>
<sentence id="127:1">
<text>Thank you so much for the great item.</text>
</sentence>
<sentence id="910:1">
<text>This laptop has only 2 USB ports, and they are both on the same side.</text>
<aspectTerms>
<aspectTerm term="USB ports" polarity="negative" from="23" to="32"/>
</aspectTerms>
</sentence>
<sentence id="1047:1">
<text>It's annoying very much and I won't ever buy any Acer products.</text>
</sentence>
<sentence id="470:1">
<text>This is why I purchased a BRAND NEW LAPTOP in the first place so it wouldn't have ANY problems.</text>
</sentence>
<sentence id="499:1">
<text>It has so much more speed and the screen is very sharp.</text>
<aspectTerms>
<aspectTerm term="speed" polarity="positive" from="20" to="25"/>
<aspectTerm term="screen" polarity="positive" from="34" to="40"/>
</aspectTerms>
</sentence>
<sentence id="457:1">
<text>As for the laptop, this is our 3rd Apple computer in the past 2 years.</text>
</sentence>
<sentence id="636:1">
<text>Everything I wanted and everything I needed and the price was great!</text>
<aspectTerms>
<aspectTerm term="price" polarity="positive" from="52" to="57"/>
</aspectTerms>
</sentence>
<sentence id="48:1">
<text>It's not inexpensive but the Hardware performance is impressive for a computer this small.</text>
<aspectTerms>
<aspectTerm term="Hardware performance" polarity="positive" from="29" to="49"/>
</aspectTerms>
</sentence>
<sentence id="992:1">
<text>It is better than my old acer laptop.</text>
</sentence>
<sentence id="57:1">
<text>This thing is awesome, everything always works, everything is always easy to set up, everything is compatible, its literally everything I could ask for.</text>
<aspectTerms>
<aspectTerm term="works" polarity="positive" from="41" to="46"/>
<aspectTerm term="set up" polarity="positive" from="77" to="83"/>
</aspectTerms>
</sentence>
<sentence id="29:568">
<text>I would buy it again in a heartbeat!</text>
</sentence>
<sentence id="387:7">
<text>Keyboard responds well to presses.</text>
<aspectTerms>
<aspectTerm term="Keyboard" polarity="positive" from="0" to="8"/>
</aspectTerms>
</sentence>
<sentence id="211:0">
<text>If someone called me an Apple Fanboy...it would make sense.</text>
</sentence>
<sentence id="1063:166">
<text>Lastly, Windows 8 is annoying.</text>
<aspectTerms>
<aspectTerm term="Windows 8" polarity="negative" from="8" to="17"/>
</aspectTerms>
</sentence>
<sentence id="787:878">
<text>A scratch on a $1,500 MacBook is unforgivable.</text>
</sentence>
<sentence id="116:1">
<text>I just fell in love with this thing.</text>
</sentence>
<sentence id="479:1">
<text>Everything is so easy and intuitive to setup or configure.</text>
<aspectTerms>
<aspectTerm term="setup" polarity="positive" from="39" to="44"/>
<aspectTerm term="configure" polarity="positive" from="48" to="57"/>
</aspectTerms>
</sentence>
<sentence id="332:4">
<text>I have no problems yet on my mac so far, and hope it stays like that.</text>
</sentence>
<sentence id="786:1309">
<text>This laptop is a great buy.</text>
</sentence>
<sentence id="1107:1">
<text>Biggest complaint is Windows 8 .</text>
<aspectTerms>
<aspectTerm term="Windows 8" polarity="negative" from="21" to="30"/>
</aspectTerms>
</sentence>
<sentence id="298:29">
<text>Only 2 usb ports...seems kind of...limited.</text>
<aspectTerms>
<aspectTerm term="usb ports" polarity="negative" from="7" to="16"/>
</aspectTerms>
</sentence>
<sentence id="250:1">
<text>It has been to early to see if this actually fixes the problem or not though.</text>
</sentence>
<sentence id="787:145">
<text>This device has met my expectations and I'm sure it will meet yours.</text>
</sentence>
<sentence id="1061:1">
<text>It has all the expected features and more +plus a wide screen and more than roomy keyboard.</text>
<aspectTerms>
<aspectTerm term="features" polarity="positive" from="24" to="32"/>
<aspectTerm term="screen" polarity="positive" from="55" to="61"/>
<aspectTerm term="keyboard" polarity="positive" from="82" to="90"/>
</aspectTerms>
</sentence>
<sentence id="787:641">
<text>Out of all the laptops I have owned, this is by far the best!</text>
</sentence>
<sentence id="128:1">
<text>Amazing Performance for anything I throw at it.</text>
<aspectTerms>
<aspectTerm term="Performance" polarity="positive" from="8" to="19"/>
</aspectTerms>
</sentence>
<sentence id="734:1">
<text>I can never go back to a PC now, this machine never freezes or has any problems.</text>
</sentence>
<sentence id="1012:1">
<text>Out of the box I noticed how small it was and was exactly what I was looking for.</text>
</sentence>
<sentence id="655:1">
<text>The receiver was full of superlatives for the quality and performance.</text>
<aspectTerms>
<aspectTerm term="quality" polarity="positive" from="46" to="53"/>
<aspectTerm term="performance" polarity="positive" from="58" to="69"/>
</aspectTerms>
</sentence>
<sentence id="301:1">
<text>I was extremely happy with the OS itself.</text>
<aspectTerms>
<aspectTerm term="OS" polarity="positive" from="31" to="33"/>
</aspectTerms>
</sentence>
<sentence id="960:1">
<text>I was looking for something in between a regular laptop and a tablet and this is it.</text>
</sentence>
<sentence id="448:3">
<text>The new MBP offers great portability and gives us confidence that we are not going to need to purchase a new laptop in 18 months.</text>
<aspectTerms>
<aspectTerm term="portability" polarity="positive" from="25" to="36"/>
</aspectTerms>
</sentence>
<sentence id="1158:1">
<text>Great purchase and I definitely didn't miss out on the Black Friday deals.</text>
</sentence>
<sentence id="787:444">
<text>The criticism has waned, and now I'd be the first to recommend an Air for truly portable computing.</text>
<aspectTerms>
<aspectTerm term="portable computing" polarity="positive" from="80" to="98"/>
</aspectTerms>
</sentence>
<sentence id="1141:1">
<text>I would have given it 5 starts was it not for the fact that it had Windows 8</text>
<aspectTerms>
<aspectTerm term="Windows 8" polarity="negative" from="67" to="76"/>
</aspectTerms>
</sentence>
<sentence id="787:495">
<text>MS Office 2011 for Mac is wonderful, well worth it.</text>
<aspectTerms>
<aspectTerm term="MS Office 2011 for Mac" polarity="positive" from="0" to="22"/>
</aspectTerms>
</sentence>
<sentence id="29:809">
<text>After using it for over a month, an issue started to surface.</text>
</sentence>
<sentence id="106:1">
<text>But the performance of Mac Mini is a huge disappointment.</text>
<aspectTerms>
<aspectTerm term="performance" polarity="negative" from="8" to="19"/>
</aspectTerms>
</sentence>
<sentence id="782:1">
<text>There has been no problem with anything.</text>
</sentence>
<sentence id="589:1">
<text>I believe with Apple - you get what you pay for.</text>
</sentence>
<sentence id="294:1">
<text>They don't just look good; they deliver excellent performance.</text>
<aspectTerms>
<aspectTerm term="look" polarity="positive" from="16" to="20"/>
<aspectTerm term="performance" polarity="positive" from="50" to="61"/>
</aspectTerms>
</sentence>
<sentence id="553:1">
<text>I have had it over a year now with out a Glitch of any kind..I love the lit up keys and screen display...this thing is Fast and clear as can be.</text>
<aspectTerms>
<aspectTerm term="lit up keys" polarity="positive" from="72" to="83"/>
<aspectTerm term="screen display" polarity="positive" from="88" to="102"/>
</aspectTerms>
</sentence>
<sentence id="804:1">
<text>The product is prefect for everyone.</text>
</sentence>
<sentence id="315:1">
<text>The Mountain Lion OS is not hard to figure out if you are familiar with Microsoft Windows.</text>
<aspectTerms>
<aspectTerm term="Mountain Lion OS" polarity="positive" from="4" to="20"/>
<aspectTerm term="Microsoft Windows" polarity="neutral" from="72" to="89"/>
</aspectTerms>
</sentence>
<sentence id="17:4">
<text>However, I can refute that OSX is "FAST".</text>
<aspectTerms>
<aspectTerm term="OSX" polarity="negative" from="27" to="30"/>
</aspectTerms>
</sentence>
<sentence id="631:1">
<text>I waited to review to make sure it is what it is.</text>
</sentence>
<sentence id="787:575">
<text>Enjoy using Microsoft Office!</text>
<aspectTerms>
<aspectTerm term="Microsoft Office" polarity="positive" from="12" to="28"/>
</aspectTerms>
</sentence>
<sentence id="764:1">
<text>I would suggest this product to anyone.</text>
</sentence>
<sentence id="452:1">
<text>With no problems, I'm happy with this purchase because I saved money compared to buying it anywhere else.</text>
</sentence>
<sentence id="412:1">
<text>Incredible graphics and brilliant colors.</text>
<aspectTerms>
<aspectTerm term="graphics" polarity="positive" from="11" to="19"/>
<aspectTerm term="colors" polarity="positive" from="34" to="40"/>
</aspectTerms>
</sentence>
<sentence id="60:1">
<text>I needed something affordable from Apple and was tired of dealing with PC laptop after PC laptop.</text>
</sentence>
<sentence id="317:1">
<text>Just bit the bullet and bought the Mac hoping it will last a lot longer….</text>
</sentence>
<sentence id="747:5">
<text>Built-in apps are purely amazing.</text>
<aspectTerms>
<aspectTerm term="Built-in apps" polarity="positive" from="0" to="13"/>
</aspectTerms>
</sentence>
<sentence id="395:3">
<text>Cons: Screen resolution.</text>
<aspectTerms>
<aspectTerm term="Screen resolution" polarity="negative" from="6" to="23"/>
</aspectTerms>
</sentence>
<sentence id="469:1">
<text>From the speed to the multi touch gestures this operating system beats Windows easily.</text>
<aspectTerms>
<aspectTerm term="operating system" polarity="positive" from="48" to="64"/>
<aspectTerm term="Windows" polarity="negative" from="71" to="78"/>
<aspectTerm term="speed" polarity="positive" from="9" to="14"/>
<aspectTerm term="multi touch gestures" polarity="positive" from="22" to="42"/>
</aspectTerms>
</sentence>
<sentence id="1028:1">
<text>I really like the size and I'm a fan of the ACERS.</text>
<aspectTerms>
<aspectTerm term="size" polarity="positive" from="18" to="22"/>
</aspectTerms>
</sentence>
<sentence id="660:1">
<text>This is by far thee best, most reliable computer I could find.</text>
</sentence>
<sentence id="286:15">
<text>I opted for the SquareTrade 3-Year Computer Accidental Protection Warranty ($1500-2000) which also support "accidents" like drops and spills that are NOT covered by AppleCare.</text>
<aspectTerms>
<aspectTerm term="SquareTrade 3-Year Computer Accidental Protection Warranty" polarity="positive" from="16" to="74"/>
<aspectTerm term="AppleCare" polarity="negative" from="165" to="174"/>
</aspectTerms>
</sentence>
<sentence id="1002:1">
<text>It's light and easy to transport.</text>
<aspectTerms>
<aspectTerm term="transport" polarity="positive" from="23" to="32"/>
</aspectTerms>
</sentence>
<sentence id="1118:1">
<text>Once you get past learning how to use the poorly designed Windows 8 Set-Up you may feel frustrated.</text>
<aspectTerms>
<aspectTerm term="Windows 8 Set-Up" polarity="negative" from="58" to="74"/>
</aspectTerms>
</sentence>
<sentence id="46:1">
<text>Very powerful especially for the money.</text>
</sentence>
<sentence id="563:1">
<text>When my Dell laptop gave up only after 2 1/2 years, I decided to buy MacBook Pro.</text>
</sentence>
<sentence id="417:1">
<text>It's been time for a new laptop, and the only debate was which size of the Mac laptops, and whether to spring for the retina display.</text>
<aspectTerms>
<aspectTerm term="size" polarity="neutral" from="63" to="67"/>
<aspectTerm term="retina display" polarity="neutral" from="118" to="132"/>
</aspectTerms>
</sentence>
<sentence id="929:1">
<text>This was a significantly more affordable than getting a new MacBook Pro from Apple.</text>
</sentence>
<sentence id="375:0">
<text>I have always wanted a MacBook Pro.....always!</text>
</sentence>
<sentence id="727:1">
<text>The reason why I choose apple MacBook because of their design and the aluminum casing.</text>
<aspectTerms>
<aspectTerm term="design" polarity="positive" from="55" to="61"/>
<aspectTerm term="aluminum casing" polarity="positive" from="70" to="85"/>
</aspectTerms>
</sentence>
<sentence id="747:8">
<text>The aluminum body sure makes it stand out.</text>
<aspectTerms>
<aspectTerm term="aluminum body" polarity="positive" from="4" to="17"/>
</aspectTerms>
</sentence>
<sentence id="787:773">
<text>Overall it's an amazing product, 5 stars!</text>
</sentence>
<sentence id="37:1">
<text>It is very easy to integrate bluetooth devices, and USB devices are recognized almost instantly.</text>
<aspectTerms>
<aspectTerm term="integrate bluetooth devices" polarity="positive" from="19" to="46"/>
<aspectTerm term="USB devices" polarity="positive" from="52" to="63"/>
</aspectTerms>
</sentence>
<sentence id="741:1">
<text>He's thrilled with his new laptop.</text>
</sentence>
<sentence id="532:1">
<text>Amazing product as you would expect from Apple.</text>
</sentence>
<sentence id="757:1">
<text>Nothing wrong with this computer at all!</text>
</sentence>
<sentence id="891:8">
<text>And the fact that Apple is driving the 13" RMBP with the Intel4000 graphic chip seems underpowered (to me.</text>
<aspectTerms>
<aspectTerm term="Intel4000 graphic chip" polarity="negative" from="57" to="79"/>
</aspectTerms>
</sentence>
<sentence id="786:42">
<text>I have to wonder why Amazon is even selling this dinosaur.</text>
</sentence>
<sentence id="19:1">
<text>Apple removed the DVD drive Firewire port (will work with adapter) and put the SDXC slot in a silly position on the back.</text>
<aspectTerms>
<aspectTerm term="DVD drive Firewire port" polarity="neutral" from="18" to="41"/>
<aspectTerm term="adapter" polarity="neutral" from="58" to="65"/>
<aspectTerm term="SDXC slot" polarity="negative" from="79" to="88"/>
</aspectTerms>
</sentence>
<sentence id="907:1">
<text>No hassle and no complaints.</text>
</sentence>
<sentence id="786:1">
<text>LOVE IT I've always been an apple fan boy, but never had the money to buy a mac, only ipads and iphones, and this is my first mac, blew me away completely.</text>
</sentence>
<sentence id="363:27">
<text>The durability of the laptop will make it worth the money.</text>
<aspectTerms>
<aspectTerm term="durability" polarity="positive" from="4" to="14"/>
</aspectTerms>
</sentence>
<sentence id="422:1">
<text>Well designed and fast.</text>
<aspectTerms>
<aspectTerm term="designed" polarity="positive" from="5" to="13"/>
</aspectTerms>
</sentence>
<sentence id="786:414">
<text>And now I am a proud MacBook owner also!</text>
</sentence>
<sentence id="295:1">
<text>But I was completely wrong, this computer is UNBELIEVABLE amazing and easy to use.</text>
<aspectTerms>
<aspectTerm term="use" polarity="positive" from="78" to="81"/>
</aspectTerms>
</sentence>
<sentence id="1119:1">
<text>Exactly as posted plus a great value.</text>
<aspectTerms>
<aspectTerm term="value" polarity="positive" from="31" to="36"/>
</aspectTerms>
</sentence>
<sentence id="29:81">
<text>The specs are pretty good too.</text>
<aspectTerms>
<aspectTerm term="specs" polarity="positive" from="4" to="9"/>
</aspectTerms>
</sentence>
<sentence id="1045:1">
<text>I am having a friend look at it , but will probably return it.</text>
</sentence>
<sentence id="682:1">
<text>There were no scratches or dents or any marks at all.</text>
</sentence>
<sentence id="148:1">
<text>I've only had it one day, but I really do love it and I'm happy it was economical and I'm finally able to own a Mac!</text>
</sentence>
<sentence id="652:1">
<text>Since I have always used Apple products, the choice of Macbook Pro was obvious.</text>
</sentence>
<sentence id="211:1">
<text>Apple is unmatched in product quality,aesthetics,craftmanship, and customer service.</text>
<aspectTerms>
<aspectTerm term="product quality" polarity="positive" from="22" to="37"/>
<aspectTerm term="aesthetics" polarity="positive" from="38" to="48"/>
<aspectTerm term="craftmanship" polarity="positive" from="49" to="61"/>
<aspectTerm term="customer service" polarity="positive" from="67" to="83"/>
</aspectTerms>
</sentence>
<sentence id="888:1">
<text>This is my first apple laptop.</text>
</sentence>
<sentence id="1078:1">
<text>It makes a great gift.</text>
</sentence>
<sentence id="1159:1">
<text>It is a great size and amazing windows 8 included!</text>
<aspectTerms>
<aspectTerm term="size" polarity="positive" from="14" to="18"/>
<aspectTerm term="windows 8" polarity="positive" from="31" to="40"/>
</aspectTerms>
</sentence>
<sentence id="661:1">
<text>I would recommend to any one lloking for a first class computer!</text>
</sentence>
<sentence id="1150:1">
<text>I do not like too much Windows 8.</text>
<aspectTerms>
<aspectTerm term="Windows 8" polarity="negative" from="23" to="32"/>
</aspectTerms>
</sentence>
<sentence id="787:272">
<text>Startup times are incredibly long: over two minutes.</text>
<aspectTerms>
<aspectTerm term="Startup times" polarity="negative" from="0" to="13"/>
</aspectTerms>
</sentence>
<sentence id="369:0">
<text>I bought this Macbook Pro from Best Buy under a year ago to replace my old Macbook Air.</text>
</sentence>
<sentence id="897:1">
<text>The macbook pro is really responsive.</text>
</sentence>
<sentence id="743:1">
<text>Also stunning colors and speedy</text>
<aspectTerms>
<aspectTerm term="colors" polarity="positive" from="14" to="20"/>
</aspectTerms>
</sentence>
<sentence id="803:1">
<text>it is really expensive though.</text>
</sentence>
<sentence id="681:1">
<text>great price free shipping what else can i ask for!!</text>
<aspectTerms>
<aspectTerm term="price" polarity="positive" from="6" to="11"/>
<aspectTerm term="shipping" polarity="positive" from="17" to="25"/>
</aspectTerms>
</sentence>
<sentence id="801:1">
<text>This mouse is terrific.</text>
<aspectTerms>
<aspectTerm term="mouse" polarity="positive" from="5" to="10"/>
</aspectTerms>
</sentence>
<sentence id="280:12">
<text>I will also say it is much better than I expected!</text>
</sentence>
<sentence id="333:1">
<text>This computer does everything i need it to do for school and more.</text>
</sentence>
<sentence id="786:1423">
<text>It is really thick around the battery.</text>
<aspectTerms>
<aspectTerm term="battery" polarity="neutral" from="30" to="37"/>
</aspectTerms>
</sentence>
<sentence id="974:1">
<text>And windows 7 works like a charm.</text>
<aspectTerms>
<aspectTerm term="windows 7" polarity="positive" from="4" to="13"/>
</aspectTerms>
</sentence>
<sentence id="151:1">
<text>And I can attach my projector to it.</text>
</sentence>
<sentence id="605:1">
<text>:) Great product, great price, great delivery, and great service.</text>
<aspectTerms>
<aspectTerm term="price" polarity="positive" from="24" to="29"/>
<aspectTerm term="delivery" polarity="positive" from="37" to="45"/>
<aspectTerm term="service" polarity="positive" from="57" to="64"/>
</aspectTerms>
</sentence>
<sentence id="846:1">
<text>:] It arrived so fast and customer service was great.</text>
<aspectTerms>
<aspectTerm term="customer service" polarity="positive" from="26" to="42"/>
</aspectTerms>
</sentence>
<sentence id="983:1">
<text>tried windows 8 and hated it !!!</text>
<aspectTerms>
<aspectTerm term="windows 8" polarity="negative" from="6" to="15"/>
</aspectTerms>
</sentence>
<sentence id="912:1">
<text>The price is higher than most lab top out there; however, he/she will get what they paid for, which is a great computer.</text>
<aspectTerms>
<aspectTerm term="price" polarity="conflict" from="4" to="9"/>
</aspectTerms>
</sentence>
<sentence id="449:1">
<text>So, I thought why not give Mac Book pro a try.</text>
</sentence>
<sentence id="723:1">
<text>Set up was a breeze.</text>
<aspectTerms>
<aspectTerm term="Set up" polarity="positive" from="0" to="6"/>
</aspectTerms>
</sentence>
<sentence id="1122:1">
<text>But I do NOT like Win8.</text>
<aspectTerms>
<aspectTerm term="Win8" polarity="negative" from="18" to="22"/>
</aspectTerms>
</sentence>
<sentence id="893:1">
<text>I have owned at least 4 to 5 laptops and computers - but this is by far the most superior machine I have ever owned.</text>
</sentence>
<sentence id="856:1">
<text>I am still in the process of learning about its features.</text>
<aspectTerms>
<aspectTerm term="features" polarity="neutral" from="48" to="56"/>
</aspectTerms>
</sentence>
<sentence id="786:214">
<text>BTW, I checked online regarding the old laptop that 'died' and found that I was not alone, far from it.</text>
</sentence>
<sentence id="609:1">
<text>I had the same reasons as most PC users: the price, the overbearing restrictions of OSX and lack of support for games.</text>
<aspectTerms>
<aspectTerm term="price" polarity="negative" from="45" to="50"/>
<aspectTerm term="OSX" polarity="negative" from="84" to="87"/>
<aspectTerm term="support for games" polarity="negative" from="100" to="117"/>
</aspectTerms>
</sentence>
<sentence id="101:1">
<text>I wanted it for it's mobility and man, this little bad boy is very nice.</text>
<aspectTerms>
<aspectTerm term="mobility" polarity="positive" from="21" to="29"/>
</aspectTerms>
</sentence>
<sentence id="7:23">
<text>Seems to me that's the best way to get Apple's attention.</text>
</sentence>
<sentence id="1126:1">
<text>Very nice so far.</text>
</sentence>
<sentence id="668:1">
<text>You won't be disappointed.</text>
</sentence>
<sentence id="799:1">
<text>The investment of a new MacBook Pro came at a price, but totally worth it for a good piece of mind.</text>
<aspectTerms>
<aspectTerm term="price" polarity="conflict" from="46" to="51"/>
</aspectTerms>
</sentence>
<sentence id="156:1">
<text>I found the mini to be:Exceptionally easy to set up</text>
<aspectTerms>
<aspectTerm term="set up" polarity="positive" from="45" to="51"/>
</aspectTerms>
</sentence>
<sentence id="29:318">
<text>Having USB3 is why I bought this Mini.</text>
<aspectTerms>
<aspectTerm term="USB3" polarity="positive" from="7" to="11"/>
</aspectTerms>
</sentence>
<sentence id="787:622">
<text>Be sure to have good air flow where ever you put it.</text>
</sentence>
<sentence id="480:7">
<text>The sound is nice and loud; I don't have any problems with hearing anything.</text>
<aspectTerms>
<aspectTerm term="sound" polarity="positive" from="4" to="9"/>
</aspectTerms>
</sentence>
<sentence id="720:1">
<text>It is very slim, the track pad is very much impressed with me.</text>
<aspectTerms>
<aspectTerm term="track pad" polarity="positive" from="21" to="30"/>
</aspectTerms>
</sentence>
<sentence id="787:717">
<text>This was the same problem with my MacBook (circa 2007) that I just retired.</text>
</sentence>
<sentence id="229:1">
<text>Great things come in small "packages.</text>
</sentence>
<sentence id="934:0">
<text>HUGE Apple MAC Fan!</text>
</sentence>
<sentence id="387:1">
<text>Looked at HP, ASUS, Acer, Sony and a bunch of other ones but could not find I really liked.</text>
</sentence>
<sentence id="1122:5">
<text>The settings are not user-friendly either.</text>
<aspectTerms>
<aspectTerm term="settings" polarity="negative" from="4" to="12"/>
</aspectTerms>
</sentence>
<sentence id="7:22">
<text>Honestly, I am surprised no one else has mentioned returning theirs.</text>
</sentence>
<sentence id="439:1">
<text>Most of them were either too big, too noisy and too slow after 2 years.</text>
</sentence>
<sentence id="386:1">
<text>The machine is used, but is like new, i'm very impress.</text>
</sentence>
<sentence id="1063:180">
<text>Thank goodness for OpenOffice!</text>
<aspectTerms>
<aspectTerm term="OpenOffice" polarity="positive" from="19" to="29"/>
</aspectTerms>
</sentence>
<sentence id="627:1">
<text>Awesome form factor, great battery life, wonderful UX.</text>
<aspectTerms>
<aspectTerm term="form factor" polarity="positive" from="8" to="19"/>
<aspectTerm term="battery life" polarity="positive" from="27" to="39"/>
<aspectTerm term="UX" polarity="positive" from="51" to="53"/>
</aspectTerms>
</sentence>
<sentence id="302:1">
<text>Needless to say, the leap from that to this has been amazing and (aside from the financial reasons) I am astounded that I hadn't made the switch sooner.</text>
</sentence>
<sentence id="792:1">
<text>Its perfect, not much heavy.</text>
</sentence>
<sentence id="876:1">
<text>i love the keyboard and the screen.</text>
<aspectTerms>
<aspectTerm term="keyboard" polarity="positive" from="11" to="19"/>
<aspectTerm term="screen" polarity="positive" from="28" to="34"/>
</aspectTerms>
</sentence>
<sentence id="1113:1">
<text>I find it not to be very user friendly.</text>
</sentence>
<sentence id="536:1">
<text>It has surpassed all expectations and fulfilled all my needs.</text>
</sentence>
<sentence id="998:1">
<text>However, there are MAJOR issues with the touchpad which render the device nearly useless.</text>
<aspectTerms>
<aspectTerm term="touchpad" polarity="negative" from="41" to="49"/>
</aspectTerms>
</sentence>
<sentence id="292:1">
<text>What angers me more than anything else is that I spent all those years hating MACs when I could have been getting a lot more production with a whole lot less grief!</text>
</sentence>
<sentence id="104:1">
<text>I've already upgraded o Mavericks and I am impressed with everything about this computer.</text>
<aspectTerms>
<aspectTerm term="Mavericks" polarity="positive" from="24" to="33"/>
</aspectTerms>
</sentence>
<sentence id="787:711">
<text>So this is very good commputer and i highly suggest it.</text>
</sentence>
<sentence id="517:1">
<text>the mbp i recieved was everything it should have been.</text>
</sentence>
<sentence id="1049:1">
<text>I was going to buy today and noticed it went back up to $344.99?</text>
</sentence>
<sentence id="218:1">
<text>Not as fast as I would have expect for an i5.</text>
<aspectTerms>
<aspectTerm term="i5" polarity="negative" from="42" to="44"/>
</aspectTerms>
</sentence>
<sentence id="622:1">
<text>SO of course this one came through with the awesomeness!</text>
</sentence>
<sentence id="787:648">
<text>You will not regret buying this computer!</text>
</sentence>
<sentence id="826:1">
<text>Nothing bad to say about it.</text>
</sentence>
<sentence id="850:1">
<text>It s heavy for Mac book but is good.</text>
</sentence>
<sentence id="79:1">
<text>thanks for great service and shipping!</text>
<aspectTerms>
<aspectTerm term="service" polarity="positive" from="17" to="24"/>
<aspectTerm term="shipping" polarity="positive" from="29" to="37"/>
</aspectTerms>
</sentence>
<sentence id="787:725">
<text>Deal of the year.</text>
</sentence>
<sentence id="842:7">
<text>My sisters same laptop broke about the month later for the same reason.</text>
</sentence>
<sentence id="29:367">
<text>Minis make sense for a lot of people.</text>
</sentence>
<sentence id="16:1">
<text>The performance seems quite good, and built-in applications like iPhoto work great with my phone and camera.</text>
<aspectTerms>
<aspectTerm term="performance" polarity="positive" from="4" to="15"/>
<aspectTerm term="built-in applications" polarity="positive" from="38" to="59"/>
<aspectTerm term="iPhoto" polarity="positive" from="65" to="71"/>
</aspectTerms>
</sentence>
<sentence id="29:358">
<text>This Mac Mini makes the Macbook Pro seem slow.</text>
</sentence>
<sentence id="895:1">
<text>I did swap out the hard drive for a Samsung 830 SSD which I highly recommend.</text>
<aspectTerms>
<aspectTerm term="hard drive" polarity="neutral" from="19" to="29"/>
<aspectTerm term="Samsung 830 SSD" polarity="positive" from="36" to="51"/>
</aspectTerms>
</sentence>
<sentence id="836:1">
<text>I bought this MacBook Pro to replace my six-year-old PC (a Sony Vaio), but it was basically no better than my old PC, so I returned it.</text>
</sentence>
<sentence id="1087:1">
<text>I wanted a simple, reliable laptop.</text>
</sentence>
<sentence id="846:2">
<text>Cheaper than buying it @ apple too!</text>
</sentence>
<sentence id="1063:165">
<text>I have just had to learn to be a little harder typer than on my last computer.</text>
</sentence>
<sentence id="335:1">
<text>Extremely disappointed with the way it is.</text>
</sentence>
<sentence id="342:1">
<text>Never been happier using computer.</text>
</sentence>
<sentence id="442:1">
<text>I have had a total of 5 different laptop from many different manufactures.</text>
</sentence>
<sentence id="534:1">
<text>Does everything I wanted this laptop to do.</text>
</sentence>
<sentence id="905:2">
<text>Besides, the apple stocks have been falling due to lack of sales.</text>
</sentence>
<sentence id="1071:1">
<text>Turns out this is a common problem.</text>
</sentence>
<sentence id="714:1">
<text>Starts up in a hurry and everything is ready to go.</text>
<aspectTerms>
<aspectTerm term="Starts up" polarity="positive" from="0" to="9"/>
</aspectTerms>
</sentence>
<sentence id="904:1">
<text>It is also fast as can be... you get what you pay for... well worth the investment</text>
</sentence>
<sentence id="252:1">
<text>But I'm still learning so can't rate it yet for everything.</text>
</sentence>
<sentence id="787:497">
<text>Overall very impressed, Thank you Apple and Amazon!</text>
</sentence>
<sentence id="786:876">
<text>Yes, that's a good thing, but it's made from aluminum that scratches easily.</text>
<aspectTerms>
<aspectTerm term="aluminum" polarity="negative" from="45" to="53"/>
</aspectTerms>
</sentence>
<sentence id="1091:1">
<text>Very fast for my needs.</text>
</sentence>
<sentence id="385:1">
<text>I bought this Mac in order to replace my old Dell laptop.</text>
</sentence>
<sentence id="566:1">
<text>Quick and has built in virus control.</text>
<aspectTerms>
<aspectTerm term="built in virus control" polarity="positive" from="14" to="36"/>
</aspectTerms>
</sentence>
<sentence id="491:1">
<text>Took a long time trying to decide between one with retina display and one without.</text>
<aspectTerms>
<aspectTerm term="retina display" polarity="neutral" from="51" to="65"/>
</aspectTerms>
</sentence>
<sentence id="107:1">
<text>I saw the Mini Mac at Best Buy and decided to get this as my replacement.</text>
</sentence>
<sentence id="690:1">
<text>I finally decided on this one and couldn't be any happier.</text>
</sentence>
<sentence id="278:5">
<text>I was also informed that the components of the Mac Book were dirty.</text>
<aspectTerms>
<aspectTerm term="components" polarity="negative" from="29" to="39"/>
</aspectTerms>
</sentence>
<sentence id="732:1">
<text>So glad I did not waste money on a less than par product.</text>
</sentence>
<sentence id="787:682">
<text>Haven't regretted it one bit.</text>
</sentence>
<sentence id="155:1">
<text>The one thing that Apple does right is computers.</text>
</sentence>
<sentence id="337:1">
<text>the hardware problems have been so bad, i can't wait till it completely dies in 3 years, TOPS!</text>
<aspectTerms>
<aspectTerm term="hardware" polarity="negative" from="4" to="12"/>
</aspectTerms>
</sentence>
<sentence id="857:1">
<text>It's so nice that the battery last so long and that this machine has the snow lion!</text>
<aspectTerms>
<aspectTerm term="battery" polarity="positive" from="22" to="29"/>
<aspectTerm term="snow lion" polarity="positive" from="73" to="82"/>
</aspectTerms>
</sentence>
<sentence id="777:1">
<text>I think that they are the best out on the market.</text>
</sentence>
<sentence id="927:1">
<text>HOWEVER I chose two day shipping and it took over a week to arrive.</text>
<aspectTerms>
<aspectTerm term="shipping" polarity="negative" from="24" to="32"/>
</aspectTerms>
</sentence>
<sentence id="29:428">
<text>That's quite a bump up from the $599 that this little guy sells for, which leaves me to my next point.</text>
</sentence>
<sentence id="419:1">
<text>this is quite smooth as well as heavy and can easily slip through the hands.</text>
</sentence>
<sentence id="787:429">
<text>My laptop is so light that I can take it with me anywhere.</text>
</sentence>
<sentence id="679:1">
<text>it's exactly what i wanted, and it has all the new features and whatnot.</text>
<aspectTerms>
<aspectTerm term="features" polarity="positive" from="51" to="59"/>
</aspectTerms>
</sentence>
<sentence id="476:1">
<text>You can do absolutely anything and is very fast and stylish.</text>
</sentence>
<sentence id="585:1">
<text>Finally decided to try a MAC because there were too many choices of which PC's to buy and EVERYONE who had a MAC said "buy a MAC".</text>
</sentence>
<sentence id="503:1">
<text>Can you buy any laptop that matches the quality of a MacBook?</text>
<aspectTerms>
<aspectTerm term="quality" polarity="positive" from="40" to="47"/>
</aspectTerms>
</sentence>
<sentence id="1040:1">
<text>It feels cheap, the keyboard is not very sensitive.</text>
<aspectTerms>
<aspectTerm term="keyboard" polarity="negative" from="20" to="28"/>
</aspectTerms>
</sentence>
<sentence id="842:9">
<text>That defeated the whole point of a laptop.</text>
</sentence>
<sentence id="982:1">
<text>Though please note that sometimes it crashes, and the sound quality isnt superb.</text>
<aspectTerms>
<aspectTerm term="sound quality" polarity="negative" from="54" to="67"/>
</aspectTerms>
</sentence>
<sentence id="748:1">
<text>It is very easy to navigate even for a novice.</text>
<aspectTerms>
<aspectTerm term="navigate" polarity="positive" from="19" to="27"/>
</aspectTerms>
</sentence>
<sentence id="170:1">
<text>But until now, no complains at all.</text>
</sentence>
<sentence id="1063:159">
<text>The cons are more annoyances that can be lived with.</text>
</sentence>
<sentence id="989:1">
<text>Does everything I need it to, has a wonderful battery life and I couldn't be happier.</text>
<aspectTerms>
<aspectTerm term="battery life" polarity="positive" from="46" to="58"/>
</aspectTerms>
</sentence>
<sentence id="765:1">
<text>Great Performance and Quality.</text>
<aspectTerms>
<aspectTerm term="Performance" polarity="positive" from="6" to="17"/>
<aspectTerm term="Quality" polarity="positive" from="22" to="29"/>
</aspectTerms>
</sentence>
<sentence id="1030:4">
<text>Just What I Needed For Portable And My Wallet Too!</text>
</sentence>
<sentence id="502:1">
<text>The device speaks about it self.</text>
</sentence>
<sentence id="462:1">
<text>I used windows XP, windows Vista, and Windows 7 extensively.</text>
<aspectTerms>
<aspectTerm term="windows XP" polarity="neutral" from="7" to="17"/>
<aspectTerm term="windows Vista" polarity="neutral" from="19" to="32"/>
<aspectTerm term="Windows 7" polarity="neutral" from="38" to="47"/>
</aspectTerms>
</sentence>
<sentence id="914:1">
<text>the only thing that bums me out about this purchase is they released a newer updated mbp seriously RIGHT after i bought this one.</text>
</sentence>
<sentence id="890:1">
<text>it does get hot when using on a bed or sofa and gets warm on a desk....this is in an un-air conditioned room.....in air condition it gets slightly warm......</text>
</sentence>
<sentence id="124:1">
<text>I did add a SSD drive and memory</text>
<aspectTerms>
<aspectTerm term="SSD drive" polarity="neutral" from="12" to="21"/>
<aspectTerm term="memory" polarity="neutral" from="26" to="32"/>
</aspectTerms>
</sentence>
<sentence id="790:0">
<text>I got this one for thanks giving Offer for $962 :).</text>
</sentence>
<sentence id="896:1">
<text>I had my PC laptop for 3 years and going to a MacBook Pro is like I leaped through time.</text>
</sentence>
<sentence id="269:1">
<text>On start up it asks endless questions just so itune can sell you more of their products.</text>
<aspectTerms>
<aspectTerm term="start up" polarity="negative" from="3" to="11"/>
<aspectTerm term="itune" polarity="negative" from="46" to="51"/>
</aspectTerms>
</sentence>
<sentence id="29:369">
<text>Pretty much made sense to get a Mini.</text>
</sentence>
<sentence id="332:1">
<text>I Have been a Pc user for a very long time now but I will get used to this new OS.</text>
<aspectTerms>
<aspectTerm term="OS" polarity="neutral" from="79" to="81"/>
</aspectTerms>
</sentence>
<sentence id="869:1">
<text>not something you want to miss out on!!!</text>
</sentence>
<sentence id="787:628">
<text>One more thing, this mac does NOT come with restore disks and I am not sure if you can make them direct from the mac like you can with newer PC's, also the charging cables are made of the same cheap material as the iPhone/iPod touch cables.</text>
<aspectTerms>
<aspectTerm term="restore disks" polarity="negative" from="44" to="57"/>
<aspectTerm term="charging cables" polarity="negative" from="156" to="171"/>
<aspectTerm term="material" polarity="negative" from="199" to="207"/>
</aspectTerms>
</sentence>
<sentence id="300:1">
<text>I bought it to my son who uses it for graphic design.</text>
<aspectTerms>
<aspectTerm term="graphic design" polarity="neutral" from="38" to="52"/>
</aspectTerms>
</sentence>
<sentence id="320:1">
<text>I previously owned an older Dell laptop that died after about 5 or 6 years.</text>
</sentence>
<sentence id="964:1">
<text>Its a pretty decent computer.</text>
</sentence>
<sentence id="29:312">
<text>I never tried any external mics with that iMac.</text>
<aspectTerms>
<aspectTerm term="external mics" polarity="neutral" from="18" to="31"/>
</aspectTerms>
</sentence>
<sentence id="580:1">
<text>The new os is great on my macbook pro!</text>
<aspectTerms>
<aspectTerm term="os" polarity="positive" from="8" to="10"/>
</aspectTerms>
</sentence>
<sentence id="478:1">
<text>It was fast, and it was "different".</text>
</sentence>
<sentence id="1027:1">
<text>I had a little problem adjusting to the small screen but works fine as long as I remember to carry my glasses.</text>
<aspectTerms>
<aspectTerm term="screen" polarity="conflict" from="46" to="52"/>
</aspectTerms>
</sentence>
<sentence id="647:1">
<text>I purchased my first Mac and am glad I did.</text>
</sentence>
<sentence id="705:1">
<text>I have experienced no problems, works as anticipated.</text>
<aspectTerms>
<aspectTerm term="works" polarity="positive" from="32" to="37"/>
</aspectTerms>
</sentence>
<sentence id="873:1">
<text>System is running great.</text>
<aspectTerms>
<aspectTerm term="System" polarity="positive" from="0" to="6"/>
</aspectTerms>
</sentence>
<sentence id="633:1">
<text>Easy to customize setting and even create your own bookmarks.</text>
<aspectTerms>
<aspectTerm term="customize setting" polarity="positive" from="8" to="25"/>
<aspectTerm term="create your own bookmarks" polarity="positive" from="35" to="60"/>
</aspectTerms>
</sentence>
<sentence id="276:1">
<text>They really screwed the pooch on this one.</text>
</sentence>
<sentence id="105:1">
<text>The MAC Mini, wireless keyboard / mouse and a HDMI cable is all I need to get some real work done.</text>
<aspectTerms>
<aspectTerm term="wireless keyboard / mouse" polarity="neutral" from="14" to="39"/>
<aspectTerm term="HDMI cable" polarity="neutral" from="46" to="56"/>
</aspectTerms>
</sentence>
<sentence id="89:1">
<text>I finally pulled the trigger and I am blown away by how much more I enjoy my computer tasks using the Mac Mini!!!</text>
</sentence>
<sentence id="1076:1">
<text>it has all the features that we expected and the price was good, working well so far.</text>
<aspectTerms>
<aspectTerm term="features" polarity="positive" from="15" to="23"/>
<aspectTerm term="price" polarity="positive" from="49" to="54"/>
<aspectTerm term="working" polarity="positive" from="65" to="72"/>
</aspectTerms>
</sentence>
<sentence id="112:1">
<text>I work as a designer and coder and I needed a new buddy to work with, not gaming.</text>
<aspectTerms>
<aspectTerm term="gaming" polarity="neutral" from="74" to="80"/>
</aspectTerms>
</sentence>
<sentence id="832:17">
<text>I was told that it seems to be a multi - component failure.</text>
</sentence>
<sentence id="453:1">
<text>The new operating system makes this computer into a super iPad.</text>
<aspectTerms>
<aspectTerm term="operating system" polarity="positive" from="8" to="24"/>
</aspectTerms>
</sentence>
<sentence id="733:1">
<text>I am very happy with my first Mac.</text>
</sentence>
<sentence id="179:1">
<text>Easy to set up and go!</text>
<aspectTerms>
<aspectTerm term="set up" polarity="positive" from="8" to="14"/>
</aspectTerms>
</sentence>
<sentence id="900:1">
<text>I can't believe how quiet the hard drive is and how quick this thing boots up.</text>
<aspectTerms>
<aspectTerm term="hard drive" polarity="positive" from="30" to="40"/>
<aspectTerm term="boots up" polarity="positive" from="69" to="77"/>
</aspectTerms>
</sentence>
<sentence id="1:26">
<text>The only issue came when I tried scanning to the mac.</text>
<aspectTerms>
<aspectTerm term="scanning" polarity="negative" from="33" to="41"/>
</aspectTerms>
</sentence>
<sentence id="874:1">
<text>The machine is speedy and efficient.</text>
</sentence>
<sentence id="993:1">
<text>I think this is about as good as it gets at anything close to this price point.</text>
<aspectTerms>
<aspectTerm term="price point" polarity="neutral" from="67" to="78"/>
</aspectTerms>
</sentence>
<sentence id="122:1">
<text>A *big* upgrade from my 13" 2006 macbook.</text>
</sentence>
<sentence id="945:1">
<text>It's just what we were looking for and it works great.</text>
<aspectTerms>
<aspectTerm term="works" polarity="positive" from="42" to="47"/>
</aspectTerms>
</sentence>
<sentence id="542:1">
<text>Having a Mac certainly makes life easier.</text>
</sentence>
<sentence id="709:1">
<text>It's so quick and responsive that it makes working/surfing on a computer so much more pleasurable!</text>
<aspectTerms>
<aspectTerm term="working" polarity="positive" from="43" to="50"/>
<aspectTerm term="surfing" polarity="positive" from="51" to="58"/>
</aspectTerms>
</sentence>
<sentence id="771:1">
<text>The old unibody macbook pro could fry an egg after a while.</text>
</sentence>
<sentence id="87:1">
<text>It works fine, and all the software seems to run pretty well.</text>
<aspectTerms>
<aspectTerm term="works" polarity="positive" from="3" to="8"/>
<aspectTerm term="software" polarity="positive" from="27" to="35"/>
</aspectTerms>
</sentence>
<sentence id="984:1">
<text>For this purpose, it's great.</text>
</sentence>
<sentence id="600:1">
<text>Couldn't have asked for more!</text>
</sentence>
<sentence id="0:1">
<text>I'm using this computer for word processing, web browsing, some gaming, and I'm learning programming.</text>
<aspectTerms>
<aspectTerm term="word processing" polarity="neutral" from="28" to="43"/>
<aspectTerm term="web browsing" polarity="neutral" from="45" to="57"/>
<aspectTerm term="gaming" polarity="neutral" from="64" to="70"/>
<aspectTerm term="programming" polarity="neutral" from="89" to="100"/>
</aspectTerms>
</sentence>
<sentence id="91:1">
<text>It certainly does, but you rarely hear any of your friends with Mac's complain about anything.</text>
</sentence>
<sentence id="477:1">
<text>My wife was so excited to open the box, but quickly came to see that it did not function as it should.</text>
<aspectTerms>
<aspectTerm term="function" polarity="negative" from="80" to="88"/>
</aspectTerms>
</sentence>
<sentence id="786:537">
<text>I don't have any technical pearls to share.</text>
</sentence>
<sentence id="383:1">
<text>I wanted a computer that was quite, fast, and that had overall great performance.</text>
<aspectTerms>
<aspectTerm term="performance" polarity="neutral" from="69" to="80"/>
</aspectTerms>
</sentence>
<sentence id="160:19">
<text>Apple "Help" is a mixed bag.</text>
<aspectTerms>
<aspectTerm term="Apple "Help"" polarity="negative" from="0" to="12"/>
</aspectTerms>
</sentence>
<sentence id="358:1">
<text>All I can say is I am impressed.</text>
</sentence>
<sentence id="268:1">
<text>It suddenly can not work.</text>
<aspectTerms>
<aspectTerm term="work" polarity="negative" from="20" to="24"/>
</aspectTerms>
</sentence>
<sentence id="508:1">
<text>It did everything we expected!</text>
</sentence>
<sentence id="279:0">
<text>Harddrive was in poor condition, had to replace it.</text>
<aspectTerms>
<aspectTerm term="Harddrive" polarity="negative" from="0" to="9"/>
</aspectTerms>
</sentence>
<sentence id="200:1">
<text>The on/off switch is a bit obscure in the rear corner.</text>
<aspectTerms>
<aspectTerm term="on/off switch" polarity="negative" from="4" to="17"/>
</aspectTerms>
</sentence>
<sentence id="29:1053">
<text>It's a nice little gadget.</text>
</sentence>
<sentence id="28:1">
<text>My only complaint is the total lack of instructions that come with the mac mini.</text>
<aspectTerms>
<aspectTerm term="instructions" polarity="negative" from="39" to="51"/>
</aspectTerms>
</sentence>
<sentence id="2:1">
<text>The only task that this computer would not be good enough for would be gaming, otherwise the integrated Intel 4000 graphics work well for other tasks.</text>
<aspectTerms>
<aspectTerm term="gaming" polarity="negative" from="71" to="77"/>
<aspectTerm term="integrated Intel 4000 graphics" polarity="conflict" from="93" to="123"/>
</aspectTerms>
</sentence>
<sentence id="919:1">
<text>It's macbook pro and there is no discusion about it.</text>
</sentence>
<sentence id="231:1">
<text>I'm hoping the rest of the features will be the signature quality of apple.</text>
<aspectTerms>
<aspectTerm term="features" polarity="conflict" from="27" to="35"/>
</aspectTerms>
</sentence>
<sentence id="923:1">
<text>I use it mostly for content creation (Audio, video, photo editing) and its reliable.</text>
<aspectTerms>
<aspectTerm term="content creation" polarity="positive" from="20" to="36"/>
<aspectTerm term="Audio" polarity="positive" from="38" to="43"/>
<aspectTerm term="video" polarity="positive" from="45" to="50"/>
<aspectTerm term="photo editing" polarity="positive" from="52" to="65"/>
</aspectTerms>
</sentence>
<sentence id="59:1">
<text>It is the best all around Mac.</text>
</sentence>
<sentence id="462:8">
<text>Screen is bright and gorgeous.</text>
<aspectTerms>
<aspectTerm term="Screen" polarity="positive" from="0" to="6"/>
</aspectTerms>
</sentence>
<sentence id="102:1">
<text>Also is portable and reliable.</text>
</sentence>
<sentence id="382:15">
<text>The only solution is to turn the brightness down, etc.</text>
<aspectTerms>
<aspectTerm term="brightness" polarity="neutral" from="33" to="43"/>
</aspectTerms>
</sentence>
<sentence id="787:137">
<text>It is not an easy decision to purchase a used or even good as new laptop but I am very satisfied.</text>
</sentence>
<sentence id="227">
<text>If you want more information on macs I suggest going to apple.com and heading towards the macbook page for more information on the applications.</text>
<aspectTerms>
<aspectTerm term="applications" polarity="neutral" from="131" to="143"/>
</aspectTerms>
</sentence>
<sentence id="670:1">
<text>It is robust, with a friendly use as all Apple products.</text>
<aspectTerms>
<aspectTerm term="use" polarity="positive" from="30" to="33"/>
</aspectTerms>
</sentence>
<sentence id="920:1">
<text>Even if you don't do business, thats okay, it's incredibly fast.</text>
</sentence>
<sentence id="880:1">
<text>It is fast and easy to use.</text>
<aspectTerms>
<aspectTerm term="use" polarity="positive" from="23" to="26"/>
</aspectTerms>
</sentence>
<sentence id="1063:184">
<text>This was absolutely annoying!</text>
</sentence>
<sentence id="745:1">
<text>And the fact that it comes with an i5 processor definitely speeds things up</text>
<aspectTerms>
<aspectTerm term="i5 processor" polarity="positive" from="35" to="47"/>
</aspectTerms>
</sentence>
<sentence id="261:2">
<text>But for those of you that dont have a mac and are still on the PC's this is a good foot in the door into mac.</text>
</sentence>
<sentence id="889:1">
<text>I have been PC for years but this computer is intuitive and its built in features are a great help</text>
<aspectTerms>
<aspectTerm term="built in features" polarity="positive" from="64" to="81"/>
</aspectTerms>
</sentence>
<sentence id="980:1">
<text>and it fits in my briefcase with ease</text>
</sentence>
<sentence id="1094:1">
<text>Nice screen, keyboard works great!</text>
<aspectTerms>
<aspectTerm term="screen" polarity="positive" from="5" to="11"/>
<aspectTerm term="keyboard" polarity="positive" from="13" to="21"/>
</aspectTerms>
</sentence>
<sentence id="1067:5">
<text>Still not bad for 220.00.</text>
</sentence>
<sentence id="575:1">
<text>I was amazed at how fast the delivery was.</text>
<aspectTerms>
<aspectTerm term="delivery" polarity="positive" from="29" to="37"/>
</aspectTerms>
</sentence>
<sentence id="373:0">
<text>Good computer and fast.</text>
</sentence>
<sentence id="165:1">
<text>I've installed to it additional SSD and 16Gb RAM.</text>
<aspectTerms>
<aspectTerm term="SSD" polarity="neutral" from="32" to="35"/>
<aspectTerm term="16Gb RAM" polarity="neutral" from="40" to="48"/>
</aspectTerms>
</sentence>
<sentence id="972:1">
<text>The memory was gone and it was not able to be used.</text>
<aspectTerms>
<aspectTerm term="memory" polarity="negative" from="4" to="10"/>
</aspectTerms>
</sentence>
<sentence id="505:1">
<text>Its pretty much fire it up and go.</text>
</sentence>
<sentence id="796:1">
<text>It works great and I am so happy I bought it.</text>
<aspectTerms>
<aspectTerm term="works" polarity="positive" from="3" to="8"/>
</aspectTerms>
</sentence>
<sentence id="275:1">
<text>Let me start off by saying that I was highly reluctant to spend so much money on a laptop.</text>
</sentence>
<sentence id="1138:1">
<text>I like the design and ease of use with the keyboard, plenty of ports.</text>
<aspectTerms>
<aspectTerm term="design" polarity="positive" from="11" to="17"/>
<aspectTerm term="keyboard" polarity="positive" from="43" to="51"/>
<aspectTerm term="ports" polarity="positive" from="63" to="68"/>
</aspectTerms>
</sentence>
<sentence id="230:1">
<text>Apple is living up to its name with the mini and, for our needs, it's perfect.</text>
</sentence>
<sentence id="322:1">
<text>it definitely beats my old mac and the service was great.</text>
<aspectTerms>
<aspectTerm term="service" polarity="positive" from="39" to="46"/>
</aspectTerms>
</sentence>
<sentence id="206:1">
<text>I went from a Macbook to this Mac Mini and this was a great upgrade!</text>
</sentence>
<sentence id="16:2">
<text>Web browsing is very quick with Safari browser.</text>
<aspectTerms>
<aspectTerm term="Web browsing" polarity="positive" from="0" to="12"/>
<aspectTerm term="Safari browser" polarity="positive" from="32" to="46"/>
</aspectTerms>
</sentence>
<sentence id="665:1">
<text>It couldn't have been a better decision.</text>
</sentence>
<sentence id="481:1">
<text>I like the lighted screen at night.</text>
<aspectTerms>
<aspectTerm term="lighted screen" polarity="positive" from="11" to="25"/>
</aspectTerms>
</sentence>
<sentence id="23:1">
<text>It's great to have a solid Mac in the living room.</text>
</sentence>
<sentence id="948:1">
<text>It is really easy to use and it is quick to start up.</text>
<aspectTerms>
<aspectTerm term="use" polarity="positive" from="21" to="24"/>
<aspectTerm term="start up" polarity="positive" from="44" to="52"/>
</aspectTerms>
</sentence>
<sentence id="307:1">
<text>I've lived with the crashes and slow operation and restarts.</text>
<aspectTerms>
<aspectTerm term="operation" polarity="negative" from="37" to="46"/>
</aspectTerms>
</sentence>
<sentence id="787:372">
<text>Very light and easily maneuverable.</text>
</sentence>
<sentence id="29:319">
<text>USB3 Peripherals are noticably less expensive than the ThunderBolt ones.</text>
<aspectTerms>
<aspectTerm term="USB3 Peripherals" polarity="positive" from="0" to="16"/>
<aspectTerm term="ThunderBolt" polarity="negative" from="55" to="66"/>
</aspectTerms>
</sentence>
<sentence id="1063:162">
<text>This can be annoying at first but you just have to train yourself not to to start over so far.</text>
</sentence>
<sentence id="842:1">
<text>And mine had broke but I sent it in under warranty-no problems.</text>
<aspectTerms>
<aspectTerm term="warranty" polarity="positive" from="42" to="50"/>
</aspectTerms>
</sentence>
<sentence id="471:1">
<text>I am not happy with my purchase</text>
</sentence>
<sentence id="894:1">
<text>It's fast, light, and is perfect for media editing, which is mostly why I bought it in the first place.</text>
<aspectTerms>
<aspectTerm term="media editing" polarity="positive" from="37" to="50"/>
</aspectTerms>
</sentence>
<sentence id="828:1">
<text>However, the machine itself left a bit to be desired.</text>
</sentence>
<sentence id="391:1">
<text>The battery lasts as advertised (give or take 15-20 minutes), and the entire user experience is very elegant.</text>
<aspectTerms>
<aspectTerm term="battery" polarity="positive" from="4" to="11"/>
<aspectTerm term="user experience" polarity="positive" from="77" to="92"/>
</aspectTerms>
</sentence>
<sentence id="680:1">
<text>I spent months looking for a good laptop for me and I finally found it!</text>
</sentence>
<sentence id="787:726">
<text>$999.00 Tax free.</text>
</sentence>
<sentence id="949:1">
<text>Thanks for the fast shipment and great price.</text>
<aspectTerms>
<aspectTerm term="shipment" polarity="positive" from="20" to="28"/>
<aspectTerm term="price" polarity="positive" from="39" to="44"/>
</aspectTerms>
</sentence>
<sentence id="824:1">
<text>!Excelent performance, usability, presentation and time response.</text>
<aspectTerms>
<aspectTerm term="performance" polarity="positive" from="10" to="21"/>
<aspectTerm term="usability" polarity="positive" from="23" to="32"/>
<aspectTerm term="presentation" polarity="positive" from="34" to="46"/>
<aspectTerm term="time response" polarity="positive" from="51" to="64"/>
</aspectTerms>
</sentence>
<sentence id="999:1">
<text>The smaller size was a bonus because of space restrictions.</text>
<aspectTerms>
<aspectTerm term="size" polarity="positive" from="12" to="16"/>
</aspectTerms>
</sentence>
<sentence id="29:310">
<text>I blame the Mac OS.</text>
<aspectTerms>
<aspectTerm term="Mac OS" polarity="negative" from="12" to="18"/>
</aspectTerms>
</sentence>
<sentence id="786:784">
<text>But for now, this laptop is still a workhorse.</text>
</sentence>
<sentence id="456:1">
<text>In fact I still use manyLegacy programs (Appleworks, FileMaker Pro, Quicken, Photoshop etc)!</text>
<aspectTerms>
<aspectTerm term="Legacy programs" polarity="neutral" from="24" to="39"/>
<aspectTerm term="Appleworks" polarity="neutral" from="41" to="51"/>
<aspectTerm term="FileMaker Pro" polarity="neutral" from="53" to="66"/>
<aspectTerm term="Quicken" polarity="neutral" from="68" to="75"/>
<aspectTerm term="Photoshop" polarity="neutral" from="77" to="86"/>
</aspectTerms>
</sentence>
<sentence id="450:1">
<text>It's small but powerful, light but strong, elegant and beautiful... In resume: it's a Mac!</text>
</sentence>
<sentence id="708:1">
<text>I like the operating system.</text>
<aspectTerms>
<aspectTerm term="operating system" polarity="positive" from="11" to="27"/>
</aspectTerms>
</sentence>
<sentence id="787:116">
<text>I wish I would have taken the plunge years ago.</text>
</sentence>
<sentence id="376:1">
<text>I love the form factor.</text>
<aspectTerms>
<aspectTerm term="form factor" polarity="positive" from="11" to="22"/>
</aspectTerms>
</sentence>
<sentence id="806:1">
<text>I haven't used the product long enough to write a detailed technical review.</text>
</sentence>
<sentence id="201:1">
<text>It's fast at loading the internet.</text>
<aspectTerms>
<aspectTerm term="loading the internet" polarity="positive" from="13" to="33"/>
</aspectTerms>
</sentence>
<sentence id="763:1">
<text>So much faster and sleeker looking.</text>
<aspectTerms>
<aspectTerm term="looking" polarity="positive" from="27" to="34"/>
</aspectTerms>
</sentence>
<sentence id="787:523">
<text>I plan on using my MacBook Pro for a long time.</text>
</sentence>
<sentence id="962:1">
<text>Unfortunately, it runs XP and Microsoft is dropping support next April.</text>
<aspectTerms>
<aspectTerm term="XP" polarity="neutral" from="23" to="25"/>
<aspectTerm term="support" polarity="negative" from="52" to="59"/>
</aspectTerms>
</sentence>
<sentence id="375:1">
<text>Its seen in movies, sitcoms, prominent important people carry and use them and they are GREAT!</text>
</sentence>
<sentence id="281:1">
<text>First off, I really do like my MBP... once used to the OS it is pretty easy to get around, and the overall build is great... eg the keyboard is one of the best to type on.</text>
<aspectTerms>
<aspectTerm term="OS" polarity="positive" from="55" to="57"/>
<aspectTerm term="overall build" polarity="positive" from="99" to="112"/>
<aspectTerm term="keyboard" polarity="positive" from="132" to="140"/>
</aspectTerms>
</sentence>
<sentence id="1108:1">
<text>Does exactly what I bought it 4.</text>
</sentence>
<sentence id="99:1">
<text>Buy the Mac Mini it's a terribly great machine.</text>
</sentence>
<sentence id="926:1">
<text>It is made of such solid construction and since I have never had a Mac using my iPhone helped me get used to the system a bit.</text>
<aspectTerms>
<aspectTerm term="construction" polarity="positive" from="25" to="37"/>
<aspectTerm term="system" polarity="neutral" from="113" to="119"/>
</aspectTerms>
</sentence>
<sentence id="673:1">
<text>I love this piece of equipment, It will be hard to go back to other type of laptop after using a MacBook Pro.</text>
</sentence>
<sentence id="829:1">
<text>Very nice unibody construction.</text>
<aspectTerms>
<aspectTerm term="unibody construction" polarity="positive" from="10" to="30"/>
</aspectTerms>
</sentence>
<sentence id="473:1">
<text>Very disappointed with Apple.</text>
</sentence>
<sentence id="318:1">
<text>This Macbook Pro is fast, powerful, and runs super quiet and cool.</text>
<aspectTerms>
<aspectTerm term="runs" polarity="positive" from="40" to="44"/>
</aspectTerms>
</sentence>
<sentence id="29:452">
<text>***The review below is no longer relevant, Apple has fixed the issue.</text>
</sentence>
<sentence id="786:1477">
<text>It's ok but doesn't have a disk drive which I didn't know until after I bought it.</text>
<aspectTerms>
<aspectTerm term="disk drive" polarity="neutral" from="27" to="37"/>
</aspectTerms>
</sentence>
<sentence id="29:783">
<text>There is no HDMI receptacle, nor is there an SD card slot located anywhere on the device.</text>
<aspectTerms>
<aspectTerm term="HDMI receptacle" polarity="neutral" from="12" to="27"/>
<aspectTerm term="SD card slot" polarity="neutral" from="45" to="57"/>
</aspectTerms>
</sentence>
<sentence id="800:1">
<text>It really is very light compared to other computers.</text>
</sentence>
<sentence id="758:1">
<text>It came in brand new and works perfectly.</text>
<aspectTerms>
<aspectTerm term="works" polarity="positive" from="25" to="30"/>
</aspectTerms>
</sentence>
<sentence id="787:683">
<text>This machine is A-mazing.</text>
</sentence>
<sentence id="355:1">
<text>It shouldn't happen like that, I don't have any design app open or anything.</text>
<aspectTerms>
<aspectTerm term="design app" polarity="neutral" from="48" to="58"/>
</aspectTerms>
</sentence>
<sentence id="335:0">
<text>MY TRACKPAD IS NOT WORKING.</text>
<aspectTerms>
<aspectTerm term="TRACKPAD" polarity="negative" from="3" to="11"/>
</aspectTerms>
</sentence>
<sentence id="786:66">
<text>I just hope this expensive laptop doesn't go dead like my friends...it did last him 5 good years before it bit the dust.</text>
</sentence>
<sentence id="674:1">
<text>Considering another computer should be out of the question</text>
</sentence>
<sentence id="706:1">
<text>It looks and feels solid, with a flawless finish.</text>
<aspectTerms>
<aspectTerm term="finish" polarity="positive" from="42" to="48"/>
<aspectTerm term="looks" polarity="positive" from="3" to="8"/>
<aspectTerm term="feels" polarity="positive" from="13" to="18"/>
</aspectTerms>
</sentence>
<sentence id="697:13">
<text>Its worth every Penny.</text>
</sentence>
<sentence id="671:1">
<text>Price was higher when purchased on MAC when compared to price showing on PC when I bought this product.</text>
<aspectTerms>
<aspectTerm term="Price" polarity="negative" from="0" to="5"/>
<aspectTerm term="price" polarity="positive" from="56" to="61"/>
</aspectTerms>
</sentence>
<sentence id="787:720">
<text>This was a great deal for a decked out MacBook Pro.</text>
</sentence>
<sentence id="460:1">
<text>Then the system would many times not power down without a forced power-off.</text>
<aspectTerms>
<aspectTerm term="system" polarity="negative" from="9" to="15"/>
<aspectTerm term="power down" polarity="negative" from="37" to="47"/>
</aspectTerms>
</sentence>
<sentence id="985:1">
<text>Get this instead, you won't be sorry.</text>
</sentence>
<sentence id="786:723">
<text>The configuration is perfect for my needs.</text>
<aspectTerms>
<aspectTerm term="configuration" polarity="positive" from="4" to="17"/>
</aspectTerms>
</sentence>
<sentence id="1171:1">
<text>and the speakers is the worst ever.</text>
<aspectTerms>
<aspectTerm term="speakers" polarity="negative" from="8" to="16"/>
</aspectTerms>
</sentence>
<sentence id="787:240">
<text>I think it was around 16 hundred bucks last I checked.</text>
</sentence>
<sentence id="515:1">
<text>Its the best, its got the looks, super easy to use and love all you can do with the trackpad!..</text>
<aspectTerms>
<aspectTerm term="looks" polarity="positive" from="26" to="31"/>
<aspectTerm term="use" polarity="positive" from="47" to="50"/>
<aspectTerm term="trackpad" polarity="positive" from="84" to="92"/>
</aspectTerms>
</sentence>
<sentence id="12:1">
<text>It's fast, quiet, incredibly small and affordable compared to other Mac models.</text>
</sentence>
<sentence id="786:458">
<text>Web surfuring is smooth and seamless.</text>
<aspectTerms>
<aspectTerm term="Web surfuring" polarity="positive" from="0" to="13"/>
</aspectTerms>
</sentence>
<sentence id="786:759">
<text>It was so exciting for me to unwrapp my new mac.</text>
</sentence>
<sentence id="520:2">
<text>I'm overall pleased with the interface and the portability of this product.</text>
<aspectTerms>
<aspectTerm term="interface" polarity="positive" from="29" to="38"/>
<aspectTerm term="portability" polarity="positive" from="47" to="58"/>
</aspectTerms>
</sentence>
<sentence id="496:1">
<text>so when I had the money to buy one I bought other things instead....a 700 laptop and some extra stuff with it.</text>
</sentence>
<sentence id="952:1">
<text>This item is a beautiful piece, it works well, it is easy to carry and handle.</text>
<aspectTerms>
<aspectTerm term="works" polarity="positive" from="35" to="40"/>
<aspectTerm term="carry" polarity="positive" from="61" to="66"/>
<aspectTerm term="handle" polarity="positive" from="71" to="77"/>
</aspectTerms>
</sentence>
<sentence id="1135:1">
<text>See retired recently and decided that she wanted a laptop.</text>
</sentence>
<sentence id="394:1">
<text>It was also suffering from hardware (keyboard) issues, relatively slow performance and shortening battery lifetime.</text>
<aspectTerms>
<aspectTerm term="performance" polarity="negative" from="71" to="82"/>
<aspectTerm term="battery lifetime" polarity="negative" from="98" to="114"/>
<aspectTerm term="hardware (keyboard)" polarity="negative" from="27" to="46"/>
</aspectTerms>
</sentence>
<sentence id="29:459">
<text>I'm no regular customer I hate wasting my time with hellos and how can I help you's.</text>
</sentence>
<sentence id="526:1">
<text>Runs good and does the job, can't complain about that!</text>
<aspectTerms>
<aspectTerm term="Runs" polarity="positive" from="0" to="4"/>
</aspectTerms>
</sentence>
<sentence id="25:1">
<text>It's silent and has a very small footprint on my desk.</text>
<aspectTerms>
<aspectTerm term="footprint" polarity="positive" from="33" to="42"/>
</aspectTerms>
</sentence>
<sentence id="947:1">
<text>I have nothing to regret from this new product.</text>
</sentence>
<sentence id="379:1">
<text>The exterior is absolutely gorgeous.</text>
<aspectTerms>
<aspectTerm term="exterior" polarity="positive" from="4" to="12"/>
</aspectTerms>
</sentence>
<sentence id="1072:1">
<text>Have one myself and Love it!</text>
</sentence>
<sentence id="1140:1">
<text>It has a very high performance, just for what I needed for.</text>
<aspectTerms>
<aspectTerm term="performance" polarity="positive" from="19" to="30"/>
</aspectTerms>
</sentence>
<sentence id="29:1213">
<text>This is especially disheartening when Apple prides itself as the choice of creative professionals.</text>
</sentence>
<sentence id="204:1">
<text>Apple is aware of this issue and this is either old stock or a defective design involving the intel 4000 graphics chipset.</text>
<aspectTerms>
<aspectTerm term="intel 4000 graphics chipset" polarity="neutral" from="94" to="121"/>
<aspectTerm term="design" polarity="neutral" from="73" to="79"/>
</aspectTerms>
</sentence>
<sentence id="405:1">
<text>Stop living in the stone age and buy a mac, you will not be sorry at all!!</text>
</sentence>
<sentence id="29:226">
<text>OSX Mountain Lion soon to upgrade to Mavericks.</text>
<aspectTerms>
<aspectTerm term="OSX Mountain Lion" polarity="neutral" from="0" to="17"/>
<aspectTerm term="Mavericks" polarity="neutral" from="38" to="47"/>
</aspectTerms>
</sentence>
<sentence id="548:1">
<text>Apple hit a home run here.</text>
</sentence>
<sentence id="786:713">
<text>I just bought the new MacBook Pro, the 13" model, and I can't believe Apple keeps making the same mistake with regard to USB ports.</text>
<aspectTerms>
<aspectTerm term="USB ports" polarity="negative" from="121" to="130"/>
</aspectTerms>
</sentence>
<sentence id="596:1">
<text>So glad I have gone this route!!</text>
</sentence>
<sentence id="898:3">
<text>It wakes in less than a second when I open the lid.</text>
<aspectTerms>
<aspectTerm term="lid" polarity="neutral" from="47" to="50"/>
<aspectTerm term="wakes" polarity="positive" from="3" to="8"/>
</aspectTerms>
</sentence>
<sentence id="860:1">
<text>It is the perfect size and speed for me.</text>
<aspectTerms>
<aspectTerm term="size" polarity="positive" from="18" to="22"/>
<aspectTerm term="speed" polarity="positive" from="27" to="32"/>
</aspectTerms>
</sentence>
<sentence id="695:1">
<text>I am so addict to this laptop.</text>
</sentence>
<sentence id="555:1">
<text>THE CUSTOMER SERVICE IS TERRIFIC!!</text>
<aspectTerms>
<aspectTerm term="CUSTOMER SERVICE" polarity="positive" from="4" to="20"/>
</aspectTerms>
</sentence>
<sentence id="1007:1">
<text>Trashed it when I spilled a latte on it while writing at a cafe.</text>
</sentence>
<sentence id="959:1">
<text>My last laptop was a 17" ASUS gaming machine, which performed admirably, but having since built my own desktop and really settling into the college life, I found myself wanting something smaller and less cumbersome, not to mention that the ASUS had been slowly developing problems ever since I bought it about 4 years ago.</text>
<aspectTerms>
<aspectTerm term="performed" polarity="positive" from="52" to="61"/>
</aspectTerms>
</sentence>
<sentence id="908:1">
<text>However, it did not have any scratches, ZERO battery cycle count (pretty surprised), and all the hardware seemed to be working perfectly.</text>
<aspectTerms>
<aspectTerm term="battery cycle count" polarity="positive" from="45" to="64"/>
<aspectTerm term="hardware" polarity="positive" from="97" to="105"/>
</aspectTerms>
</sentence>
<sentence id="181:1">
<text>After fumbling around with the OS I started searching the internet for a fix and found a number of forums on fixing the issue.</text>
<aspectTerms>
<aspectTerm term="OS" polarity="negative" from="31" to="33"/>
</aspectTerms>
</sentence>
<sentence id="1029:1">
<text>I couldn't be more pleased.</text>
</sentence>
<sentence id="787:193">
<text>And as for all the fancy finger swipes -- I just gave up and attached a mouse.</text>
<aspectTerms>
<aspectTerm term="finger swipes" polarity="negative" from="25" to="38"/>
<aspectTerm term="mouse" polarity="neutral" from="72" to="77"/>
</aspectTerms>
</sentence>
<sentence id="447:1">
<text>I needed a laptop with big storage, a nice screen and fast so I can photoshop without any problem.</text>
<aspectTerms>
<aspectTerm term="storage" polarity="neutral" from="27" to="34"/>
<aspectTerm term="screen" polarity="neutral" from="43" to="49"/>
<aspectTerm term="photoshop" polarity="neutral" from="68" to="77"/>
</aspectTerms>
</sentence>
<sentence id="928:1">
<text>I like coming back to Mac OS but this laptop is lacking in speaker quality compared to my $400 old HP laptop.</text>
<aspectTerms>
<aspectTerm term="Mac OS" polarity="positive" from="22" to="28"/>
<aspectTerm term="speaker quality" polarity="negative" from="59" to="74"/>
</aspectTerms>
</sentence>
<sentence id="739:1">
<text>It is much better than the Acer ultrabook I had before.</text>
</sentence>
<sentence id="776:1">
<text>Shipped very quickly and safely.</text>
<aspectTerms>
<aspectTerm term="Shipped" polarity="positive" from="0" to="7"/>
</aspectTerms>
</sentence>
<sentence id="29:396">
<text>I finally own a piece of computing equipment that I don't want to take a baseball bat and destroy.</text>
</sentence>
<sentence id="787:568">
<text>The thunderbolt port is awesome!</text>
<aspectTerms>
<aspectTerm term="thunderbolt port" polarity="positive" from="4" to="20"/>
</aspectTerms>
</sentence>
<sentence id="877:1">
<text>User friendly, fast and high tech It is amazing!</text>
</sentence>
<sentence id="691:1">
<text>The performance is definitely superior to any computer I've ever put my hands on.</text>
<aspectTerms>
<aspectTerm term="performance" polarity="positive" from="4" to="15"/>
</aspectTerms>
</sentence>
<sentence id="242:1">
<text>It's great for streaming video and other entertainment uses.</text>
<aspectTerms>
<aspectTerm term="streaming video" polarity="positive" from="15" to="30"/>
<aspectTerm term="entertainment uses" polarity="positive" from="41" to="59"/>
</aspectTerms>
</sentence>
<sentence id="787:606">
<text>Apple did a great job.</text>
</sentence>
<sentence id="567:1">
<text>I like the design and its features but there are somethings I think needs to be improved.</text>
<aspectTerms>
<aspectTerm term="design" polarity="positive" from="11" to="17"/>
<aspectTerm term="features" polarity="positive" from="26" to="34"/>
</aspectTerms>
</sentence>
<sentence id="507:1">
<text>There were small problems with Mac office.</text>
<aspectTerms>
<aspectTerm term="Mac office" polarity="negative" from="31" to="41"/>
</aspectTerms>
</sentence>
<sentence id="118:1">
<text>It is extremely fast and very compact.</text>
</sentence>
<sentence id="579:1">
<text>I understand I should call Apple Tech Support about any variables(which is my purpose of writing this con) as variables could be a bigger future problem.</text>
<aspectTerms>
<aspectTerm term="Apple Tech Support" polarity="neutral" from="27" to="45"/>
</aspectTerms>
</sentence>
<sentence id="19:0">
<text>I ordered my 2012 mac mini after being disappointed with spec of the new 27" Imacs.</text>
<aspectTerms>
<aspectTerm term="spec" polarity="negative" from="57" to="61"/>
</aspectTerms>
</sentence>
<sentence id="341:1">
<text>It still works and it's extremely user friendly, so I would recommend it for new computer user and also for those who are just looking for a more efficient way to do things</text>
<aspectTerms>
<aspectTerm term="works" polarity="positive" from="9" to="14"/>
</aspectTerms>
</sentence>
<sentence id="816:1">
<text>Its fast, easy to use and it looks great.</text>
<aspectTerms>
<aspectTerm term="use" polarity="positive" from="18" to="21"/>
<aspectTerm term="looks" polarity="positive" from="29" to="34"/>
</aspectTerms>
</sentence>
<sentence id="1075:1">
<text>(but Office can be purchased) IF I ever need a laptop again I am for sure purchasing another Toshiba!!</text>
<aspectTerms>
<aspectTerm term="Office" polarity="neutral" from="5" to="11"/>
</aspectTerms>
</sentence>
<sentence id="689:1">
<text>I haven't tried the one with retina display... Maybe in the future.</text>
<aspectTerms>
<aspectTerm term="retina display" polarity="neutral" from="29" to="43"/>
</aspectTerms>
</sentence>
<sentence id="92:1">
<text>You can read all about the details of this marvelous computer on wikipedia.</text>
</sentence>
<sentence id="313:1">
<text>Performance is much much better on the Pro, especially if you install an SSD on it.</text>
<aspectTerms>
<aspectTerm term="Performance" polarity="positive" from="0" to="11"/>
<aspectTerm term="SSD" polarity="positive" from="73" to="76"/>
</aspectTerms>
</sentence>
<sentence id="286:1">
<text>Note, however, that any existing MagSafe accessories you have will not work with the MagSafe 2 connection.</text>
<aspectTerms>
<aspectTerm term="MagSafe accessories" polarity="neutral" from="33" to="52"/>
<aspectTerm term="MagSafe 2 connection" polarity="negative" from="85" to="105"/>
</aspectTerms>
</sentence>
<sentence id="296:1">
<text>If you get a lemon (I have two thirds of my Macs), you have to send it in for repairs several times before they will replace it, even if they have numerous problems with the same version of their computers.</text>
</sentence>
<sentence id="1074:1">
<text>The only thing I dislike is the touchpad, alot of the times its unresponsive and does things I dont want it too, I would recommend using a mouse with it.</text>
<aspectTerms>
<aspectTerm term="touchpad" polarity="negative" from="32" to="40"/>
<aspectTerm term="mouse" polarity="neutral" from="139" to="144"/>
</aspectTerms>
</sentence>
<sentence id="393:0">
<text>Yeah, it's super expensive.</text>
</sentence>
<sentence id="202:1">
<text>The Mac mini is about 8x smaller than my old computer which is a huge bonus and runs very quiet, actually the fans aren't audible unlike my old pc</text>
<aspectTerms>
<aspectTerm term="runs" polarity="positive" from="80" to="84"/>
<aspectTerm term="fans" polarity="positive" from="110" to="114"/>
</aspectTerms>
</sentence>
<sentence id="414:1">
<text>MAYBE The Mac OS improvement were not The product they Want to offer.</text>
<aspectTerms>
<aspectTerm term="Mac OS" polarity="negative" from="10" to="16"/>
</aspectTerms>
</sentence>
<sentence id="645:1">
<text>It came before the day it supposed to which is great.</text>
</sentence>
<sentence id="786:867">
<text>I thought the transition would be difficult at best and would take some time to fully familiarize myself with the new Mac ecosystem.</text>
<aspectTerms>
<aspectTerm term="Mac ecosystem" polarity="neutral" from="118" to="131"/>
</aspectTerms>
</sentence>
<sentence id="533:1">
<text>It's absolutely wonderful and worth the price!</text>
<aspectTerms>
<aspectTerm term="price" polarity="positive" from="40" to="45"/>
</aspectTerms>
</sentence>
<sentence id="786:886">
<text>It's a good fix, in my opinion.</text>
</sentence>
<sentence id="1131:1">
<text>I am please with the products ease of use; out of the box ready; appearance and functionality.</text>
<aspectTerms>
<aspectTerm term="use" polarity="positive" from="38" to="41"/>
<aspectTerm term="appearance" polarity="positive" from="65" to="75"/>
<aspectTerm term="functionality" polarity="positive" from="80" to="93"/>
</aspectTerms>
</sentence>
<sentence id="262:1">
<text>Buying a Mac Mini would allow me to make the transition.</text>
</sentence>
<sentence id="271:1">
<text>Before I begin, I will say that I am not like a good percentage of the people that will end up writing a review on this computer - I am not an Apple fanboy.</text>
</sentence>
<sentence id="788:1">
<text>its by far faster and more stable then my PC.</text>
</sentence>
<sentence id="191:1">
<text>I purchased a MacBook Pro and this to replace a couple of HP units that I was using.</text>
</sentence>
<sentence id="787:417">
<text>you will not regret it, promise you!</text>
</sentence>
<sentence id="40:1">
<text>Moving from a PC to Mac has never been easier, and I'm glad that I did it.</text>
</sentence>
<sentence id="662:1">
<text>Perfect for all my graphic design classes I'm taking this year in college :-)</text>
<aspectTerms>
<aspectTerm term="graphic design" polarity="positive" from="19" to="33"/>
</aspectTerms>
</sentence>
<sentence id="205:1">
<text>Have used only Macs for years.</text>
</sentence>
<sentence id="365:0">
<text>Being a tech savvy, APPLE - product loving person, I'm glad I finally got the MacBook Pro!</text>
</sentence>
<sentence id="554:1">
<text>I was always against them but now I buying one I'll never go back to PC.</text>
</sentence>
<sentence id="786:1473">
<text>I will not be using that slot again.</text>
<aspectTerms>
<aspectTerm term="slot" polarity="negative" from="25" to="29"/>
</aspectTerms>
</sentence>
<sentence id="810:1">
<text>I think that was a great decision to buy</text>
</sentence>
<sentence id="289:5">
<text>The OS is fast and fluid, everything is organized and it's just beautiful.</text>
<aspectTerms>
<aspectTerm term="OS" polarity="positive" from="4" to="6"/>
</aspectTerms>
</sentence>
<sentence id="931:1">
<text>It will make life so much easier next semester, just wish I had it last semester!!</text>
</sentence>
<sentence id="274:1">
<text>I paid for a new laptop, but was sent a used one.</text>
</sentence>
<sentence id="1105:1">
<text>Searched it on amazon and on bestbuy.</text>
</sentence>
<sentence id="409:1">
<text>I bought this one for my 11 year old and the MacBook Air for my 9 year old.</text>
</sentence>
<sentence id="849:1">
<text>I bought it for college and so far it's amazing!</text>
</sentence>
<sentence id="843:3">
<text>They are simpler to use.</text>
<aspectTerms>
<aspectTerm term="use" polarity="positive" from="20" to="23"/>
</aspectTerms>
</sentence>
<sentence id="787:905">
<text>It was at my door in less than 24 hours.</text>
</sentence>
<sentence id="693:1">
<text>It's also very pricey but you just have to tell yourself it's an investment and that it's gonna last you a long time.</text>
</sentence>
<sentence id="472:1">
<text>It was getting old and I needed a new school computer.</text>
</sentence>
<sentence id="938:1">
<text>!so nice .. stable .. fast .. now i got my SSD !</text>
<aspectTerms>
<aspectTerm term="SSD" polarity="positive" from="43" to="46"/>
</aspectTerms>
</sentence>
<sentence id="909:1">
<text>I love apple but unlike others That does not prevent me to not be honest about how i like it and if its good or not.</text>
</sentence>
<sentence id="290:1">
<text>So, I'm cooled on Mac buys.</text>
</sentence>
<sentence id="15:1">
<text>It is a great computer for that and I have to say I'm happy I switched.</text>
</sentence>
<sentence id="968:5">
<text>Also, in using the built-in camera, my voice recording for my vlog sounds like the interplanetary transmissions in the "Star Wars" saga.</text>
<aspectTerms>
<aspectTerm term="built-in camera" polarity="neutral" from="19" to="34"/>
<aspectTerm term="voice recording" polarity="negative" from="39" to="54"/>
</aspectTerms>
</sentence>
<sentence id="421:1">
<text>Overall a nice computer.</text>
</sentence>
<sentence id="922:1">
<text>You can imagine that an expensive item as a laptop will not be left on your front steps, it needs signature to pove that you received it.</text>
</sentence>
<sentence id="29:742">
<text>I love the quick start up.</text>
<aspectTerms>
<aspectTerm term="start up" polarity="positive" from="17" to="25"/>
</aspectTerms>
</sentence>
<sentence id="29:733">
<text>Yes, he is a self professed "Mac snob.</text>
</sentence>
<sentence id="294:0">
<text>You just cannot beat the functionality of an Apple device.</text>
<aspectTerms>
<aspectTerm term="functionality" polarity="positive" from="25" to="38"/>
</aspectTerms>
</sentence>
<sentence id="547:17">
<text>Yet my mac continues to function properly.</text>
<aspectTerms>
<aspectTerm term="function" polarity="positive" from="24" to="32"/>
</aspectTerms>
</sentence>
<sentence id="463:9">
<text>Graphics are much improved.</text>
<aspectTerms>
<aspectTerm term="Graphics" polarity="positive" from="0" to="8"/>
</aspectTerms>
</sentence>
<sentence id="275:7">
<text>Here are the things that made me confident with my purchase:Build Quality - Seriously, you can't beat a unibody construction.</text>
<aspectTerms>
<aspectTerm term="Build Quality" polarity="positive" from="60" to="73"/>
<aspectTerm term="unibody construction" polarity="positive" from="104" to="124"/>
</aspectTerms>
</sentence>
<sentence id="868:1">
<text>It's the mid 2012 version.</text>
</sentence>
<sentence id="286:3">
<text>It provides much more flexibility for connectivity.</text>
<aspectTerms>
<aspectTerm term="flexibility for connectivity" polarity="positive" from="22" to="50"/>
</aspectTerms>
</sentence>
<sentence id="786:1275">
<text>I want the portability of a tablet, without the limitations of a tablet and that's where this laptop comes into play.</text>
<aspectTerms>
<aspectTerm term="portability" polarity="positive" from="11" to="22"/>
</aspectTerms>
</sentence>
<sentence id="721:1">
<text>I have had many, many issues with PC's in the past and I'm finally glad to have joined the Mac revolution!</text>
</sentence>
<sentence id="29:172">
<text>Mac tutorials do help.</text>
<aspectTerms>
<aspectTerm term="Mac tutorials" polarity="positive" from="0" to="13"/>
</aspectTerms>
</sentence>
<sentence id="1031:1">
<text>When it broke I wanted another Acer and chose the V5.</text>
</sentence>
<sentence id="1063:397">
<text>The technical support was not helpful as well.</text>
<aspectTerms>
<aspectTerm term="technical support" polarity="negative" from="4" to="21"/>
</aspectTerms>
</sentence>
<sentence id="1063:373">
<text>I got the new adapter and there was no change.</text>
<aspectTerms>
<aspectTerm term="adapter" polarity="neutral" from="14" to="21"/>
</aspectTerms>
</sentence>
<sentence id="1063:374">
<text>so i called technical support.</text>
<aspectTerms>
<aspectTerm term="technical support" polarity="neutral" from="12" to="29"/>
</aspectTerms>
</sentence>
<sentence id="740:1">
<text>Nothing about it that i don't love, apple always makes a great product.</text>
</sentence>
<sentence id="820:1">
<text>I saved about $100 plus tax ordering on Amazon and since I have prime, it arrived overnight for just $3.99 more.</text>
</sentence>
<sentence id="29:186">
<text>Came with iPhoto and garage band already loaded.</text>
<aspectTerms>
<aspectTerm term="iPhoto" polarity="neutral" from="10" to="16"/>
<aspectTerm term="garage band" polarity="neutral" from="21" to="32"/>
</aspectTerms>
</sentence>
<sentence id="29:237">
<text>It's all a bit magical.</text>
</sentence>
<sentence id="26:4">
<text>Logic board utterly fried, cried, and laid down and died.</text>
<aspectTerms>
<aspectTerm term="Logic board" polarity="positive" from="0" to="11"/>
</aspectTerms>
</sentence>
<sentence id="293:8">
<text>It is BLAZING fast!</text>
</sentence>
<sentence id="1063:396">
<text>The sound was crappy even when you turn up the volume still the same results.</text>
<aspectTerms>
<aspectTerm term="sound" polarity="negative" from="4" to="9"/>
<aspectTerm term="volume" polarity="negative" from="47" to="53"/>
</aspectTerms>
</sentence>
<sentence id="936:1">
<text>ive never had a problem with it!</text>
</sentence>
<sentence id="271:3">
<text>I currently own a Lenovo laptop as well as my new MacBook Pro, and each have their own strengths and weaknesses.</text>
</sentence>
<sentence id="271:4">
<text>OSX Lion is a great performer..extremely fast and reliable.</text>
<aspectTerms>
<aspectTerm term="OSX Lion" polarity="positive" from="0" to="8"/>
</aspectTerms>
</sentence>
<sentence id="189:1">
<text>Best commuter I have ever owned.</text>
</sentence>
<sentence id="29:138">
<text>What can I say, It's an Apple.</text>
</sentence>
<sentence id="479:5">
<text>Having heard from friends and family about how reliable a Mac product is, I never expected to have an application crash within the first month, but I did.</text>
<aspectTerms>
<aspectTerm term="application" polarity="negative" from="102" to="113"/>
</aspectTerms>
</sentence>
<sentence id="462:6">
<text>The Macbook pro's physical form is wonderful.</text>
<aspectTerms>
<aspectTerm term="physical form" polarity="positive" from="18" to="31"/>
</aspectTerms>
</sentence>
<sentence id="29:363">
<text>I have an iPhone, and iPad, so it just made sense to finish off the platform by adding the Mini.</text>
</sentence>
<sentence id="791:1">
<text>Not super light but still a good one.</text>
</sentence>
<sentence id="0:3">
<text>The Mini's body hasn't changed since late 2010- and for a good reason.</text>
<aspectTerms>
<aspectTerm term="body" polarity="positive" from="11" to="15"/>
</aspectTerms>
</sentence>
<sentence id="461:17">
<text>The unibody construction really does feel lot more solid than Apple's previous laptops.</text>
<aspectTerms>
<aspectTerm term="unibody construction" polarity="positive" from="4" to="24"/>
</aspectTerms>
</sentence>
<sentence id="1010:1">
<text>i had to return it for a replacement.</text>
</sentence>
<sentence id="790:1">
<text>It was wonderful deal for the wonderful product.</text>
</sentence>
<sentence id="730:1">
<text>It completely supports my home business and personal life.</text>
</sentence>
<sentence id="0:14">
<text>3D rendering slows it down considerably.</text>
<aspectTerms>
<aspectTerm term="3D rendering" polarity="negative" from="0" to="12"/>
</aspectTerms>
</sentence>
<sentence id="22:0">
<text>Got this Mac Mini with OS X Mountain Lion for my wife.</text>
<aspectTerms>
<aspectTerm term="OS X Mountain Lion" polarity="neutral" from="23" to="41"/>
</aspectTerms>
</sentence>
<sentence id="547:1">
<text>I am pleased to report that it is one of the best presents I have received to date.</text>
</sentence>
<sentence id="468:1">
<text>Every day I had this computer, something failed on it.</text>
</sentence>
<sentence id="420:1">
<text>fast, great screen, beautiful apps for a laptop;priced at 1100 on the apple website;amazon had it for 1098+ tax - plus i had a 10% off coupon from amazon-cost me 998 plus tax- 1070- OTD!</text>
<aspectTerms>
<aspectTerm term="screen" polarity="positive" from="12" to="18"/>
<aspectTerm term="apps" polarity="positive" from="30" to="34"/>
<aspectTerm term="priced" polarity="neutral" from="48" to="54"/>
<aspectTerm term="cost" polarity="neutral" from="155" to="159"/>
</aspectTerms>
</sentence>
<sentence id="872:1">
<text>12.44 seconds to boot.</text>
<aspectTerms>
<aspectTerm term="boot" polarity="neutral" from="17" to="21"/>
</aspectTerms>
</sentence>
<sentence id="731:5">
<text>All the ports are much needed since this is my main computer.</text>
<aspectTerms>
<aspectTerm term="ports" polarity="neutral" from="8" to="13"/>
</aspectTerms>
</sentence>
<sentence id="267:1">
<text>The Like New condition of the iMac MC309LL/A on Amazon is at $900+ level only, and it is a Quad-Core 2.5 GHz CPU (similar to the $799 Mini), with Radeon HD 6750M 512MB graphic card (this mini is integrated Intel 4000 card), and it even comes with wireless Apple Keyboard and Mouse, all put together in neat and nice package.</text>
<aspectTerms>
<aspectTerm term="Quad-Core 2.5 GHz CPU" polarity="neutral" from="91" to="112"/>
<aspectTerm term="Radeon HD 6750M 512MB graphic card" polarity="neutral" from="146" to="180"/>
<aspectTerm term="integrated Intel 4000 card" polarity="neutral" from="195" to="221"/>
<aspectTerm term="wireless Apple Keyboard and Mouse" polarity="neutral" from="247" to="280"/>
<aspectTerm term="package" polarity="positive" from="316" to="323"/>
</aspectTerms>
</sentence>
<sentence id="419:2">
<text>Put a cover on it and is a little better but that is my only complaint.</text>
<aspectTerms>
<aspectTerm term="cover" polarity="neutral" from="6" to="11"/>
</aspectTerms>
</sentence>
<sentence id="291:6">
<text>Within a few hours I was using the gestures unconsciously.</text>
<aspectTerms>
<aspectTerm term="gestures" polarity="positive" from="35" to="43"/>
</aspectTerms>
</sentence>
<sentence id="786:633">
<text>This mac does come with an extender cable and I'm using mine right now hoping the cable will stay nice for the many years I plan on using this mac.</text>
<aspectTerms>
<aspectTerm term="extender cable" polarity="neutral" from="27" to="41"/>
<aspectTerm term="cable" polarity="positive" from="82" to="87"/>
</aspectTerms>
</sentence>
<sentence id="630:1">
<text>This is the third in a series of MacBooks starting with a Black MacBook.</text>
</sentence>
<sentence id="293:3">
<text>The 2.9ghz dual-core i7 chip really out does itself.</text>
<aspectTerms>
<aspectTerm term="2.9ghz dual-core i7 chip" polarity="positive" from="4" to="28"/>
</aspectTerms>
</sentence>
<sentence id="676:1">
<text>My life has been enriched since I have been using Apple products.</text>
</sentence>
<sentence id="564:1">
<text>i FINALLY DID IT AND THIS MACHINE IS THE WAY TO GO!</text>
</sentence>
<sentence id="786:1277">
<text>It is pretty snappy and starts up in about 30 seconds which is good enough for me.</text>
<aspectTerms>
<aspectTerm term="starts up" polarity="positive" from="24" to="33"/>
</aspectTerms>
</sentence>
<sentence id="786:1295">
<text>The few things that are wrong with it are very minor things.</text>
</sentence>
<sentence id="463:26">
<text>So noise is reduced at least 50% and the heat is much better, now it doesn't feel hot but warm.</text>
<aspectTerms>
<aspectTerm term="heat" polarity="conflict" from="41" to="45"/>
<aspectTerm term="noise" polarity="conflict" from="3" to="8"/>
</aspectTerms>
</sentence>
<sentence id="1101:1">
<text>Not sure on Windows 8.</text>
<aspectTerms>
<aspectTerm term="Windows 8" polarity="neutral" from="12" to="21"/>
</aspectTerms>
</sentence>
<sentence id="204:4">
<text>It's a lottery at this point as I have read that other have received new ones with the same problem.</text>
</sentence>
<sentence id="71:1">
<text>My one complaint is that there was no internal CD drive.</text>
<aspectTerms>
<aspectTerm term="internal CD drive" polarity="negative" from="38" to="55"/>
</aspectTerms>
</sentence>
<sentence id="997:1">
<text>This newer netbook has no hard drive or network lights.</text>
<aspectTerms>
<aspectTerm term="hard drive" polarity="neutral" from="26" to="36"/>
<aspectTerm term="network lights" polarity="neutral" from="40" to="54"/>
</aspectTerms>
</sentence>
<sentence id="573:1">
<text>This is the first time for me to use a Mac and I'm really happy with the move.</text>
</sentence>
<sentence id="199:1">
<text>No complaints for an Apple product.</text>
</sentence>
<sentence id="464:1">
<text>The new MacBook is lightyears ahead of my old white plastic MacBook circa 2006.</text>
</sentence>
<sentence id="441:1">
<text>I would say that 85% of the design industry is Mac for good reason.</text>
</sentence>
<sentence id="289:1">
<text>I was having a though time deciding between the 13" MacBook Air or the MacBook Pro 13" (Both baseline models, priced at 1,200 $ retail)</text>
<aspectTerms>
<aspectTerm term="priced" polarity="neutral" from="110" to="116"/>
</aspectTerms>
</sentence>
<sentence id="918:1">
<text>The last new mac I bought was in 1998.</text>
</sentence>
<sentence id="38:1">
<text>There are reviews that speak to a few possible glitches but, I haven't seen them yet.</text>
</sentence>
<sentence id="98:1">
<text>Not too expense and has enough storage for most users and many ports.</text>
<aspectTerms>
<aspectTerm term="storage" polarity="positive" from="31" to="38"/>
<aspectTerm term="ports" polarity="positive" from="63" to="68"/>
</aspectTerms>
</sentence>
<sentence id="152:1">
<text>I am very satisfied with the mini.</text>
</sentence>
<sentence id="786:1193">
<text>The audio volume is quite low and virtually unusable in a room with any background activity.</text>
<aspectTerms>
<aspectTerm term="audio volume" polarity="negative" from="4" to="16"/>
</aspectTerms>
</sentence>
<sentence id="747:1">
<text>I am going to college next year and I needed a cheaper, quality computer for the goals I am trying to pursue.</text>
</sentence>
<sentence id="7:1">
<text>In the short time of one month since the 2012 Mac Mini was released there are well over 1000 posts regarding this issue and the numbers keep rising.</text>
</sentence>
<sentence id="389:1">
<text>It is lightweight and the perfect size to carry to class.</text>
<aspectTerms>
<aspectTerm term="size" polarity="positive" from="34" to="38"/>
</aspectTerms>
</sentence>
<sentence id="921:1">
<text>If you have to ask you don't own a Mac and your just not in the know.</text>
</sentence>
<sentence id="786:292">
<text>All my devises “talk” to each other.</text>
</sentence>
<sentence id="383:3">
<text>Why not 5 stars?</text>
</sentence>
<sentence id="213:1">
<text>Very Very Highly Recommended.</text>
</sentence>
<sentence id="870:1">
<text>?I am only interested in the 15.4 McBook Pro Model # MD103LL/A</text>
</sentence>
<sentence id="659:1">
<text>I don't know why I didn't make the switch sooner...o ya because it's expensive.</text>
</sentence>
<sentence id="787:207">
<text>I was given a demonstration of Windows 8.</text>
<aspectTerms>
<aspectTerm term="Windows 8" polarity="neutral" from="31" to="40"/>
</aspectTerms>
</sentence>
<sentence id="313:0">
<text>The Macbook Pro is the premier choice for college students.</text>
</sentence>
<sentence id="314:3">
<text>Their products, including the MBP, are beautiful, sleek and clever.</text>
</sentence>
<sentence id="314:67">
<text>The MBP is beautiful has many wonderful capabilities.</text>
<aspectTerms>
<aspectTerm term="capabilities" polarity="positive" from="40" to="52"/>
</aspectTerms>
</sentence>
<sentence id="339:4">
<text>I thought that it will be fine, if i do some settings.</text>
<aspectTerms>
<aspectTerm term="settings" polarity="neutral" from="45" to="53"/>
</aspectTerms>
</sentence>
<sentence id="349:1">
<text>Runs very smoothly.</text>
<aspectTerms>
<aspectTerm term="Runs" polarity="positive" from="0" to="4"/>
</aspectTerms>
</sentence>
<sentence id="360:0">
<text>Perfect--thanks so.</text>
</sentence>
<sentence id="363:5">
<text>Also, it hardly ever crashes.</text>
</sentence>
<sentence id="367:0">
<text>I was so excited to get this in the mail i nearly gave myself a heart attack.</text>
</sentence>
<sentence id="786:1355">
<text>Boot-up slowed significantly after all Windows updates were installed.</text>
<aspectTerms>
<aspectTerm term="Boot-up" polarity="negative" from="0" to="7"/>
<aspectTerm term="Windows updates" polarity="negative" from="39" to="54"/>
</aspectTerms>
</sentence>
<sentence id="7:21">
<text>More likely it will require replacing the logic board once they admit they have a problem and come up with a solution.</text>
<aspectTerms>
<aspectTerm term="logic board" polarity="negative" from="42" to="53"/>
</aspectTerms>
</sentence>
<sentence id="375:3">
<text>When i finally held it in my hands i kissed it, yes i did.</text>
</sentence>
<sentence id="1056:1">
<text>It was important that it was powerful enough to do all of the tasks he needed on the internet, word processing, graphic design and gaming.</text>
<aspectTerms>
<aspectTerm term="internet" polarity="positive" from="85" to="93"/>
<aspectTerm term="word processing" polarity="positive" from="95" to="110"/>
<aspectTerm term="graphic design" polarity="positive" from="112" to="126"/>
<aspectTerm term="gaming" polarity="positive" from="131" to="137"/>
</aspectTerms>
</sentence>
<sentence id="375:4">
<text>This computer is not cheap and represent an achievement for me.</text>
</sentence>
<sentence id="227:1">
<text>I like the Mini Mac it was easy to setup and install, but I am learning as I go and could use a tutorial to learn how to use some of the features I was use to on the PC especially the right mouse click menu.</text>
<aspectTerms>
<aspectTerm term="setup" polarity="positive" from="35" to="40"/>
<aspectTerm term="install" polarity="positive" from="45" to="52"/>
<aspectTerm term="tutorial" polarity="neutral" from="96" to="104"/>
<aspectTerm term="features" polarity="neutral" from="137" to="145"/>
<aspectTerm term="right mouse click menu" polarity="neutral" from="184" to="206"/>
</aspectTerms>
</sentence>
<sentence id="375:10">
<text>GET THIS MACHINE</text>
</sentence>
<sentence id="376:4">
<text>It's shiny and it's pretty.</text>
</sentence>
<sentence id="378:1">
<text>Runs real quick.</text>
<aspectTerms>
<aspectTerm term="Runs" polarity="positive" from="0" to="4"/>
</aspectTerms>
</sentence>
<sentence id="375:5">
<text>All the above aside this machine ROCKS!</text>
</sentence>
<sentence id="494:1">
<text>Buy the separate RAM memory and you will have a rocket!</text>
<aspectTerms>
<aspectTerm term="RAM memory" polarity="positive" from="17" to="27"/>
</aspectTerms>
</sentence>
<sentence id="786:1170">
<text>Since the machine's slim profile is critical to me, that was a problem.</text>
<aspectTerms>
<aspectTerm term="profile" polarity="negative" from="25" to="32"/>
</aspectTerms>
</sentence>
<sentence id="320:15">
<text>Bottom line, if you can afford it, get a Mac!</text>
</sentence>
<sentence id="329:2">
<text>I finally made the leap after my Gateway crapped out on me.</text>
</sentence>
<sentence id="1077:1">
<text>WiFi capability, disk drive and multiple USB ports to connect scale and printers was all that was required.</text>
<aspectTerms>
<aspectTerm term="disk drive" polarity="positive" from="17" to="27"/>
<aspectTerm term="USB ports" polarity="positive" from="41" to="50"/>
<aspectTerm term="WiFi capability" polarity="positive" from="0" to="15"/>
</aspectTerms>
</sentence>
<sentence id="1053:13">
<text>The SD card reader is slightly recessed and upside down (the nail slot on the card cannot be accessed), if this was a self ejecting slot this would not be an issue, but its not.</text>
<aspectTerms>
<aspectTerm term="SD card reader" polarity="negative" from="4" to="18"/>
<aspectTerm term="nail slot on the card" polarity="negative" from="61" to="82"/>
<aspectTerm term="slot" polarity="negative" from="132" to="136"/>
</aspectTerms>
</sentence>
<sentence id="615:1">
<text>Soft touch, anodized aluminum with laser cut precision and no flaws.</text>
<aspectTerms>
<aspectTerm term="touch" polarity="positive" from="5" to="10"/>
<aspectTerm term="anodized aluminum" polarity="positive" from="12" to="29"/>
</aspectTerms>
</sentence>
<sentence id="787:873">
<text>Simple details, crafted aluminium and real glass make this laptop blow away the other plastic ridden, bulky sticker filled laptops.</text>
<aspectTerms>
<aspectTerm term="aluminium" polarity="positive" from="24" to="33"/>
<aspectTerm term="glass" polarity="positive" from="43" to="48"/>
</aspectTerms>
</sentence>
<sentence id="261:0">
<text>First of all yes this is a mac and it has that nice brushed aluminum .</text>
<aspectTerms>
<aspectTerm term="aluminum" polarity="positive" from="60" to="68"/>
</aspectTerms>
</sentence>
<sentence id="336:0">
<text>Who makes a laptop that can't rest on your lap?</text>
</sentence>
<sentence id="115:1">
<text>After all was said and done, I essentially used that $450 savings to buy 16GB of RAM, TWO Seagate Momentus XT hybrid drives and an OWC upgrade kit to install the second hard drive.</text>
<aspectTerms>
<aspectTerm term="16GB of RAM" polarity="neutral" from="73" to="84"/>
<aspectTerm term="Seagate Momentus XT hybrid drives" polarity="neutral" from="90" to="123"/>
<aspectTerm term="OWC upgrade kit" polarity="neutral" from="131" to="146"/>
<aspectTerm term="hard drive" polarity="neutral" from="169" to="179"/>
</aspectTerms>
</sentence>
<sentence id="843:1">
<text>The Dell Inspiron is fast and has a number pad on the keyboard, which I miss on my Apple laptops.</text>
<aspectTerms>
<aspectTerm term="number pad on the keyboard" polarity="positive" from="36" to="62"/>
</aspectTerms>
</sentence>
<sentence id="338:0">
<text>wow the new macbook pro hanged as i tried to type this review.</text>
</sentence>
<sentence id="385:11">
<text>The MacBook Pro is a great product which can meet the needs of the average consumer.</text>
</sentence>
<sentence id="578:1">
<text>I was concerned that the downgrade to the regular hard drive would make it unacceptably slow but I need not have worried - this machine is the fastest I have ever owned...</text>
<aspectTerms>
<aspectTerm term="regular hard drive" polarity="positive" from="42" to="60"/>
</aspectTerms>
</sentence>
<sentence id="523:1">
<text>This one still has the CD slot.</text>
<aspectTerms>
<aspectTerm term="CD slot" polarity="neutral" from="23" to="30"/>
</aspectTerms>
</sentence>
<sentence id="754:11">
<text>No HDMI port.</text>
<aspectTerms>
<aspectTerm term="HDMI port" polarity="neutral" from="3" to="12"/>
</aspectTerms>
</sentence>
<sentence id="787:619">
<text>I had to install Mountain Lion and it took a good two hours.</text>
<aspectTerms>
<aspectTerm term="install Mountain Lion" polarity="negative" from="9" to="30"/>
</aspectTerms>
</sentence>
<sentence id="266:25">
<text>Customization on mac is impossible.</text>
<aspectTerms>
<aspectTerm term="Customization" polarity="negative" from="0" to="13"/>
</aspectTerms>
</sentence>
<sentence id="385:14">
<text>I hope this review helps.</text>
</sentence>
<sentence id="314:68">
<text>However, you have to adjust yourself to what it will do, not what you want it to do.</text>
</sentence>
<sentence id="29:322">
<text>I am replacing the HD with a Micron SSD soon.</text>
<aspectTerms>
<aspectTerm term="HD" polarity="neutral" from="19" to="21"/>
<aspectTerm term="Micron SSD" polarity="neutral" from="29" to="39"/>
</aspectTerms>
</sentence>
<sentence id="275:12">
<text>Plus two finger clicking as a replacement for the right click button is surprisingly intuitive.</text>
<aspectTerms>
<aspectTerm term="two finger clicking" polarity="positive" from="5" to="24"/>
<aspectTerm term="right click button" polarity="neutral" from="50" to="68"/>
</aspectTerms>
</sentence>
<sentence id="397:15">
<text>Far superior to my MacBook.</text>
</sentence>
<sentence id="397:17">
<text>The SuperDrive is quiet.</text>
<aspectTerms>
<aspectTerm term="SuperDrive" polarity="positive" from="4" to="14"/>
</aspectTerms>
</sentence>
<sentence id="408:9">
<text>It was quite easy.</text>
</sentence>
<sentence id="1035:1">
<text>The power plug has to be connected to the power adaptor to charge the battery but won't stay connected.</text>
<aspectTerms>
<aspectTerm term="power plug" polarity="negative" from="4" to="14"/>
<aspectTerm term="power adaptor" polarity="neutral" from="42" to="55"/>
<aspectTerm term="battery" polarity="neutral" from="70" to="77"/>
</aspectTerms>
</sentence>
<sentence id="409:0">
<text>I decided to buy a few notebooks for my nephews for Xmas.</text>
</sentence>
<sentence id="1064:1">
<text>The battery was completely dead, in fact it had grown about a quarter inch thick lump on the underside.</text>
<aspectTerms>
<aspectTerm term="battery" polarity="negative" from="4" to="11"/>
</aspectTerms>
</sentence>
<sentence id="417:8">
<text>This is no exception.</text>
</sentence>
<sentence id="429:0">
<text>if yo like practicality this is the laptop for you.</text>
<aspectTerms>
<aspectTerm term="practicality" polarity="positive" from="11" to="23"/>
</aspectTerms>
</sentence>
<sentence id="398:2">
<text>The OS is great.</text>
<aspectTerms>
<aspectTerm term="OS" polarity="positive" from="4" to="6"/>
</aspectTerms>
</sentence>
<sentence id="472:0">
<text>I have had a black macbook since 2007.</text>
</sentence>
<sentence id="203:1">
<text>I tried several monitors and several HDMI cables and this was the case each time.</text>
<aspectTerms>
<aspectTerm term="monitors" polarity="neutral" from="16" to="24"/>
<aspectTerm term="HDMI cables" polarity="neutral" from="37" to="48"/>
</aspectTerms>
</sentence>
<sentence id="497:3">
<text>CONS: Price is a bit ridiculous, kinda heavy.</text>
<aspectTerms>
<aspectTerm term="Price" polarity="negative" from="6" to="11"/>
</aspectTerms>
</sentence>
<sentence id="534:4">
<text>If that is the case, then I am completely happy</text>
</sentence>
<sentence id="565:5">
<text>10/10 five stars would recommend.</text>
</sentence>
<sentence id="1160:2">
<text>The troubleshooting said it was the AC adaptor so we ordered a new one.</text>
<aspectTerms>
<aspectTerm term="AC adaptor" polarity="neutral" from="36" to="46"/>
</aspectTerms>
</sentence>
<sentence id="478:2">
<text>I fell in love with my machine, and it was pampered.</text>
</sentence>
<sentence id="47:1">
<text>Fan only comes on when you are playing a game.</text>
<aspectTerms>
<aspectTerm term="Fan" polarity="neutral" from="0" to="3"/>
<aspectTerm term="playing a game" polarity="neutral" from="31" to="45"/>
</aspectTerms>
</sentence>
<sentence id="961:1">
<text>Which it did not have, only 3 USB 2 ports.</text>
<aspectTerms>
<aspectTerm term="USB 2 ports" polarity="neutral" from="30" to="41"/>
</aspectTerms>
</sentence>
<sentence id="279:2">
<text>No startup disk was not included but that may be my fault.</text>
<aspectTerms>
<aspectTerm term="startup disk" polarity="neutral" from="3" to="15"/>
</aspectTerms>
</sentence>
<sentence id="29:1175">
<text>There is no "tools" menu.</text>
<aspectTerms>
<aspectTerm term=""tools" menu" polarity="neutral" from="12" to="24"/>
</aspectTerms>
</sentence>
<sentence id="716:1">
<text>It is very fast and has everything that I need except for a word program.</text>
<aspectTerms>
<aspectTerm term="word program" polarity="negative" from="60" to="72"/>
</aspectTerms>
</sentence>
<sentence id="217:1">
<text>Needs a CD/DVD drive and a bigger power switch.</text>
<aspectTerms>
<aspectTerm term="CD/DVD drive" polarity="neutral" from="8" to="20"/>
<aspectTerm term="power switch" polarity="negative" from="34" to="46"/>
</aspectTerms>
</sentence>
<sentence id="624:1">
<text>It is the best laptop ever!!!</text>
</sentence>
<sentence id="840:1">
<text>My laptop with Windows 7 crashed and I did not want Windows 8.</text>
<aspectTerms>
<aspectTerm term="Windows 7" polarity="negative" from="15" to="24"/>
<aspectTerm term="Windows 8" polarity="negative" from="52" to="61"/>
</aspectTerms>
</sentence>
<sentence id="1130:1">
<text>Was skeptical about buying an electronic item online but it turned out to be a positive experience.</text>
</sentence>
<sentence id="690:4">
<text>Not a scratch or mark on it.</text>
</sentence>
<sentence id="121:1">
<text>Easy to install also small to leave anywhere at your bedroom also very easy to configure for ADSl cable or wifi.</text>
<aspectTerms>
<aspectTerm term="install" polarity="positive" from="8" to="15"/>
<aspectTerm term="configure for ADSl cable or wifi" polarity="positive" from="79" to="111"/>
</aspectTerms>
</sentence>
<sentence id="721:0">
<text>Words cannot express how much I love my new Mac.</text>
</sentence>
<sentence id="1008:1">
<text>The speakers could have been better but it wasn't a deal breaker... this is a great little laptop... love it!</text>
<aspectTerms>
<aspectTerm term="speakers" polarity="conflict" from="4" to="12"/>
</aspectTerms>
</sentence>
<sentence id="572:0">
<text>The item received was exactly as identified.</text>
</sentence>
<sentence id="688:0">
<text>Its everything mac offers.</text>
</sentence>
<sentence id="688:1">
<text>Nice packing.</text>
<aspectTerms>
<aspectTerm term="packing" polarity="positive" from="5" to="12"/>
</aspectTerms>
</sentence>
<sentence id="630:10">
<text>Besides being elegant, the MacBooks are durable.</text>
</sentence>
<sentence id="62:1">
<text>I switched to this because I wanted something different, even though I miss windows.</text>
<aspectTerms>
<aspectTerm term="windows" polarity="positive" from="76" to="83"/>
</aspectTerms>
</sentence>
<sentence id="630:14">
<text>Yes, the MBP is more expensive than competing PC laptops.</text>
</sentence>
<sentence id="464:4">
<text>Apple no longer includes iDVD with the computer and furthermore, Apple doesn't even offer it anymore!</text>
<aspectTerms>
<aspectTerm term="iDVD" polarity="negative" from="25" to="29"/>
</aspectTerms>
</sentence>
<sentence id="991:1">
<text>I also wanted Windows 7, which this one has.</text>
<aspectTerms>
<aspectTerm term="Windows 7" polarity="positive" from="14" to="23"/>
</aspectTerms>
</sentence>
<sentence id="941:1">
<text>At first, I feel a little bit uncomfortable in using the Mac system.</text>
<aspectTerms>
<aspectTerm term="Mac system" polarity="negative" from="57" to="67"/>
</aspectTerms>
</sentence>
<sentence id="440:1">
<text>I am used to computers with windows so I am having a little difficulty finding my way around.</text>
<aspectTerms>
<aspectTerm term="windows" polarity="neutral" from="28" to="35"/>
</aspectTerms>
</sentence>
<sentence id="786:173">
<text>They replaced it and so far so good.</text>
</sentence>
<sentence id="626:1">
<text>It just works out of the box and you have a lot of cool software included with the OS.</text>
<aspectTerms>
<aspectTerm term="works" polarity="positive" from="8" to="13"/>
<aspectTerm term="software" polarity="positive" from="56" to="64"/>
<aspectTerm term="OS" polarity="neutral" from="83" to="85"/>
</aspectTerms>
</sentence>
<sentence id="574:0">
<text>Good in every aspect.</text>
</sentence>
<sentence id="525:1">
<text>its as advertised on here..... it works great and is not a waste of money!</text>
<aspectTerms>
<aspectTerm term="works" polarity="positive" from="34" to="39"/>
</aspectTerms>
</sentence>
<sentence id="644:1">
<text>Replaced this one with my mac that was stolen, its a great computer.</text>
</sentence>
<sentence id="757:3">
<text>Just be careful; you always have to give up some good stuff for others.</text>
</sentence>
<sentence id="786:82">
<text>Runs like a champ.....</text>
<aspectTerms>
<aspectTerm term="Runs" polarity="positive" from="0" to="4"/>
</aspectTerms>
</sentence>
<sentence id="786:155">
<text>Really great...Well let me start at the beginning.</text>
</sentence>
<sentence id="692:1">
<text>Premium price for the OS more than anything else.</text>
<aspectTerms>
<aspectTerm term="price" polarity="positive" from="8" to="13"/>
<aspectTerm term="OS" polarity="neutral" from="22" to="24"/>
</aspectTerms>
</sentence>
<sentence id="575:0">
<text>This was a gift for my grand son.</text>
</sentence>
<sentence id="976:1">
<text>I was a little concerned about the touch pad based on reviews, but I've found it fine to work with.</text>
<aspectTerms>
<aspectTerm term="touch pad" polarity="positive" from="35" to="44"/>
</aspectTerms>
</sentence>
<sentence id="762:1">
<text>I bought this Mac book pro along with a new 27" iMac and while they are still light years more reliable than a PC I have noticed a decline in the reliability of my Mac computers.</text>
<aspectTerms>
<aspectTerm term="reliability" polarity="conflict" from="146" to="157"/>
</aspectTerms>
</sentence>
<sentence id="786:1301">
<text>The sound as mentioned earlier isn't the best, but it can be solved with headphones.</text>
<aspectTerms>
<aspectTerm term="sound" polarity="conflict" from="4" to="9"/>
<aspectTerm term="headphones" polarity="neutral" from="73" to="83"/>
</aspectTerms>
</sentence>
<sentence id="786:1054">
<text>The track pad is a bit squirrely at times- sometimes too sensitive, and sometimes a bit unresponsive, but it's usable.</text>
<aspectTerms>
<aspectTerm term="track pad" polarity="conflict" from="4" to="13"/>
</aspectTerms>
</sentence>
<sentence id="479:6">
<text>However, the experience was great since the OS does not become unstable and the application will simply shutdown and reopen.</text>
<aspectTerms>
<aspectTerm term="OS" polarity="positive" from="44" to="46"/>
<aspectTerm term="application" polarity="positive" from="80" to="91"/>
</aspectTerms>
</sentence>
<sentence id="478:3">
<text>Then only FOUR months later, my great MacBook pro FAILED.</text>
</sentence>
<sentence id="258:1">
<text>If you ask me, for this price it should be included.</text>
<aspectTerms>
<aspectTerm term="price" polarity="negative" from="24" to="29"/>
</aspectTerms>
</sentence>
<sentence id="1044:1">
<text>The battery is not as shown in the product photos.</text>
<aspectTerms>
<aspectTerm term="battery" polarity="negative" from="4" to="11"/>
</aspectTerms>
</sentence>
<sentence id="416:1">
<text>Even though I could have gotten a pc twice the speed for the same price I still think there's nothing like a Mac.</text>
<aspectTerms>
<aspectTerm term="price" polarity="conflict" from="66" to="71"/>
<aspectTerm term="speed" polarity="conflict" from="47" to="52"/>
</aspectTerms>
</sentence>
<sentence id="29:95">
<text>Seems a much more economical way to get into Apple than their other computers.</text>
</sentence>
<sentence id="367:1">
<text>Shipping was quick and product described was the product sent and so much more...</text>
<aspectTerms>
<aspectTerm term="Shipping" polarity="positive" from="0" to="8"/>
</aspectTerms>
</sentence>
<sentence id="478:5">
<text>I'm so disgusted that I wasted my money on this product.</text>
</sentence>
<sentence id="432:2">
<text>All you get is a box and a computer.</text>
</sentence>
<sentence id="718:1">
<text>the retina display display make pictures i took years ago jaw dropping.</text>
<aspectTerms>
<aspectTerm term="retina display display" polarity="positive" from="4" to="26"/>
</aspectTerms>
</sentence>
<sentence id="445:22">
<text>Its only crashed on me one time in the 3 months i've had it.</text>
</sentence>
<sentence id="109:1">
<text>The Mac Mini is probably the simplest example of compact computing out there.</text>
<aspectTerms>
<aspectTerm term="compact computing" polarity="positive" from="49" to="66"/>
</aspectTerms>
</sentence>
<sentence id="96:1">
<text>Instead, I'll focus more on the actual performance and feature set of the hardware itself so you can make an educated decision on which Mac to buy.</text>
<aspectTerms>
<aspectTerm term="performance and feature set of the hardware" polarity="neutral" from="39" to="82"/>
</aspectTerms>
</sentence>
<sentence id="448:11">
<text>My bag just got a little lighter.</text>
</sentence>
<sentence id="450:0">
<text>I'm Not exagerating when I say this computer is perfect..i It is!!</text>
</sentence>
<sentence id="316:3">
<text>This machine is flawless, fast, and classy.</text>
</sentence>
<sentence id="786:572">
<text>Other ports include FireWire 800, Gigabit Ethernet, MagSafe port, Microphone jack.</text>
<aspectTerms>
<aspectTerm term="ports" polarity="neutral" from="6" to="11"/>
<aspectTerm term="FireWire 800" polarity="neutral" from="20" to="32"/>
<aspectTerm term="Gigabit Ethernet" polarity="neutral" from="34" to="50"/>
<aspectTerm term="MagSafe port" polarity="neutral" from="52" to="64"/>
<aspectTerm term="Microphone jack" polarity="neutral" from="66" to="81"/>
</aspectTerms>
</sentence>
<sentence id="388:2">
<text>I stayed up half the night enjoying my new MacBook Pro.</text>
</sentence>
<sentence id="786:773">
<text>This laptop is a 100 times better than a Chromebook!</text>
</sentence>
<sentence id="325:1">
<text>Additionally, there is barely a ventilation system in the computer, and even the simple activity of watching videos let alone playing steam games causes the laptop to get very very hot, and in fact impossible to keep on lap.</text>
<aspectTerms>
<aspectTerm term="ventilation system" polarity="negative" from="32" to="50"/>
<aspectTerm term="watching videos" polarity="neutral" from="100" to="115"/>
<aspectTerm term="playing steam games" polarity="neutral" from="126" to="145"/>
</aspectTerms>
</sentence>
<sentence id="786:594">
<text>At $1899 to start, this is no cheap machine.</text>
</sentence>
<sentence id="965:1">
<text>Chatting with Acer support, I was advised the problem was corrupted operating system files.</text>
<aspectTerms>
<aspectTerm term="Acer support" polarity="neutral" from="14" to="26"/>
<aspectTerm term="operating system files" polarity="neutral" from="68" to="90"/>
</aspectTerms>
</sentence>
<sentence id="50:1">
<text>It's been a couple weeks since the purchase and I'm struggle with finding the correct keys (but that was expected).</text>
<aspectTerms>
<aspectTerm term="keys" polarity="neutral" from="86" to="90"/>
</aspectTerms>
</sentence>
<sentence id="326:3">
<text>Many people complain about the new OS, and it's urgent for Apple to fix it asap!</text>
<aspectTerms>
<aspectTerm term="OS" polarity="negative" from="35" to="37"/>
</aspectTerms>
</sentence>
<sentence id="786:237">
<text>Now that I have upgraded to Lion I am much happier about MAC OS and have just bought an iMac for office.</text>
<aspectTerms>
<aspectTerm term="Lion" polarity="positive" from="28" to="32"/>
<aspectTerm term="MAC OS" polarity="positive" from="57" to="63"/>
</aspectTerms>
</sentence>
<sentence id="786:179">
<text>User upgradeable RAM and HDD.</text>
<aspectTerms>
<aspectTerm term="RAM" polarity="positive" from="17" to="20"/>
<aspectTerm term="HDD" polarity="positive" from="25" to="28"/>
</aspectTerms>
</sentence>
<sentence id="786:331">
<text>But I wanted the Pro for the CD/DVD player.</text>
<aspectTerms>
<aspectTerm term="CD/DVD player" polarity="positive" from="29" to="42"/>
</aspectTerms>
</sentence>
<sentence id="786:636">
<text>I might have read it incorrectly, but better safe than sorry right?</text>
</sentence>
<sentence id="389:0">
<text>The ultimate graduation gift.</text>
</sentence>
<sentence id="347:1">
<text>The RAM memory is good but should have splurged for 8Mb instead of 4Mb.</text>
<aspectTerms>
<aspectTerm term="RAM memory" polarity="conflict" from="4" to="14"/>
</aspectTerms>
</sentence>
<sentence id="786:417">
<text>was debating to buy one for months, checked out different stuff on youtube, and read different articles and debates,I just didnt really wanna spend the money but Im glad that I did.</text>
</sentence>
<sentence id="316:4">
<text>I love it and would recommend it to everyone who is tired of the constant attention PC's require.</text>
</sentence>
<sentence id="500:1">
<text>I was a little worry at first because I don't have a lot of experience with os.x and windows has always been second nature to me after many years of using windows.</text>
<aspectTerms>
<aspectTerm term="os.x" polarity="neutral" from="76" to="80"/>
<aspectTerm term="windows" polarity="positive" from="85" to="92"/>
<aspectTerm term="windows" polarity="neutral" from="155" to="162"/>
</aspectTerms>
</sentence>
<sentence id="301:5">
<text>I am an Info Sys major in college, so I started researching this issue on my own.</text>
</sentence>
<sentence id="303:5">
<text>Solution: it turned out to be pretty simple.</text>
</sentence>
<sentence id="574:1">
<text>With the softwares supporting the use of other OS makes it much better.</text>
<aspectTerms>
<aspectTerm term="OS" polarity="neutral" from="47" to="49"/>
<aspectTerm term="softwares" polarity="neutral" from="9" to="18"/>
</aspectTerms>
</sentence>
<sentence id="303:13">
<text>Still haven't solved this.</text>
</sentence>
<sentence id="305:3">
<text>I then upgraded to Mac OS X 10.8 "Mountain Lion".</text>
<aspectTerms>
<aspectTerm term="Mac OS X 10.8 "Mountain Lion"" polarity="neutral" from="19" to="48"/>
</aspectTerms>
</sentence>
<sentence id="293:2">
<text>It is EXTREMELY fast and never lags.</text>
</sentence>
<sentence id="301:7">
<text>I told them that I just received my brand new MacBook but I was having issues.</text>
</sentence>
<sentence id="898:1">
<text>I was considering buying the Air, but in reality, this one has a more powerful performance and seems much more convenient, even though it's about .20 inch thicker and 2 lbs heavier.</text>
<aspectTerms>
<aspectTerm term="performance" polarity="positive" from="79" to="90"/>
</aspectTerms>
</sentence>
<sentence id="891:1">
<text>At home and the office it gets plugged into an external 24" LCD screen, so built in screen size is not terribly important.</text>
<aspectTerms>
<aspectTerm term="built in screen size" polarity="neutral" from="75" to="95"/>
<aspectTerm term="external 24" LCD screen" polarity="neutral" from="47" to="70"/>
</aspectTerms>
</sentence>
<sentence id="301:10">
<text>Hopefully my replacement is brand new.</text>
</sentence>
<sentence id="65:1">
<text>Just beware no DVD slot so when I went to install software I had on CD I couldn't.</text>
<aspectTerms>
<aspectTerm term="install software" polarity="negative" from="42" to="58"/>
<aspectTerm term="DVD slot" polarity="neutral" from="15" to="23"/>
</aspectTerms>
</sentence>
<sentence id="994:1">
<text>I bought it to be able to dedicate a small, portable laptop to my writing and was surprised to learn that I needed to buy a word processing program to do so.</text>
<aspectTerms>
<aspectTerm term="word processing program" polarity="neutral" from="124" to="147"/>
</aspectTerms>
</sentence>
<sentence id="443:1">
<text>This version of MacBook Pro runs on a third-generation CPU ("Ivy Bridge"), not the latest fourth-generation Haswell CPU the 2013 version has.</text>
<aspectTerms>
<aspectTerm term="third-generation CPU ("Ivy Bridge")" polarity="neutral" from="38" to="73"/>
<aspectTerm term="fourth-generation Haswell CPU" polarity="neutral" from="90" to="119"/>
</aspectTerms>
</sentence>
<sentence id="316:1">
<text>Actually, I think I was intimidated by the change from a PC.</text>
</sentence>
<sentence id="245:1">
<text>No Cd Rom in the new version there's no way I'm spending that kind of money on something has less features than the older version.</text>
<aspectTerms>
<aspectTerm term="Cd Rom" polarity="neutral" from="3" to="9"/>
<aspectTerm term="features" polarity="negative" from="98" to="106"/>
</aspectTerms>
</sentence>
<sentence id="380:1">
<text>Definitely worth spending the money on it.</text>
</sentence>
<sentence id="270:1">
<text>I have three words: Piece of Junk!</text>
</sentence>
<sentence id="1063:403">
<text>the volume is really low to low for a laptopwas not expectin t volume to be so lowan i hate that about this computer</text>
<aspectTerms>
<aspectTerm term="volume" polarity="negative" from="4" to="10"/>
<aspectTerm term="volume" polarity="negative" from="63" to="69"/>
</aspectTerms>
</sentence>
<sentence id="786:1388">
<text>Fits all my personal needs.</text>
</sentence>
<sentence id="29:99">
<text>I'm the pro-active type so I went off and did some preventative fixes.</text>
</sentence>
<sentence id="786:842">
<text>and its not hard to accidentally bang it against something so i recommend getting a case to protect it.</text>
<aspectTerms>
<aspectTerm term="case" polarity="neutral" from="84" to="88"/>
</aspectTerms>
</sentence>
<sentence id="397:1">
<text>I wanted to explore what the Mac was all about.</text>
</sentence>
<sentence id="285:1">
<text>I got this at an amazing price from Amazon and it arrived just in time.</text>
<aspectTerms>
<aspectTerm term="price" polarity="positive" from="25" to="30"/>
</aspectTerms>
</sentence>
<sentence id="43:1">
<text>Every time I log into the system after a few hours, there is this endlessly frustrating process that I have to go through.</text>
<aspectTerms>
<aspectTerm term="log into the system" polarity="negative" from="13" to="32"/>
</aspectTerms>
</sentence>
<sentence id="870:0">
<text>The majority of the reviews seem to be for the 13.3 MacBook Pro Model # MD101LL/A.</text>
</sentence>
<sentence id="123:1">
<text>Put a SSD and use a 21" LED screen, this set up is silky smooth!</text>
<aspectTerms>
<aspectTerm term="21" LED screen" polarity="neutral" from="20" to="34"/>
<aspectTerm term="SSD" polarity="neutral" from="6" to="9"/>
<aspectTerm term="set up" polarity="positive" from="41" to="47"/>
</aspectTerms>
</sentence>
<sentence id="786:379">
<text>I saw the bad reviews from people saying to buy directly from Apple and I was concerned but I took my chances and am overly impressed.</text>
</sentence>
<sentence id="11:1">
<text>The case is now slightly larger than the previous generation, but the lack of an external power supply justifies the small increase in size.</text>
<aspectTerms>
<aspectTerm term="case" polarity="negative" from="4" to="8"/>
<aspectTerm term="size" polarity="conflict" from="135" to="139"/>
<aspectTerm term="external power supply" polarity="neutral" from="81" to="102"/>
</aspectTerms>
</sentence>
<sentence id="1009:1">
<text>I had to buy a wireless mouse to go with it, as I am old school and hate the pad, but knew that before I bought it, now it works great, need to get adjusted to the key board, as I am used to a bigger one and pounding.</text>
<aspectTerms>
<aspectTerm term="wireless mouse" polarity="neutral" from="15" to="29"/>
<aspectTerm term="pad" polarity="negative" from="77" to="80"/>
<aspectTerm term="works" polarity="positive" from="123" to="128"/>
<aspectTerm term="key board" polarity="neutral" from="164" to="173"/>
</aspectTerms>
</sentence>
<sentence id="404:1">
<text>When considering a Mac, look at the total cost of ownership and not just the initial price tag.</text>
<aspectTerms>
<aspectTerm term="cost of ownership" polarity="neutral" from="42" to="59"/>
<aspectTerm term="price tag" polarity="neutral" from="85" to="94"/>
</aspectTerms>
</sentence>
<sentence id="1020:1">
<text>Has all the other features I wanted including a VGA port, HDMI, ethernet and 3 USB ports.</text>
<aspectTerms>
<aspectTerm term="features" polarity="positive" from="18" to="26"/>
<aspectTerm term="VGA port" polarity="neutral" from="48" to="56"/>
<aspectTerm term="HDMI" polarity="neutral" from="58" to="62"/>
<aspectTerm term="ethernet" polarity="neutral" from="64" to="72"/>
<aspectTerm term="USB ports" polarity="neutral" from="79" to="88"/>
</aspectTerms>
</sentence>
<sentence id="540:3">
<text>A great college tool!</text>
</sentence>
<sentence id="271:28">
<text>The only thing I dislike about this laptop are the rubber pads found on the bottom of the computer for grip.</text>
<aspectTerms>
<aspectTerm term="rubber pads" polarity="negative" from="51" to="62"/>
</aspectTerms>
</sentence>
<sentence id="264:5">
<text>I called apple and no solution.</text>
</sentence>
<sentence id="1143:1">
<text>It's a decent computer for the price and hopefully it will last a long time.</text>
<aspectTerms>
<aspectTerm term="price" polarity="neutral" from="31" to="36"/>
</aspectTerms>
</sentence>
<sentence id="29:1">
<text>I was really happy because it is a much better price on amazon.com than it was in the Mac store.</text>
<aspectTerms>
<aspectTerm term="price" polarity="conflict" from="47" to="52"/>
</aspectTerms>
</sentence>
<sentence id="483:6">
<text>The worst a Mac ever did to me was freeze up.</text>
</sentence>
<sentence id="29:1027">
<text>The nicest part is the low heat output and ultra quiet operation.</text>
<aspectTerms>
<aspectTerm term="heat output" polarity="positive" from="28" to="39"/>
<aspectTerm term="operation" polarity="positive" from="56" to="65"/>
</aspectTerms>
</sentence>
<sentence id="264:12">
<text>I am paying apple to kill my self and my wallet.</text>
</sentence>
<sentence id="264:13">
<text>NO STAR FOR THIS TRASH.[...</text>
</sentence>
<sentence id="805:1">
<text>I will upgrade the ram myself (because with this model you can you can do it) later on.</text>
<aspectTerms>
<aspectTerm term="upgrade the ram" polarity="positive" from="7" to="22"/>
</aspectTerms>
</sentence>
<sentence id="568:1">
<text>The price is 200 dollars down.</text>
<aspectTerms>
<aspectTerm term="price" polarity="positive" from="4" to="9"/>
</aspectTerms>
</sentence>
<sentence id="75:1">
<text>this Mac Mini does not have a built-in mic, and it would seem that its Mac OS 10.9 does not handle external microphones properly.</text>
<aspectTerms>
<aspectTerm term="built-in mic" polarity="neutral" from="30" to="42"/>
<aspectTerm term="Mac OS 10.9" polarity="negative" from="71" to="82"/>
<aspectTerm term="external microphones" polarity="neutral" from="99" to="119"/>
</aspectTerms>
</sentence>
<sentence id="859:1">
<text>A lot of features and shortcuts on the MBP that I was never exposed to on a normal PC.</text>
<aspectTerms>
<aspectTerm term="features" polarity="neutral" from="9" to="17"/>
<aspectTerm term="shortcuts" polarity="neutral" from="22" to="31"/>
</aspectTerms>
</sentence>
<sentence id="768:1">
<text>Wasn't sure if I was going to like it much less love it so I went to a local best buy and played around with the IOS system on a Mac Pro and it was totally unique and different.</text>
<aspectTerms>
<aspectTerm term="IOS system" polarity="positive" from="113" to="123"/>
</aspectTerms>
</sentence>
<sentence id="271:10">
<text>Quietest laptop I have ever owned.</text>
</sentence>
<sentence id="272:10">
<text>air has higher resolution but the fonts are small.</text>
<aspectTerms>
<aspectTerm term="resolution" polarity="positive" from="15" to="25"/>
<aspectTerm term="fonts" polarity="negative" from="34" to="39"/>
</aspectTerms>
</sentence>
<sentence id="272:22">
<text>again this is just my personal honest opinion.</text>
</sentence>
<sentence id="1103:1">
<text>If you have much higher expectations than that... I would look elsewhere.</text>
</sentence>
<sentence id="862:1">
<text>working with Mac is so much easier, so many cool features.</text>
<aspectTerms>
<aspectTerm term="working" polarity="positive" from="0" to="7"/>
<aspectTerm term="features" polarity="positive" from="49" to="57"/>
</aspectTerms>
</sentence>
<sentence id="170:6">
<text>I'm going to buy a logitevh c270.</text>
</sentence>
<sentence id="234:1">
<text>Very happy with my purchase.</text>
</sentence>
<sentence id="643:1">
<text>I like the brightness and adjustments.</text>
<aspectTerms>
<aspectTerm term="brightness" polarity="positive" from="11" to="21"/>
<aspectTerm term="adjustments" polarity="positive" from="26" to="37"/>
</aspectTerms>
</sentence>
<sentence id="899:1">
<text>I'M SO HAPPY WITH MY macbook pro!</text>
</sentence>
<sentence id="164:1">
<text>I only wish this mac had a CD/DVD player built in.</text>
<aspectTerms>
<aspectTerm term="CD/DVD player" polarity="neutral" from="27" to="40"/>
</aspectTerms>
</sentence>
<sentence id="969:5">
<text>The only thing I miss is that my old Alienware laptop had backlit keys.</text>
<aspectTerms>
<aspectTerm term="backlit keys" polarity="negative" from="58" to="70"/>
</aspectTerms>
</sentence>
<sentence id="933:1">
<text>The only thing I miss are the "Home/End" type keys and other things that I grew accustomed to after so long.</text>
<aspectTerms>
<aspectTerm term=""Home/End" type keys" polarity="neutral" from="30" to="50"/>
</aspectTerms>
</sentence>
<sentence id="535:1">
<text>So happy with this purchase, I just wish it came with Microsoft Word.</text>
<aspectTerms>
<aspectTerm term="Microsoft Word" polarity="neutral" from="54" to="68"/>
</aspectTerms>
</sentence>
<sentence id="1080:1">
<text>It is more than enough computer to keep up with the needs of a high school student.</text>
</sentence>
<sentence id="1133:1">
<text>It has enough memory and speed to run my business with all the flexibility that comes with a laptop.</text>
<aspectTerms>
<aspectTerm term="memory" polarity="positive" from="14" to="20"/>
<aspectTerm term="speed" polarity="positive" from="25" to="30"/>
<aspectTerm term="flexibility" polarity="positive" from="63" to="74"/>
</aspectTerms>
</sentence>
<sentence id="881:4">
<text>The speed, the simplicity, the design.. it is lightyears ahead of any PC I have ever owned.</text>
<aspectTerms>
<aspectTerm term="speed" polarity="positive" from="4" to="9"/>
<aspectTerm term="simplicity" polarity="positive" from="15" to="25"/>
<aspectTerm term="design" polarity="positive" from="31" to="37"/>
</aspectTerms>
</sentence>
<sentence id="713:1">
<text>I love everything about this computer.</text>
</sentence>
<sentence id="793:1">
<text>I found it toughest to decide between Dell ultra books and Apple.</text>
</sentence>
<sentence id="390:1">
<text>The battery life is excellent, the display is excellent, and downloading apps is a breeze.</text>
<aspectTerms>
<aspectTerm term="battery life" polarity="positive" from="4" to="16"/>
<aspectTerm term="display" polarity="positive" from="35" to="42"/>
<aspectTerm term="downloading apps" polarity="positive" from="61" to="77"/>
</aspectTerms>
</sentence>
<sentence id="940:1">
<text>The screen, the software and the smoothness of the operating system.</text>
<aspectTerms>
<aspectTerm term="screen" polarity="positive" from="4" to="10"/>
<aspectTerm term="software" polarity="positive" from="16" to="24"/>
<aspectTerm term="operating system" polarity="positive" from="51" to="67"/>
</aspectTerms>
</sentence>
<sentence id="374:1">
<text>While we struggle with all the crashes and viruses, the kids computers stay consistent and so we caved in and bought one for buisness!</text>
</sentence>
<sentence id="886:1">
<text>I don't want to RUN a computer; I want to USE a computer.</text>
</sentence>
<sentence id="547:16">
<text>i have dropped mine a couple times with only a slim plastic case covering it.</text>
<aspectTerms>
<aspectTerm term="slim plastic case" polarity="neutral" from="47" to="64"/>
</aspectTerms>
</sentence>
<sentence id="991:8">
<text>I also made a recovery USB stick.</text>
<aspectTerms>
<aspectTerm term="recovery USB stick" polarity="neutral" from="14" to="32"/>
</aspectTerms>
</sentence>
<sentence id="785:1">
<text>Being a PC user for many years to switch to a Mac I will not go back.</text>
</sentence>
<sentence id="311:18">
<text>But with this laptop, the bass is very weak and the sound comes out sounding tinny.</text>
<aspectTerms>
<aspectTerm term="bass" polarity="negative" from="26" to="30"/>
<aspectTerm term="sound" polarity="negative" from="52" to="57"/>
</aspectTerms>
</sentence>
<sentence id="635:1">
<text>I do admit it is pricey but the saying is really true with this MacBook Pro Laptop ( You get what you pay for).</text>
</sentence>
<sentence id="84:1">
<text>I've almost have bought every generation of MacMinis since 2005, and this one hasn't let me down.</text>
</sentence>
<sentence id="339:1">
<text>The built quality is really good, I was so Happy and excited about this Product.</text>
<aspectTerms>
<aspectTerm term="built quality" polarity="positive" from="4" to="17"/>
</aspectTerms>
</sentence>
<sentence id="484:1">
<text>I am loving the fast performance also.</text>
<aspectTerms>
<aspectTerm term="performance" polarity="positive" from="21" to="32"/>
</aspectTerms>
</sentence>
<sentence id="1038:1">
<text>I had to return it because it wouldn't even start.</text>
</sentence>
<sentence id="29:313">
<text>Further, this Mac Mini has a sloppy Bluetooth interface (courtesy of the Mac OS) and the range is poor.</text>
<aspectTerms>
<aspectTerm term="Bluetooth interface" polarity="negative" from="36" to="55"/>
<aspectTerm term="Mac OS" polarity="negative" from="73" to="79"/>
<aspectTerm term="range" polarity="negative" from="89" to="94"/>
</aspectTerms>
</sentence>
<sentence id="869:0">
<text>Great deal on an amazing lap top!</text>
</sentence>
<sentence id="1063:161">
<text>If you start on the far right side and scroll to your left the start menu will automatically come up.</text>
<aspectTerms>
<aspectTerm term="start menu" polarity="neutral" from="63" to="73"/>
</aspectTerms>
</sentence>
<sentence id="736:1">
<text>Best money I ever spent.</text>
</sentence>
<sentence id="67:1">
<text>My only gripe would be the need to add more RAM.</text>
<aspectTerms>
<aspectTerm term="RAM" polarity="negative" from="44" to="47"/>
</aspectTerms>
</sentence>
<sentence id="73:1">
<text>But I didn't want to spend another thousand on a laptop since my work already provides me with a PC.</text>
</sentence>
<sentence id="1107:3">
<text>Fine if you have a touch screen.</text>
<aspectTerms>
<aspectTerm term="touch screen" polarity="neutral" from="19" to="31"/>
</aspectTerms>
</sentence>
<sentence id="930:1">
<text>can never go wrong with apple products.</text>
</sentence>
<sentence id="32:1">
<text>As far as user type - I dabble in everything from games (WoW) to Photoshop, but nothing professionally.</text>
<aspectTerms>
<aspectTerm term="games" polarity="neutral" from="50" to="55"/>
<aspectTerm term="Photoshop" polarity="neutral" from="65" to="74"/>
</aspectTerms>
</sentence>
<sentence id="769:1">
<text>It doesnt get hot like my PC, with technology always at the tip of our fingertips anytime I forget how to do something i just google it.</text>
</sentence>
<sentence id="997:12">
<text>I re-seated the "WLAN" card inside and re-installed the LAN device drivers.</text>
<aspectTerms>
<aspectTerm term=""WLAN" card" polarity="neutral" from="16" to="27"/>
<aspectTerm term="LAN device drivers" polarity="neutral" from="56" to="74"/>
</aspectTerms>
</sentence>
<sentence id="934:1">
<text>This by far beats any computer out on the market today built well, battery life AMAZING.</text>
<aspectTerms>
<aspectTerm term="built" polarity="positive" from="55" to="60"/>
<aspectTerm term="battery life" polarity="positive" from="67" to="79"/>
</aspectTerms>
</sentence>
<sentence id="118:2">
<text>I haven't used it for anything high tech yet, but I love it already.</text>
</sentence>
<sentence id="787:543">
<text>The OS is easy, and offers all kinds of surprises.</text>
<aspectTerms>
<aspectTerm term="OS" polarity="positive" from="4" to="6"/>
</aspectTerms>
</sentence>
<sentence id="884:1">
<text>I had to get Apple Customer Support to correct the problem.</text>
<aspectTerms>
<aspectTerm term="Apple Customer Support" polarity="neutral" from="13" to="35"/>
</aspectTerms>
</sentence>
<sentence id="986:1">
<text>Ideal for someone on the go or for a high school students.</text>
</sentence>
<sentence id="834:1">
<text>A veryimportant feature is Firewire 800 which in my experience works better then USB3 (in PC enabled with USB3)I was not originally sold on the MAC OS I felt it was inferior in many ways To Windows 7.</text>
<aspectTerms>
<aspectTerm term="Firewire 800" polarity="positive" from="27" to="39"/>
<aspectTerm term="USB3" polarity="negative" from="81" to="85"/>
<aspectTerm term="USB3" polarity="neutral" from="106" to="110"/>
<aspectTerm term="MAC OS" polarity="negative" from="144" to="150"/>
<aspectTerm term="Windows 7" polarity="positive" from="190" to="199"/>
</aspectTerms>
</sentence>
<sentence id="146:1">
<text>I like iTunes, the apparent security, the Mini form factor, all the nice graphics stuff.</text>
<aspectTerms>
<aspectTerm term="iTunes" polarity="positive" from="7" to="13"/>
<aspectTerm term="security" polarity="positive" from="28" to="36"/>
<aspectTerm term="Mini form factor" polarity="positive" from="42" to="58"/>
<aspectTerm term="graphics stuff" polarity="positive" from="73" to="87"/>
</aspectTerms>
</sentence>
<sentence id="786:1472">
<text>The first time I used the card reader it took half an hour and a pair of tweezers to remove the card.</text>
<aspectTerms>
<aspectTerm term="card reader" polarity="negative" from="26" to="37"/>
<aspectTerm term="remove the card" polarity="negative" from="85" to="100"/>
</aspectTerms>
</sentence>
<sentence id="263:4">
<text>This flaw unfortunately detracts from everything else Apple got right with the Mini.</text>
</sentence>
<sentence id="755:1">
<text>After replacing the spinning hard disk with an ssd drive, my mac is just flying.</text>
<aspectTerms>
<aspectTerm term="spinning hard disk" polarity="neutral" from="20" to="38"/>
<aspectTerm term="ssd drive" polarity="positive" from="47" to="56"/>
</aspectTerms>
</sentence>
<sentence id="55:1">
<text>I know some people complained about HDMI issues but they released a firmware patch to address that issue.</text>
<aspectTerms>
<aspectTerm term="HDMI" polarity="neutral" from="36" to="40"/>
<aspectTerm term="firmware patch" polarity="neutral" from="68" to="82"/>
</aspectTerms>
</sentence>
<sentence id="762:7">
<text>With the needs of a professional photographer I generally need to keep up with the best specs.</text>
<aspectTerms>
<aspectTerm term="specs" polarity="neutral" from="88" to="93"/>
</aspectTerms>
</sentence>
<sentence id="277:1">
<text>Added an iMac about 2 years later.</text>
</sentence>
<sentence id="685:1">
<text>packing and everything was perfect</text>
<aspectTerms>
<aspectTerm term="packing" polarity="positive" from="0" to="7"/>
</aspectTerms>
</sentence>
<sentence id="1079:1">
<text>I will not hesitate to recommend it to family and friends</text>
</sentence>
<sentence id="1068:1">
<text>I called Toshiba where I gave them the serial number and they informed me that they were having issues with the mother boards.</text>
<aspectTerms>
<aspectTerm term="mother boards" polarity="neutral" from="112" to="125"/>
</aspectTerms>
</sentence>
<sentence id="474:1">
<text>I seem to be having repeat problems as the Mother Board in this one is diagnosed as faulty, related to the graphics card.</text>
<aspectTerms>
<aspectTerm term="Mother Board" polarity="negative" from="43" to="55"/>
<aspectTerm term="graphics card" polarity="negative" from="107" to="120"/>
</aspectTerms>
</sentence>
<sentence id="946:1">
<text>It also comes with 4G of RAM but if you're like me you want to max that out so I immediately put 8G of RAM in her and I've never used a computer that performs better.</text>
<aspectTerms>
<aspectTerm term="4G of RAM" polarity="neutral" from="19" to="28"/>
<aspectTerm term="8G of RAM" polarity="neutral" from="97" to="106"/>
<aspectTerm term="performs" polarity="positive" from="150" to="158"/>
</aspectTerms>
</sentence>
<sentence id="184:1">
<text>This computer is also awesome for my sons virtual home schooling.</text>
<aspectTerms>
<aspectTerm term="virtual home schooling" polarity="positive" from="42" to="64"/>
</aspectTerms>
</sentence>
<sentence id="786:31">
<text>Cost is more as compared to other brands.</text>
<aspectTerms>
<aspectTerm term="Cost" polarity="negative" from="0" to="4"/>
</aspectTerms>
</sentence>
<sentence id="932:1">
<text>also...- excellent operating system- size and weight for optimal mobility- excellent durability of the battery- the functions provided by the trackpad is unmatched by any other brand-</text>
<aspectTerms>
<aspectTerm term="operating system" polarity="positive" from="19" to="35"/>
<aspectTerm term="size" polarity="positive" from="37" to="41"/>
<aspectTerm term="weight" polarity="positive" from="46" to="52"/>
<aspectTerm term="mobility" polarity="positive" from="65" to="73"/>
<aspectTerm term="durability of the battery" polarity="positive" from="85" to="110"/>
<aspectTerm term="functions provided by the trackpad" polarity="positive" from="116" to="150"/>
</aspectTerms>
</sentence>
<sentence id="256:1">
<text>This hardware seems to be better than the iMac in that it isn't $1400 and smaller.</text>
<aspectTerms>
<aspectTerm term="hardware" polarity="positive" from="5" to="13"/>
</aspectTerms>
</sentence>
<sentence id="246:1">
<text>I'm done with WinDoze computers.</text>
</sentence>
<sentence id="520:1">
<text>I've had it for about 2 months now and found no issues with software or updates.</text>
<aspectTerms>
<aspectTerm term="software" polarity="neutral" from="60" to="68"/>
<aspectTerm term="updates" polarity="neutral" from="72" to="79"/>
</aspectTerms>
</sentence>
<sentence id="306:2">
<text>the latest version does not have a disc drive.</text>
<aspectTerms>
<aspectTerm term="disc drive" polarity="neutral" from="35" to="45"/>
</aspectTerms>
</sentence>
<sentence id="280:11">
<text>Screen - although some people might complain about low res which I think is ridiculous.</text>
<aspectTerms>
<aspectTerm term="Screen" polarity="positive" from="0" to="6"/>
<aspectTerm term="res" polarity="positive" from="55" to="58"/>
</aspectTerms>
</sentence>
</sentences>
|