File size: 81,914 Bytes
b877d14 | 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 | [
{
"id": 4850,
"uuid": "0a97af92-1467-4fa5-897d-426fc94a7fcc",
"hitokoto": "一本书上每多一个公式,就会减少一半读者。",
"type": "k",
"from": "名人名言",
"from_who": "霍金",
"creator": "坐凳人",
"creator_uid": 4832,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1581041131",
"length": 20
},
{
"id": 4853,
"uuid": "7ee06531-58a7-4e0b-89ad-923c871c2b90",
"hitokoto": "人生用特写镜头来看是悲剧,长镜头来看则是喜剧。",
"type": "k",
"from": "名人名言",
"from_who": "卓别林",
"creator": "坐凳人",
"creator_uid": 4832,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1580979011",
"length": 23
},
{
"id": 5006,
"uuid": "b45b4ace-c1f7-4feb-8ca2-7b2dc8c728e0",
"hitokoto": "那些听不见音乐的人以为跳舞的人疯了。",
"type": "k",
"from": "上帝死了",
"from_who": "弗里德里希·威廉·尼采",
"creator": "scvoet",
"creator_uid": 1713,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1581216160",
"length": 18
},
{
"id": 5020,
"uuid": "8ecd9ac2-8685-4991-a6a6-3c75cbc0e118",
"hitokoto": "奇怪的是,当他死去,所有人才开始爱他。",
"type": "k",
"from": "哲学",
"from_who": "崔雪莉",
"creator": "QIQI",
"creator_uid": 494,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1580309580",
"length": 19
},
{
"id": 5021,
"uuid": "6e8d5dca-6d65-479f-ba05-55db04987ae9",
"hitokoto": "为什么要担心?如果努力了,担心不会让结果变得更好。",
"type": "k",
"from": "迪士尼",
"from_who": null,
"creator": "CY-Track",
"creator_uid": 4740,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1580263026",
"length": 25
},
{
"id": 5075,
"uuid": "9a8784c4-4c85-4fd5-869e-5067a55ae483",
"hitokoto": "生活不可能像你想象得那么好,但也不会像你想象得那么糟。我觉得人的脆弱和坚强都超乎自己的想象。有时,我可能脆弱得一句话就泪流满面;有时,也发现自己咬着牙走了很长的路。",
"type": "k",
"from": "一生",
"from_who": "莫泊桑",
"creator": "Chukaland",
"creator_uid": 4959,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1582008178",
"length": 82
},
{
"id": 5101,
"uuid": "fcc0e9df-3055-4a0d-a446-7c04c63bfd40",
"hitokoto": "知道为什么婴儿出生的时候都会握着手痛哭吗?因为又要来这世间走一遭。",
"type": "k",
"from": "",
"from_who": "zo",
"creator": "桃黑亭",
"creator_uid": 5031,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1582697173",
"length": 33
},
{
"id": 5120,
"uuid": "55c9ce9a-58fb-4fd7-9ba7-e81202b353e3",
"hitokoto": "爱欲于人,犹如执炬,逆风而行,必有烧手之患。",
"type": "k",
"from": "四十二章经",
"from_who": null,
"creator": "sparks",
"creator_uid": 4670,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1579231690",
"length": 22
},
{
"id": 5134,
"uuid": "9c5da99a-4600-4e7c-b9ae-6561ffc64a9b",
"hitokoto": "Sow an act, and you reap a habit. Sow a habit, and you reap a character. Sow a character, and you reap a destiny.",
"type": "k",
"from": "Charles Reade",
"from_who": null,
"creator": "alterem",
"creator_uid": 4351,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1574840413",
"length": 113
},
{
"id": 5152,
"uuid": "0047026d-0fcc-4226-a77d-98d7550e3d54",
"hitokoto": "Innovation distinguishes between a leader and a follower. 领袖和跟风者的区别就在于创新。",
"type": "k",
"from": "乔布斯",
"from_who": null,
"creator": "海心月",
"creator_uid": 4416,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1575601688",
"length": 73
},
{
"id": 5153,
"uuid": "be8e6a2d-9bfd-467a-95e2-3dcf357a6c5a",
"hitokoto": "We're here to put a dent in the universe. Otherwise why else even be here? 活着就是为了改变世界,难道还有其他原因吗?",
"type": "k",
"from": "乔布斯",
"from_who": null,
"creator": "海心月",
"creator_uid": 4416,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1575601658",
"length": 96
},
{
"id": 5164,
"uuid": "5958561f-d704-4fcb-9a05-a69e6ebdfbc0",
"hitokoto": "我希望庆国之民,有真理可循,知礼仪,守仁心,不以钱财论成败,不因权势而屈从,同情弱小,痛恨不平,危难时坚心志,无人处常自省;我希望这世间,再无压迫束缚,凡生于世,都能有活着的权利,有自由的权利,亦有幸福的权利。",
"type": "k",
"from": "庆余年",
"from_who": "猫腻",
"creator": "澄泓",
"creator_uid": 3410,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1582869846",
"length": 105
},
{
"id": 5186,
"uuid": "9a5820e3-0e28-4be3-8562-09f97c1c1385",
"hitokoto": "那一千年完了,撒但必从监牢里被释放,出来要迷惑地上四方的列国,就是歌革和玛各,叫他们聚集争战。他们的人数多如海沙。",
"type": "k",
"from": "圣经",
"from_who": null,
"creator": "夜隐辉",
"creator_uid": 5181,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1583124189",
"length": 57
},
{
"id": 5204,
"uuid": "739cb56b-3e22-4dbe-b018-861acf248b2e",
"hitokoto": "我们是独立的个体,却不是孤独的存在。",
"type": "k",
"from": "千里共良宵",
"from_who": null,
"creator": "2247",
"creator_uid": 5148,
"reviewer": 1044,
"commit_from": "app",
"created_at": "1583290826",
"length": 18
},
{
"id": 5244,
"uuid": "da22aded-e58b-4b9d-8e2d-55d302ea95ed",
"hitokoto": "最折磨人的或许不是一场惨烈战争,而是烦琐的日常生活。",
"type": "k",
"from": "亦舒",
"from_who": null,
"creator": "a632079",
"creator_uid": 1044,
"reviewer": 1,
"commit_from": "web",
"created_at": "1583784351",
"length": 26
},
{
"id": 5363,
"uuid": "ff7c91a4-89db-43c8-a252-28346f8504de",
"hitokoto": "人类从历史中学到的唯一教训,就是人类无法从历史中学到任何教训。",
"type": "k",
"from": "历史哲学",
"from_who": "黑格尔",
"creator": "qwqbear",
"creator_uid": 3516,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1585317957",
"length": 31
},
{
"id": 5411,
"uuid": "970693f2-d35f-4ab9-a980-0969698b3041",
"hitokoto": "幸运的人一生都在被童年治愈,不幸的人一生都在治愈童年。",
"type": "k",
"from": "阿尔弗雷德·阿德勒",
"from_who": null,
"creator": "QIQI",
"creator_uid": 494,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1585802732",
"length": 27
},
{
"id": 5412,
"uuid": "e4a14ce3-dd62-4ac0-b8c5-2d7f78c96b28",
"hitokoto": "人生没有定数的,社会不会抛弃努力的人,只要努力,人生都会慷慨地馈赠让你满意的礼物!",
"type": "k",
"from": "知乎",
"from_who": "倩Sur",
"creator": "QIQI",
"creator_uid": 494,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1585712144",
"length": 41
},
{
"id": 5949,
"uuid": "529454f8-32b7-4074-ac21-48dd6d767945",
"hitokoto": "不管风吹浪打,胜似闲庭信步。",
"type": "k",
"from": "毛泽东语录精选",
"from_who": "毛泽东",
"creator": "微笑阿猪",
"creator_uid": 5861,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1586611853",
"length": 14
},
{
"id": 5950,
"uuid": "9685ca1d-7815-4f96-9ac7-f70f6cff0f2e",
"hitokoto": "多少事,从来急,天地转,光阴迫,一万年太久,只争朝夕。",
"type": "k",
"from": "毛泽东语录",
"from_who": "毛泽东",
"creator": "微笑阿猪",
"creator_uid": 5861,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1586611930",
"length": 27
},
{
"id": 5951,
"uuid": "3664f3f9-f1d1-438b-a707-821f32a34ee2",
"hitokoto": "历史的发展是不以人的意志为转移的。",
"type": "k",
"from": "毛泽东",
"from_who": "毛泽东",
"creator": "微笑阿猪",
"creator_uid": 5861,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1586612015",
"length": 17
},
{
"id": 5952,
"uuid": "8f9c2e57-829c-4493-ac43-f4ad77796a37",
"hitokoto": "没有调查,没有发言权。",
"type": "k",
"from": "反对本本主义",
"from_who": "毛泽东",
"creator": "微笑阿猪",
"creator_uid": 5861,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1586612047",
"length": 11
},
{
"id": 5953,
"uuid": "096dec20-44f3-4679-bc9f-918343d09507",
"hitokoto": "世界是你们的,也是我们的,但是归根结底是你们的。你们青年人朝气蓬勃,正在兴旺时期,好像早晨八九点钟的太阳。希望寄托在你们身上。",
"type": "k",
"from": "毛泽东",
"from_who": "毛泽东",
"creator": "微笑阿猪",
"creator_uid": 5861,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1586612161",
"length": 63
},
{
"id": 5962,
"uuid": "de606f8f-2d26-4d94-b4b6-efc8262b3f0a",
"hitokoto": "以有涯随无涯,殆已!已而为知者,殆而已矣!",
"type": "k",
"from": "庄子",
"from_who": "庄周",
"creator": "CloverGit",
"creator_uid": 5915,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1586998830",
"length": 21
},
{
"id": 6017,
"uuid": "b8ebd342-86ed-44b2-a376-6ac12c29f1b5",
"hitokoto": "个人能力有大小,但只要有这点精神,就是一个高尚的人,一个纯粹的人,一个有道德的人,一个脱离了低级趣味的人,一个有益于人民的人。",
"type": "k",
"from": "纪念白求恩",
"from_who": "毛泽东",
"creator": "微笑阿猪",
"creator_uid": 5861,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1586612293",
"length": 63
},
{
"id": 6032,
"uuid": "76f217c2-1382-4f27-bb5a-a0586567db4a",
"hitokoto": "很多人都认为别人的东西总好过自己的东西,这或许是想要拥有所有东西的理由。",
"type": "k",
"from": "网络",
"from_who": "satey",
"creator": "huangsatey",
"creator_uid": 5916,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1587000826",
"length": 36
},
{
"id": 6041,
"uuid": "4d4dc771-98ed-4860-a4ab-7ee652dd522a",
"hitokoto": "绝望的人没有故乡。",
"type": "k",
"from": "加缪手记·第二卷",
"from_who": "阿尔贝·加缪",
"creator": "溟YX",
"creator_uid": 5965,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1587344972",
"length": 9
},
{
"id": 6175,
"uuid": "db2c4ea6-ce7d-4637-8aa8-456f2e4ec874",
"hitokoto": "知识有两种,一种是你知道的,一种是你知道在哪里能找到的!",
"type": "k",
"from": "塞缪尔·约翰逊",
"from_who": null,
"creator": "Mr96",
"creator_uid": 4362,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1589939352",
"length": 28
},
{
"id": 6256,
"uuid": "b2f3834f-5f52-4b62-bb3c-f9fb98901419",
"hitokoto": "我们在努力扩大自己,以靠近,以触及我们自身以外的世界。",
"type": "k",
"from": "豪尔赫·路易斯·博尔赫斯",
"from_who": "博尔赫斯谈话录",
"creator": "Irony",
"creator_uid": 4464,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1592126239",
"length": 27
},
{
"id": 6269,
"uuid": "d0e673d3-150e-4b7c-a05d-b223b0ba4428",
"hitokoto": "吾生三愿,纯朴却激越:一曰渴望爱情,二曰求索知识,三曰悲悯吾类之无尽苦难。",
"type": "k",
"from": "网络",
"from_who": "伯特兰·罗素",
"creator": "Declan",
"creator_uid": 6466,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1592117668",
"length": 37
},
{
"id": 6401,
"uuid": "4241949c-f42e-4357-940d-164a1293302d",
"hitokoto": "人类从历史中学到的唯一教训,就是人类无法从历史中学到任何教训。",
"type": "k",
"from": "历史哲学",
"from_who": "黑格尔",
"creator": "arsteara",
"creator_uid": 6860,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1596311677",
"length": 31
},
{
"id": 6414,
"uuid": "8e6ef443-7fde-4141-8a6d-163da578e59e",
"hitokoto": "若以色见我,以音声求我,是人行邪道,不能见如来。",
"type": "k",
"from": "金刚经",
"from_who": "鸠摩罗什",
"creator": "范.那内海姆",
"creator_uid": 2913,
"reviewer": 1,
"commit_from": "web",
"created_at": "1596096068",
"length": 24
},
{
"id": 6418,
"uuid": "4a14fd11-9e45-4935-bd16-da864c361fe9",
"hitokoto": "无垢清净光,慧日破诸暗,能伏灾风火,普明照世间。",
"type": "k",
"from": "法华经",
"from_who": "鸠摩罗什",
"creator": "范.那内海姆",
"creator_uid": 2913,
"reviewer": 1,
"commit_from": "web",
"created_at": "1596274765",
"length": 24
},
{
"id": 6459,
"uuid": "ea89f6db-0849-48e1-812e-d66533d8be33",
"hitokoto": "谎言重复一千遍就成了真理。",
"type": "k",
"from": "纳粹德国宣传部长",
"from_who": "戈培尔",
"creator": "Serastan",
"creator_uid": 7394,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1602079729",
"length": 13
},
{
"id": 6462,
"uuid": "0e286fe6-ca51-42bb-8f78-134a1bd98873",
"hitokoto": "后代人的权利远比当代人的欲望更重要。",
"type": "k",
"from": "《黄石国家公园法》的理念",
"from_who": null,
"creator": "linsir",
"creator_uid": 978,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1597210376",
"length": 18
},
{
"id": 6469,
"uuid": "64497f0d-816b-4097-857c-7fc65db84b10",
"hitokoto": "物质决定意识,意识反作用于物质",
"type": "k",
"from": "唯物主义哲学",
"from_who": null,
"creator": "雨啸青锋",
"creator_uid": 5808,
"reviewer": 6844,
"commit_from": "web",
"created_at": "1602937354",
"length": 15
},
{
"id": 6477,
"uuid": "f765507c-8ea5-4058-9304-0d3ca6db2dc1",
"hitokoto": "实践是检验真理的唯一标准。",
"type": "k",
"from": "光明日报",
"from_who": null,
"creator": "雨啸青锋",
"creator_uid": 5808,
"reviewer": 6844,
"commit_from": "web",
"created_at": "1602937562",
"length": 13
},
{
"id": 6503,
"uuid": "6c7697d2-46e1-413b-a40c-11a999bfd0db",
"hitokoto": "我们把世界看错,反说它欺骗了我们。",
"type": "k",
"from": "飞鸟集",
"from_who": "泰戈尔",
"creator": "恏戋余",
"creator_uid": 7045,
"reviewer": 6844,
"commit_from": "app",
"created_at": "1598342433",
"length": 17
},
{
"id": 6620,
"uuid": "2f5aac92-0b05-44bc-aaa0-93af289337cd",
"hitokoto": "一件事物与其自身完全一致",
"type": "k",
"from": "逻辑哲学论",
"from_who": null,
"creator": "i",
"creator_uid": 6605,
"reviewer": 5198,
"commit_from": "web",
"created_at": "1604177291",
"length": 12
},
{
"id": 6626,
"uuid": "d6cb8cd9-df68-4b4a-b45e-e56cebddf89d",
"hitokoto": "除了没用的肉体自杀和精神逃避,第三种自杀的态度是坚持奋斗,对抗人生的荒谬。",
"type": "k",
"from": "加缪手记",
"from_who": null,
"creator": "Yousazoe",
"creator_uid": 7945,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1607266491",
"length": 37
},
{
"id": 6670,
"uuid": "b5f3e632-6d18-44ad-81fa-9fc0e114dc3f",
"hitokoto": "巧合是上帝默默操控世界的方式。",
"type": "k",
"from": "佚名",
"from_who": "爱因斯坦",
"creator": "草生出来了",
"creator_uid": 7674,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1604752694",
"length": 15
},
{
"id": 6671,
"uuid": "05c08fc7-67c1-4c28-bae4-5faddbe731db",
"hitokoto": "不是所有怪物一开始就是怪物,也不是所有怪物看起来都像怪物。有些人会把怪物的一面放在心里。",
"type": "k",
"from": "外婆的道歉信",
"from_who": "Fredrik Backman",
"creator": "草生出来了",
"creator_uid": 7674,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1604752879",
"length": 44
},
{
"id": 6674,
"uuid": "130634bb-3a87-4564-8717-54fc014b9592",
"hitokoto": "人能够能动地认识世界;人能够能动地改造世界。",
"type": "k",
"from": "主观能动性",
"from_who": null,
"creator": "雨啸青锋",
"creator_uid": 5808,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1604753345",
"length": 22
},
{
"id": 6675,
"uuid": "83e5245e-3802-42a7-8cc9-b2328cf805d3",
"hitokoto": "哲学的基本问题是思维和存在的关系问题。",
"type": "k",
"from": "哲学的基本问题",
"from_who": null,
"creator": "雨啸青锋",
"creator_uid": 5808,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1604753412",
"length": 19
},
{
"id": 6679,
"uuid": "3a25cc2e-410c-428f-bf14-b29406577ffe",
"hitokoto": "木秀于林,风必摧之。如果身边都是木,就是不一样的风景。 鹤立鸡群,倍受排挤。你可以选择离开鸡群。 人生最浪费生命的就是在没有选择时,进入某一个团体一段时间,却非逼着自己浪费时间做些蠢事去合群。 道不同不相为谋,人贵在有自知之明。",
"type": "k",
"from": "万彦文",
"from_who": null,
"creator": "草生出来了",
"creator_uid": 7674,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1604754154",
"length": 114
},
{
"id": 6697,
"uuid": "5d054917-0f24-4df1-ac08-e819f5fbd9f0",
"hitokoto": "自身拥有越丰富,他在别人身上所能发现得到的就越少。",
"type": "k",
"from": "人类的智慧",
"from_who": "亚瑟・叔本华",
"creator": "草生出来了",
"creator_uid": 7674,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1604800688",
"length": 25
},
{
"id": 6699,
"uuid": "96ad5c2f-ad9f-4f2b-a9c8-987af784442e",
"hitokoto": "人性一个最特别的弱点就是:在意别人如何看待自己。",
"type": "k",
"from": "亚瑟・叔本华",
"from_who": null,
"creator": "草生出来了",
"creator_uid": 7674,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1604800809",
"length": 24
},
{
"id": 6701,
"uuid": "dd4ed420-6e48-41e5-9f8d-b1aaadffcc96",
"hitokoto": "我们没有永恒的朋友,也没有永恒的敌人,只有永恒的利益。",
"type": "k",
"from": "亨利·坦普尔",
"from_who": null,
"creator": "皮皮参",
"creator_uid": 6402,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1604837840",
"length": 27
},
{
"id": 6743,
"uuid": "98d01b71-8441-43a2-8cbf-616c0d213c55",
"hitokoto": "黑色世界唯有东方的曙光。",
"type": "k",
"from": "Bilibili",
"from_who": "Google Translate",
"creator": "一切幻影",
"creator_uid": 5371,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1606023056",
"length": 12
},
{
"id": 6810,
"uuid": "c0cfe4e0-517e-427a-a006-23bef2b5280b",
"hitokoto": "Stay hungry, Stay foolish.",
"type": "k",
"from": "乔布斯斯坦福大学毕业演讲",
"from_who": "史蒂夫-乔布斯",
"creator": "Abyss",
"creator_uid": 8803,
"reviewer": 9016,
"commit_from": "web",
"created_at": "1616846581",
"length": 26
},
{
"id": 6853,
"uuid": "a76f52f7-4095-47e2-b829-af9dd7c38688",
"hitokoto": "甲之蜜糖,乙之砒霜。",
"type": "k",
"from": "曼陀罗",
"from_who": "亦舒",
"creator": "草生出来了",
"creator_uid": 7674,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1607226665",
"length": 10
},
{
"id": 6875,
"uuid": "aca08ba3-cdb1-4283-8f4c-2da7b3ef236f",
"hitokoto": "生命是一团欲望,欲望不满足便痛苦,满足便无聊。人生就在痛苦和无聊之间摇摆。",
"type": "k",
"from": "叔本华 ",
"from_who": null,
"creator": "Yousazoe",
"creator_uid": 7945,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1607266562",
"length": 37
},
{
"id": 6902,
"uuid": "8394d83d-af0c-4757-8f6a-807dab8bdaf6",
"hitokoto": "物质与意识的辩证关系:物质决定意识,意识反作用于物质。",
"type": "k",
"from": "唯物主义哲学",
"from_who": null,
"creator": "雨啸青锋",
"creator_uid": 5808,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1607829581",
"length": 27
},
{
"id": 6922,
"uuid": "72fd3d40-7027-40a8-8c33-cbf4e2ee8002",
"hitokoto": "眼睛是心灵的窗户。",
"type": "k",
"from": "达芬奇",
"from_who": null,
"creator": "草生出来了",
"creator_uid": 7674,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1609720620",
"length": 9
},
{
"id": 6923,
"uuid": "0a6fab16-4432-49df-a670-b205ae12d337",
"hitokoto": "我以为别人尊重我,是因为我很优秀。后来才明白,别人尊重我,是因为别人很优秀。",
"type": "k",
"from": "理解尊重",
"from_who": "鲁迅",
"creator": "草生出来了",
"creator_uid": 7674,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1609720869",
"length": 38
},
{
"id": 7001,
"uuid": "acc05888-b576-4cd1-b991-b6fdcdd26e36",
"hitokoto": "君子不器。",
"type": "k",
"from": "论语·为政",
"from_who": "孔子",
"creator": "徐凤年",
"creator_uid": 8400,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1612235959",
"length": 5
},
{
"id": 7046,
"uuid": "1bbed6ba-bf08-43d3-9538-134340f0c526",
"hitokoto": "人生而自由,却无往不在枷锁中。",
"type": "k",
"from": "社会契约论",
"from_who": "卢梭",
"creator": "luo",
"creator_uid": 8515,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1613622005",
"length": 15
},
{
"id": 7047,
"uuid": "94422198-895d-459f-98e2-f0d36bb52f21",
"hitokoto": "所谓辉煌的人生,不过是欲望的囚徒。",
"type": "k",
"from": "网络",
"from_who": "叔本华",
"creator": "luo",
"creator_uid": 8515,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1613624478",
"length": 17
},
{
"id": 7081,
"uuid": "188c5217-9f90-430d-8417-759afa4fac9c",
"hitokoto": "我们的科学永远只是找到近似真理。",
"type": "k",
"from": "爱因斯坦",
"from_who": null,
"creator": "Kyanite",
"creator_uid": 8042,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1614946456",
"length": 16
},
{
"id": 7110,
"uuid": "730de2b2-e3ed-42ad-b647-bd4c91ab04eb",
"hitokoto": "谨记自己总会死去,是让自己避免陷入“人生有所失”思考的最佳方法。",
"type": "k",
"from": "乔布斯名言",
"from_who": "史蒂夫-乔布斯",
"creator": "Abyss",
"creator_uid": 8803,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1616846675",
"length": 32
},
{
"id": 7173,
"uuid": "49eff9ca-7145-4c5f-8e62-d3dca63537fa",
"hitokoto": "即使人生是一场悲剧,也应该笑着把人生演完。",
"type": "k",
"from": "查拉图斯特如是说",
"from_who": "尼采",
"creator": "Kyanite",
"creator_uid": 8042,
"reviewer": 1,
"commit_from": "web",
"created_at": "1614946509",
"length": 21
},
{
"id": 7203,
"uuid": "24b3813e-17cf-454c-8351-0a718bab0fdc",
"hitokoto": "师者,所以传道授业解惑也。",
"type": "k",
"from": "师说",
"from_who": "韩愈",
"creator": "acking",
"creator_uid": 9121,
"reviewer": 1,
"commit_from": "web",
"created_at": "1619420759",
"length": 13
},
{
"id": 7220,
"uuid": "94804dc7-f661-4c14-a995-c44405fd671b",
"hitokoto": "因为不可能,所以才值得相信。",
"type": "k",
"from": "浮士德",
"from_who": "歌德",
"creator": "亚亚努阿",
"creator_uid": 8848,
"reviewer": 1,
"commit_from": "web",
"created_at": "1617029878",
"length": 14
},
{
"id": 7226,
"uuid": "64559b13-fe87-44fd-a745-d48fb6c6895a",
"hitokoto": "人类侥幸拥有了智慧,就应该善用它。",
"type": "k",
"from": "意林",
"from_who": "王小波",
"creator": "Damianyang",
"creator_uid": 9192,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1620182739",
"length": 17
},
{
"id": 7227,
"uuid": "59acaebe-012e-49aa-aae6-a25aced01ffb",
"hitokoto": "虽然人生在世有种种不如意,但你仍可以在幸福与不幸中做选择。",
"type": "k",
"from": "写给新的一年",
"from_who": "王小波",
"creator": "Damianyang",
"creator_uid": 9192,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1620184822",
"length": 29
},
{
"id": 7250,
"uuid": "5562841a-6724-477f-8708-9243f7a76deb",
"hitokoto": "我的辫子长在头上,诸君的辫子长在心里。",
"type": "k",
"from": "觉醒年代",
"from_who": "辜鸿铭",
"creator": "社会主义好",
"creator_uid": 9813,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1626884230",
"length": 19
},
{
"id": 7251,
"uuid": "43574bd6-b563-45ab-9398-b09f33234f7a",
"hitokoto": "我们登上并非我们所选择的舞台,演出并非我们所选择的剧本。",
"type": "k",
"from": "Enchiridion",
"from_who": "爱比克泰德",
"creator": "Damon",
"creator_uid": 9899,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1627354139",
"length": 28
},
{
"id": 7252,
"uuid": "bf7a7862-0b1c-4e7b-9df3-431a9148bed8",
"hitokoto": "理性的人追求的并非快乐,而只是避免痛苦。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628137131",
"length": 20
},
{
"id": 7255,
"uuid": "1201d951-0eaa-4f23-beb7-b2999e4b6557",
"hitokoto": "从来不会生气的人,注定终生遭受欺凌和压制,直至被摧毁和消灭。",
"type": "k",
"from": "少有人走的路:心智成熟的旅程",
"from_who": "M·斯科特·派克",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628137612",
"length": 30
},
{
"id": 7256,
"uuid": "3246a54e-10cf-49f7-9348-3ff3712cbc38",
"hitokoto": "勇气,并不意味着永不恐惧,而是面对恐惧时能够坦然行动,克服畏缩心理,大步走向未知的未来。",
"type": "k",
"from": "少有人走的路:心智成熟的旅程",
"from_who": "M·斯科特·派克",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628137851",
"length": 44
},
{
"id": 7257,
"uuid": "d878773c-fdbb-4df1-a5e5-56643779b097",
"hitokoto": "君不见,教堂的梁柱,它们各自分开耸立,却能支撑教堂不倒。君不见,橡树与松柏,也不在彼此的阴影中成长。",
"type": "k",
"from": "少有人走的路:心智成熟的旅程",
"from_who": "M·斯科特·派克",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628137913",
"length": 50
},
{
"id": 7258,
"uuid": "b3c1c419-b562-4e9b-b812-383351c065ba",
"hitokoto": "很多人都只会观看,而不会思考。他们如果手边没有雪茄的话,就会用制造噪音来感觉自己的存在。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628138215",
"length": 44
},
{
"id": 7259,
"uuid": "6194a801-c4df-4135-9eb6-be2bbe2aa173",
"hitokoto": "如果我们对一个人的本质加以彻底谴责的话,那这个人唯一的选择就是视我们为敌人。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628138238",
"length": 38
},
{
"id": 7265,
"uuid": "5d5523d1-e586-42dd-9b7a-faf4571d1090",
"hitokoto": "野蛮人之间人吃人,文明人之间人骗人。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628154622",
"length": 18
},
{
"id": 7266,
"uuid": "09636259-5f9e-4e5e-b78a-48bedf0e3bf3",
"hitokoto": "如果预计中的不幸没有发生的话,我们就会收获意外的喜悦。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628154241",
"length": 27
},
{
"id": 7267,
"uuid": "00f5e655-c46f-40f3-9587-0fd6aca0dd10",
"hitokoto": "哪怕一百个愚笨的人在一起聚会,也无法产生一个智慧的人。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628154260",
"length": 27
},
{
"id": 7269,
"uuid": "77fdf725-c11d-4d2f-afd7-3b2b2c3cc8c0",
"hitokoto": "只有当不幸真的到来时,我们才会怀念和渴望那些逝去的美好时光。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628160239",
"length": 30
},
{
"id": 7270,
"uuid": "e1fbeb24-a0a2-406f-8b44-397d5e876a98",
"hitokoto": "对于我们的幸福来说,别人的看法在本质上来讲并不十分重要。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628159989",
"length": 28
},
{
"id": 7271,
"uuid": "3ce69902-689e-4956-b157-e398eea454ce",
"hitokoto": "我们感到不满的原因就在于我们试图不断地提高自己的要求。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628159941",
"length": 27
},
{
"id": 7272,
"uuid": "24c5ebc8-d980-4401-b35b-1eb13ae6ea9a",
"hitokoto": "当一个人的意识中还不存在对某种东西的需求时,他就不会感到这方面的缺乏。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628159920",
"length": 35
},
{
"id": 7273,
"uuid": "4c13716e-b34b-4407-9e2a-490e63f52c7d",
"hitokoto": "人的精神思想方面的优势越大,给无聊留下的空间就越小。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628159766",
"length": 26
},
{
"id": 7274,
"uuid": "4d4e35ab-c360-402d-90e6-77e519a90a6d",
"hitokoto": "命运负责洗牌和发牌,而我们只能出牌。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628306502",
"length": 18
},
{
"id": 7275,
"uuid": "48a1ad9c-54eb-4dd9-a389-c2e12c7244a8",
"hitokoto": "不管人生呈现出什么样貌,人生的构成要素都是一样的。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628306484",
"length": 25
},
{
"id": 7276,
"uuid": "a3aad3af-9ae9-46af-9296-ceedca152d34",
"hitokoto": "忘掉一个人的劣根性就像把千辛万苦赚来的钱扔掉一样。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628306472",
"length": 25
},
{
"id": 7277,
"uuid": "12404b6b-68a4-43b6-85ac-2b0b816ab1f9",
"hitokoto": "如果一个人表现得粗鲁、没有礼貌,那他就像脱光了衣服,赤身裸体地出现在人前。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628306449",
"length": 37
},
{
"id": 7278,
"uuid": "eb11da1b-26b0-486c-b9fe-f57ae0b35e81",
"hitokoto": "一个人的自身越是丰富,就越难以忍受世俗常规的安排。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628306382",
"length": 25
},
{
"id": 7279,
"uuid": "e689f682-5334-474b-8be6-8911407a6bf9",
"hitokoto": "装作拥有某样品质,实际上就等于承认了自己并没有这样品质。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628306360",
"length": 28
},
{
"id": 7280,
"uuid": "9b8a7e0d-d462-48c2-a2c4-1e2b9383b1e5",
"hitokoto": "人生中的各种事件就像万花筒里的景象一样,每次转动都能看到不一样的画面,但实际上,展现在我们眼前的是同一个万花筒。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628306509",
"length": 56
},
{
"id": 7281,
"uuid": "64f0dd63-8602-411a-85f3-c6c4c25e8882",
"hitokoto": "最值得一个人骄傲的实际上是他的精神思想素质,因为人相比于动物的优势就体现在这一方面。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628306434",
"length": 42
},
{
"id": 7282,
"uuid": "2c5dd927-a145-45c6-ab80-3f68e16267ef",
"hitokoto": "如果很长时间不见面,就连我们最好的朋友也会在时间的流逝中逐渐变成抽象的概念。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628306414",
"length": 38
},
{
"id": 7293,
"uuid": "7eb802f7-b5fd-45fe-85bb-ea90e6cb0465",
"hitokoto": "当你凝望深渊时,深渊也在凝望着你。与魔鬼战斗的人,谨防自身变成魔鬼。",
"type": "k",
"from": "《善恶的彼岸》",
"from_who": "弗里德里希·威廉·尼采",
"creator": "A_Pi",
"creator_uid": 8981,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1618132757",
"length": 34
},
{
"id": 7296,
"uuid": "4b48ae48-a809-43ef-9b67-7665c66838e1",
"hitokoto": "只要结局有可能变好,我们就不能胆怯,就像只要能看到一点蓝天,就不能对天气绝望。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628421333",
"length": 39
},
{
"id": 7297,
"uuid": "ed9119a0-0051-421a-8863-710e82edba79",
"hitokoto": "就算天塌下来变成一片废墟,他的脸色也不会有丝毫变化。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628421050",
"length": 26
},
{
"id": 7298,
"uuid": "f41112ec-fe2d-4d1b-9133-779169fc6416",
"hitokoto": "青年时期,他们觉得人群遗弃了自己;成年之后,却觉得自己逃离了人群。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628420969",
"length": 33
},
{
"id": 7299,
"uuid": "acd4ef6e-a29a-4e72-a7a1-0c7a5781d244",
"hitokoto": "好比一年中的春天是悠长而烦闷的,生命的春天也一样漫长而令人烦躁。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628420846",
"length": 32
},
{
"id": 7300,
"uuid": "a7463e8c-f4c4-4bb2-90f6-1f032a2b2f06",
"hitokoto": "一年中和一生中的秋天,时光很短暂,但是更加晴朗而缺少变化。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628420797",
"length": 29
},
{
"id": 7301,
"uuid": "8eef8fac-63ff-442c-b35e-e2de4d0be534",
"hitokoto": "无论我们能活多久,我们能够享受的只有无法分割的此刻,此外别无其他。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628420730",
"length": 33
},
{
"id": 7302,
"uuid": "8df3fff0-6cd5-4c11-93ef-84411b681923",
"hitokoto": "那些根据世俗标准制定的伟大或渺小,尊贵或低微,没有太大的差别。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628420714",
"length": 31
},
{
"id": 7303,
"uuid": "33d7b883-15cb-4739-90c9-3be0d1a42db4",
"hitokoto": "很多事只是最初看起来有意义,但经过多次重复就慢慢失去了意义。",
"type": "k",
"from": "人生的智慧",
"from_who": "叔本华",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628420696",
"length": 30
},
{
"id": 7316,
"uuid": "7dc1ad21-cd76-4733-ba33-c4909a96b290",
"hitokoto": "知识虽然可以带来幸福,但假如把它压缩成药丸子灌下去,就丧失了乐趣。",
"type": "k",
"from": "沉默的大多数",
"from_who": "王小波",
"creator": "Damianyang",
"creator_uid": 9192,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1620184289",
"length": 33
},
{
"id": 7317,
"uuid": "4ae357db-29bc-464c-a69a-42c5acadce29",
"hitokoto": "认真的思索,真诚的明辨是非,有这种态度,大概可算是善良吧。",
"type": "k",
"from": "沉默的大多数",
"from_who": "王小波",
"creator": "Damianyang",
"creator_uid": 9192,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1620184419",
"length": 29
},
{
"id": 7318,
"uuid": "33b805a1-11b3-4940-8e74-283c08b76511",
"hitokoto": "信心这个东西,什么时候都像个高楼大厦,但是里面会长白蚁。",
"type": "k",
"from": "沉默的大多数",
"from_who": "王小波",
"creator": "Damianyang",
"creator_uid": 9192,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1620184503",
"length": 28
},
{
"id": 7319,
"uuid": "355f0550-8b13-438c-8618-fbfa4eebc1cc",
"hitokoto": "思索是一道大门,通向世界上没有的东西,通到现在人类想不到的地方。",
"type": "k",
"from": "沉默的大多数",
"from_who": "王小波",
"creator": "Damianyang",
"creator_uid": 9192,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1620185436",
"length": 32
},
{
"id": 7320,
"uuid": "d97561d8-b4e9-46f5-addf-1d4d946dd946",
"hitokoto": "千万丈的大厦总要有片奠基石,最初的爱好无可替代。",
"type": "k",
"from": "我的精神家园",
"from_who": "王小波",
"creator": "Damianyang",
"creator_uid": 9192,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1620185683",
"length": 24
},
{
"id": 7321,
"uuid": "0458669a-bec5-4781-8b21-c739c3435da2",
"hitokoto": "似水流年是一个人所有的一切,只有这个东西,才真正归你所有。",
"type": "k",
"from": "似水流年",
"from_who": "王小波",
"creator": "Damianyang",
"creator_uid": 9192,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1620184899",
"length": 29
},
{
"id": 7322,
"uuid": "b35caca2-09b3-4728-9f22-8ae4684a8153",
"hitokoto": "人的一切痛苦,本质上都是对自己无能的愤怒。",
"type": "k",
"from": "意林",
"from_who": "王小波",
"creator": "Damianyang",
"creator_uid": 9192,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1620183789",
"length": 21
},
{
"id": 7324,
"uuid": "483c691a-d898-428c-8ebc-51efe05f9e7a",
"hitokoto": "那些听不见音乐的人认为那些跳舞的人疯了。",
"type": "k",
"from": "笑:论滑稽的意义",
"from_who": "亨利·柏格森",
"creator": "折影轻梦",
"creator_uid": 9975,
"reviewer": 9975,
"commit_from": "web",
"created_at": "1628510764",
"length": 20
},
{
"id": 7380,
"uuid": "c408e4a6-f79e-47a6-85d3-15b863964023",
"hitokoto": "纵使天光终将熄灭,我们也要歌颂太阳。",
"type": "k",
"from": "我来到这世上为的是看太阳",
"from_who": "巴尔蒙特",
"creator": "Kyanite",
"creator_uid": 8042,
"reviewer": 1,
"commit_from": "web",
"created_at": "1616761875",
"length": 18
},
{
"id": 7381,
"uuid": "1aac8a8f-f27c-4aee-85d0-d6a3aef985e6",
"hitokoto": "我们是圣徒,是智者,是行旅之人;我们如赶路的马夫额触天涯,我们即将奔赴一场浩劫,却如赴盛宴。",
"type": "k",
"from": "周天嘉",
"from_who": "周天嘉",
"creator": "Kyanite",
"creator_uid": 8042,
"reviewer": 1,
"commit_from": "web",
"created_at": "1616762013",
"length": 46
},
{
"id": 7438,
"uuid": "7ee7f854-f05b-43cf-85ba-a59bc31831dc",
"hitokoto": "学而不厌,诲人不倦。",
"type": "k",
"from": "论语·述而",
"from_who": "孔子",
"creator": "acking",
"creator_uid": 9121,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1619420097",
"length": 10
},
{
"id": 7439,
"uuid": "dd72e127-5e7b-4581-a11b-0a978992455c",
"hitokoto": "为者常成,行者常至。",
"type": "k",
"from": "晏子春秋·内篇杂下",
"from_who": null,
"creator": "acking",
"creator_uid": 9121,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1619420152",
"length": 10
},
{
"id": 7440,
"uuid": "c6d9d4c5-4634-4755-b01b-2fdc7ed11050",
"hitokoto": "出入相友,守望相助。",
"type": "k",
"from": "每日一习话",
"from_who": null,
"creator": "acking",
"creator_uid": 9121,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1619420236",
"length": 10
},
{
"id": 7441,
"uuid": "c7feac39-6d62-43b8-8b08-2c82e0e1fc18",
"hitokoto": "行百里者半九十。",
"type": "k",
"from": "战国策·秦策五·谓秦王",
"from_who": null,
"creator": "acking",
"creator_uid": 9121,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1619420404",
"length": 8
},
{
"id": 7442,
"uuid": "3a99e352-d34c-4a71-bf3a-e60bfda3cb00",
"hitokoto": "有志者,事竟成。",
"type": "k",
"from": "后汉书·耿弇传",
"from_who": null,
"creator": "acking",
"creator_uid": 9121,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1619420469",
"length": 8
},
{
"id": 7443,
"uuid": "86b3fe81-dd36-42bd-80ce-1664cd37f118",
"hitokoto": "取法于上,仅得为中;取法于中,故为其下。",
"type": "k",
"from": "每日一习话",
"from_who": null,
"creator": "acking",
"creator_uid": 9121,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1619420537",
"length": 20
},
{
"id": 7444,
"uuid": "44fa58e1-2bec-4ea8-bdd9-5602ea359306",
"hitokoto": "All is not gold that glitters,But gold will glitter forever。",
"type": "k",
"from": "尼采",
"from_who": null,
"creator": "acking",
"creator_uid": 9121,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1619420637",
"length": 60
},
{
"id": 7458,
"uuid": "27fc84b5-c662-4032-ab62-49d78df4621a",
"hitokoto": "生活中最重要的事情:不是胜利,而是努力;不是征服,而是奋力拼搏。",
"type": "k",
"from": "Pierre de Coubertin",
"from_who": null,
"creator": "DreamOne",
"creator_uid": 9209,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1627129974",
"length": 32
},
{
"id": 7483,
"uuid": "15e82029-4760-429e-a0ff-91e67da4051c",
"hitokoto": "判断一个人是否具备“换位思考”的能力有一个好方法,那就是看他怎样向没有技术背景的人解释技术问题。",
"type": "k",
"from": "黑客与画家",
"from_who": "保罗•格雷厄姆",
"creator": "DreamOne",
"creator_uid": 9209,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1628787094",
"length": 48
},
{
"id": 7513,
"uuid": "8c874b63-bff2-4392-9308-587f35f4f9fa",
"hitokoto": "遗忘比绝望更强有力。",
"type": "k",
"from": "西方哲学",
"from_who": "叔本华",
"creator": "baresi48",
"creator_uid": 10455,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1632362450",
"length": 10
},
{
"id": 7527,
"uuid": "7a75f461-aba6-4b13-8c1d-84fa3582cc6e",
"hitokoto": "生活中最重要的不是凯旋,而是奋斗。",
"type": "k",
"from": "人民日报",
"from_who": null,
"creator": "Clouder",
"creator_uid": 10584,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1634137100",
"length": 17
},
{
"id": 7530,
"uuid": "e6bab0f3-0996-4831-a77f-0e092b0ec3b6",
"hitokoto": "运伟大之思者,必行伟大之迷途。",
"type": "k",
"from": "海德格尔",
"from_who": "海德格尔",
"creator": "Clouder",
"creator_uid": 10584,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1634137178",
"length": 15
},
{
"id": 7538,
"uuid": "a1fb02d7-b454-492d-8834-35e963b4e3a4",
"hitokoto": "一点星光,在心上就能反射出太阳。",
"type": "k",
"from": "星光效应",
"from_who": "学而思",
"creator": "yizigezi",
"creator_uid": 10602,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1634394195",
"length": 16
},
{
"id": 7545,
"uuid": "2f8825fa-9c06-4458-b792-b1e468d0158e",
"hitokoto": "不要胆怯,如果有死者与你擦肩而过,同们,平静地对视吧,无数人的忧伤,使你与众不同。",
"type": "k",
"from": "有何胜利可言?挺住意味着一切",
"from_who": "里尔克",
"creator": "DreamOne",
"creator_uid": 9209,
"reviewer": 1,
"commit_from": "web",
"created_at": "1627276240",
"length": 41
},
{
"id": 7636,
"uuid": "ae85ec0a-4e0d-45a5-900f-850d2ee89bfe",
"hitokoto": "我们所爱之物昭示着我们究竟是谁。",
"type": "k",
"from": "托马斯·阿奎纳",
"from_who": "托马斯·阿奎纳",
"creator": "hongze_",
"creator_uid": 9048,
"reviewer": 1,
"commit_from": "web",
"created_at": "1619866772",
"length": 16
},
{
"id": 7656,
"uuid": "9da62009-3d8d-4670-a6f9-7419d0abdce4",
"hitokoto": "我们等待着戈多,在等待的过程中发现戈多就是等待本身。",
"type": "k",
"from": "王希明",
"from_who": null,
"creator": "Kyanite",
"creator_uid": 8042,
"reviewer": 1,
"commit_from": "web",
"created_at": "1620045120",
"length": 26
},
{
"id": 7679,
"uuid": "b90054fb-df0e-44ce-bf08-bc24e5c09f5b",
"hitokoto": "学习并不等于认知,有学问的人和有认知的人是不同的,记忆造就了前者,哲学造就了后者。",
"type": "k",
"from": "基督山伯爵",
"from_who": "大仲马",
"creator": "Damianyang",
"creator_uid": 9192,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1620186923",
"length": 41
},
{
"id": 7716,
"uuid": "48c766f0-70c8-432b-897e-01fa1d5b8aed",
"hitokoto": "博学而笃志,切问而近思。",
"type": "k",
"from": "论语·子张",
"from_who": null,
"creator": "Kyanite",
"creator_uid": 8042,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1620991938",
"length": 12
},
{
"id": 7727,
"uuid": "550590e3-8595-452f-907b-db87f6e10780",
"hitokoto": "时间是存在者的时间。",
"type": "k",
"from": "存在与时间",
"from_who": "海德格尔",
"creator": "Kyanite",
"creator_uid": 8042,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1620992190",
"length": 10
},
{
"id": 7763,
"uuid": "8d069f27-6f14-4f30-8b4f-61ea0b127516",
"hitokoto": "你站在桥上看风景,看风景的人在楼上看你。明月装饰了你的窗子,你装饰了别人的梦。",
"type": "k",
"from": "断章",
"from_who": "卞之琳",
"creator": "空白",
"creator_uid": 11420,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1644009594",
"length": 39
},
{
"id": 7764,
"uuid": "0348752c-6bb6-43c2-8a6d-a4c780e04767",
"hitokoto": "且视他人之疑目如盏盏鬼火,大胆地去你的夜路。",
"type": "k",
"from": "病隙碎笔",
"from_who": "史铁生",
"creator": "空白",
"creator_uid": 11420,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1644009790",
"length": 22
},
{
"id": 7872,
"uuid": "229dc2c5-39cc-47cc-bed0-023a9bd85919",
"hitokoto": "你可以期待太阳从东方升起,而风却随心所欲地从四面八方吹来。",
"type": "k",
"from": "萨特",
"from_who": null,
"creator": "Kyanite",
"creator_uid": 8042,
"reviewer": 1,
"commit_from": "web",
"created_at": "1620991881",
"length": 29
},
{
"id": 7873,
"uuid": "5a894539-2203-476d-9881-7671e92ac95f",
"hitokoto": "每一个不曾起舞的日子,都是对生活的辜负!",
"type": "k",
"from": "尼采",
"from_who": "尼采",
"creator": "alexzhengzzz",
"creator_uid": 12149,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1650743996",
"length": 20
},
{
"id": 7884,
"uuid": "833a7838-c2d6-45a2-8d01-f7fe9824c9fe",
"hitokoto": "未经审视的人生是不值得过的。",
"type": "k",
"from": "苏格拉底",
"from_who": "苏格拉底",
"creator": "Kyanite",
"creator_uid": 8042,
"reviewer": 1,
"commit_from": "web",
"created_at": "1620995698",
"length": 14
},
{
"id": 7934,
"uuid": "eb208de6-4c58-451a-a049-57ddb60b120b",
"hitokoto": "纵然变化,依然故我。",
"type": "k",
"from": "墓志铭",
"from_who": "雅各布·伯努利",
"creator": "dongzheren",
"creator_uid": 12578,
"reviewer": 1,
"commit_from": "web",
"created_at": "1657449297",
"length": 10
},
{
"id": 7942,
"uuid": "15c950f2-31c6-406e-ab4b-bfe66b4468b9",
"hitokoto": "I have only made this letter rather long because I have not had time to make it shorter.",
"type": "k",
"from": "信件",
"from_who": "Blaise Pascal",
"creator": "高消费给媳妇关心烦",
"creator_uid": 11273,
"reviewer": 1,
"commit_from": "web",
"created_at": "1656828195",
"length": 88
},
{
"id": 8016,
"uuid": "116833d9-61ea-4634-a913-c51a3410cf85",
"hitokoto": "资本来到世间,从头到脚每个毛孔都滴着血和肮脏的东西。",
"type": "k",
"from": "资本论",
"from_who": "卡尔·海因里希·马克思",
"creator": "社会主义好",
"creator_uid": 9813,
"reviewer": 1,
"commit_from": "web",
"created_at": "1626874870",
"length": 26
},
{
"id": 8017,
"uuid": "72acf351-0a13-4601-a90f-04dbbfdc5468",
"hitokoto": "星星之火,可以燎原。",
"type": "k",
"from": "毛主席语录",
"from_who": "毛泽东",
"creator": "社会主义好",
"creator_uid": 9813,
"reviewer": 1,
"commit_from": "web",
"created_at": "1626772034",
"length": 10
},
{
"id": 8018,
"uuid": "8c0fec71-c379-42ef-aff7-8b1806d90620",
"hitokoto": "谁是我们的敌人,谁是我们的朋友,这是革命的首要问题。",
"type": "k",
"from": "毛主席语录",
"from_who": "毛泽东",
"creator": "社会主义好",
"creator_uid": 9813,
"reviewer": 1,
"commit_from": "web",
"created_at": "1626772007",
"length": 26
},
{
"id": 8063,
"uuid": "9a623335-f120-4912-9dea-68148bd02b90",
"hitokoto": "好好学习,天天向上。",
"type": "k",
"from": "毛主席语录",
"from_who": "毛泽东",
"creator": "社会主义好",
"creator_uid": 9813,
"reviewer": 1,
"commit_from": "web",
"created_at": "1626771974",
"length": 10
},
{
"id": 8064,
"uuid": "3fc92a00-0778-4a2e-8084-1abff95e7389",
"hitokoto": "无产阶级在这个革命中失去的只是锁链,他获得的将是整个世界。",
"type": "k",
"from": "共产党宣言",
"from_who": "马克思\u0026恩格斯",
"creator": "社会主义好",
"creator_uid": 9813,
"reviewer": 1,
"commit_from": "web",
"created_at": "1626772233",
"length": 29
},
{
"id": 8065,
"uuid": "c4786aa6-95b8-4631-9a10-13d170615cdf",
"hitokoto": "内心湛然,则无往而不乐。",
"type": "k",
"from": "人生不过如此",
"from_who": "梁实秋先生",
"creator": "=w=",
"creator_uid": 9709,
"reviewer": 1,
"commit_from": "web",
"created_at": "1626145223",
"length": 12
},
{
"id": 8083,
"uuid": "9d4a12e4-8faa-45ad-9571-fff1d250b081",
"hitokoto": "每一个不曾起舞的日子,都是对生命的辜负。",
"type": "k",
"from": "尼采",
"from_who": "尼采",
"creator": "Mint",
"creator_uid": 5006,
"reviewer": 1,
"commit_from": "web",
"created_at": "1631404412",
"length": 20
},
{
"id": 8120,
"uuid": "030ed970-9777-4162-942a-bfb19ab34349",
"hitokoto": "这个世纪疯狂,没人性,腐败;你却一直清醒,温柔,一尘不染。",
"type": "k",
"from": "弗朗索瓦丝·萨冈",
"from_who": "弗朗索瓦丝·萨冈",
"creator": "我没偷吃零食",
"creator_uid": 12419,
"reviewer": 1,
"commit_from": "web",
"created_at": "1655285009",
"length": 29
},
{
"id": 8160,
"uuid": "2a9c7d20-af35-4e90-b130-be235ec31c94",
"hitokoto": "人生于我,一场豪赌而已。",
"type": "k",
"from": "赡养人类",
"from_who": "刘慈欣",
"creator": "fengye1003",
"creator_uid": 10775,
"reviewer": 1,
"commit_from": "web",
"created_at": "1636549109",
"length": 12
},
{
"id": 8171,
"uuid": "8e950c82-8d8f-4fb9-95c3-096d876d7af5",
"hitokoto": "明月也不曾记得它点亮过世界!",
"type": "k",
"from": "彭焱To罗茹茹",
"from_who": "皓月",
"creator": "恋星辰恋皓月",
"creator_uid": 8347,
"reviewer": 1,
"commit_from": "web",
"created_at": "1637919778",
"length": 14
},
{
"id": 8319,
"uuid": "3be4b568-5186-4d22-bd6b-8323686d4b18",
"hitokoto": "自从厌倦于追寻,我已学会一觅即中;自从一股逆风袭来,我已能抗御八面来风,驾舟而行。",
"type": "k",
"from": "形而上之弗里德里希之凌晨",
"from_who": "弗里德里希·威廉·尼采",
"creator": "hsk99",
"creator_uid": 9638,
"reviewer": 1,
"commit_from": "web",
"created_at": "1625477043",
"length": 41
},
{
"id": 8348,
"uuid": "969506ed-37d7-4231-9f8c-055b88a7a3d4",
"hitokoto": "行远自迩,登高自卑。",
"type": "k",
"from": "礼记",
"from_who": "戴圣",
"creator": "院长",
"creator_uid": 10721,
"reviewer": 1,
"commit_from": "web",
"created_at": "1636084047",
"length": 10
},
{
"id": 8407,
"uuid": "b8443236-a200-4fba-9d3a-fb200662f201",
"hitokoto": "那美好的仗已经打了,应行的路已经行尽,当守的道已经守住,自从之后,有正义的冠冕为你存留。",
"type": "k",
"from": "新约·提摩太后书",
"from_who": null,
"creator": "planifolia",
"creator_uid": 11518,
"reviewer": 1,
"commit_from": "web",
"created_at": "1645029800",
"length": 44
},
{
"id": 8451,
"uuid": "9db826e5-4e92-421e-b49d-60368a858c7c",
"hitokoto": "比起通过平分秋色的两股势力坚定地握手言和,由站在绝对优势地位的人来掌控局势所造就的所谓和平,这才是人类社会的现实!",
"type": "k",
"from": "美国总统",
"from_who": "法尼·瓦伦泰",
"creator": "犊一无二",
"creator_uid": 12086,
"reviewer": 1,
"commit_from": "web",
"created_at": "1650292386",
"length": 57
},
{
"id": 8465,
"uuid": "2ae8d734-9266-48f0-9bd9-fd1f560d3bad",
"hitokoto": "丢掉幻想,准备斗争。",
"type": "k",
"from": "毛泽东选集",
"from_who": "毛泽东",
"creator": "ABlyh",
"creator_uid": 12821,
"reviewer": 1,
"commit_from": "web",
"created_at": "1660481472",
"length": 10
},
{
"id": 8533,
"uuid": "37f5ca75-33a8-4932-95fa-efc11753b057",
"hitokoto": "剃刀边缘怎能起造伽蓝。",
"type": "k",
"from": "爱默生家的恶客",
"from_who": "木心",
"creator": "奥修内平",
"creator_uid": 10008,
"reviewer": 1,
"commit_from": "web",
"created_at": "1628232695",
"length": 11
},
{
"id": 8554,
"uuid": "a945df48-3b81-4441-9fb8-a83e2c342c47",
"hitokoto": "芝兰生于深林,不以无人而不芳;君子修道立德,不为穷困而改节。",
"type": "k",
"from": "孔子家语·在厄",
"from_who": "孔子",
"creator": "Clouder",
"creator_uid": 10584,
"reviewer": 1,
"commit_from": "web",
"created_at": "1634138313",
"length": 30
},
{
"id": 8563,
"uuid": "207ae24a-156f-4cd7-94cb-1c8e2d315001",
"hitokoto": "凡是值得思想的事情,没有不是被人思考过的;我们必须做的只是试图重新加以思考而已。",
"type": "k",
"from": "歌德",
"from_who": "歌德",
"creator": "Clouder",
"creator_uid": 10584,
"reviewer": 1,
"commit_from": "web",
"created_at": "1634137556",
"length": 40
},
{
"id": 8591,
"uuid": "0447cc32-b453-4d06-99bb-8b7ead489082",
"hitokoto": "爱,就像你一觉醒来看见的晨雾,那时,太阳还未升起;就是那么一会儿,它们就消失了……",
"type": "k",
"from": "查希尔",
"from_who": "保罗·科埃略",
"creator": "空白",
"creator_uid": 11420,
"reviewer": 1,
"commit_from": "web",
"created_at": "1644009670",
"length": 41
},
{
"id": 8599,
"uuid": "2ceb5382-ff3b-4a86-aff2-960b3357cbba",
"hitokoto": "忧郁是因为自己无能,烦恼是由于欲望得不到满足,暴躁是一种虚怯的表现。",
"type": "k",
"from": "三个火枪手",
"from_who": "大仲马",
"creator": "空白",
"creator_uid": 11420,
"reviewer": 1,
"commit_from": "web",
"created_at": "1644009412",
"length": 34
},
{
"id": 8600,
"uuid": "b3c10cd8-2b76-4b29-8f47-cb4a0e7b65db",
"hitokoto": "大风可以吹起一张白纸,却无法吹走一只蝴蝶,因为生命的力量在于不顺从。",
"type": "k",
"from": "冯骥才",
"from_who": "冯骥才",
"creator": "空白",
"creator_uid": 11420,
"reviewer": 1,
"commit_from": "web",
"created_at": "1644009443",
"length": 34
},
{
"id": 8603,
"uuid": "bba09d87-1c82-42f1-aaa2-e87d2e45e941",
"hitokoto": "一个知识越贫乏的人,越是拥有一种莫名奇怪的勇气和自豪感,因为知识越贫乏,你所相信的东西就越绝对,你根本没有听过与此相对立的观点。",
"type": "k",
"from": "罗翔说刑法",
"from_who": "罗翔",
"creator": "空白",
"creator_uid": 11420,
"reviewer": 1,
"commit_from": "web",
"created_at": "1644009558",
"length": 64
},
{
"id": 8607,
"uuid": "1db9518a-cccd-4da1-9963-1555bbc368c3",
"hitokoto": "不知道从什么时候开始,什么东西上都会有个日期,秋刀鱼会过期,肉罐头会过期,连保鲜纸都会过期,我开始怀疑,还有什么东西是不会过期的?",
"type": "k",
"from": "重庆森林",
"from_who": "王家卫",
"creator": "空白",
"creator_uid": 11420,
"reviewer": 1,
"commit_from": "web",
"created_at": "1644009488",
"length": 65
},
{
"id": 8623,
"uuid": "767a2876-aaab-4e11-b43b-2e86b7e0395f",
"hitokoto": "不要谈什么天分、运气,你需要的是一个截稿日,以及一个不交稿就能打爆你狗头的人,然后你就会被自己的才华吓到。",
"type": "k",
"from": "黑镜",
"from_who": "查理•布洛克",
"creator": "DreamOne",
"creator_uid": 9209,
"reviewer": 1,
"commit_from": "web",
"created_at": "1636128238",
"length": 53
},
{
"id": 8758,
"uuid": "ab0a754a-da25-4523-87a8-2cf6eaafcaff",
"hitokoto": "生命中,再无聊的时光,也都是限量版。",
"type": "k",
"from": "英语杂刊",
"from_who": null,
"creator": "s-chance",
"creator_uid": 12249,
"reviewer": 1,
"commit_from": "web",
"created_at": "1651664402",
"length": 18
},
{
"id": 8769,
"uuid": "8ac6df1a-85ee-4dfd-94e1-8d5812501811",
"hitokoto": "为学日益,为道日损。",
"type": "k",
"from": "道德经",
"from_who": "李耳",
"creator": "JosephBlue",
"creator_uid": 12178,
"reviewer": 1,
"commit_from": "web",
"created_at": "1651033610",
"length": 10
},
{
"id": 8779,
"uuid": "d84dcc1e-2789-4d67-a371-576f46671c41",
"hitokoto": "生命如同寓言,其价值不在于长短,而在于内容。",
"type": "k",
"from": "塞涅卡",
"from_who": "塞涅卡",
"creator": "asdqp",
"creator_uid": 12050,
"reviewer": 1,
"commit_from": "web",
"created_at": "1650114175",
"length": 22
},
{
"id": 8780,
"uuid": "f929443f-32f0-4e62-9cf5-c448e0e7e360",
"hitokoto": "当别人还在沉睡的时候,你就出发吧。当别人还在挣扎的时候,你就到达吧。",
"type": "k",
"from": "我不惧怕成为这样强硬的姑娘",
"from_who": "刘媛媛",
"creator": "asdqp",
"creator_uid": 12050,
"reviewer": 1,
"commit_from": "web",
"created_at": "1650114344",
"length": 34
},
{
"id": 8803,
"uuid": "35c2399a-5a4f-4025-bd59-019a1150539f",
"hitokoto": "悲剧的魅力,在于他毁灭的美;悲剧的不幸,在于它往往不仅仅是悲剧,而且是永远的生活。",
"type": "k",
"from": "骆驼祥子",
"from_who": "鲁迅",
"creator": "D5xun",
"creator_uid": 12014,
"reviewer": 1,
"commit_from": "web",
"created_at": "1649918539",
"length": 41
},
{
"id": 8844,
"uuid": "39cc3402-dee1-4c71-9ff9-1fae17ee2925",
"hitokoto": "在一切能够接受法律支配的人类的状态中,哪里没有法律,那里就没有自由。",
"type": "k",
"from": "百度",
"from_who": null,
"creator": "cnhsii",
"creator_uid": 12943,
"reviewer": 1,
"commit_from": "web",
"created_at": "1661821566",
"length": 34
},
{
"id": 8870,
"uuid": "7733ec16-4af0-4ae0-9ebf-1a0f14eff91b",
"hitokoto": "你背朝太阳,就只能看到自己的影子。",
"type": "k",
"from": "纪伯伦语录",
"from_who": "纪伯伦",
"creator": "Soul_collecter",
"creator_uid": 13051,
"reviewer": 1,
"commit_from": "web",
"created_at": "1663490513",
"length": 17
},
{
"id": 8880,
"uuid": "5e950218-e701-4753-846a-1d32a642dcf9",
"hitokoto": "吾尝终日不食,终夜不寝,以思无益,不如学也。",
"type": "k",
"from": "论语",
"from_who": "孔子",
"creator": "zhicheng2001",
"creator_uid": 13119,
"reviewer": 1,
"commit_from": "web",
"created_at": "1664584614",
"length": 22
},
{
"id": 8892,
"uuid": "c673c8b4-21f6-4183-a853-4da5237e2c72",
"hitokoto": "做好一切准备,然后志得意满地去一件每一件事对于我这种普通人来讲,是一种无法得到的奢侈品,更多的时候就是随机应变,来什么是什么。",
"type": "k",
"from": "摸鱼事务所",
"from_who": null,
"creator": "胡斯凯",
"creator_uid": 13151,
"reviewer": 1,
"commit_from": "web",
"created_at": "1664906349",
"length": 63
},
{
"id": 8910,
"uuid": "f0108c24-57ae-423b-937b-075fd13078e5",
"hitokoto": "如果你能在浪费时间中获得乐趣,就不算浪费时间。",
"type": "k",
"from": "罗素",
"from_who": "罗素",
"creator": "希儿世界第一可爱",
"creator_uid": 13591,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1669555652",
"length": 23
},
{
"id": 8942,
"uuid": "d5600970-45d8-4d66-b93b-c53ceaa06142",
"hitokoto": "应该在肩膀上长着自己的脑袋。",
"type": "k",
"from": "弗拉基米尔.伊里奇.列宁",
"from_who": null,
"creator": "SCPB127Guard",
"creator_uid": 13246,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1666017337",
"length": 14
},
{
"id": 8971,
"uuid": "12b0eff6-10d2-40de-b1b1-4df8a2fb9189",
"hitokoto": "批判的武器当然不能代替武器的批判。",
"type": "k",
"from": "〈黑格尔法哲学批判〉导言",
"from_who": "马克思",
"creator": "CyumEwOari_",
"creator_uid": 13482,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1668590515",
"length": 17
},
{
"id": 8974,
"uuid": "eb6e3bf5-cd49-4904-866f-923162e854b9",
"hitokoto": "圣人不死,大盗不止。",
"type": "k",
"from": "庄子·外篇·胠箧第十",
"from_who": "庄子及门生(外篇)",
"creator": "因因乎",
"creator_uid": 13526,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1669015108",
"length": 10
},
{
"id": 8990,
"uuid": "b1ac3906-ce57-49c2-a2a6-f631e0cccc5e",
"hitokoto": "青年是我们的未来,是我们的希望。青年应当接替我们老年人。青年应当举起我们的旗帜直到胜利的终点。",
"type": "k",
"from": "斯大林送给青年的一句话",
"from_who": "约瑟夫·维萨里奥诺维奇·斯大林",
"creator": "PTRLI",
"creator_uid": 13177,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1665143860",
"length": 47
},
{
"id": 8996,
"uuid": "6a3c7525-66e4-4cd7-9512-cc6fec0cfbec",
"hitokoto": "只要再多走一小步,仿佛是向同一方向迈的一小步,真理变会变成错误。",
"type": "k",
"from": "弗拉基米尔·伊里奇·列宁",
"from_who": null,
"creator": "SCPB127Guard",
"creator_uid": 13246,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1666017369",
"length": 32
},
{
"id": 8997,
"uuid": "c6eb2311-f289-4bba-b901-3d044cbc916d",
"hitokoto": "我们不需要死读硬记,我们需要用基本的知识来发展和增进每个学习者的思考力。",
"type": "k",
"from": "弗拉基米尔·伊里奇·列宁",
"from_who": null,
"creator": "SCPB127Guard",
"creator_uid": 13246,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1666017393",
"length": 36
},
{
"id": 8998,
"uuid": "5113e95a-3ac7-4e8a-afb2-b0bb5e8aef23",
"hitokoto": "谁不和我们一起就是反对我们,中立的人最危险。",
"type": "k",
"from": "弗拉基米尔·伊里奇·列宁",
"from_who": null,
"creator": "SCPB127Guard",
"creator_uid": 13246,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1666017414",
"length": 22
},
{
"id": 8999,
"uuid": "e521ca54-e04a-49ca-a25c-2388147f6460",
"hitokoto": "必须在敌军还分散的时候,出其不意地袭击他们。",
"type": "k",
"from": "弗拉基米尔·伊里奇·列宁",
"from_who": null,
"creator": "SCPB127Guard",
"creator_uid": 13246,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1666017441",
"length": 22
},
{
"id": 9000,
"uuid": "3870ecad-ccec-4ec0-ba47-96a69667aa15",
"hitokoto": "判断一个人,不是根据他自己的表白或对自己的看法,而是根据他的行动。",
"type": "k",
"from": "弗拉基米尔·伊里奇·列宁",
"from_who": null,
"creator": "SCPB127Guard",
"creator_uid": 13246,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1666017462",
"length": 33
},
{
"id": 9001,
"uuid": "d52c0edf-751f-495d-b605-cc4d24d095d0",
"hitokoto": "忘记了过去,就意味着背叛!",
"type": "k",
"from": "弗拉基米尔·伊里奇·列宁",
"from_who": null,
"creator": "SCPB127Guard",
"creator_uid": 13246,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1666017482",
"length": 13
},
{
"id": 9002,
"uuid": "da8ce74e-9253-4998-9461-52cc1bd15edc",
"hitokoto": "欺骗的友谊是痛苦的创伤,虚伪的同情是锐利的毒箭。",
"type": "k",
"from": "弗拉基米尔·伊里奇·列宁",
"from_who": null,
"creator": "SCPB127Guard",
"creator_uid": 13246,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1666017501",
"length": 24
},
{
"id": 9003,
"uuid": "9c09482c-3230-432d-99d8-00e0ece52c4a",
"hitokoto": "赢得了时间就是赢得了一切。",
"type": "k",
"from": "弗拉基米尔·伊里奇·列宁",
"from_who": null,
"creator": "SCPB127Guard",
"creator_uid": 13246,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1666017564",
"length": 13
},
{
"id": 9004,
"uuid": "886817c3-981a-4753-8041-1eb409ab214f",
"hitokoto": "任何一件事都具有两面性。",
"type": "k",
"from": "弗拉基米尔·伊里奇·列宁",
"from_who": null,
"creator": "SCPB127Guard",
"creator_uid": 13246,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1666017610",
"length": 12
},
{
"id": 9009,
"uuid": "6c33a271-af51-498e-9c13-aaaa53c21a7d",
"hitokoto": "都说人无远虑必有近忧,这句话简单来讲就是人这一辈子就没什么安生的日子。",
"type": "k",
"from": "摸鱼事务所",
"from_who": null,
"creator": "胡斯凯",
"creator_uid": 13151,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1664906285",
"length": 35
},
{
"id": 9010,
"uuid": "9ad078d2-a978-48c1-8f74-af6a7ee38cbe",
"hitokoto": "我就像这个世界一样,这个世界是不会变的,我不如这个世界,我会变。",
"type": "k",
"from": "摸鱼事务所",
"from_who": null,
"creator": "胡斯凯",
"creator_uid": 13151,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1664906317",
"length": 32
},
{
"id": 9026,
"uuid": "3f7076b1-f500-4c55-a1f4-f9acde556b5f",
"hitokoto": "忘情不如情忘,绝念不如念绝。",
"type": "k",
"from": "有缘",
"from_who": "王常月",
"creator": "苏哲又",
"creator_uid": 13755,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1670846195",
"length": 14
},
{
"id": 9047,
"uuid": "0479eee0-3dec-4cd5-863d-20e4dea94b84",
"hitokoto": "偶尔的停顿和修整,对于人生是非常必要的。",
"type": "k",
"from": "随记",
"from_who": null,
"creator": "Joeshu",
"creator_uid": 13676,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1670230228",
"length": 20
},
{
"id": 9074,
"uuid": "c14917d3-951d-41dd-9265-264663be95df",
"hitokoto": "一棵树对人来说,只有削去了枝叶,成为了一颗原木,才是有用的,人成长的过程便是长出枝叶然后被削去的过程。",
"type": "k",
"from": "夜羊社",
"from_who": "佚名",
"creator": "cancan2333_",
"creator_uid": 10773,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1666317602",
"length": 51
},
{
"id": 9083,
"uuid": "410b0749-cdb8-4163-a80d-5c8fa92ac2b3",
"hitokoto": "每个优秀的人,都有一段沉默的时光,那段时光,是付出了很多努力,却得不到结果的日子,我们把它叫做扎根。",
"type": "k",
"from": "习近平",
"from_who": null,
"creator": "帝极",
"creator_uid": 13377,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1667481026",
"length": 50
},
{
"id": 9084,
"uuid": "b32c61c7-8452-4652-90e0-0604794a5ecd",
"hitokoto": "奋斗的目标就是为了躺平,就是为了过上不被闹钟叫醒的日子。",
"type": "k",
"from": "余华",
"from_who": null,
"creator": "爱美的姑娘",
"creator_uid": 13383,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1667542073",
"length": 28
},
{
"id": 9105,
"uuid": "a8cbf7b7-c28f-4f6f-9475-7ac3236bd482",
"hitokoto": "生活百般滋味,人生需要笑对。",
"type": "k",
"from": "佚名",
"from_who": null,
"creator": "璃黯",
"creator_uid": 13640,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1669946679",
"length": 14
},
{
"id": 9108,
"uuid": "6ce849b3-e7ad-4e86-8c07-244b532c1f79",
"hitokoto": "人一生下来就会哭,后来才学会笑。所以忧伤是一种本能,而快乐是一种能力。",
"type": "k",
"from": "日历",
"from_who": null,
"creator": "璃黯",
"creator_uid": 13640,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1669947733",
"length": 35
},
{
"id": 9111,
"uuid": "b3442935-6058-43e0-b8a5-b30863881e46",
"hitokoto": "天欲使其灭亡,必先使其疯狂。",
"type": "k",
"from": "佚名",
"from_who": null,
"creator": "璃黯",
"creator_uid": 13640,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1669947935",
"length": 14
},
{
"id": 9119,
"uuid": "d7038660-bfab-4cc1-a332-db0872ef2117",
"hitokoto": "真理是普遍的,它不属于我一个人,而为大家所有;真理占有我,而不是我占有真理。我只有构成我的精神个性的形式。",
"type": "k",
"from": "评普鲁士最近的书报检查令",
"from_who": "马克思",
"creator": "python",
"creator_uid": 13727,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1670598872",
"length": 53
},
{
"id": 9120,
"uuid": "abc4f7af-23ef-4a2b-8364-e1956f2024b9",
"hitokoto": "哲学家们只是用不同的方式解释世界,而问题在于改变世界。",
"type": "k",
"from": "关于费尔巴哈的提纲",
"from_who": "马克思",
"creator": "python",
"creator_uid": 13727,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1670599110",
"length": 27
},
{
"id": 9149,
"uuid": "ea98f8bf-0394-4adb-929f-5fe45b633230",
"hitokoto": "世界是一场空虚的宇宙,有时候仍像是一个梦。",
"type": "k",
"from": "少女诗人小冰",
"from_who": "小冰",
"creator": "Xun",
"creator_uid": 13941,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1672837397",
"length": 21
},
{
"id": 9156,
"uuid": "b53186a5-6fee-4f30-945e-f134744d571e",
"hitokoto": "意义这二字是没有标准的,人生本没有意义,所有的意义是个人自己赋予的,你觉得有意义便有意义。",
"type": "k",
"from": "一库",
"from_who": "hasaki",
"creator": "fangtianq",
"creator_uid": 13981,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1673344277",
"length": 45
},
{
"id": 9204,
"uuid": "762fde93-374b-4bb5-a29b-411e5b2e3a56",
"hitokoto": "我乃死,我乃生。我为暗,我亦为光。",
"type": "k",
"from": "脑叶公司",
"from_who": null,
"creator": "Mojave Hao",
"creator_uid": 13992,
"reviewer": 1044,
"commit_from": "web",
"created_at": "1675516667",
"length": 17
},
{
"id": 9258,
"uuid": "eeb122bf-69db-4e9e-b711-288c31f81296",
"hitokoto": "死亡不属于工人阶级!",
"type": "k",
"from": "列宁全集",
"from_who": "弗拉基米尔·伊里奇·列宁",
"creator": "UNe-Jh",
"creator_uid": 14640,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1681620479",
"length": 10
},
{
"id": 9260,
"uuid": "13b4dae9-85ca-4098-bc65-eef57dacfb22",
"hitokoto": "须知政权是由枪杆子中取得的。",
"type": "k",
"from": "八七会议报告",
"from_who": "毛泽东",
"creator": "UNe-Jh",
"creator_uid": 14640,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1681620874",
"length": 14
},
{
"id": 9270,
"uuid": "007fb95a-cc95-4109-8740-0568bf128029",
"hitokoto": "摆在我们无产阶级面前的有两条路,一条是胜利,一条是死亡。死亡不属于无产阶级!",
"type": "k",
"from": "列宁全集",
"from_who": "弗拉基米尔·伊里奇·列宁",
"creator": "UNe-Jh",
"creator_uid": 14640,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1681621188",
"length": 38
},
{
"id": 9313,
"uuid": "6df73eb3-1565-42ad-a986-c0da9e909107",
"hitokoto": "大多人都活在平静的绝望中,不要逆来顺受,要破茧而出。",
"type": "k",
"from": "死亡诗社",
"from_who": "梭罗",
"creator": "Hephaestion",
"creator_uid": 14857,
"reviewer": 4756,
"commit_from": "web",
"created_at": "1683905871",
"length": 26
}
] |