Datasets:
File size: 193,965 Bytes
861fb93 |
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 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 |
[
{
"label": 0,
"text": "マイクを使ったM5Stack Avatarの例です。",
"url": "https://github.com/mongonta0716/m5stack-avatar-mic",
"created_at": "2023-01-01T06:15:03Z"
},
{
"label": 0,
"text": "Transparent PNG format data to X68k sprite data converter",
"url": "https://github.com/tantangh/png2sp",
"created_at": "2023-01-01T21:44:48Z"
},
{
"label": 0,
"text": "External pixel loupe display for MacOS on M5stack ATOM Matrix.",
"url": "https://github.com/sh1ura/m5loupe",
"created_at": "2023-01-02T05:06:20Z"
},
{
"label": 0,
"text": "DVP CAMERA-IF using RP2040 with SFP module",
"url": "https://github.com/kingyopiyo/picampinos",
"created_at": "2023-01-02T05:29:16Z"
},
{
"label": 0,
"text": "Experimental: TFLint ruleset plugin for writing custom rules in Rego.",
"url": "https://github.com/terraform-linters/tflint-ruleset-opa",
"created_at": "2023-01-02T08:36:03Z"
},
{
"label": 0,
"text": "Static Site Generator",
"url": "https://github.com/potato4d/dodai",
"created_at": "2023-01-02T16:51:17Z"
},
{
"label": 0,
"text": "Count visitor badge for Shangchen's projects",
"url": "https://github.com/sczhou/codeformer",
"created_at": "2023-01-02T19:10:40Z"
},
{
"label": 0,
"text": "Better structured concurrency for go",
"url": "https://github.com/sourcegraph/conc",
"created_at": "2023-01-02T22:52:07Z"
},
{
"label": 0,
"text": "Converse with book - Built with GPT-3",
"url": "https://github.com/namuan/dr-doc-search",
"created_at": "2023-01-03T22:31:17Z"
},
{
"label": 0,
"text": "A SQLite extension for efficient vector search, based on Faiss!",
"url": "https://github.com/asg017/sqlite-vss",
"created_at": "2023-01-03T23:27:31Z"
},
{
"label": 1,
"text": "Dialogue Commonsense Graph in Japanese",
"url": "https://github.com/nlp-waseda/dcsg-ja",
"created_at": "2023-01-04T08:36:43Z"
},
{
"label": 0,
"text": "A tool to control character with cross key (POV hat switch) of game pad for Touhou Project's game.",
"url": "https://github.com/progre/thpovdpad",
"created_at": "2023-01-04T13:02:33Z"
},
{
"label": 0,
"text": "Programming framework for writing and deploying cloud applications.",
"url": "https://github.com/serviceweaver/weaver",
"created_at": "2023-01-04T16:54:28Z"
},
{
"label": 0,
"text": "Run Weaver applications on GKE.",
"url": "https://github.com/serviceweaver/weaver-gke",
"created_at": "2023-01-04T17:21:17Z"
},
{
"label": 0,
"text": "An Image utils extension for A1111's sd-webui",
"url": "https://github.com/kohakublueleaf/a1111-sd-webui-haku-img",
"created_at": "2023-01-05T03:14:11Z"
},
{
"label": 0,
"text": "model convert extension for stable-diffusion-webui. supports convert fp16/bf16 no-ema/ema-only safetensors",
"url": "https://github.com/akegarasu/sd-webui-model-converter",
"created_at": "2023-01-05T03:50:13Z"
},
{
"label": 0,
"text": "Listing up CircleCI Credentials",
"url": "https://github.com/xhiroga/circleci-list-credentials",
"created_at": "2023-01-05T04:52:05Z"
},
{
"label": 0,
"text": "A Multipurpose toolkit for managing, editing and creating models.",
"url": "https://github.com/arenasys/stable-diffusion-webui-model-toolkit",
"created_at": "2023-01-05T05:29:13Z"
},
{
"label": 0,
"text": "にゃんぱすーをシェアできる全く新しい画期的なプラットフォームですのん",
"url": "https://github.com/kotonefami/numpass",
"created_at": "2023-01-05T07:52:27Z"
},
{
"label": 0,
"text": "An online IDE for visual programming in Prolog",
"url": "https://github.com/toblotron/praxis-ide",
"created_at": "2023-01-05T09:08:17Z"
},
{
"label": 0,
"text": "PoC",
"url": "https://github.com/naari3/eagle-viewer",
"created_at": "2023-01-05T09:53:27Z"
},
{
"label": 0,
"text": "Open your xcode project with Xcode of specific version ",
"url": "https://github.com/s2mr/xc",
"created_at": "2023-01-05T15:17:48Z"
},
{
"label": 0,
"text": "End-to-end MATLAB Deep Learning workflow for Real-Time Top Quark Jet Tagging is presented",
"url": "https://github.com/mathworks-teaching-resources/education-design-electric-active-filter",
"created_at": "2023-01-05T15:54:34Z"
},
{
"label": 0,
"text": "Pure Ruby LALR parser generator",
"url": "https://github.com/ruby/lrama",
"created_at": "2023-01-06T00:59:17Z"
},
{
"label": 0,
"text": "vscode go plugin which show reference counter on code",
"url": "https://github.com/sassembla/zanthoxylum",
"created_at": "2023-01-06T06:48:13Z"
},
{
"label": 0,
"text": "epub/PDF reader + Notion Sync + Memo",
"url": "https://github.com/azu/mubook-hon",
"created_at": "2023-01-06T11:56:18Z"
},
{
"label": 1,
"text": "GPTがYouTuberをやります",
"url": "https://github.com/karakuri-ai/gptuber-by-langchain",
"created_at": "2023-01-06T15:19:51Z"
},
{
"label": 0,
"text": "Sample code for Bash for Beginners course",
"url": "https://github.com/microsoft/minecraft-samples",
"created_at": "2023-01-06T20:53:25Z"
},
{
"label": 0,
"text": "Patch Wallet: BaseAccount",
"url": "https://github.com/paymagicxyz/patch-base-account-contracts",
"created_at": "2023-01-07T01:27:11Z"
},
{
"label": 0,
"text": "オリジナルの NTP 時計制作",
"url": "https://github.com/riku-mc/ht-keys",
"created_at": "2023-01-07T02:13:11Z"
},
{
"label": 0,
"text": "AI chatbot in your terminal, powered by OpenAI API",
"url": "https://github.com/amachino/command-ai",
"created_at": "2023-01-07T04:30:02Z"
},
{
"label": 1,
"text": "JapaneseEmbeddingEval",
"url": "https://github.com/oshizo/JapaneseEmbeddingEval",
"created_at": "2023-01-07T04:35:18Z"
},
{
"label": 0,
"text": "Library for parsing potentially huge json streams on devices with scarce memory . Based on mrfaptastic/json-streaming-parser2, modified and extended independently.",
"url": "https://github.com/gob52/gob_json",
"created_at": "2023-01-07T04:55:37Z"
},
{
"label": 0,
"text": "Human ChatGPT Comparison Corpus (HC3), Detectors, and more! 🔥",
"url": "https://github.com/hello-simpleai/chatgpt-comparison-detection",
"created_at": "2023-01-07T07:21:24Z"
},
{
"label": 0,
"text": "Simple Shopify App sample without CLI generator for quick learning",
"url": "https://github.com/benzookapi/shopify-barebone-app-sample",
"created_at": "2023-01-07T07:51:01Z"
},
{
"label": 0,
"text": "🌐 A simple command line whois client",
"url": "https://github.com/sheepla/whois-cli",
"created_at": "2023-01-07T08:10:35Z"
},
{
"label": 0,
"text": "openFyde supported hardware Orange Pi 5 build artefacts and pre-built image releases.",
"url": "https://github.com/openfyde/overlay-orangepi5-openfyde",
"created_at": "2023-01-07T10:41:37Z"
},
{
"label": 0,
"text": "VS CodeでDynamic Macroという機能を実現する拡張機能です",
"url": "https://github.com/tshino/vscode-dynamic-macro",
"created_at": "2023-01-07T13:04:25Z"
},
{
"label": 0,
"text": "Wallet with injected PublicKey, based on Sollet extension",
"url": "https://github.com/everlastingsong/pubkey-sollet",
"created_at": "2023-01-07T13:22:24Z"
},
{
"label": 0,
"text": "🫖 Your butler. A ChatGPT like Vim/Neovim plugin that communicate with the OpenAI APIs",
"url": "https://github.com/lambdalisue/butler.vim",
"created_at": "2023-01-07T13:55:13Z"
},
{
"label": 0,
"text": "Deploy web apps anywhere.",
"url": "https://github.com/mrsked/mrsk",
"created_at": "2023-01-07T14:32:08Z"
},
{
"label": 0,
"text": "the predefinite CSS-in-JS library for vite",
"url": "https://github.com/mayank99/ecsstatic",
"created_at": "2023-01-07T19:29:34Z"
},
{
"label": 0,
"text": "MZ-80K/C & MZ-700 emulator on terminal",
"url": "https://github.com/yunkya2/ttymz80",
"created_at": "2023-01-08T16:17:46Z"
},
{
"label": 0,
"text": "Preact SSR on Cloudflare Workers",
"url": "https://github.com/yusukebe/preact-ssr",
"created_at": "2023-01-09T01:26:27Z"
},
{
"label": 0,
"text": "🚀 Begin building your very own Notion Blog with Astro.",
"url": "https://github.com/otoyo/astro-notion-blog",
"created_at": "2023-01-09T03:10:18Z"
},
{
"label": 0,
"text": "Make scoop manifest (そのまんまや!)",
"url": "https://github.com/hymkor/make-scoop-manifest",
"created_at": "2023-01-09T03:21:41Z"
},
{
"label": 0,
"text": "Simple task management tools for Obsidian",
"url": "https://github.com/tadashi-aikawa/silhouette",
"created_at": "2023-01-09T11:19:22Z"
},
{
"label": 0,
"text": "Yet Another YouTube Sync Player. It's useful to watch the same videos with someone at the same time!",
"url": "https://github.com/anosatsuk124/syncyt",
"created_at": "2023-01-09T11:56:29Z"
},
{
"label": 0,
"text": "Runtime Executor (asdf-plugin compatible)",
"url": "https://github.com/jdxcode/rtx",
"created_at": "2023-01-09T14:44:21Z"
},
{
"label": 0,
"text": "ラズピコで遊んだ記録",
"url": "https://github.com/bankinoh/rasupico",
"created_at": "2023-01-09T15:22:43Z"
},
{
"label": 0,
"text": "Server-side and full stack development with Kotlin and WebAssembly leveraging WASI and Component Model",
"url": "https://github.com/kowasm/kowasm",
"created_at": "2023-01-09T17:44:02Z"
},
{
"label": 1,
"text": "\"Proposal and Evaluation of Japanese Toxicity Schema\" provides a schema and dataset for toxicity in the Japanese language.",
"url": "https://github.com/inspection-ai/japanese-toxic-dataset",
"created_at": "2023-01-10T08:19:57Z"
},
{
"label": 0,
"text": "Scraping Ranked map data from BeatLeader",
"url": "https://github.com/tkns3/mybeatsaberscore",
"created_at": "2023-01-10T09:13:15Z"
},
{
"label": 0,
"text": "ブラウザ版ラスバレ用のちょっと使いやすいプレイ環境",
"url": "https://github.com/ulong32/shukuchi",
"created_at": "2023-01-10T12:39:13Z"
},
{
"label": 0,
"text": "Flexible key mapping manager.",
"url": "https://github.com/hrsh7th/nvim-insx",
"created_at": "2023-01-10T12:42:53Z"
},
{
"label": 0,
"text": "Polaris is a modular implementation of the Ethereum Virtual Machine (EVM). It can be easily integrated into any consensus engine or application, including the Cosmos-SDK.",
"url": "https://github.com/berachain/polaris",
"created_at": "2023-01-10T14:51:27Z"
},
{
"label": 0,
"text": "CMake for Xilinx Vivado/Vitis",
"url": "https://github.com/nodamushi/vivado_cmake_module",
"created_at": "2023-01-10T16:49:58Z"
},
{
"label": 0,
"text": "iOSアプリ開発の学習用リポジトリ",
"url": "https://github.com/pixiv/ios-tutorial",
"created_at": "2023-01-11T03:17:32Z"
},
{
"label": 1,
"text": "We pretrained a BART-based Japanese masked language model on paper abstracts from the academic database CiNii Articles",
"url": "https://github.com/EhimeNLP/AcademicBART",
"created_at": "2023-01-11T07:19:20Z"
},
{
"label": 0,
"text": "Testing whether your translation is correct or incorrect by OpenAI.",
"url": "https://github.com/toyamarinyon/translation-tester",
"created_at": "2023-01-11T07:19:51Z"
},
{
"label": 0,
"text": "IntelGPT is a command line tool that allows you to examine specific input such as URLs, file hashes, domain names, and IP addresses using GPT3.",
"url": "https://github.com/phishing-hunter/intelgpt",
"created_at": "2023-01-11T11:06:07Z"
},
{
"label": 0,
"text": "An unofficial PyTorch implementation of the audio LM VALL-E ",
"url": "https://github.com/enhuiz/vall-e",
"created_at": "2023-01-11T11:32:21Z"
},
{
"label": 0,
"text": "Light client-based RPC Proxy for PoS Ethereum",
"url": "https://github.com/rpc-h/rpch",
"created_at": "2023-01-11T12:47:26Z"
},
{
"label": 0,
"text": "Go bindings to SQLite using Wazero",
"url": "https://github.com/ncruces/go-sqlite3",
"created_at": "2023-01-11T14:54:42Z"
},
{
"label": 0,
"text": "Selenium-automated Jupyter Notebook that is synchronised with NeoVim in real-time.",
"url": "https://github.com/kiyoon/jupynium.nvim",
"created_at": "2023-01-11T22:34:15Z"
},
{
"label": 1,
"text": "WRIME for huggingface datasets",
"url": "https://github.com/shunk031/huggingface-datasets_wrime",
"created_at": "2023-01-12T01:44:27Z"
},
{
"label": 1,
"text": "Convert external words into Mozc system dictionary",
"url": "https://github.com/reasonset/mozcdict-ext",
"created_at": "2023-01-12T09:13:25Z"
},
{
"label": 0,
"text": "A cloud-native, multi-tenant Postgres connection pooler.",
"url": "https://github.com/supabase/supavisor",
"created_at": "2023-01-12T16:16:57Z"
},
{
"label": 0,
"text": "🦄 Tailwindcss first-class variant API",
"url": "https://github.com/nextui-org/tailwind-variants",
"created_at": "2023-01-12T21:42:24Z"
},
{
"label": 1,
"text": "COPA Dataset in Japanese",
"url": "https://github.com/nlp-titech/copa-japanese",
"created_at": "2023-01-13T00:04:07Z"
},
{
"label": 0,
"text": "Node.js dual package tool that add package.json to tsconfig's `outDir`",
"url": "https://github.com/azu/tsconfig-to-dual-package",
"created_at": "2023-01-13T16:15:09Z"
},
{
"label": 0,
"text": "UNzip COrrupted ZIP file that does not have the central directory records.",
"url": "https://github.com/hymkor/uncozip",
"created_at": "2023-01-13T18:52:44Z"
},
{
"label": 0,
"text": "A git prepare-commit-msg hook for authoring commit messages with GPT-3. ",
"url": "https://github.com/zurawiki/gptcommit",
"created_at": "2023-01-13T21:15:58Z"
},
{
"label": 0,
"text": "Trace your python process line by line with low overhead!",
"url": "https://github.com/furkanonder/beetrace",
"created_at": "2023-01-14T00:27:14Z"
},
{
"label": 0,
"text": "Container View Controllerを利用したテーブルレイアウト/グリドレイアウトの切り替え",
"url": "https://github.com/yskmanabe/containerviewsample",
"created_at": "2023-01-14T10:30:26Z"
},
{
"label": 0,
"text": "an images browse for stable-diffusion-webui",
"url": "https://github.com/alulkesh/stable-diffusion-webui-images-browser",
"created_at": "2023-01-14T16:20:37Z"
},
{
"label": 0,
"text": "2048 but the goal is to merge into biáng.",
"url": "https://github.com/honoka55/2048iang",
"created_at": "2023-01-14T17:14:29Z"
},
{
"label": 1,
"text": "法律・判例関係のデータセット",
"url": "https://github.com/japanese-law-analysis/data_set",
"created_at": "2023-01-14T23:18:28Z"
},
{
"label": 0,
"text": "A toy loopback usb audio device",
"url": "https://github.com/koba789/namanushi",
"created_at": "2023-01-15T02:04:53Z"
},
{
"label": 0,
"text": "A Galaga, Pac-Man and Donkey Kong arcade emulator for the ESP32",
"url": "https://github.com/harbaum/galagino",
"created_at": "2023-01-15T10:43:33Z"
},
{
"label": 0,
"text": "逃走中みたいに労働時間が増える毎に給与カウンターが上昇してくやつ",
"url": "https://github.com/chantsune/roudoutyu",
"created_at": "2023-01-15T12:40:58Z"
},
{
"label": 0,
"text": "ruff-lsp (ruff) extension for coc.nvim",
"url": "https://github.com/yaegassy/coc-ruff",
"created_at": "2023-01-16T08:10:44Z"
},
{
"label": 0,
"text": "Tool of microphone measurement and simple frequency analysis written in Python and kivy, ",
"url": "https://github.com/watlablog/simplefft-desktop",
"created_at": "2023-01-16T13:44:41Z"
},
{
"label": 1,
"text": "A chatbox application built using Nuxt 3 powered by Open AI Text completion endpoint. You can select different personality of your AI friend. The default will respond in Japanese. You can use this app to practice your Nihongo skills!",
"url": "https://github.com/supershaneski/openai-chatfriend",
"created_at": "2023-01-17T06:22:11Z"
},
{
"label": 0,
"text": "Unofficial Twitter client that does not use the official API, Third-party apps to take down Elon Musk (beta)",
"url": "https://github.com/fa0311/twitter_river",
"created_at": "2023-01-17T06:49:25Z"
},
{
"label": 0,
"text": "Base file of swiftlint configuration (.swiftlint.yml) per SwiftLint version",
"url": "https://github.com/p-x9/cocoaui",
"created_at": "2023-01-17T12:22:55Z"
},
{
"label": 0,
"text": "Free contents converter for publishing your digital garden.",
"url": "https://github.com/turtton/volglass",
"created_at": "2023-01-17T13:03:26Z"
},
{
"label": 1,
"text": "Japanese Livedoor news corpus for huggingface datasets",
"url": "https://github.com/shunk031/huggingface-datasets_livedoor-news-corpus",
"created_at": "2023-01-17T14:15:59Z"
},
{
"label": 0,
"text": "The default colorscheme used by AstroNvim",
"url": "https://github.com/astronvim/astronvim",
"created_at": "2023-01-17T14:24:00Z"
},
{
"label": 0,
"text": "All-in-one image generation AI (to be...)",
"url": "https://github.com/ddpn08/flat",
"created_at": "2023-01-18T09:05:57Z"
},
{
"label": 0,
"text": "Forward serialport I/O to standard I/O.",
"url": "https://github.com/dojyorin/serialport_forward",
"created_at": "2023-01-18T10:37:48Z"
},
{
"label": 0,
"text": "model merge extention for stable diffusion web ui",
"url": "https://github.com/hako-mikan/sd-webui-supermerger",
"created_at": "2023-01-18T13:20:58Z"
},
{
"label": 0,
"text": "A command-line productivity tool powered by GPT-3 and GPT-4, will help you accomplish your tasks faster and more efficiently.",
"url": "https://github.com/ther1d/shell_gpt",
"created_at": "2023-01-18T19:40:11Z"
},
{
"label": 0,
"text": "A playbook for systematically maximizing the performance of deep learning models.",
"url": "https://github.com/google-research/tuning_playbook",
"created_at": "2023-01-18T23:32:32Z"
},
{
"label": 1,
"text": "NDL古典籍OCR学習用データセット(みんなで翻刻加工データ)",
"url": "https://github.com/ndl-lab/ndl-minhon-ocrdataset",
"created_at": "2023-01-19T06:21:59Z"
},
{
"label": 0,
"text": "Open Source command line client of VRChat Package Manager.",
"url": "https://github.com/anatawa12/vrc-get",
"created_at": "2023-01-19T08:02:19Z"
},
{
"label": 0,
"text": "ROS streaming of images and poses to nerfstudio.",
"url": "https://github.com/javieryu/nerf_bridge",
"created_at": "2023-01-19T17:18:03Z"
},
{
"label": 0,
"text": "The Foundation project",
"url": "https://github.com/apple/swift-foundation",
"created_at": "2023-01-19T19:22:40Z"
},
{
"label": 0,
"text": "nextpida is a package that TypeScript friendly apis path generator for Next.js",
"url": "https://github.com/mika-f/nextpida",
"created_at": "2023-01-20T09:19:48Z"
},
{
"label": 0,
"text": "Kubbernecker is tools that helps to check the number of changes made to Kubernetes resources. ",
"url": "https://github.com/zoetrope/kubbernecker",
"created_at": "2023-01-20T10:50:23Z"
},
{
"label": 0,
"text": "Chromium running inside your terminal",
"url": "https://github.com/fathyb/carbonyl",
"created_at": "2023-01-20T10:58:22Z"
},
{
"label": 0,
"text": "Example application with Ceramic and IDX",
"url": "https://github.com/unytedao/ai-crypto-hackathon",
"created_at": "2023-01-20T11:42:36Z"
},
{
"label": 0,
"text": "The first repository for the AMX project",
"url": "https://github.com/amx-project/0",
"created_at": "2023-01-20T14:27:22Z"
},
{
"label": 1,
"text": "ディープラーニングモデルの性能を体系的に最大化するためのプレイブック",
"url": "https://github.com/Valkyrja3607/tuning_playbook_ja",
"created_at": "2023-01-21T17:18:29Z"
},
{
"label": 0,
"text": "Fork of Radxa/u-boot branch 5.10-rk5",
"url": "https://github.com/sunflower2333/uefi-releases",
"created_at": "2023-01-21T17:43:15Z"
},
{
"label": 0,
"text": "Generate automated tests for your Node.js app via LLMs without developers having to write a single line of code.",
"url": "https://github.com/pythagora-io/pythagora",
"created_at": "2023-01-21T18:13:27Z"
},
{
"label": 0,
"text": "Lama Cleaner 1111 Extension for Windows",
"url": "https://github.com/aka7774/sd_lama_cleaner",
"created_at": "2023-01-22T10:48:08Z"
},
{
"label": 0,
"text": "A light weight database seeding helper for Rust",
"url": "https://github.com/estie-inc/cder",
"created_at": "2023-01-23T00:23:31Z"
},
{
"label": 0,
"text": "法務省登記所備付地図データ(地図XML)をGeoJSONに変換するコンバータ",
"url": "https://github.com/jda-dm/mojxml2geojson",
"created_at": "2023-01-23T02:31:21Z"
},
{
"label": 0,
"text": "usage MSXGL",
"url": "https://github.com/hsk/msxgl",
"created_at": "2023-01-23T09:45:19Z"
},
{
"label": 0,
"text": "stable-diffusion-webui-pixelization",
"url": "https://github.com/automatic1111/stable-diffusion-webui-pixelization",
"created_at": "2023-01-23T10:57:20Z"
},
{
"label": 0,
"text": "自家製の音ゲー",
"url": "https://github.com/atomu21263/music-game",
"created_at": "2023-01-23T11:09:35Z"
},
{
"label": 0,
"text": "C port of Ken Thompson's Space Travel",
"url": "https://github.com/mohd-akram/st",
"created_at": "2023-01-23T12:31:20Z"
},
{
"label": 0,
"text": "Evals is a framework for evaluating LLMs and LLM systems, and an open-source registry of benchmarks.",
"url": "https://github.com/openai/evals",
"created_at": "2023-01-23T20:51:04Z"
},
{
"label": 0,
"text": "a sqlc plugin for generating sql.js-compatible queries",
"url": "https://github.com/stephen/sqlc-ts",
"created_at": "2023-01-23T21:38:23Z"
},
{
"label": 0,
"text": "桑名打(くわなうち)| 法務省 登記所備付地図データ・アーカイブ",
"url": "https://github.com/amx-project/kuwanauchi",
"created_at": "2023-01-23T21:47:05Z"
},
{
"label": 0,
"text": "A document management system",
"url": "https://github.com/hashicorp-forge/hermes",
"created_at": "2023-01-24T04:28:09Z"
},
{
"label": 0,
"text": "いろんなものを配布していくよ~",
"url": "https://github.com/skikozou/skikozou-s-project",
"created_at": "2023-01-24T05:36:43Z"
},
{
"label": 0,
"text": "Codespaces but open-source, client-only and unopinionated: Works with any IDE and lets you use any cloud, kubernetes or just localhost docker.",
"url": "https://github.com/loft-sh/devpod",
"created_at": "2023-01-24T12:59:48Z"
},
{
"label": 0,
"text": "一款好看的在线文件列表程序,由 Spring Boot 3 和 Vue 驱动。",
"url": "https://github.com/besscroft/diyfile",
"created_at": "2023-01-24T15:02:08Z"
},
{
"label": 1,
"text": "ディープラーニングによる自然言語処理(共立出版)のサポートページです",
"url": "https://github.com/python-nlp-book/python-nlp-book",
"created_at": "2023-01-25T07:45:06Z"
},
{
"label": 0,
"text": "A handy way to manage data in Slack's next-generation platform datastores",
"url": "https://github.com/seratch/deno-slack-data-mapper",
"created_at": "2023-01-25T13:35:10Z"
},
{
"label": 0,
"text": "initialization scripts for environment setup",
"url": "https://github.com/katabame/init",
"created_at": "2023-01-25T16:10:54Z"
},
{
"label": 0,
"text": "Extension for webui to run instruct-pix2pix",
"url": "https://github.com/klace/stable-diffusion-webui-instruct-pix2pix",
"created_at": "2023-01-25T16:16:30Z"
},
{
"label": 0,
"text": "Automatic Speech Recognition with Speaker Diarization based on OpenAI Whisper",
"url": "https://github.com/mahmoudashraf97/whisper-diarization",
"created_at": "2023-01-25T23:18:09Z"
},
{
"label": 0,
"text": "Examples of how to use deso libraries with react",
"url": "https://github.com/deso-protocol/deso-examples-react",
"created_at": "2023-01-26T03:06:30Z"
},
{
"label": 0,
"text": "slackのメッセージを保存するやつ",
"url": "https://github.com/kyutech-programming-club/slack_archive_ver2",
"created_at": "2023-01-26T07:21:39Z"
},
{
"label": 0,
"text": "LIFULLアクセシビリティガイドライン",
"url": "https://github.com/lifull/accessibility-guidelines",
"created_at": "2023-01-27T03:18:26Z"
},
{
"label": 0,
"text": "Static checks to aid with a healthy adoption of Compose. Maintained fork of the Twitter Compose rules.",
"url": "https://github.com/mrmans0n/compose-rules",
"created_at": "2023-01-27T09:19:22Z"
},
{
"label": 0,
"text": "存在しないサイゼリヤのメニューを考えてくれる",
"url": "https://github.com/donabe8898/not_saizeriya",
"created_at": "2023-01-27T12:23:50Z"
},
{
"label": 0,
"text": "AIイラストを管理するデスクトップアプリ",
"url": "https://github.com/i-shinya/grimoire",
"created_at": "2023-01-27T14:48:17Z"
},
{
"label": 0,
"text": "Implementation of MusicLM, Google's new SOTA model for music generation using attention networks, in Pytorch",
"url": "https://github.com/lucidrains/musiclm-pytorch",
"created_at": "2023-01-27T15:39:13Z"
},
{
"label": 0,
"text": "Substance Painter用のマルチレイヤーPSDファイル出力プラグイン",
"url": "https://github.com/takecccc/export-multilayer-psd",
"created_at": "2023-01-27T16:23:14Z"
},
{
"label": 0,
"text": "Theme for GarlicOS",
"url": "https://github.com/vidnez/nes-action-set-theme",
"created_at": "2023-01-28T05:42:51Z"
},
{
"label": 0,
"text": "Make JVM Android integration test visible 🤖📸",
"url": "https://github.com/takahirom/roborazzi",
"created_at": "2023-01-28T05:52:02Z"
},
{
"label": 0,
"text": "<1kB frontmatter parser that supports a reasonable subset of YAML",
"url": "https://github.com/natemoo-re/ultramatter",
"created_at": "2023-01-29T00:30:40Z"
},
{
"label": 0,
"text": "articles or documents written by ryo_grid",
"url": "https://github.com/ryogrid/articles",
"created_at": "2023-01-29T05:56:51Z"
},
{
"label": 0,
"text": "A timeline of the latest AI models for audio generation, starting in 2023!",
"url": "https://github.com/archinetai/audio-ai-timeline",
"created_at": "2023-01-29T09:58:56Z"
},
{
"label": 0,
"text": "Example implementation of Halide with go generate as a helper",
"url": "https://github.com/octu0/example-halide-go",
"created_at": "2023-01-29T14:07:44Z"
},
{
"label": 0,
"text": "WP Compose is WordPress development environment based on the docker environment. You can easily launch WordPress development environment as localhost. Optimized for ARM based Mac (Apple Chip).",
"url": "https://github.com/thingsym/wp-compose",
"created_at": "2023-01-30T06:23:30Z"
},
{
"label": 0,
"text": "modern full-featured open source secure mail server for low-maintenance self-hosted email",
"url": "https://github.com/mjl-/mox",
"created_at": "2023-01-30T13:26:58Z"
},
{
"label": 0,
"text": "NIST PKITS miscellaneous",
"url": "https://github.com/kjur/nist-pkits-misc",
"created_at": "2023-01-30T15:00:25Z"
},
{
"label": 0,
"text": "CVAT.ai blog",
"url": "https://github.com/cvat-ai/cvat",
"created_at": "2023-01-30T16:40:27Z"
},
{
"label": 0,
"text": "A plugin for Obsidian that integrates textlint",
"url": "https://github.com/hdykokd/obsidian-textlint",
"created_at": "2023-01-31T07:31:11Z"
},
{
"label": 1,
"text": "複数の前処理を構成して管理するテキスト前処理ツール",
"url": "https://github.com/HojiChar/HojiChar",
"created_at": "2023-01-31T11:01:35Z"
},
{
"label": 0,
"text": "Nodebox is a runtime for executing Node.js modules in the browser.",
"url": "https://github.com/codesandbox/nodebox-runtime",
"created_at": "2023-02-01T13:22:59Z"
},
{
"label": 0,
"text": "Hacker House Tokyo (April 13 - April 17)",
"url": "https://github.com/tkgshn/hackerhouse-tokyo",
"created_at": "2023-02-01T19:30:12Z"
},
{
"label": 0,
"text": "voicevox_ros2",
"url": "https://github.com/tutrobo/voicevox_ros2",
"created_at": "2023-02-01T23:04:46Z"
},
{
"label": 0,
"text": "🚀 10x easier, 🚀 140x lower storage cost, 🚀 high performance, 🚀 petabyte scale - Elasticsearch/Splunk/Datadog alternative for 🚀 (logs, metrics, traces).",
"url": "https://github.com/openobserve/openobserve",
"created_at": "2023-02-02T03:29:51Z"
},
{
"label": 0,
"text": "Official implementation for \"Multimodal Chain-of-Thought Reasoning in Language Models\" (stay tuned and more will be updated)",
"url": "https://github.com/amazon-science/mm-cot",
"created_at": "2023-02-02T06:31:32Z"
},
{
"label": 0,
"text": "MODs Repo for WAU Project (https://github.com/Romanitho/Winget-AutoUpdate)",
"url": "https://github.com/romanitho/winget-install-gui",
"created_at": "2023-02-02T10:25:17Z"
},
{
"label": 0,
"text": "Domain Modeling Made Functional in TypeScript",
"url": "https://github.com/kawasima/dmmf-ts",
"created_at": "2023-02-02T14:05:18Z"
},
{
"label": 0,
"text": "Boost your project fledgling🚀",
"url": "https://github.com/comamoca/boost",
"created_at": "2023-02-02T14:08:25Z"
},
{
"label": 0,
"text": "Jetpack Compose library for easy implementation of Adaptive Layout.",
"url": "https://github.com/takagimeow/adaptive-layout",
"created_at": "2023-02-02T14:33:29Z"
},
{
"label": 0,
"text": "Automatic1111 Animated Image (input/output) Extension",
"url": "https://github.com/lonicamewinsky/gif2gif",
"created_at": "2023-02-03T01:26:37Z"
},
{
"label": 0,
"text": "Guitar Scale Generator",
"url": "https://github.com/kishida/guitarscale",
"created_at": "2023-02-03T05:09:23Z"
},
{
"label": 0,
"text": "Elaphe is a compiler which converts dart file into python bytecode.",
"url": "https://github.com/organic-nailer/elaphe",
"created_at": "2023-02-03T05:38:38Z"
},
{
"label": 0,
"text": "A WYSIWYG React component builder 🚧 Very work-in-progress",
"url": "https://github.com/seanchas116/uimix",
"created_at": "2023-02-03T09:07:30Z"
},
{
"label": 0,
"text": "Official Implementation for \"TEXTure: Text-Guided Texturing of 3D Shapes\"",
"url": "https://github.com/texturepaper/texturepaper",
"created_at": "2023-02-03T10:19:07Z"
},
{
"label": 0,
"text": "test docker build",
"url": "https://github.com/takurx/test-docker",
"created_at": "2023-02-03T15:48:24Z"
},
{
"label": 0,
"text": "One of the client implementations of 'concurrent', which serves as the foundation for a distributed microblogging service.",
"url": "https://github.com/totegamma/concurrent-web",
"created_at": "2023-02-03T16:34:14Z"
},
{
"label": 0,
"text": "A JavaScript compiler and TypeScript checker written in Rust with a focus on static analysis and runtime performance",
"url": "https://github.com/kaleidawave/ezno",
"created_at": "2023-02-03T19:27:20Z"
},
{
"label": 0,
"text": "The digest data of moj xml data. Xml file from https://github.com/amx-project/kuwanauch",
"url": "https://github.com/sakaik/kuwanauchi_xml_digest",
"created_at": "2023-02-04T06:47:11Z"
},
{
"label": 0,
"text": "MicroPython for X68000",
"url": "https://github.com/yunkya2/micropython-x68k",
"created_at": "2023-02-04T08:54:58Z"
},
{
"label": 0,
"text": "Super loose JSON + TOML parsers and unmarshaller for Go. JSONC and JSON5 can also be read.",
"url": "https://github.com/shellyln/go-loose-json-parser",
"created_at": "2023-02-04T09:23:38Z"
},
{
"label": 0,
"text": "Braavos Account Contract for Starknet",
"url": "https://github.com/mybraavos/braavos-account-cairo",
"created_at": "2023-02-04T20:04:12Z"
},
{
"label": 0,
"text": "Run user-provided code in a Web Worker",
"url": "https://github.com/slashd-analytics/run",
"created_at": "2023-02-04T21:18:25Z"
},
{
"label": 0,
"text": "Flutter/Flameの横スクロールアクション!",
"url": "https://github.com/ken1flan/ember_quest",
"created_at": "2023-02-04T23:50:30Z"
},
{
"label": 0,
"text": "🗄️ My bucket for ScoopInstaller",
"url": "https://github.com/sheepla/scoop-bucket",
"created_at": "2023-02-05T08:52:04Z"
},
{
"label": 0,
"text": "suits for the newest UI QiitaTrend system, and return JSON.",
"url": "https://github.com/tlacatecolotl/twitter-sensitive-contents-warning-bypass.git",
"created_at": "2023-02-05T09:03:44Z"
},
{
"label": 0,
"text": "Minimal implementation of ActivityPub using Cloudflare Workers and D1",
"url": "https://github.com/yusukebe/minidon",
"created_at": "2023-02-05T13:17:43Z"
},
{
"label": 0,
"text": "reference architecture for building a travel application with GPT3",
"url": "https://github.com/dabit3/gpt-travel-advisor",
"created_at": "2023-02-05T17:08:36Z"
},
{
"label": 0,
"text": "Rootless replacement for persist.dbg.volte_avail_ovr patch",
"url": "https://github.com/kyujin-cho/pixel-volte-patch",
"created_at": "2023-02-05T19:02:28Z"
},
{
"label": 0,
"text": "Twitter Web App (Web 版公式クライアント) の内部 API を使い、Tweepy でスクリーンネームとパスワードで認証するためのライブラリ",
"url": "https://github.com/tsukumijima/tweepy-authlib",
"created_at": "2023-02-05T20:58:27Z"
},
{
"label": 0,
"text": "Convert any music library into a music production sample-library with ML",
"url": "https://github.com/samim23/polymath",
"created_at": "2023-02-05T21:57:29Z"
},
{
"label": 0,
"text": "Goku is an HTTP load testing application written in Rust ",
"url": "https://github.com/jcaromiq/goku",
"created_at": "2023-02-06T13:10:47Z"
},
{
"label": 0,
"text": "A browser extension that enhance search engines with ChatGPT",
"url": "https://github.com/hunkimforks/chatgpt-arxiv-extension",
"created_at": "2023-02-06T14:01:49Z"
},
{
"label": 0,
"text": "base extract correlation minimum method(patent application)",
"url": "https://github.com/yasuhara-wataru/becmm",
"created_at": "2023-02-06T14:43:25Z"
},
{
"label": 0,
"text": "Parse and Apply IPS binary patch format.",
"url": "https://github.com/digital-sound-antiques/ips-patcher",
"created_at": "2023-02-06T15:05:16Z"
},
{
"label": 0,
"text": "SDK focused on building AI based applications and extensions for Microsoft Teams.",
"url": "https://github.com/microsoft/windows-rs",
"created_at": "2023-02-06T18:03:17Z"
},
{
"label": 0,
"text": "Atomfly2 prop guard",
"url": "https://github.com/kouhei1970/atomfly2_prop_guard",
"created_at": "2023-02-07T03:50:14Z"
},
{
"label": 0,
"text": "みかぶるの自家製便利ツール集",
"url": "https://github.com/mikanixonable/tools",
"created_at": "2023-02-07T06:40:10Z"
},
{
"label": 0,
"text": "PC-9801/9821 series I/O Port manipulator",
"url": "https://github.com/antarcticlion/iopm",
"created_at": "2023-02-07T10:14:35Z"
},
{
"label": 0,
"text": "https://github.com/TheAlgorithms/Google-Summer-of-Code/blob/main/project_ideas/NamedEntityRecognitionForEcommerceSearchQueries.md",
"url": "https://github.com/thealgorithms/rust",
"created_at": "2023-02-07T11:04:46Z"
},
{
"label": 0,
"text": "Examples with Kotlin/Wasm",
"url": "https://github.com/kotlin/kotlin-wasm-examples",
"created_at": "2023-02-07T16:11:25Z"
},
{
"label": 0,
"text": "A game engine based on the Processing API",
"url": "https://github.com/xord/rubysketch",
"created_at": "2023-02-07T16:43:40Z"
},
{
"label": 0,
"text": "Official Pytorch Implementation for “Plug-and-Play Diffusion Features for Text-Driven Image-to-Image Translation” (CVPR 2023)",
"url": "https://github.com/michalgeyer/plug-and-play",
"created_at": "2023-02-07T18:26:21Z"
},
{
"label": 0,
"text": "GIMP AI plugins with OpenVino Backend",
"url": "https://github.com/intel/openvino-ai-plugins-gimp",
"created_at": "2023-02-08T01:47:35Z"
},
{
"label": 0,
"text": "Electrostatic Level Meter",
"url": "https://github.com/shapoco/staticmeter",
"created_at": "2023-02-08T02:36:18Z"
},
{
"label": 0,
"text": "Composable gens for ScalaMatsuri 2023",
"url": "https://github.com/on-air-entertainment/scala-matsuri-2023",
"created_at": "2023-02-08T08:02:30Z"
},
{
"label": 0,
"text": "An extension to help download models from CivitAi without leaving WebUI",
"url": "https://github.com/signalflagz/sd-civitai-browser",
"created_at": "2023-02-08T13:37:20Z"
},
{
"label": 0,
"text": "https://gshadesucks.com/",
"url": "https://github.com/notnite/gshade-sucks",
"created_at": "2023-02-08T17:50:38Z"
},
{
"label": 0,
"text": "A sample app for the Retrieval-Augmented Generation pattern running in Azure, using Azure Cognitive Search for retrieval and Azure OpenAI large language models to power ChatGPT-style and Q&A experiences.",
"url": "https://github.com/azure-samples/azure-search-openai-demo",
"created_at": "2023-02-08T21:00:54Z"
},
{
"label": 0,
"text": "Effortlessly build beautiful command-line apps",
"url": "https://github.com/natemoo-re/clack",
"created_at": "2023-02-08T21:58:49Z"
},
{
"label": 0,
"text": "⛓️ Langflow is a UI for LangChain, designed with react-flow to provide an effortless way to experiment and prototype flows.",
"url": "https://github.com/logspace-ai/langflow",
"created_at": "2023-02-08T22:28:03Z"
},
{
"label": 0,
"text": "jQueryを使わずJavaScriptで作成したハンバーガーメニューです。",
"url": "https://github.com/yukifujisawa/js-hamburger-menu",
"created_at": "2023-02-08T23:55:30Z"
},
{
"label": 0,
"text": "Code for ConAE",
"url": "https://github.com/openmatch/coco-dr",
"created_at": "2023-02-09T01:04:24Z"
},
{
"label": 0,
"text": "JavaScript + TailwindCSS で作成したハンバーガーメニュー(レスポンシブ対応済み)",
"url": "https://github.com/yukifujisawa/tailwindcss-hamburger-menu",
"created_at": "2023-02-09T05:44:55Z"
},
{
"label": 0,
"text": "iscs-thesis revised",
"url": "https://github.com/shiatsumat/iscs-thesis",
"created_at": "2023-02-09T08:32:12Z"
},
{
"label": 0,
"text": "A CO2 Sensor (IO-DATA UD-CO2S) Reader using USB serial.",
"url": "https://github.com/northeye/chissoku",
"created_at": "2023-02-09T11:16:26Z"
},
{
"label": 0,
"text": "A high-throughput and memory-efficient inference and serving engine for LLMs",
"url": "https://github.com/vllm-project/vllm",
"created_at": "2023-02-09T11:23:20Z"
},
{
"label": 0,
"text": "Search codes in GitHub and evaluate them with OpenAI chats.",
"url": "https://github.com/benzookapi/github-code-evaluator-with-open-ai",
"created_at": "2023-02-09T13:57:40Z"
},
{
"label": 0,
"text": "Repo used for testing github actions, projects, integrations etc without risking messing up state in the main CoreWCF repo",
"url": "https://github.com/corewcf/corewcf",
"created_at": "2023-02-09T18:51:05Z"
},
{
"label": 0,
"text": "Building applications with composability using Boxcars with LLM's. Inspired by LangChain.",
"url": "https://github.com/boxcarsai/boxcars",
"created_at": "2023-02-09T23:38:50Z"
},
{
"label": 0,
"text": "ニコニコ静画(PC版)で説明文の部分にページめくり機能を追加するUserScriptです。",
"url": "https://github.com/kohe-ioroi/nico-seiga-page-turning",
"created_at": "2023-02-10T14:44:11Z"
},
{
"label": 0,
"text": "プロ生ちゃんからチョコをたくさんもらうゲームです",
"url": "https://github.com/voidproc/chocokurei2023",
"created_at": "2023-02-10T15:09:48Z"
},
{
"label": 0,
"text": "Centralize orphan resources in Azure environments",
"url": "https://github.com/julianhayward/azure-mg-sub-governance-reporting",
"created_at": "2023-02-10T15:10:22Z"
},
{
"label": 0,
"text": "Samples for working with Azure OpenAI Service",
"url": "https://github.com/azure/reliability-workbook",
"created_at": "2023-02-10T16:49:05Z"
},
{
"label": 0,
"text": "A program that provides the ability to create and execute rules to restrict common token operations such as transferring and selling.",
"url": "https://github.com/imartinez/privategpt",
"created_at": "2023-02-10T17:36:21Z"
},
{
"label": 0,
"text": "Latent Couple extension (two shot diffusion port)",
"url": "https://github.com/opparco/stable-diffusion-webui-two-shot",
"created_at": "2023-02-11T00:37:29Z"
},
{
"label": 0,
"text": "AA093・AA095・AA097・AA105のチームメンバーで開発しています。",
"url": "https://github.com/code1964/globe-learning",
"created_at": "2023-02-11T03:15:01Z"
},
{
"label": 0,
"text": "NetWork FiRMware to CPE. Create CPE from networkdevice firmware version by snmp or other.",
"url": "https://github.com/hogehuga/nwfrm2cpe",
"created_at": "2023-02-11T04:35:52Z"
},
{
"label": 0,
"text": "Faster Whisper transcription with CTranslate2",
"url": "https://github.com/guillaumekln/faster-whisper",
"created_at": "2023-02-11T09:17:27Z"
},
{
"label": 0,
"text": "ポケモンHOMEの情報を取得するためのプログラム",
"url": "https://github.com/okuokuch/pokemon_home_sv",
"created_at": "2023-02-11T11:24:40Z"
},
{
"label": 0,
"text": "GraphQL + TypeScript toolchain",
"url": "https://github.com/uhyo/nitrogql",
"created_at": "2023-02-11T14:24:43Z"
},
{
"label": 0,
"text": "Contextual chat with GPT-3 model of OpenAI API",
"url": "https://github.com/uezo/gpt3-contextual",
"created_at": "2023-02-11T14:27:20Z"
},
{
"label": 0,
"text": ":octocat: Setup asset of Github releases.",
"url": "https://github.com/k1low/gh-setup",
"created_at": "2023-02-12T09:59:55Z"
},
{
"label": 0,
"text": "A collection of my LiveBook notebooks.",
"url": "https://github.com/uasi/livebook-experiments",
"created_at": "2023-02-12T13:01:09Z"
},
{
"label": 0,
"text": "WebUI extension for ControlNet",
"url": "https://github.com/mikubill/sd-webui-controlnet",
"created_at": "2023-02-12T16:26:27Z"
},
{
"label": 0,
"text": "A library of composable functions for the type-level! Transform your TypeScript types in any way you want using functions you already know.",
"url": "https://github.com/gvergnaud/hotscript",
"created_at": "2023-02-12T19:25:57Z"
},
{
"label": 1,
"text": "Comparison of Japanese Sentence Segmentation Tools",
"url": "https://github.com/hkiyomaru/ja-senter-benchmark",
"created_at": "2023-02-13T05:03:47Z"
},
{
"label": 0,
"text": "C++のライブラリを作ります",
"url": "https://github.com/michirakara/cpp-library",
"created_at": "2023-02-13T05:40:09Z"
},
{
"label": 0,
"text": "Home of the operational semantics team, used primarily for procedural items",
"url": "https://github.com/rust-lang/rust-playpen",
"created_at": "2023-02-13T11:23:23Z"
},
{
"label": 0,
"text": "SNS for math lovers",
"url": "https://github.com/kokenmma/arithynet",
"created_at": "2023-02-13T12:25:32Z"
},
{
"label": 0,
"text": "https://github.com/kory33/kory33.net-infra のブートストラップに必要なメタ設定、および手作業手順ドキュメントをまとめるリポジトリ",
"url": "https://github.com/kory33/kory33.net-meta-infra",
"created_at": "2023-02-13T12:46:08Z"
},
{
"label": 0,
"text": "qhapaqのnote( https://note.com/qhapaq_shogi )で販売しているデータ共有用のリポジトリです",
"url": "https://github.com/qhapaq-49/qhnotes",
"created_at": "2023-02-13T13:43:10Z"
},
{
"label": 0,
"text": "オンラインショップが掲載している価格を監視し,価格が下がった場合に Slack に通知するスクリプトです.",
"url": "https://github.com/kimata/price_watch",
"created_at": "2023-02-13T13:44:46Z"
},
{
"label": 0,
"text": "State-of-the-art Machine Learning for the web. Run 🤗 Transformers directly in your browser, with no need for a server!",
"url": "https://github.com/xenova/transformers.js",
"created_at": "2023-02-13T13:51:45Z"
},
{
"label": 0,
"text": "Easily portable DooM for Python (+ some pretty sick demos)",
"url": "https://github.com/wojciech-graj/cydoomgeneric",
"created_at": "2023-02-13T21:02:42Z"
},
{
"label": 0,
"text": "A CLI that writes your git commit messages for you with AI",
"url": "https://github.com/nutlope/aicommits",
"created_at": "2023-02-14T01:23:13Z"
},
{
"label": 0,
"text": "It's a BMW shifter converted to a Bluetooth Keyboard that you use with Vim",
"url": "https://github.com/tenderlove/initial-v",
"created_at": "2023-02-14T01:44:18Z"
},
{
"label": 0,
"text": "rust's std::result::Result emulation test",
"url": "https://github.com/itn3000/optionalresulttest",
"created_at": "2023-02-14T06:07:53Z"
},
{
"label": 0,
"text": "Generating Mario Levels with GPT2. Code for the paper \"MarioGPT: Open-Ended Text2Level Generation through Large Language Models\" https://arxiv.org/abs/2302.05981",
"url": "https://github.com/shyamsn97/mario-gpt",
"created_at": "2023-02-14T06:36:19Z"
},
{
"label": 0,
"text": "DXライブラリを用いて作成したオセロゲームです。",
"url": "https://github.com/suruga02/osero.git",
"created_at": "2023-02-14T08:25:06Z"
},
{
"label": 0,
"text": "Very personal Docker repo for exploratory data analysis.",
"url": "https://github.com/kaz184/notebook",
"created_at": "2023-02-14T09:03:10Z"
},
{
"label": 0,
"text": "Inference code for LLaMA models",
"url": "https://github.com/facebookresearch/llama",
"created_at": "2023-02-14T09:29:12Z"
},
{
"label": 0,
"text": "keyball is split keyboard has 100% track ball",
"url": "https://github.com/kamiichi99/keyball",
"created_at": "2023-02-15T02:17:43Z"
},
{
"label": 0,
"text": "🦁 Lion, new optimizer discovered by Google Brain using genetic algorithms that is purportedly better than Adam(w), in Pytorch",
"url": "https://github.com/lucidrains/lion-pytorch",
"created_at": "2023-02-15T04:24:19Z"
},
{
"label": 0,
"text": "Container to WASM converter",
"url": "https://github.com/ktock/container2wasm",
"created_at": "2023-02-15T05:22:10Z"
},
{
"label": 0,
"text": "Guidelines for daac-tools community",
"url": "https://github.com/daac-tools/jagger-rs",
"created_at": "2023-02-15T09:15:02Z"
},
{
"label": 0,
"text": "Shukuchi is an Obsidian plugin that enables you to teleport to links (URL or internal link).",
"url": "https://github.com/tadashi-aikawa/shukuchi",
"created_at": "2023-02-15T09:48:27Z"
},
{
"label": 0,
"text": "A 6x13 bitmap font, created for the VT2040 terminal",
"url": "https://github.com/ncrawforth/vt2040",
"created_at": "2023-02-15T10:42:37Z"
},
{
"label": 0,
"text": "A sample Spring-based application",
"url": "https://github.com/qiang1981cn/spring-petclinic",
"created_at": "2023-02-15T12:58:06Z"
},
{
"label": 0,
"text": "the open source embedding database",
"url": "https://github.com/danielgross/llamaacademy",
"created_at": "2023-02-15T20:10:54Z"
},
{
"label": 0,
"text": "A web application that assists network defenders, analysts, and researchers in the process of mapping adversary behaviors to the MITRE ATT&CK® framework.",
"url": "https://github.com/cisagov/decider",
"created_at": "2023-02-15T22:49:21Z"
},
{
"label": 0,
"text": "Laravel10.xドキュメントの日本語翻訳リポジトリ。公式ドキュメントは英語だけのため、この翻訳を公式と呼ばないでください。",
"url": "https://github.com/laravel-ja/ja-docs-10.x",
"created_at": "2023-02-16T00:09:59Z"
},
{
"label": 0,
"text": "PyGWalker: Turn your pandas dataframe into an interactive UI for visual analysis",
"url": "https://github.com/kanaries/pygwalker",
"created_at": "2023-02-16T05:17:24Z"
},
{
"label": 0,
"text": "Query Weaver - SQL query builder using template string literal",
"url": "https://github.com/kikuchan/query-weaver",
"created_at": "2023-02-16T09:41:18Z"
},
{
"label": 0,
"text": "Discord bot that provides sentence generation using an N-gram model generated from sentences",
"url": "https://github.com/tsukina-7mochi/bot_ite_dog",
"created_at": "2023-02-16T11:18:54Z"
},
{
"label": 0,
"text": "This is a test to port C++'s ymfm and Rust's vgmplay to ESP32(Xtensa). ",
"url": "https://github.com/h1romas4/m5stack-chipstream",
"created_at": "2023-02-16T12:44:56Z"
},
{
"label": 0,
"text": "Kotlin Multiplatform File System Watcher",
"url": "https://github.com/irgaly/kfswatch",
"created_at": "2023-02-16T15:16:00Z"
},
{
"label": 0,
"text": "Sample to envision intelligent apps with Microsoft's Copilot stack for AI-infused product experiences.",
"url": "https://github.com/azure-samples/miyagi",
"created_at": "2023-02-16T22:23:54Z"
},
{
"label": 0,
"text": "Fast, light, simple Docker containers & Linux machines for macOS",
"url": "https://github.com/orbstack/orbstack",
"created_at": "2023-02-17T09:27:53Z"
},
{
"label": 0,
"text": "GitHubActionsの検証用リポジトリ",
"url": "https://github.com/chespins/tetoconescoredatatool",
"created_at": "2023-02-17T12:49:03Z"
},
{
"label": 0,
"text": "潘多拉,一个让你呼吸顺畅的ChatGPT。Pandora, a ChatGPT that helps you breathe smoothly.",
"url": "https://github.com/pengzhile/pandora",
"created_at": "2023-02-17T13:58:33Z"
},
{
"label": 0,
"text": "Open source codebase powering the HuggingChat app",
"url": "https://github.com/huggingface/chat-ui",
"created_at": "2023-02-17T15:31:50Z"
},
{
"label": 0,
"text": "https://fortee.jp/phperkaigi-2023/proposal/db787adc-c855-4114-99b6-8c6958d47b42",
"url": "https://github.com/o0h/phperkaigi-2023",
"created_at": "2023-02-18T02:59:03Z"
},
{
"label": 0,
"text": "全SVC炼丹教程补完计划",
"url": "https://github.com/starstringstudio/so-vits-svc",
"created_at": "2023-02-18T11:27:50Z"
},
{
"label": 0,
"text": "Job schedule documentation tool based on crontab file",
"url": "https://github.com/piyoppi/cron2docs",
"created_at": "2023-02-18T11:42:34Z"
},
{
"label": 0,
"text": "Openpose Editor for AUTOMATIC1111's stable-diffusion-webui",
"url": "https://github.com/fkunn1326/openpose-editor",
"created_at": "2023-02-19T04:24:44Z"
},
{
"label": 0,
"text": "メモ用に小規模なコマンドネタをまとめたものです",
"url": "https://github.com/mcje-tech-shares/resourcepack-wiki",
"created_at": "2023-02-19T09:50:30Z"
},
{
"label": 0,
"text": "A 'CSS reset' for TypeScript, improving types for common JavaScript API's",
"url": "https://github.com/total-typescript/ts-reset",
"created_at": "2023-02-19T14:01:18Z"
},
{
"label": 0,
"text": "running ubuntu in allwinner v3s licheepi",
"url": "https://github.com/nathalislight/ncat",
"created_at": "2023-02-20T00:37:21Z"
},
{
"label": 0,
"text": "『プログラマーのためのCPU入門』正誤情報",
"url": "https://github.com/lambdanote/errata-cpu-for-programmer-1-1",
"created_at": "2023-02-20T00:59:33Z"
},
{
"label": 0,
"text": "A toolbox full of abstractions to help create your realtime audiovisual works in MaxMSPJitter",
"url": "https://github.com/tmhglnd/av-toolbox",
"created_at": "2023-02-20T09:20:28Z"
},
{
"label": 0,
"text": "Fullstack GraphQL Framework for TypeScript",
"url": "https://github.com/stepci/garph",
"created_at": "2023-02-20T20:09:27Z"
},
{
"label": 0,
"text": "time calculator",
"url": "https://github.com/winebarrel/tmc",
"created_at": "2023-02-21T06:29:18Z"
},
{
"label": 0,
"text": "leadtime - caluculate GitHub PR lead time statistics",
"url": "https://github.com/nao1215/leadtime",
"created_at": "2023-02-21T12:14:31Z"
},
{
"label": 0,
"text": "Twitch配信中にレイドがきたときに、⾃動で「/shoutout レイド元のユーザー名」公式コマンドの実⾏や、指定したメッセージをチャット欄に表⽰してくれる、ボットアプリ",
"url": "https://github.com/samuelladoco/twitch-eventsub-response-py",
"created_at": "2023-02-21T13:55:09Z"
},
{
"label": 0,
"text": "A PYNQ overlay demonstrating AMD RFSoC Multi-Tile Synchronization (MTS).",
"url": "https://github.com/xilinx/pynq",
"created_at": "2023-02-21T16:41:54Z"
},
{
"label": 0,
"text": "Official implementation of \"Composer: Creative and Controllable Image Synthesis with Composable Conditions\"",
"url": "https://github.com/damo-vilab/composer",
"created_at": "2023-02-22T01:03:54Z"
},
{
"label": 1,
"text": "CAMERA (CyberAgent Multimodal Evaluation for Ad Text GeneRAtion) is the Japanese ad text generation dataset.",
"url": "https://github.com/CyberAgentAILab/camera",
"created_at": "2023-02-22T01:33:38Z"
},
{
"label": 0,
"text": "Taiko no Tatsujin simulator",
"url": "https://github.com/sansaaaaai/revolutionary-host-roles",
"created_at": "2023-02-22T09:44:59Z"
},
{
"label": 0,
"text": "This repository contains files for https://keyboardkit.com",
"url": "https://github.com/keyboardkit/keyboardkit",
"created_at": "2023-02-22T12:15:08Z"
},
{
"label": 0,
"text": "リンク集サイト",
"url": "https://github.com/mizphses/links.chuo.club",
"created_at": "2023-02-22T12:17:36Z"
},
{
"label": 0,
"text": "DI Container library for Kotlin Multiplatform.",
"url": "https://github.com/mori-atsushi/koject",
"created_at": "2023-02-22T14:30:38Z"
},
{
"label": 0,
"text": "My kyopro training",
"url": "https://github.com/rare0b/training-atcoder",
"created_at": "2023-02-22T14:44:13Z"
},
{
"label": 0,
"text": "NetBox VLAN Manager Plugin",
"url": "https://github.com/miyuk/netbox-vlan-manager",
"created_at": "2023-02-22T17:14:38Z"
},
{
"label": 0,
"text": "example ktor server with Routing",
"url": "https://github.com/griffio/ktor-server-01",
"created_at": "2023-02-23T16:53:33Z"
},
{
"label": 0,
"text": "Optical sensor mod for Sanwa buttons (such as those in Pop'n Music, SDVX or IIDX)",
"url": "https://github.com/whowechina/sanwa_opt",
"created_at": "2023-02-24T13:33:15Z"
},
{
"label": 0,
"text": "JunoDB is PayPal's home-grown secure, consistent and highly available key-value store providing low, single digit millisecond, latency at any scale.",
"url": "https://github.com/paypal/junodb",
"created_at": "2023-02-24T16:52:02Z"
},
{
"label": 0,
"text": "Extremely fast file change detector and task orchestrator for Node.js.",
"url": "https://github.com/gajus/turbowatch",
"created_at": "2023-02-25T03:50:47Z"
},
{
"label": 1,
"text": "JGLUE: Japanese General Language Understanding Evaluation for huggingface datasets",
"url": "https://github.com/shunk031/huggingface-datasets_JGLUE",
"created_at": "2023-02-25T04:33:03Z"
},
{
"label": 0,
"text": "我的主体的領域 ",
"url": "https://github.com/yudejp/yude.jp_v4",
"created_at": "2023-02-25T07:10:15Z"
},
{
"label": 0,
"text": "LLuL - Local Latent upscaLer",
"url": "https://github.com/hnmr293/sd-webui-llul",
"created_at": "2023-02-25T07:14:11Z"
},
{
"label": 0,
"text": "WebUI extension for using Blip2",
"url": "https://github.com/tps-f/sd-webui-blip2",
"created_at": "2023-02-25T08:36:46Z"
},
{
"label": 0,
"text": "OpenUPM - Open Source Unity Package Registry (UPM)",
"url": "https://github.com/annulusgames/lucidaudio",
"created_at": "2023-02-25T11:59:07Z"
},
{
"label": 0,
"text": "List fonts available in illustrator with arbitrary strings",
"url": "https://github.com/fuyuton/illustrator_print_font_list",
"created_at": "2023-02-25T15:43:37Z"
},
{
"label": 0,
"text": "Stable Diffusion web UI bilingual localization extensions. SD WebUI双语对照翻译插件",
"url": "https://github.com/journey-ad/sd-webui-bilingual-localization",
"created_at": "2023-02-26T07:26:55Z"
},
{
"label": 0,
"text": "Micro Mahjong Pro68k for MicroPython X680x0",
"url": "https://github.com/tantangh/ujongpy",
"created_at": "2023-02-26T10:19:03Z"
},
{
"label": 0,
"text": "Collection of common data structures",
"url": "https://github.com/enchan1207/collection2",
"created_at": "2023-02-26T14:08:05Z"
},
{
"label": 0,
"text": "Generate C# FFI from Rust for automatically brings native code and C native library to .NET and Unity.",
"url": "https://github.com/cysharp/csbindgen",
"created_at": "2023-02-26T18:32:19Z"
},
{
"label": 0,
"text": "An LLM playground you can run on your laptop",
"url": "https://github.com/nat/openplayground",
"created_at": "2023-02-26T22:58:17Z"
},
{
"label": 0,
"text": "Official repo for consistency models.",
"url": "https://github.com/openai/consistency_models",
"created_at": "2023-02-26T23:57:45Z"
},
{
"label": 0,
"text": "An Open Source Machine Learning Framework for Everyone",
"url": "https://github.com/sail-sg/editanything",
"created_at": "2023-02-27T07:54:12Z"
},
{
"label": 0,
"text": "Quick-Show provides simple but powerful insight plots.",
"url": "https://github.com/dsdanielpark/bard-api",
"created_at": "2023-02-27T08:22:53Z"
},
{
"label": 0,
"text": "zoom and pan functionality ",
"url": "https://github.com/richrobber2/canvas-zoom",
"created_at": "2023-02-27T09:06:55Z"
},
{
"label": 0,
"text": "A extension for loading LyCORIS model in sd-webui",
"url": "https://github.com/kohakublueleaf/a1111-sd-webui-locon",
"created_at": "2023-02-27T09:16:31Z"
},
{
"label": 0,
"text": "Tiled Diffusion and VAE optimize, licensed under CC BY-NC-SA 4.0",
"url": "https://github.com/pkuliyi2015/multidiffusion-upscaler-for-automatic1111",
"created_at": "2023-02-27T14:23:49Z"
},
{
"label": 0,
"text": "Integrate cutting-edge LLM technology quickly and easily into your apps",
"url": "https://github.com/microsoft/semantic-kernel",
"created_at": "2023-02-27T17:39:42Z"
},
{
"label": 0,
"text": "Makes it easy to use sapi from Python.",
"url": "https://github.com/rilm2525/sapy5",
"created_at": "2023-02-28T04:48:31Z"
},
{
"label": 1,
"text": "A tool for Japanese-English translation and English-Japanese translation by using FuguMT",
"url": "https://github.com/tos-kamiya/tra-fugu",
"created_at": "2023-02-28T13:15:33Z"
},
{
"label": 0,
"text": "For ALTAS Open Data Web App",
"url": "https://github.com/aliceyixin/pmd-singing",
"created_at": "2023-02-28T14:28:09Z"
},
{
"label": 0,
"text": "Image Viewer for ATOMS3 / ATOMS3用画像表示",
"url": "https://github.com/3110/m5atoms3-image-viewer",
"created_at": "2023-02-28T16:42:05Z"
},
{
"label": 0,
"text": "Helping open source program offices get started",
"url": "https://github.com/github/github-ospo",
"created_at": "2023-03-01T00:20:42Z"
},
{
"label": 1,
"text": "Shell command launcher with natural language",
"url": "https://github.com/hirokidaichi/wanna",
"created_at": "2023-03-01T09:10:59Z"
},
{
"label": 1,
"text": "JaSPICE: Automatic Evaluation Metric Using Predicate-Argument Structures for Image Captioning Models",
"url": "https://github.com/keio-smilab23/JaSPICE",
"created_at": "2023-03-01T10:14:27Z"
},
{
"label": 0,
"text": "Plugin for inputting structured data in WordPress.",
"url": "https://github.com/yusukegotou/ai-writer",
"created_at": "2023-03-01T13:59:59Z"
},
{
"label": 0,
"text": "AI search & chat for Balaji Srinivasan's \"The Network State.\"",
"url": "https://github.com/mckaywrigley/chatbot-ui-pro",
"created_at": "2023-03-01T15:45:27Z"
},
{
"label": 0,
"text": "A Swift Package to easily get images from the camera and photos picker in SwiftUI",
"url": "https://github.com/stanfordbdhg/healthgpt",
"created_at": "2023-03-01T17:54:35Z"
},
{
"label": 0,
"text": "A project to issue Moezilla photobook including articles of Mozilla Firefox and Thunderbird history",
"url": "https://github.com/piroor/moezilla-memorial-photobook",
"created_at": "2023-03-01T20:38:34Z"
},
{
"label": 0,
"text": "The implementation of \"Prismer: A Vision-Language Model with An Ensemble of Experts\".",
"url": "https://github.com/nvlabs/prismer",
"created_at": "2023-03-02T00:20:34Z"
},
{
"label": 0,
"text": "Generate DBT Vault files from yml metadata!",
"url": "https://github.com/oracen/dbtvault-generator",
"created_at": "2023-03-02T00:50:35Z"
},
{
"label": 0,
"text": "Bun JS app doing basically nothing",
"url": "https://github.com/jarred-sumner/bun",
"created_at": "2023-03-02T02:46:33Z"
},
{
"label": 0,
"text": "🤖💬 Integrate ChatGPT into Slack using Cloudflare Workers",
"url": "https://github.com/shapehq/slack-chatgpt",
"created_at": "2023-03-02T10:16:09Z"
},
{
"label": 0,
"text": "JAX implementation of OpenAI's Whisper model for up to 70x speed-up on TPU.",
"url": "https://github.com/sanchit-gandhi/whisper-jax",
"created_at": "2023-03-02T12:30:52Z"
},
{
"label": 0,
"text": "A list of GitHub users who are living in Japan and are sponsor-able.",
"url": "https://github.com/azu/github-sponsorable-in-japan",
"created_at": "2023-03-02T12:45:43Z"
},
{
"label": 0,
"text": "introduction to freefem",
"url": "https://github.com/chibaf/introduction_to_freefem",
"created_at": "2023-03-02T13:39:02Z"
},
{
"label": 0,
"text": "OpenAI's ChatGPT API to create and post a summary of a Slack public channel.",
"url": "https://github.com/masuidrive/slack-summarizer",
"created_at": "2023-03-02T14:39:37Z"
},
{
"label": 0,
"text": "Turning Cloudflare Workers into a Certificate Authority that verifies incoming requests and issues short-lived SSH certificates.",
"url": "https://github.com/kory33/cf-worker-as-openssh-ca",
"created_at": "2023-03-02T19:11:11Z"
},
{
"label": 0,
"text": "Depth map library for use with the Control Net extension for Automatic1111/stable-diffusion-webui",
"url": "https://github.com/jexom/sd-webui-depth-lib",
"created_at": "2023-03-02T19:42:44Z"
},
{
"label": 0,
"text": "Simple yet effective command line client for chatting with ChatGPT using the official API",
"url": "https://github.com/marcolardera/chatgpt-cli",
"created_at": "2023-03-02T21:44:14Z"
},
{
"label": 0,
"text": "A simple ChatGPT Slack integration in Ruby",
"url": "https://github.com/ogukei/yoshino-radio",
"created_at": "2023-03-02T23:22:51Z"
},
{
"label": 0,
"text": "This project is used for lidar point cloud undistortion. ",
"url": "https://github.com/h-wata/livox_cloud_undistortion",
"created_at": "2023-03-03T02:52:36Z"
},
{
"label": 0,
"text": "Library to ask OpenAI GPT for generating objects on the Python runtime.",
"url": "https://github.com/odashi/davinci-functions",
"created_at": "2023-03-03T13:07:11Z"
},
{
"label": 0,
"text": "Enables use of ChatGPT directly from the UI",
"url": "https://github.com/hallatore/stable-diffusion-webui-chatgpt-utilities",
"created_at": "2023-03-03T17:48:31Z"
},
{
"label": 0,
"text": "https://cyberagent.connpass.com/event/270424/",
"url": "https://github.com/cyberagenthack/web-speed-hackathon-2023",
"created_at": "2023-03-03T23:59:27Z"
},
{
"label": 0,
"text": "Fork of Facebooks LLaMa model to run on CPU",
"url": "https://github.com/markasoftware/llama-cpu",
"created_at": "2023-03-04T00:25:59Z"
},
{
"label": 0,
"text": "ChatGPT for Scratch",
"url": "https://github.com/ichiroc/chatgpt2scratch",
"created_at": "2023-03-04T03:19:52Z"
},
{
"label": 0,
"text": "All-in-one chatbot client",
"url": "https://github.com/chathub-dev/chathub",
"created_at": "2023-03-04T12:21:10Z"
},
{
"label": 0,
"text": "Integrate OpenAI Chat API with command line",
"url": "https://github.com/tkawachi/aichat",
"created_at": "2023-03-04T14:29:49Z"
},
{
"label": 0,
"text": "🪄 Generate Kysely types directly from your Prisma schema!",
"url": "https://github.com/valtyr/prisma-kysely",
"created_at": "2023-03-04T18:32:22Z"
},
{
"label": 0,
"text": "Rewrite of blender-wiggle with new features and physics",
"url": "https://github.com/shteeve3d/blender-wiggle-2",
"created_at": "2023-03-05T00:24:42Z"
},
{
"label": 0,
"text": "A tool to divide a single illustration into a layered structure.",
"url": "https://github.com/mattyamonaca/layerdivider",
"created_at": "2023-03-05T01:04:12Z"
},
{
"label": 0,
"text": "⚡️ Simple, Modular & Accessible UI Components for your React Applications",
"url": "https://github.com/poteboy/kuma-ui",
"created_at": "2023-03-05T01:27:05Z"
},
{
"label": 0,
"text": "High-speed download of LLaMA, Facebook's 65B parameter GPT model",
"url": "https://github.com/shawwn/llama-dl",
"created_at": "2023-03-05T03:28:45Z"
},
{
"label": 0,
"text": "Script for applying exponential moving average filter to a list of images",
"url": "https://github.com/abyszone/abysz-lab-ext",
"created_at": "2023-03-05T05:23:32Z"
},
{
"label": 0,
"text": "Minecraft mod development framework used by Forge and FML for the gradle build system",
"url": "https://github.com/minedojo/minedojo",
"created_at": "2023-03-05T07:11:39Z"
},
{
"label": 0,
"text": "ChatGPT powered Rust proc macro that generates code at compile-time.",
"url": "https://github.com/retrage/gpt-macro",
"created_at": "2023-03-05T13:14:11Z"
},
{
"label": 0,
"text": "Clippings",
"url": "https://github.com/unclebob/cmuratori-discussion",
"created_at": "2023-03-05T19:26:18Z"
},
{
"label": 0,
"text": "Bringing stable diffusion models to web browsers. Everything runs inside the browser with no server support. ",
"url": "https://github.com/mlc-ai/web-stable-diffusion",
"created_at": "2023-03-06T00:50:51Z"
},
{
"label": 0,
"text": "netparamsのバックアップとリストア",
"url": "https://github.com/ndekopon/netparams_watcher",
"created_at": "2023-03-06T03:09:54Z"
},
{
"label": 0,
"text": "A repo for f-asset protocol.",
"url": "https://github.com/flare-labs-ltd/fassets",
"created_at": "2023-03-06T14:31:40Z"
},
{
"label": 0,
"text": "ROS wrapper for ChatGPT API",
"url": "https://github.com/koichirokato/chatgpt_ros",
"created_at": "2023-03-06T15:45:51Z"
},
{
"label": 0,
"text": "Detects new versions of EKS",
"url": "https://github.com/k-kinzal/eks-release-detecter",
"created_at": "2023-03-07T00:58:41Z"
},
{
"label": 1,
"text": "GUI for ChatGPT API For Japanese",
"url": "https://github.com/gyokuro33/ChuanhuChatGPTJapanese",
"created_at": "2023-03-07T04:33:22Z"
},
{
"label": 0,
"text": "p5.js diagram within rustdoc",
"url": "https://github.com/termoshtt/p5doc",
"created_at": "2023-03-07T08:20:50Z"
},
{
"label": 1,
"text": "AITuberの基礎となる部分を開発しています",
"url": "https://github.com/M-gen/AITuberDegikkoMirii",
"created_at": "2023-03-07T11:13:05Z"
},
{
"label": 0,
"text": "Transcribe and translate your audio files - for free",
"url": "https://github.com/beyondcode/writeout.ai",
"created_at": "2023-03-07T12:44:26Z"
},
{
"label": 0,
"text": "GitHub Actions to summarize diffs of CloudFormation stack",
"url": "https://github.com/taichi/actions-cfn-diff",
"created_at": "2023-03-07T13:56:22Z"
},
{
"label": 0,
"text": "Starting ngrok and acquiring URL, and updating the Webhook URL in the LINE Developers console at the same time. ",
"url": "https://github.com/miso-develop/linegrok",
"created_at": "2023-03-07T16:26:32Z"
},
{
"label": 0,
"text": "This page summarizes data visualization for time-to-event analysis with an exposure with natural spline function",
"url": "https://github.com/fujichaaan/plot_hazard_ratio_spline",
"created_at": "2023-03-07T20:49:51Z"
},
{
"label": 0,
"text": "A repository containing the implementations about our machine learning researches on sequence data and sequential decision making.",
"url": "https://github.com/microsoft/podcastcopilot",
"created_at": "2023-03-08T05:49:51Z"
},
{
"label": 0,
"text": "This firmware is merged from Blueretro source firmware (darthcloud)",
"url": "https://github.com/retroscaler/gbsc",
"created_at": "2023-03-08T07:13:48Z"
},
{
"label": 0,
"text": "some source files for testing future of mplapack",
"url": "https://github.com/nakatamaho/mplapack-tests",
"created_at": "2023-03-08T08:29:56Z"
},
{
"label": 0,
"text": "Learn Motoko, get started on the Internet Computer, and meet other builders - all in one week. ",
"url": "https://github.com/motoko-bootcamp/motoko-starter",
"created_at": "2023-03-08T10:59:10Z"
},
{
"label": 0,
"text": "Poor man's ngrok - a multi-tenant HTTP/TCP reverse tunnel solution through SSH remote port forwarding",
"url": "https://github.com/pgrok/pgrok",
"created_at": "2023-03-08T12:43:55Z"
},
{
"label": 1,
"text": "Japanese text parser to separate Hiragana/Katakana string into morae (syllables).",
"url": "https://github.com/tachi-hi/jamorasep",
"created_at": "2023-03-08T13:54:34Z"
},
{
"label": 0,
"text": "Type-safe, implementation-agnostic event contract framework.",
"url": "https://github.com/open-draft/event-contract",
"created_at": "2023-03-08T17:24:44Z"
},
{
"label": 0,
"text": "fzf-make is the command line tool that execute make target using fuzzy finder with preview window.",
"url": "https://github.com/kyu08/fzf-make",
"created_at": "2023-03-08T17:26:51Z"
},
{
"label": 0,
"text": "AI search & chat on your Kindle highlights.",
"url": "https://github.com/mckaywrigley/kindle-gpt",
"created_at": "2023-03-08T22:17:01Z"
},
{
"label": 0,
"text": "ChatGPT reads Scrapbox",
"url": "https://github.com/nishio/scrapbox_chatgpt_connector",
"created_at": "2023-03-09T01:22:41Z"
},
{
"label": 0,
"text": "list of projects and implementations in the AT protocol ecosystem",
"url": "https://github.com/bluesky-social/atproto-ecosystem",
"created_at": "2023-03-09T02:12:36Z"
},
{
"label": 0,
"text": "Unofficial typing package for @minecraft/server-editor.",
"url": "https://github.com/lapis256/unofficial-server-editor",
"created_at": "2023-03-09T04:43:10Z"
},
{
"label": 0,
"text": "Hylics 2 日本語化mod",
"url": "https://github.com/abym281/hylics-2-japanization",
"created_at": "2023-03-09T07:24:15Z"
},
{
"label": 1,
"text": "DistilBERT model pre-trained on 131 GB of Japanese web text. The teacher model is BERT-base that built in-house at LINE.",
"url": "https://github.com/line/LINE-DistilBERT-Japanese",
"created_at": "2023-03-09T08:57:38Z"
},
{
"label": 0,
"text": "YouTube ReVanced for Android 6.0-7.1",
"url": "https://github.com/kitadai31/revanced-patches-android6-7",
"created_at": "2023-03-09T15:20:43Z"
},
{
"label": 0,
"text": "🔍 Explore what happens under the hood with the ChatGPT web app, its backend API calls and more. And some speculation, of course.",
"url": "https://github.com/terminalcommandnewsletter/everything-chatgpt",
"created_at": "2023-03-09T16:26:26Z"
},
{
"label": 1,
"text": "このサンプルでは、Retrieval Augmented Generation パターンを使用して、独自のデータに対してChatGPT のような体験を作成するためのいくつかのアプローチを示しています。",
"url": "https://github.com/nohanaga/azure-search-openai-demo",
"created_at": "2023-03-09T23:27:32Z"
},
{
"label": 0,
"text": "SoftVC VITS Singing Voice Conversion",
"url": "https://github.com/svc-develop-team/so-vits-svc",
"created_at": "2023-03-10T09:31:09Z"
},
{
"label": 0,
"text": "Official implementation of VLPCook: Vision and Structured-Language Pretraining for Cross-Modal Food Retrieval",
"url": "https://github.com/mshukor/ep-alm",
"created_at": "2023-03-10T10:13:44Z"
},
{
"label": 0,
"text": "A Very Good Flutter Wear OS App Starter Project created by the Very Good Ventures Team 🦄",
"url": "https://github.com/verygoodopensource/very_good_wear_app",
"created_at": "2023-03-10T13:18:05Z"
},
{
"label": 0,
"text": "✨ Build AI interfaces that spark joy",
"url": "https://github.com/prefecthq/marvin",
"created_at": "2023-03-10T18:44:40Z"
},
{
"label": 0,
"text": "Deploys a web-based ecommerce app into a multi-cluster Google Kubernetes Engine setup.",
"url": "https://github.com/googlecloudplatform/guest-agent",
"created_at": "2023-03-10T19:19:50Z"
},
{
"label": 0,
"text": "🐱 cat alternative written in Go.",
"url": "https://github.com/koki-develop/gat",
"created_at": "2023-03-11T07:58:05Z"
},
{
"label": 0,
"text": "INFINITAS打鍵カウンタの開発用 for Developing INFINITAS_daken_counter",
"url": "https://github.com/dj-kata/inf_daken_counter_obsw",
"created_at": "2023-03-11T14:00:40Z"
},
{
"label": 0,
"text": "An open source ChatGPT UI.",
"url": "https://github.com/mckaywrigley/chatbot-ui",
"created_at": "2023-03-11T14:53:14Z"
},
{
"label": 0,
"text": "RG35XX Custom Firmware Documentation",
"url": "https://github.com/rg35xx-cfw/rg35xx-cfw.github.io",
"created_at": "2023-03-11T15:05:15Z"
},
{
"label": 0,
"text": "A layer for using Inochi2D with non-D programming languages via a C ABI",
"url": "https://github.com/seagetch/inochi2d-c",
"created_at": "2023-03-11T18:07:40Z"
},
{
"label": 0,
"text": "Implementation of X/Twitter v1, v2, and GraphQL APIs",
"url": "https://github.com/trevorhobenshield/twitter-api-client",
"created_at": "2023-03-11T18:09:08Z"
},
{
"label": 0,
"text": "Cutoff - Cutting Off Prompt Effect",
"url": "https://github.com/hnmr293/sd-webui-cutoff",
"created_at": "2023-03-11T18:40:01Z"
},
{
"label": 0,
"text": "📬 A feature-rich and easy-to-use ChatGPT client for your teminal",
"url": "https://github.com/kznrluk/aski",
"created_at": "2023-03-12T04:54:18Z"
},
{
"label": 0,
"text": "Chrome Extension : Price Hitory Graph for Japanese Amazon Kindle Books",
"url": "https://github.com/yto/kiseppe",
"created_at": "2023-03-12T05:14:31Z"
},
{
"label": 0,
"text": "Port of Facebook's LLaMA model in C/C++",
"url": "https://github.com/jaykrell/llama.cpp",
"created_at": "2023-03-12T05:25:25Z"
},
{
"label": 0,
"text": "Image postprocessing extension for stable diffusion webui.",
"url": "https://github.com/zuellni/stable-diffusion-webui-image-filters",
"created_at": "2023-03-12T10:11:41Z"
},
{
"label": 0,
"text": "Removes backgrounds from pictures. Extension for webui.",
"url": "https://github.com/automatic1111/stable-diffusion-webui-rembg",
"created_at": "2023-03-12T15:32:44Z"
},
{
"label": 0,
"text": "The Open Source DocuSign Alternative.",
"url": "https://github.com/documenso/documenso",
"created_at": "2023-03-12T16:28:56Z"
},
{
"label": 0,
"text": "C++ implementation for BLOOM",
"url": "https://github.com/nouamanetazi/bloomz.cpp",
"created_at": "2023-03-12T18:40:53Z"
},
{
"label": 0,
"text": "The simplest way to run LLaMA on your local machine",
"url": "https://github.com/cocktailpeanut/dalai",
"created_at": "2023-03-12T20:07:32Z"
},
{
"label": 0,
"text": "Guess the width (fwf) output without delimiters in commands that output to the terminal.",
"url": "https://github.com/noborus/guesswidth",
"created_at": "2023-03-13T00:51:51Z"
},
{
"label": 0,
"text": "Power Assert in Swift.",
"url": "https://github.com/kishikawakatsumi/swift-power-assert",
"created_at": "2023-03-13T05:33:17Z"
},
{
"label": 0,
"text": "Python SDK for large QUBO problems",
"url": "https://github.com/tytansdk/tytan",
"created_at": "2023-03-13T08:59:40Z"
},
{
"label": 0,
"text": "Simple UART modules in SystemVerilog",
"url": "https://github.com/kenta11/simple_uart",
"created_at": "2023-03-13T12:55:55Z"
},
{
"label": 0,
"text": "Build Python LLM apps in minutes ⚡️",
"url": "https://github.com/chainlit/chainlit",
"created_at": "2023-03-14T16:54:04Z"
},
{
"label": 0,
"text": "Code for the paper \"ViperGPT: Visual Inference via Python Execution for Reasoning\"",
"url": "https://github.com/cvlab-columbia/viper",
"created_at": "2023-03-14T18:17:22Z"
},
{
"label": 0,
"text": "MoonRay is DreamWorks’ open-source, award-winning, state-of-the-art production MCRT renderer.",
"url": "https://github.com/dreamworksanimation/openmoonray",
"created_at": "2023-03-14T22:36:08Z"
},
{
"label": 1,
"text": "Japanese Daily Dialogue, or 日本語日常対話コーパス in Japanese, is a high-quality multi-turn dialogue dataset containing daily conversations on five topics: dailylife, school, travel, health, and entertainment.",
"url": "https://github.com/jqk09a/japanese-daily-dialogue",
"created_at": "2023-03-15T07:53:41Z"
},
{
"label": 0,
"text": "the POE of Quora golang implement",
"url": "https://github.com/acheong08/bard",
"created_at": "2023-03-15T08:41:24Z"
},
{
"label": 0,
"text": "2023年5月28日に日本経済学会春季大会にて開催されたチュートリアル・セッション(共催:日本学術会議 数量的経済・政策分析分科会)「DIDの計量経済手法の近年の展開」のサポートサイトとしてスライド資料(講義編・演習基礎編・演習応用編)、Stataコード、Rコードを提供しています.",
"url": "https://github.com/kazuyanagimoto/staggered_did_tutorial",
"created_at": "2023-03-15T09:47:55Z"
},
{
"label": 0,
"text": "so-vits-svc fork with realtime support, improved interface and more features.",
"url": "https://github.com/voicepaw/so-vits-svc-fork",
"created_at": "2023-03-15T14:15:50Z"
},
{
"label": 0,
"text": "Revisiting some popular Design Patterns using Java 20+ features",
"url": "https://github.com/yanaga/revisiting-design-patterns",
"created_at": "2023-03-16T08:04:18Z"
},
{
"label": 0,
"text": "Self-hosted AI coding assistant",
"url": "https://github.com/tabbyml/tabby",
"created_at": "2023-03-16T09:18:01Z"
},
{
"label": 0,
"text": "Locally run an Instruction-Tuned Chat-Style LLM ",
"url": "https://github.com/antimatter15/alpaca.cpp",
"created_at": "2023-03-16T10:58:48Z"
},
{
"label": 0,
"text": "夢小説向け名前変換",
"url": "https://github.com/tar-bin/dream-novel",
"created_at": "2023-03-16T14:16:11Z"
},
{
"label": 0,
"text": "Convert code repos into an LLM prompt-friendly format. Mostly built by GPT-4.",
"url": "https://github.com/mpoon/gpt-repository-loader",
"created_at": "2023-03-16T19:13:41Z"
},
{
"label": 0,
"text": "Code and documentation to train Stanford's Alpaca models, and generate the data.",
"url": "https://github.com/johnkeigo/stanford_alpaca",
"created_at": "2023-03-17T00:30:13Z"
},
{
"label": 0,
"text": "GPT4 & LangChain Chatbot for large PDF docs",
"url": "https://github.com/mayooear/gpt4-pdf-chatbot-langchain",
"created_at": "2023-03-17T01:23:26Z"
},
{
"label": 0,
"text": "Tool to convert markdown list to Excel",
"url": "https://github.com/kenjiohtsuka/mael",
"created_at": "2023-03-17T09:03:25Z"
},
{
"label": 0,
"text": "Whisper command line client compatible with original OpenAI client based on CTranslate2.",
"url": "https://github.com/softcatala/whisper-ctranslate2",
"created_at": "2023-03-17T10:19:45Z"
},
{
"label": 0,
"text": "Progressive, error tolerant, wavelet-based image compression algorithm",
"url": "https://github.com/therealorange/icer_compression",
"created_at": "2023-03-17T10:37:38Z"
},
{
"label": 0,
"text": "VRM_AI fork edition for CeVIO",
"url": "https://github.com/inuinu2022/nodoame.home",
"created_at": "2023-03-17T11:17:43Z"
},
{
"label": 0,
"text": "It allows you to lovely create a nicely commit message like this",
"url": "https://github.com/hidemaruowo/pummit",
"created_at": "2023-03-17T12:38:25Z"
},
{
"label": 1,
"text": "CAMERA (CyberAgent Multimodal Evaluation for Ad Text GeneRAtion) for huggingface datasets",
"url": "https://github.com/shunk031/huggingface-datasets_CAMERA",
"created_at": "2023-03-17T14:03:12Z"
},
{
"label": 0,
"text": "A command-line tool to easily kill processes running on a specified port.",
"url": "https://github.com/jkfran/killport",
"created_at": "2023-03-17T14:21:02Z"
},
{
"label": 0,
"text": "Zero-1-to-3: Zero-shot One Image to 3D Object (ICCV 2023)",
"url": "https://github.com/cvlab-columbia/zero123",
"created_at": "2023-03-17T23:23:09Z"
},
{
"label": 0,
"text": "Locally run an Instruction-Tuned Chat-Style LLM (Android/Linux/Windows/Mac)",
"url": "https://github.com/rupeshs/alpaca.cpp",
"created_at": "2023-03-18T10:23:36Z"
},
{
"label": 0,
"text": "Useful tools for Genshin Impact players",
"url": "https://github.com/chika3742/genshin-material",
"created_at": "2023-03-18T11:53:13Z"
},
{
"label": 0,
"text": "very simple nextjs apps used to manually test next-on-pages, until we find a better solution",
"url": "https://github.com/dario-piotrowicz/next-apps-for-testing",
"created_at": "2023-03-18T13:13:35Z"
},
{
"label": 1,
"text": "OpenAIのAPIを利用して、設定したキャラクターと日本語で会話するチャットスクリプトです。",
"url": "https://github.com/mutaguchi/character_chat",
"created_at": "2023-03-18T18:35:20Z"
},
{
"label": 0,
"text": "✨ Kubectl plugin for OpenAI GPT",
"url": "https://github.com/sozercan/kubectl-ai",
"created_at": "2023-03-19T01:16:05Z"
},
{
"label": 0,
"text": "Ignore files matcher for ddu.vim",
"url": "https://github.com/shougo/ddu-filter-matcher_ignore_files",
"created_at": "2023-03-19T01:46:20Z"
},
{
"label": 0,
"text": "同人誌即売会用のレジアプリ",
"url": "https://github.com/cm-ayf/kiradopay2",
"created_at": "2023-03-19T12:59:44Z"
},
{
"label": 0,
"text": "set prompt to divided region",
"url": "https://github.com/hako-mikan/sd-webui-regional-prompter",
"created_at": "2023-03-19T14:46:35Z"
},
{
"label": 0,
"text": "VPM repository by kurotu",
"url": "https://github.com/kurotu/vpm-repos",
"created_at": "2023-03-19T17:24:35Z"
},
{
"label": 0,
"text": "`nostr-filter` is a Nostr relay server that filters messages based on regular expressions.",
"url": "https://github.com/imksoo/nostr-filter",
"created_at": "2023-03-20T00:37:41Z"
},
{
"label": 0,
"text": "X68000 IOCS Graphics lib for micropython68k",
"url": "https://github.com/yosawed/68graphiclib-mpy",
"created_at": "2023-03-20T07:12:15Z"
},
{
"label": 0,
"text": "Library for Unity to use Koeiromap",
"url": "https://github.com/ayutaz/koeiromap-unity",
"created_at": "2023-03-20T11:53:26Z"
},
{
"label": 0,
"text": "Tutorial for extracting the GameBoy ROM from photographs of the die.",
"url": "https://github.com/travisgoodspeed/gbrom-tutorial",
"created_at": "2023-03-20T19:29:25Z"
},
{
"label": 0,
"text": "A simple example app which runs the excellent T3 Stack on the Edge runtime, with Next.js's beta App Router. Database queries with drizzle-orm.",
"url": "https://github.com/mattddean/t3-app-router-edge-drizzle",
"created_at": "2023-03-21T03:12:56Z"
},
{
"label": 0,
"text": "YOLOX-ti-lite models exportable to TFLite",
"url": "https://github.com/motokimura/yolox-ti-lite_tflite",
"created_at": "2023-03-21T08:13:18Z"
},
{
"label": 0,
"text": "Compose Multiplatform iOS+Android Application project template",
"url": "https://github.com/jetbrains/compose-multiplatform-ios-android-template",
"created_at": "2023-03-21T10:49:37Z"
},
{
"label": 1,
"text": "ChatGPTを使ってVRChat上でお喋り出来るようにするプログラム。",
"url": "https://github.com/Yuchi-Games/VRChatGPT",
"created_at": "2023-03-21T10:54:09Z"
},
{
"label": 0,
"text": "Pointcept: a codebase for point cloud perception research. Latest works: PPT, MSC (CVPR'23), PTv2 (NeurIPS'22)",
"url": "https://github.com/pointcept/segmentanything3d",
"created_at": "2023-03-21T17:28:09Z"
},
{
"label": 0,
"text": "Giving Kubernetes Superpowers to everyone",
"url": "https://github.com/k8sgpt-ai/k8sgpt",
"created_at": "2023-03-21T19:58:16Z"
},
{
"label": 0,
"text": "Notion-style WYSIWYG editor with AI-powered autocompletion.",
"url": "https://github.com/steven-tey/novel",
"created_at": "2023-03-21T21:14:33Z"
},
{
"label": 1,
"text": "日本語に翻訳したStanford Alpacaのデータセットを用いてLLaMAをファインチューニングし作成したLow-Rank AdapterのリンクとGenerateサンプルコード",
"url": "https://github.com/kunishou/Japanese-Alpaca-LoRA",
"created_at": "2023-03-22T14:04:55Z"
},
{
"label": 0,
"text": "An easy way to install & update anatawa12's gists at once.",
"url": "https://github.com/anatawa12/unity-gist-pack",
"created_at": "2023-03-22T16:05:51Z"
},
{
"label": 0,
"text": "Untitled Goose Tool is a robust and flexible hunt and incident response tool that adds novel authentication and data gathering methods in order to run a full investigation against a customer’s Azure Active Directory (AzureAD), Azure, and M365 environments.",
"url": "https://github.com/cisagov/untitledgoosetool",
"created_at": "2023-03-22T18:59:51Z"
},
{
"label": 0,
"text": "Insert example-files into `README.md` at the code block in the current directory.",
"url": "https://github.com/hymkor/example-into-readme",
"created_at": "2023-03-22T19:42:57Z"
},
{
"label": 0,
"text": "RIFF file format viewer application",
"url": "https://github.com/yu2924/bodeanalyzer",
"created_at": "2023-03-22T20:14:30Z"
},
{
"label": 0,
"text": "The R9 operating system",
"url": "https://github.com/r9os/r9",
"created_at": "2023-03-22T20:17:55Z"
},
{
"label": 0,
"text": "The yoctoproject layer for the Akizuki AM3352 SBC board",
"url": "https://github.com/mickey-happygolucky/meta-am3352-aki",
"created_at": "2023-03-22T20:49:38Z"
},
{
"label": 0,
"text": "The ChatGPT Retrieval Plugin lets you easily find personal or work documents by asking questions in natural language.",
"url": "https://github.com/openai/chatgpt-retrieval-plugin",
"created_at": "2023-03-23T06:06:22Z"
},
{
"label": 0,
"text": "Python bindings for llama.cpp",
"url": "https://github.com/abetlen/llama-cpp-python",
"created_at": "2023-03-23T09:30:33Z"
},
{
"label": 0,
"text": "artificial metrics exporter",
"url": "https://github.com/peng225/any-exporter",
"created_at": "2023-03-23T14:22:25Z"
},
{
"label": 0,
"text": "The repository provides code for running inference with the SegmentAnything Model (SAM), links for downloading the trained model checkpoints, and example notebooks that show how to use the model.",
"url": "https://github.com/facebookresearch/segment-anything",
"created_at": "2023-03-23T17:03:03Z"
},
{
"label": 0,
"text": "個人開発向け廉価版屋外移動ロボットプラットフォームの資料",
"url": "https://github.com/hijimasa/reasonable-outdoor-mobile-robot",
"created_at": "2023-03-23T20:33:42Z"
},
{
"label": 0,
"text": "NGS戦闘力計算シミュレーターです",
"url": "https://github.com/stopinternet/ngs_simulator",
"created_at": "2023-03-24T00:54:35Z"
},
{
"label": 0,
"text": "Entire code in this repository will be written by ChatGPT! Prompts and Outputs are available in COMMIT MESSAGE.",
"url": "https://github.com/kakudo415/chatgpt-screenshot",
"created_at": "2023-03-24T01:39:55Z"
},
{
"label": 0,
"text": "Ixy(いくしー)の紹介Webページを作る",
"url": "https://github.com/ixy194194/ixy194194.github.io",
"created_at": "2023-03-24T02:12:53Z"
},
{
"label": 0,
"text": "Promptr is a CLI tool that lets you use plain English to instruct GPT3 or GPT4 to make changes to your codebase. ",
"url": "https://github.com/ferrislucas/promptr",
"created_at": "2023-03-24T02:38:38Z"
},
{
"label": 0,
"text": "CVPR 2023: PAniC-3D Stylized Single-view 3D Reconstruction from Portraits of Anime Characters",
"url": "https://github.com/shuhongchen/panic3d-anime-reconstruction",
"created_at": "2023-03-24T02:40:40Z"
},
{
"label": 0,
"text": "Defocusによる画像ボケを利用した深度推定",
"url": "https://github.com/panda5mt/depth_estimate_blur",
"created_at": "2023-03-24T03:37:05Z"
},
{
"label": 0,
"text": "babylon.js mmd loader and runtime",
"url": "https://github.com/noname0310/babylon-mmd",
"created_at": "2023-03-24T11:15:24Z"
},
{
"label": 0,
"text": "🔍 Fuzzy Finder CLI and Library.",
"url": "https://github.com/koki-develop/go-fzf",
"created_at": "2023-03-24T12:18:49Z"
},
{
"label": 0,
"text": "Sources of the blog website",
"url": "https://github.com/zladx/ladx-disassembly",
"created_at": "2023-03-24T15:00:13Z"
},
{
"label": 0,
"text": "Databricks’ Dolly, a large language model trained on the Databricks Machine Learning Platform",
"url": "https://github.com/databrickslabs/dolly",
"created_at": "2023-03-24T16:15:53Z"
},
{
"label": 0,
"text": "Private Q&A and summarization of documents+images or chat with local GPT, 100% private, Apache 2.0. Supports LLaMa2, llama.cpp, and more. Demo: https://gpt.h2o.ai/",
"url": "https://github.com/h2oai/h2ogpt",
"created_at": "2023-03-24T21:31:25Z"
},
{
"label": 1,
"text": "This Chrome extension can translate selected Japanese text to Hiragana by using ChatGPT.",
"url": "https://github.com/franzwong/chrome-ext-translate-to-hiragana-with-chatgpt",
"created_at": "2023-03-25T11:09:08Z"
},
{
"label": 0,
"text": "Rockchip系SoCのHWエンコーダ(rkmpp)の性能実験",
"url": "https://github.com/rigaya/rkmppenc",
"created_at": "2023-03-26T00:03:38Z"
},
{
"label": 0,
"text": "Tiled Diffusion and VAE optimize",
"url": "https://github.com/runo0044/chatgpt-gui",
"created_at": "2023-03-26T04:11:29Z"
},
{
"label": 0,
"text": "私, ウサミ(ブロジマ)のポートフォリオです。主にフリーランスエンジニア活動で作成した成果物や研究で作成したプログラムを載せています。ぜひ, ご覧下さい!",
"url": "https://github.com/fbikou/job-hunting-portfolio",
"created_at": "2023-03-26T04:36:35Z"
},
{
"label": 0,
"text": "ChatGPT app generate recipe from foods. I couldn't release because of API fee.",
"url": "https://github.com/dala00/ai-recipe",
"created_at": "2023-03-26T06:17:46Z"
},
{
"label": 0,
"text": "Voron TapChanger",
"url": "https://github.com/viesturz/tapchanger",
"created_at": "2023-03-26T09:08:43Z"
},
{
"label": 0,
"text": "Mac app for crushing remote tech interviews with AI",
"url": "https://github.com/leetcode-mafia/cheetah",
"created_at": "2023-03-26T21:31:29Z"
},
{
"label": 0,
"text": "Network Kanji Filter for X68K",
"url": "https://github.com/nozwas/nkf-x68k",
"created_at": "2023-03-27T01:26:36Z"
},
{
"label": 0,
"text": "Nothing to see here",
"url": "https://github.com/pingdotgg/zact",
"created_at": "2023-03-27T03:20:41Z"
},
{
"label": 0,
"text": "Thin is a translation plugin powerd by deepl",
"url": "https://github.com/torikatsupg/deepl.nvim",
"created_at": "2023-03-27T04:08:06Z"
},
{
"label": 0,
"text": "A checkout sdk for https://lemonsqueezy.com",
"url": "https://github.com/pandodao/lemon-checkout-go",
"created_at": "2023-03-27T06:26:57Z"
},
{
"label": 0,
"text": "pandasの勉強",
"url": "https://github.com/katsuya414/pandas-",
"created_at": "2023-03-27T06:38:10Z"
},
{
"label": 0,
"text": "Voice data <= 10 mins can also be used to train a good VC model!",
"url": "https://github.com/rvc-project/retrieval-based-voice-conversion-webui",
"created_at": "2023-03-27T09:59:10Z"
},
{
"label": 0,
"text": "🎓 Railsチュートリアルで採用しているクラウド開発環境『GitHub Codespaces』のテンプレートです。",
"url": "https://github.com/yasslab/codespaces-railstutorial",
"created_at": "2023-03-27T11:13:32Z"
},
{
"label": 0,
"text": "Source code for Twitter's Recommendation Algorithm",
"url": "https://github.com/twitter/the-algorithm",
"created_at": "2023-03-27T14:57:57Z"
},
{
"label": 0,
"text": "Automate your browser with GPT-4",
"url": "https://github.com/taxyai/browser-extension",
"created_at": "2023-03-27T16:47:30Z"
},
{
"label": 0,
"text": "gpt4all: an ecosystem of open-source chatbots trained on a massive collections of clean assistant data including code, stories and dialogue",
"url": "https://github.com/nomic-ai/gpt4all",
"created_at": "2023-03-27T18:49:32Z"
},
{
"label": 0,
"text": "CUI terminal software for MSX0. ",
"url": "https://github.com/akio-se/msxterm",
"created_at": "2023-03-28T01:13:50Z"
},
{
"label": 0,
"text": "Speed up Stable Diffusion with this one simple trick!",
"url": "https://github.com/dbolya/tomesd",
"created_at": "2023-03-28T01:41:05Z"
},
{
"label": 0,
"text": "Investigation for using PyPy + cppyy in competition programming",
"url": "https://github.com/likein12/pypy-cppyy-eval-pub",
"created_at": "2023-03-28T03:05:44Z"
},
{
"label": 0,
"text": "Graph data structure implemented in Go",
"url": "https://github.com/tadateruki/graph",
"created_at": "2023-03-28T05:56:06Z"
},
{
"label": 0,
"text": "licensed under CC BY-NC-SA 4.0 MIT",
"url": "https://github.com/suspiciousceo/mass-production-type-mdf-stack-chan",
"created_at": "2023-03-28T09:40:19Z"
},
{
"label": 0,
"text": "openapiスキーマからrunnのテストを生成するoss",
"url": "https://github.com/calloc134/openapi2runn",
"created_at": "2023-03-28T09:50:29Z"
},
{
"label": 0,
"text": "Hardware-accelerated, deep-learned freespace segmentation",
"url": "https://github.com/nvidia-isaac-ros/isaac_ros_freespace_segmentation",
"created_at": "2023-03-28T22:12:25Z"
},
{
"label": 0,
"text": "CHIP-8 emulator that runs inside the game cabinet",
"url": "https://github.com/jay-kumogata/pyxelchip8",
"created_at": "2023-03-28T22:57:46Z"
},
{
"label": 0,
"text": "A GUI to remotely steer the Deforum motions in real time",
"url": "https://github.com/rakile/deforumation",
"created_at": "2023-03-28T23:31:05Z"
},
{
"label": 0,
"text": "Simple PNG decoder",
"url": "https://github.com/yohhoy/picopdec",
"created_at": "2023-03-29T01:14:48Z"
},
{
"label": 0,
"text": "dump of tos ipfs",
"url": "https://github.com/ajinorisan/tosaddon-public",
"created_at": "2023-03-29T06:27:03Z"
},
{
"label": 0,
"text": "ivorysql website 这是IvorySQL开源项目的静态网页项目,生成网页工具为antora,网页格式为asciidoc。",
"url": "https://github.com/ivorysql/ivorysql",
"created_at": "2023-03-29T09:05:57Z"
},
{
"label": 0,
"text": "PowerRename for Unity is Unity editor extension for renaming GameObjects in hierarchy.",
"url": "https://github.com/natsuneko-laboratory/power-rename",
"created_at": "2023-03-29T09:42:19Z"
},
{
"label": 0,
"text": "Minecraft Fascinating Command Competition",
"url": "https://github.com/mofutacomane/mfcc_ancient",
"created_at": "2023-03-29T13:18:13Z"
},
{
"label": 0,
"text": "GitHub token permissions Monitor and Advisor actions",
"url": "https://github.com/githubsecuritylab/actions-permissions",
"created_at": "2023-03-29T15:37:58Z"
},
{
"label": 0,
"text": "PyTorch code and models for the DINOv2 self-supervised learning method.",
"url": "https://github.com/facebookresearch/dinov2",
"created_at": "2023-03-29T16:00:37Z"
},
{
"label": 0,
"text": "The official gpt4free repository | various collection of powerful language models",
"url": "https://github.com/xtekky/gpt4free",
"created_at": "2023-03-29T17:00:43Z"
},
{
"label": 0,
"text": "AI on the command line",
"url": "https://github.com/charmbracelet/mods",
"created_at": "2023-03-29T19:41:23Z"
},
{
"label": 0,
"text": "CLI tool to touch VOICEPEAK from the command line.",
"url": "https://github.com/shinshin86/vpeak",
"created_at": "2023-03-29T21:07:47Z"
},
{
"label": 1,
"text": "ChatGPT3.5を搭載した伺かゴースト「AI妹アイちゃん」です。利用には別途ChatGPTのAPIキーが必要です。",
"url": "https://github.com/manju-summoner/AISisterAIChan",
"created_at": "2023-03-30T09:40:42Z"
},
{
"label": 0,
"text": "INT4/INT5/INT8 and FP16 inference on CPU for RWKV language model",
"url": "https://github.com/saharnooby/rwkv.cpp",
"created_at": "2023-03-30T13:26:47Z"
},
{
"label": 0,
"text": "Windows compile of bitsandbytes for use in text-generation-webui.",
"url": "https://github.com/jllllll/bitsandbytes-windows-webui",
"created_at": "2023-03-30T22:52:29Z"
},
{
"label": 0,
"text": "Environment-agnostic, ESM-friendly logger for simple needs.",
"url": "https://github.com/open-draft/logger",
"created_at": "2023-03-30T23:06:10Z"
},
{
"label": 0,
"text": "n-bit counter built on pla-rail layout.",
"url": "https://github.com/akamah/n-bit-counter-2023",
"created_at": "2023-03-31T05:19:15Z"
},
{
"label": 0,
"text": "trurl is a command line tool for URL parsing and manipulation.",
"url": "https://github.com/curl/trurl",
"created_at": "2023-03-31T08:54:39Z"
},
{
"label": 0,
"text": "Java library for efficiently working with heap and off-heap memory",
"url": "https://github.com/dmikurube/slice",
"created_at": "2023-03-31T08:55:12Z"
},
{
"label": 0,
"text": "Draw easing function envelope for reaper",
"url": "https://github.com/crackerjacques/reascript-export_izotope_rx_from_reaper",
"created_at": "2023-03-31T19:11:22Z"
},
{
"label": 1,
"text": "alpacaデータセットを日本語化したものです",
"url": "https://github.com/shi3z/alpaca_ja",
"created_at": "2023-03-31T22:03:32Z"
},
{
"label": 0,
"text": "ORIGINAL source code for Twitter's Recommendation Algorithm with author_is_elon \"if\"(see the link below)",
"url": "https://github.com/b1z0n/twitter-algorithm-with-author_is_elon",
"created_at": "2023-03-31T22:56:03Z"
},
{
"label": 0,
"text": "A collection of boost task scripts that accelerate daily development✨",
"url": "https://github.com/comamoca/boost.task",
"created_at": "2023-04-01T09:14:21Z"
},
{
"label": 0,
"text": "JavaScript",
"url": "https://github.com/globalprogramminglaboratory/python",
"created_at": "2023-04-01T14:57:56Z"
},
{
"label": 0,
"text": "Rails7 標準の scaffold に、いくつか機能を追加したテンプレートです。",
"url": "https://github.com/mikoto2000/ya-rails-template",
"created_at": "2023-04-01T20:14:05Z"
},
{
"label": 0,
"text": "ToMe extension for Stable Diffusion A1111 WebUI",
"url": "https://github.com/slapaper/a1111-sd-webui-tome",
"created_at": "2023-04-01T21:57:13Z"
},
{
"label": 0,
"text": "PNG utilities tool",
"url": "https://github.com/yohhoy/pngutil",
"created_at": "2023-04-02T14:12:22Z"
},
{
"label": 0,
"text": "[Not production ready] Tortoise: Shell-Shockingly Good Kubernetes \"Truly-Automated\" Autoscaling",
"url": "https://github.com/mercari/tortoise",
"created_at": "2023-04-03T03:19:57Z"
},
{
"label": 0,
"text": "Rustで書かれたRESTAPIテストツール",
"url": "https://github.com/calloc134/raxtest",
"created_at": "2023-04-03T08:34:53Z"
},
{
"label": 0,
"text": "A Markdown browser for your terminal",
"url": "https://github.com/textualize/frogmouth",
"created_at": "2023-04-03T08:41:03Z"
},
{
"label": 0,
"text": "A code repository designed to show the best GitHub has to offer.",
"url": "https://github.com/webpilot-ai/webpilot",
"created_at": "2023-04-03T10:29:46Z"
},
{
"label": 0,
"text": "Medical instruction",
"url": "https://github.com/freedomintelligence/llmzoo",
"created_at": "2023-04-03T12:06:12Z"
},
{
"label": 0,
"text": "A WASM friendly lightweight programming language implemented in OCaml",
"url": "https://github.com/0918nobita/psyche",
"created_at": "2023-04-03T12:07:18Z"
},
{
"label": 0,
"text": "A place for creators & builders to organize ordinal collections!",
"url": "https://github.com/ms0lab/ordinals-collections",
"created_at": "2023-04-03T16:09:41Z"
},
{
"label": 0,
"text": "Official repository of FaceLit: Neural 3D Relightable Faces (CVPR 2023)",
"url": "https://github.com/apple/ml-facelit",
"created_at": "2023-04-03T22:47:29Z"
},
{
"label": 0,
"text": "LLaMa/RWKV onnx models, quantization and testcase",
"url": "https://github.com/tpoisonooo/llama.onnx",
"created_at": "2023-04-04T09:35:06Z"
},
{
"label": 0,
"text": "With all the crazy changes happening with Twitter these days our indie Twitter community is in jeopardy... To I created this open source plugin so that all makers can contribute to make twitter better (Indie stylezz)",
"url": "https://github.com/tiagorbf/indie-twitter-plugin",
"created_at": "2023-04-04T12:48:49Z"
},
{
"label": 0,
"text": "Azure OpenAI .NET Samples",
"url": "https://github.com/azure-samples/acme-fitness-store",
"created_at": "2023-04-04T17:58:04Z"
},
{
"label": 0,
"text": "Spicetify Themed with SweetPastel",
"url": "https://github.com/dvorakdwarf/infinite-storage-glitch",
"created_at": "2023-04-05T00:48:23Z"
},
{
"label": 0,
"text": "名工大のMoodle (4.0) の機能を改善・拡張して使いやすくするブラウザ用拡張機能。Web Extension to refine and enhance NITech Moodle 4.0 page.",
"url": "https://github.com/nitech-create/nitech-moodle-extension-40a",
"created_at": "2023-04-05T15:18:00Z"
},
{
"label": 0,
"text": "ストロベリーリナックスDavinci拡張ボード",
"url": "https://github.com/ohguma/davinci_board",
"created_at": "2023-04-05T15:46:24Z"
},
{
"label": 0,
"text": "↑↑↓↓←→←→BAをJavascriptで感知できるようにしたやつ。",
"url": "https://github.com/hato810424/konami-cmd",
"created_at": "2023-04-06T00:27:04Z"
},
{
"label": 0,
"text": "Basic Binary Watch on M5Stack (Core2)",
"url": "https://github.com/shiza4za/basic_binary_watch",
"created_at": "2023-04-06T00:34:37Z"
},
{
"label": 0,
"text": "Twitter follow/follower manager(beta)",
"url": "https://github.com/fa0311/social_doge",
"created_at": "2023-04-06T07:50:05Z"
},
{
"label": 0,
"text": "A unified framework for 3D content generation.",
"url": "https://github.com/threestudio-project/threestudio",
"created_at": "2023-04-06T08:43:22Z"
},
{
"label": 1,
"text": "jp-localization",
"url": "https://github.com/yantaisa11/Retrieval-based-Voice-Conversion-WebUI-JP-localization",
"created_at": "2023-04-06T10:51:04Z"
},
{
"label": 0,
"text": "mros2 for esp32",
"url": "https://github.com/mros-base/mros2-esp32",
"created_at": "2023-04-06T11:22:28Z"
},
{
"label": 0,
"text": "Get a ChatGPT plugin up and running in under 5 minutes!",
"url": "https://github.com/openai/plugins-quickstart",
"created_at": "2023-04-06T13:43:37Z"
},
{
"label": 0,
"text": "[PREVIEW] Sample code for a simple web chat experience targeting chatGPT through AOAI.",
"url": "https://github.com/microsoft/vscode-python",
"created_at": "2023-04-06T21:16:41Z"
},
{
"label": 0,
"text": "My work submitted to Super Minecraft Fascinating Command Competition (超魅せるコマンド選手権).",
"url": "https://github.com/ruskeocssar/mc-command-note",
"created_at": "2023-04-07T05:04:23Z"
},
{
"label": 0,
"text": "ESPNet TTS with Streamlit GUI",
"url": "https://github.com/syoyo/espnet-tts-streamlit",
"created_at": "2023-04-07T12:04:34Z"
},
{
"label": 0,
"text": "ITエンジニアインターン情報が集まる魔法のスプレッドシート",
"url": "https://github.com/keigomichi/magic-spreadsheets",
"created_at": "2023-04-07T13:10:14Z"
},
{
"label": 0,
"text": "Implementation of Twitter internal API in Dart",
"url": "https://github.com/fa0311/twitter_openapi_dart",
"created_at": "2023-04-07T15:07:22Z"
},
{
"label": 0,
"text": "🔊 Text-Prompted Generative Audio Model",
"url": "https://github.com/suno-ai/bark",
"created_at": "2023-04-07T19:34:48Z"
},
{
"label": 1,
"text": "Convert data from Japanese dictionary websites and applications into portable file formats",
"url": "https://github.com/stephenmk/jitenbot",
"created_at": "2023-04-07T21:37:50Z"
},
{
"label": 0,
"text": "AI plugins for apps like chatGPT :) ",
"url": "https://github.com/cfortuner/plugins",
"created_at": "2023-04-07T22:16:50Z"
},
{
"label": 0,
"text": "Segment Anything Labelling Tool",
"url": "https://github.com/anuragxel/salt",
"created_at": "2023-04-08T00:43:43Z"
},
{
"label": 0,
"text": "TRIMUI",
"url": "https://github.com/game-de-it/funkeyos-game_de_it",
"created_at": "2023-04-08T07:30:54Z"
},
{
"label": 0,
"text": "import a twitter archive into bsky",
"url": "https://github.com/ianklatzco/twitter-to-bsky",
"created_at": "2023-04-08T16:22:01Z"
},
{
"label": 0,
"text": "X11 program that is just a frog walking around on your desktop",
"url": "https://github.com/k1dp00p/xfroggy",
"created_at": "2023-04-08T16:44:21Z"
},
{
"label": 0,
"text": "A Burp Suite extension that integrates OpenAI's GPT to perform an additional passive scan for discovering highly bespoke vulnerabilities, and enables running traffic-based analysis of any type.",
"url": "https://github.com/aress31/burpgpt",
"created_at": "2023-04-08T17:58:26Z"
},
{
"label": 0,
"text": "NNSVSのモデルをUTAUで使えるようにするツール (UTAU plugin software powered by NNSVS)",
"url": "https://github.com/rokujyushi/enunu",
"created_at": "2023-04-09T04:25:43Z"
},
{
"label": 0,
"text": "CoLaboratory notebook for Retrieval-based-Voice-Conversion-WebUI",
"url": "https://github.com/ddpn08/rvc-webui-colab",
"created_at": "2023-04-09T11:54:58Z"
},
{
"label": 0,
"text": "liujing04/Retrieval-based-Voice-Conversion-WebUI reconstruction project",
"url": "https://github.com/ddpn08/rvc-webui",
"created_at": "2023-04-09T13:24:36Z"
},
{
"label": 0,
"text": "CAT'S DOCument System",
"url": "https://github.com/1f408/cats_dogs",
"created_at": "2023-04-10T01:22:21Z"
},
{
"label": 0,
"text": "Security Camp 2023 L4 Resources",
"url": "https://github.com/minaminao/seccamp",
"created_at": "2023-04-10T06:01:59Z"
},
{
"label": 0,
"text": "Repository for COLING 2022 paper \"Prompt Combines Paraphrase: Teaching Pre-trained Models to Understand Rare Biomedical Words\"",
"url": "https://github.com/scir-hi/huatuo-llama-med-chinese",
"created_at": "2023-04-10T06:14:13Z"
},
{
"label": 0,
"text": "Girls' Frontline: Modern Warfare Remastered",
"url": "https://github.com/loyalists/gflh1",
"created_at": "2023-04-10T14:40:03Z"
},
{
"label": 0,
"text": "5 cves of ntp 4.2.8p15 founded by me.",
"url": "https://github.com/spwpun/ntp-4.2.8p15-cves",
"created_at": "2023-04-11T01:46:48Z"
},
{
"label": 0,
"text": "Instruct-tune LLaMA on consumer hardware",
"url": "https://github.com/satani99/alpaca-lora_gpt_neox_20b",
"created_at": "2023-04-11T09:50:01Z"
},
{
"label": 0,
"text": "Python scripts for AI voice changers",
"url": "https://github.com/aiczk/sound-helper",
"created_at": "2023-04-11T11:07:34Z"
},
{
"label": 0,
"text": "Software Design 2023年 5月号第2特集第3部のサンプルプログラム",
"url": "https://github.com/kounoike/software-design-2023-05-samplecode",
"created_at": "2023-04-11T13:34:07Z"
},
{
"label": 0,
"text": "Go library for diffing Postgres schemas and generating SQL migrations",
"url": "https://github.com/stripe/pg-schema-diff",
"created_at": "2023-04-11T15:28:16Z"
},
{
"label": 0,
"text": "A community fork of a language named after a plant fungus. All of the memory-safe features you love, now with 100% less bureaucracy! ",
"url": "https://github.com/crablang/crab",
"created_at": "2023-04-11T17:25:41Z"
},
{
"label": 0,
"text": "Intel One Mono font repository",
"url": "https://github.com/intel/intel-one-mono",
"created_at": "2023-04-11T20:25:19Z"
},
{
"label": 1,
"text": "EaST-MELD is an English-Japanese dataset for emotion-aware speech translation based on MELD.",
"url": "https://github.com/ku-nlp/EaST-MELD",
"created_at": "2023-04-12T04:40:25Z"
},
{
"label": 1,
"text": "Mecon Audio(Medical Conference Audio)は厚生労働省主催の先進医療会議の議事録の読み上げデータセットです。",
"url": "https://github.com/elith-co-jp/meconaudio",
"created_at": "2023-04-12T04:43:25Z"
},
{
"label": 0,
"text": "制作したRPGツクールMZプラグイン",
"url": "https://github.com/kotonoha0109/kotonoha_tkoolmz_plugins",
"created_at": "2023-04-12T22:24:23Z"
},
{
"label": 0,
"text": "An shell written by rust",
"url": "https://github.com/yanknvim/hotate",
"created_at": "2023-04-13T13:31:04Z"
},
{
"label": 0,
"text": "The demo page of AudioGPT",
"url": "https://github.com/aigc-audio/audiogpt",
"created_at": "2023-04-13T15:15:52Z"
},
{
"label": 0,
"text": "Bringing large-language models and chat to web browsers. Everything runs inside the browser with no server support.",
"url": "https://github.com/mlc-ai/web-llm",
"created_at": "2023-04-13T18:11:59Z"
},
{
"label": 0,
"text": "MultimodalC4 is a multimodal extension of c4 that interleaves millions of images with text.",
"url": "https://github.com/allenai/mmc4",
"created_at": "2023-04-13T22:07:25Z"
},
{
"label": 0,
"text": "800,000 step-level correctness labels on LLM solutions to MATH problems",
"url": "https://github.com/openai/prm800k",
"created_at": "2023-04-13T22:22:24Z"
},
{
"label": 0,
"text": "A collection of archived stuff from Twitter",
"url": "https://github.com/bethylamine/twitter-archives",
"created_at": "2023-04-14T00:34:46Z"
},
{
"label": 0,
"text": "CLI for Automated article writing",
"url": "https://github.com/otakumesi/llm-write",
"created_at": "2023-04-14T07:04:07Z"
},
{
"label": 0,
"text": "A Simple Framework for Open-Vocabulary Segmentation and Detection",
"url": "https://github.com/ux-decoder/segment-everything-everywhere-all-at-once",
"created_at": "2023-04-14T07:26:12Z"
},
{
"label": 0,
"text": "コマ落ち的なものを実現するトラックバー変化スクリプト",
"url": "https://github.com/nazonosauna/kakukaku.tra",
"created_at": "2023-04-14T13:57:24Z"
},
{
"label": 0,
"text": "ブログをスイッチで観覧する自作ソフト",
"url": "https://github.com/yyoossk/switch-blog-browser",
"created_at": "2023-04-14T14:23:23Z"
},
{
"label": 0,
"text": "X68000Z keyboard LED demo for Raspberry Pi Pico",
"url": "https://github.com/yunkya2/x68kzkbd-pico",
"created_at": "2023-04-14T14:28:22Z"
},
{
"label": 1,
"text": "databricks/dolly-v2-12b の学習データに使用されたdatabricks-dolly-15k.jsonl を日本語に翻訳したデータセットになります。",
"url": "https://github.com/kunishou/databricks-dolly-15k-ja",
"created_at": "2023-04-14T14:43:27Z"
},
{
"label": 0,
"text": "Single cell analysis in the browser",
"url": "https://github.com/jkanche/kana",
"created_at": "2023-04-14T21:37:41Z"
},
{
"label": 0,
"text": "Implement a coroutine like C#'s yield return using Rust's async, await.",
"url": "https://github.com/frozenlib/yield-return-rs",
"created_at": "2023-04-15T01:23:38Z"
},
{
"label": 0,
"text": "第13回大都市交通センサス 3次ODデータ 発生集中量マップ on MapLibre GL JS",
"url": "https://github.com/shi-works/transportation-census-3jiod-tripend-map",
"created_at": "2023-04-15T05:34:21Z"
},
{
"label": 0,
"text": "Linux Net Bytes Exporter",
"url": "https://github.com/jedipunkz/linux-tiny-exporter",
"created_at": "2023-04-15T06:41:20Z"
},
{
"label": 0,
"text": "🍀 Grow github grass to console.",
"url": "https://github.com/koki-develop/gh-grass",
"created_at": "2023-04-15T11:16:01Z"
},
{
"label": 0,
"text": "Ciphertext and Plaintext Converter",
"url": "https://github.com/tail-backshape/pxcsv2usercsv",
"created_at": "2023-04-15T13:52:31Z"
},
{
"label": 0,
"text": "An experimental open-source attempt to make GPT-4 fully autonomous.",
"url": "https://github.com/dory111111/pengenuity.git",
"created_at": "2023-04-15T23:51:45Z"
},
{
"label": 0,
"text": "贺师俊与360的劳动争议诉讼",
"url": "https://github.com/hax/heshijun_v_360",
"created_at": "2023-04-16T07:26:26Z"
},
{
"label": 0,
"text": "📚 CLI for Qiita.",
"url": "https://github.com/koki-develop/qiita-cli",
"created_at": "2023-04-16T12:06:46Z"
},
{
"label": 0,
"text": "A multi-speaker, multilingual speech generation tool",
"url": "https://github.com/log1stics/voice-generator-webui",
"created_at": "2023-04-16T12:09:31Z"
},
{
"label": 0,
"text": "Vercel deploy from GitHub Actions",
"url": "https://github.com/nexterias/actions-vercel",
"created_at": "2023-04-16T13:50:06Z"
},
{
"label": 0,
"text": "Advanced in-memory caching module for JavaScript.",
"url": "https://github.com/heyputer/kv.js",
"created_at": "2023-04-17T04:22:35Z"
},
{
"label": 0,
"text": "ureishi's vpm repos.",
"url": "https://github.com/ureishi/vpm-repos",
"created_at": "2023-04-17T04:54:41Z"
},
{
"label": 1,
"text": "pdf-translator translates English PDF files into Japanese, preserving the original layout.",
"url": "https://github.com/discus0434/pdf-translator",
"created_at": "2023-04-17T05:55:03Z"
},
{
"label": 0,
"text": "Self-extracting GPT prompts for ~70% token savings",
"url": "https://github.com/yasyf/compress-gpt",
"created_at": "2023-04-17T08:02:52Z"
},
{
"label": 0,
"text": "comparing the c ffi (foreign function interface) overhead on various programming languages",
"url": "https://github.com/hnakamur/ffi-overhead",
"created_at": "2023-04-17T15:41:19Z"
},
{
"label": 0,
"text": "Ansible Galaxy community module for SONiC NOS",
"url": "https://github.com/ansible-collections/community.sonic",
"created_at": "2023-04-18T07:57:38Z"
},
{
"label": 0,
"text": "Fast regex in Rust for Apache Arrow, compiled to WASM",
"url": "https://github.com/nomic-ai/gpt4all-ui",
"created_at": "2023-04-18T10:23:11Z"
},
{
"label": 0,
"text": "🐑 Sleep with Sheep.",
"url": "https://github.com/koki-develop/sheep",
"created_at": "2023-04-18T20:38:09Z"
},
{
"label": 0,
"text": "xbasip: X-BASIC like package for micropython-x68k",
"url": "https://github.com/nozwas/xbasip-x68k",
"created_at": "2023-04-19T05:04:46Z"
},
{
"label": 1,
"text": "LLM構築用の日本語チャットデータセット",
"url": "https://github.com/masanorihirano/llm-japanese-dataset",
"created_at": "2023-04-19T05:34:02Z"
},
{
"label": 0,
"text": "Panasonic P-01D device tree for android and b2g",
"url": "https://github.com/cmonp01d/android_device_panasonic_p01d",
"created_at": "2023-04-19T10:56:57Z"
},
{
"label": 0,
"text": "Implementation of Natural Speech 2, Zero-shot Speech and Singing Synthesizer, in Pytorch",
"url": "https://github.com/lucidrains/naturalspeech2-pytorch",
"created_at": "2023-04-19T14:27:06Z"
},
{
"label": 0,
"text": "Generate 3D objects conditioned on text or images",
"url": "https://github.com/openai/shap-e",
"created_at": "2023-04-19T18:54:32Z"
},
{
"label": 0,
"text": "The official private preview documentation and code samples for the Vector search feature in Azure Cognitive Search.",
"url": "https://github.com/azure/webapps-deploy",
"created_at": "2023-04-19T22:39:29Z"
},
{
"label": 0,
"text": "Keeping track of starred repositories on huggingface",
"url": "https://github.com/acheong08/edgegpt",
"created_at": "2023-04-20T00:32:21Z"
},
{
"label": 0,
"text": "Watch out, it's probably a scam",
"url": "https://github.com/exoego/ublacklist-scam-net-shops",
"created_at": "2023-04-20T07:17:13Z"
},
{
"label": 0,
"text": "Swift OpenAPI Generator package plugin.",
"url": "https://github.com/apple/swift-openapi-generator",
"created_at": "2023-04-20T16:50:53Z"
},
{
"label": 0,
"text": "Utility to transfer save files between the games installed from the Xbox app and other storefronts. https://ko-fi.com/fr33dan",
"url": "https://github.com/thevakhovskeistaken/holoiso",
"created_at": "2023-04-20T19:32:41Z"
},
{
"label": 0,
"text": "Action to deploy a preview GitHub Pages for each branch, pull request, commit.",
"url": "https://github.com/rajyan/preview-pages",
"created_at": "2023-04-21T00:04:20Z"
},
{
"label": 0,
"text": "🔊 Text-prompted Generative Audio Model - With the ability to clone voices",
"url": "https://github.com/serp-ai/bark-with-voice-clone",
"created_at": "2023-04-21T12:44:56Z"
},
{
"label": 0,
"text": "This plugin adds a date and time pane to [Zellij](https://zellij.dev/), a terminal workspace.",
"url": "https://github.com/h1romas4/zellij-datetime",
"created_at": "2023-04-21T18:21:34Z"
},
{
"label": 0,
"text": "music player sample by flutter",
"url": "https://github.com/katoy/music_sample",
"created_at": "2023-04-21T20:07:11Z"
},
{
"label": 0,
"text": "Being laid off can be overwhelming and it's easy to miss important tasks. This runbook will help make sure you stay on track.",
"url": "https://github.com/derwiki/layoff-runbook",
"created_at": "2023-04-22T07:02:34Z"
},
{
"label": 0,
"text": "ADBC based Active Record adapter",
"url": "https://github.com/red-data-tools/activerecord-adbc-adapter",
"created_at": "2023-04-22T08:37:07Z"
},
{
"label": 0,
"text": "PandasAI is a Python library that integrates generative artificial intelligence capabilities into pandas, making dataframes conversational",
"url": "https://github.com/gventuri/pandas-ai",
"created_at": "2023-04-22T12:58:01Z"
},
{
"label": 0,
"text": "An Experimental Package Management Solution for Python",
"url": "https://github.com/mitsuhiko/rye",
"created_at": "2023-04-22T22:23:54Z"
},
{
"label": 0,
"text": "暗号技術入門",
"url": "https://github.com/akakou-docs/crypto",
"created_at": "2023-04-23T13:51:20Z"
},
{
"label": 0,
"text": "Retrieval-based Voice Conversion (RVC) implemented with Hugging Face Transformers.",
"url": "https://github.com/esnya/hf-rvc",
"created_at": "2023-04-23T15:30:51Z"
},
{
"label": 0,
"text": "PEACE FOR ALL グラフィックTシャツ(半袖・レギュラーフィット)アカマイ",
"url": "https://github.com/yoidea/akamai-t-shirt",
"created_at": "2023-04-23T17:26:24Z"
},
{
"label": 0,
"text": "Prompt formatter extension for automatic1111's stable diffusion web-ui",
"url": "https://github.com/uwidev/sd_extension-prompt_formatter",
"created_at": "2023-04-23T22:13:45Z"
},
{
"label": 0,
"text": "S/MIME Baseline Requirements Sample Certificate Generator by jsrsasign",
"url": "https://github.com/kjur/smbr-cert-generator",
"created_at": "2023-04-24T02:51:57Z"
},
{
"label": 0,
"text": "Replit 用の Chicken Scheme テンプレート",
"url": "https://github.com/t-matsudate/t-matsudate",
"created_at": "2023-04-24T11:03:36Z"
},
{
"label": 0,
"text": "Open source implementation of the SOQL parser for Go",
"url": "https://github.com/shellyln/go-open-soql-parser",
"created_at": "2023-04-24T12:45:44Z"
},
{
"label": 0,
"text": "Samples to build Generative AI applications with LangChain and Amazon Kendra",
"url": "https://github.com/aws-samples/aws-saas-factory-ref-solution-serverless-saas",
"created_at": "2023-04-24T21:12:08Z"
},
{
"label": 0,
"text": "Go Conference 2023 カンムオフィスアワーの CTF 問題",
"url": "https://github.com/kanmu/gocon-2023-office-hour",
"created_at": "2023-04-25T06:36:52Z"
},
{
"label": 1,
"text": "日本語文を音素列へ変換するスクリプト",
"url": "https://github.com/korguchi/text2phoneme",
"created_at": "2023-04-25T13:51:46Z"
},
{
"label": 0,
"text": "Provides a cli command that can be used to perform access log aggregation for apache and nginx.",
"url": "https://github.com/n4rvs3/log_total",
"created_at": "2023-04-25T15:01:51Z"
},
{
"label": 0,
"text": "Auto detecting, masking and inpainting with detection model.",
"url": "https://github.com/bing-su/adetailer",
"created_at": "2023-04-26T07:54:51Z"
},
{
"label": 0,
"text": "A Gentoo overlay for me",
"url": "https://github.com/syobocat/syobonic-overlay",
"created_at": "2023-04-26T09:45:54Z"
},
{
"label": 0,
"text": "Rust製のテキストエディタHecto https://github.com/pflenker/hecto-tutorial をVimに対応させる",
"url": "https://github.com/furbler/deci",
"created_at": "2023-04-26T14:45:02Z"
},
{
"label": 0,
"text": "Ultra-high throughput mahjong hand calculator",
"url": "https://github.com/cryolite/tsumonya",
"created_at": "2023-04-27T01:40:31Z"
},
{
"label": 1,
"text": "MonsterHunterのユーザー辞書を作りたい…",
"url": "https://github.com/utubo/mh-dict-jp",
"created_at": "2023-04-27T11:01:05Z"
},
{
"label": 0,
"text": "💄 Ink-redible command-line interfaces made easy",
"url": "https://github.com/vadimdemedes/ink-ui",
"created_at": "2023-04-27T12:56:48Z"
},
{
"label": 1,
"text": "JP Language Model Evaluation Harness",
"url": "https://github.com/Stability-AI/lm-evaluation-harness/tree/jp-stable",
"created_at": "2023-04-27T13:09:46Z"
},
{
"label": 0,
"text": "Chat with NeRF enables users to interact with a NeRF model by typing in natural language.",
"url": "https://github.com/sled-group/chat-with-nerf",
"created_at": "2023-04-27T16:46:09Z"
},
{
"label": 0,
"text": "🐳 Access your Docker containers easily without port forwarding",
"url": "https://github.com/siketyan/nakoud",
"created_at": "2023-04-28T10:14:19Z"
},
{
"label": 0,
"text": "Generate CPU load on Windows/Linux/Mac",
"url": "https://github.com/0delta/gocpuload",
"created_at": "2023-04-28T14:18:52Z"
},
{
"label": 0,
"text": "matchbox-keyboard",
"url": "https://github.com/evanman83/ours-project",
"created_at": "2023-04-28T14:33:40Z"
},
{
"label": 0,
"text": "Build ChatGPT plugins with Cloudflare's Developer Platform 🤖",
"url": "https://github.com/cloudflare/chatgpt-plugin",
"created_at": "2023-04-28T18:07:52Z"
},
{
"label": 0,
"text": "The Mojo Programming Language",
"url": "https://github.com/modularml/mojo",
"created_at": "2023-04-28T22:17:24Z"
},
{
"label": 0,
"text": "LLM training code for MosaicML foundation models",
"url": "https://github.com/mosaicml/llm-foundry",
"created_at": "2023-04-28T22:33:27Z"
},
{
"label": 0,
"text": "Enable everyone to develop, optimize and deploy AI models natively on everyone's devices.",
"url": "https://github.com/mlc-ai/mlc-llm",
"created_at": "2023-04-29T01:59:25Z"
},
{
"label": 0,
"text": "A React component library for select media devices",
"url": "https://github.com/kadoshita/react-select-media-devices-modal",
"created_at": "2023-04-29T02:35:16Z"
},
{
"label": 0,
"text": "Rust implementation of smooth inverse frequency and common component removal: simple but powerful sentence embeddings",
"url": "https://github.com/kampersanda/sif-embedding",
"created_at": "2023-04-29T11:09:06Z"
},
{
"label": 0,
"text": "Specify what you want it to build, the AI asks for clarification, and then builds it.",
"url": "https://github.com/antonosika/gpt-engineer",
"created_at": "2023-04-29T12:52:15Z"
},
{
"label": 0,
"text": "Micro Reversi for X680x0/MicroPython",
"url": "https://github.com/tantangh/ureversi",
"created_at": "2023-04-30T01:55:26Z"
},
{
"label": 0,
"text": "An M5Stack library for rendering avatar faces for CRT Display",
"url": "https://github.com/riraosan/m5stack-avatar-lgfx-cvbs",
"created_at": "2023-04-30T03:26:29Z"
},
{
"label": 0,
"text": "マイク入力の音量が一定しきい値を超えると警告を出すPython製のソフトエア的ななにか",
"url": "https://github.com/nnahito/voice-volume-guardian",
"created_at": "2023-04-30T05:09:29Z"
},
{
"label": 0,
"text": "Generic interval types and operations for Go.",
"url": "https://github.com/mokeko/interval",
"created_at": "2023-04-30T05:16:58Z"
},
{
"label": 0,
"text": "Pythonで始めるAtCoderローカル環境",
"url": "https://github.com/yuta0306/atcoder",
"created_at": "2023-04-30T08:40:30Z"
},
{
"label": 0,
"text": "vue-hooks",
"url": "https://github.com/ubugeeei/vue-hooks",
"created_at": "2023-05-01T00:32:09Z"
},
{
"label": 0,
"text": "Original PoC for CVE-2023-32784",
"url": "https://github.com/vdohney/keepass-password-dumper",
"created_at": "2023-05-01T17:08:55Z"
},
{
"label": 0,
"text": "44100Hz日本語音源に対応した PITS: Variational Pitch Inference for End-to-end Pitch-controllable TTS without External Pitch Predictor です。",
"url": "https://github.com/tonnetonne814/quickvc-44100-ja_hubert",
"created_at": "2023-05-02T00:16:38Z"
},
{
"label": 1,
"text": "How do different tokenizers perform on downstream tasks in scriptio continua languages?: A case study in Japanese-ACL SRW 2023",
"url": "https://github.com/hitachi-nlp/compare-ja-tokenizer",
"created_at": "2023-05-02T03:27:55Z"
},
{
"label": 0,
"text": "Laravel の Collection クラスに、重複を除外するメソッド deduplicate() を追加する拡張機能",
"url": "https://github.com/kanagama/laravel-collection-deduplicate",
"created_at": "2023-05-02T07:19:08Z"
},
{
"label": 0,
"text": "Command line tool for ChatGPT",
"url": "https://github.com/yskoht/chat-gpt-cli",
"created_at": "2023-05-02T20:40:24Z"
},
{
"label": 0,
"text": "download images and meta data together from civitai",
"url": "https://github.com/craftgear/civitai_prompt_scraper",
"created_at": "2023-05-03T07:51:35Z"
},
{
"label": 0,
"text": "ワールドの読込(ダウンロード)やアバター読込(ダウンロード)が異常に遅い人向けです",
"url": "https://github.com/wintermagician-2zgrg/vrc_regkey_friendsperlocation_clear",
"created_at": "2023-05-03T08:18:17Z"
},
{
"label": 0,
"text": "Extend the original llama.cpp repo to support redpajama model.",
"url": "https://github.com/togethercomputer/redpajama.cpp",
"created_at": "2023-05-03T14:14:29Z"
},
{
"label": 0,
"text": "An example project for using Vercel Serverless Functions and Edge Functions with vanilla Node.js (without Next.js).",
"url": "https://github.com/you-5805/vanilla-vercel-functions",
"created_at": "2023-05-04T03:56:49Z"
},
{
"label": 0,
"text": "zerochplusのやる夫スレ開発用",
"url": "https://github.com/scrpgil/zerochplus",
"created_at": "2023-05-04T12:58:29Z"
},
{
"label": 0,
"text": "古のCGIゲームである箱庭諸島を5系PHPからGolangへフルリプレイスする。",
"url": "https://github.com/kiyo510/hagoniwa_island",
"created_at": "2023-05-04T16:32:32Z"
},
{
"label": 0,
"text": "Sample code and notebooks for Generative AI on Google Cloud",
"url": "https://github.com/googlecloudplatform/generative-ai",
"created_at": "2023-05-05T12:31:07Z"
},
{
"label": 0,
"text": "📋 A list of open LLMs available for commercial use.",
"url": "https://github.com/eugeneyan/open-llms",
"created_at": "2023-05-05T16:35:37Z"
},
{
"label": 0,
"text": "This is an authentication solution that leverages the Blockchain Symbol's Mosaic, allowing each channel of the discord to be built as a channel that can only be accessed by users with membership cards.",
"url": "https://github.com/ymuichiro/mosaic-authz",
"created_at": "2023-05-05T17:23:05Z"
},
{
"label": 0,
"text": "This is a Dockerfile to make ROS 2 environment(Ubuntu 22.04) on Jetson device.",
"url": "https://github.com/atinfinity/l4t-ros2-docker",
"created_at": "2023-05-05T18:17:08Z"
},
{
"label": 0,
"text": "Udemy:Reactに入門した人のためのもっとReactが楽しくなるステップアップコース完全版 Cakura UI, react17→18",
"url": "https://github.com/nabe33/react-intermediate-practice-app",
"created_at": "2023-05-06T04:22:45Z"
},
{
"label": 0,
"text": "(WIP) 3DS console externally controllable via serial communication.",
"url": "https://github.com/u1f992/3ds-bss",
"created_at": "2023-05-06T04:56:23Z"
},
{
"label": 0,
"text": "M5Badgeのサンプルプログラム",
"url": "https://github.com/3110/m5badge",
"created_at": "2023-05-06T05:16:57Z"
},
{
"label": 0,
"text": "puzzle game SHISEN-SHO for micropython-x68k",
"url": "https://github.com/nozwas/shisen-x68k",
"created_at": "2023-05-06T06:52:15Z"
},
{
"label": 0,
"text": "A Tree-sitter based major mode for editing PHP codes",
"url": "https://github.com/emacs-php/php-ts-mode",
"created_at": "2023-05-06T07:51:23Z"
},
{
"label": 0,
"text": "A simple Stable Diffusion WebUI extension that adds a Photopea tab and integration.",
"url": "https://github.com/yankooliveira/sd-webui-photopea-embed",
"created_at": "2023-05-06T08:22:08Z"
},
{
"label": 0,
"text": "A collection of templates for starting new projects with",
"url": "https://github.com/brandonkirbyson/vscode-animations",
"created_at": "2023-05-06T19:40:46Z"
},
{
"label": 0,
"text": "fork of vcrpy until the docker issue is fixed",
"url": "https://github.com/significant-gravitas/auto-gpt",
"created_at": "2023-05-06T22:44:06Z"
},
{
"label": 0,
"text": "↔️ Convert between JSON, YAML, TOML, and various other formats.",
"url": "https://github.com/koki-develop/xvert",
"created_at": "2023-05-07T01:35:38Z"
},
{
"label": 0,
"text": "CLI tool to output Mermaid of module dependencies for multi-modularized projects in Swift Package Manager",
"url": "https://github.com/ryu0118/swift-dependencies-graph",
"created_at": "2023-05-07T09:28:54Z"
},
{
"label": 0,
"text": "ray tracing in one weekend implemented in Haskell",
"url": "https://github.com/ichi-raven/riowh",
"created_at": "2023-05-07T14:16:08Z"
},
{
"label": 0,
"text": "A Chrome extension to shorten AWS service names in the console",
"url": "https://github.com/shimo164/re-name-favbar",
"created_at": "2023-05-07T23:18:25Z"
},
{
"label": 0,
"text": "ICP examples",
"url": "https://github.com/higayasuo/icp-examples",
"created_at": "2023-05-08T01:23:42Z"
},
{
"label": 0,
"text": "Ecoute is a live transcription tool that provides real-time transcripts for both the user's microphone input (You) and the user's speakers output (Speaker) in a textbox. It also generates a suggested response using OpenAI's GPT-3.5 for the user to say based on the live transcription of the conversation.",
"url": "https://github.com/sevask/ecoute",
"created_at": "2023-05-08T02:10:27Z"
},
{
"label": 0,
"text": "🍦VanJS: World's smallest reactive UI framework. Incredibly Powerful, Insanely Small - Everyone can build a useful UI app in an hour",
"url": "https://github.com/vanjs-org/van",
"created_at": "2023-05-08T05:45:31Z"
},
{
"label": 0,
"text": "A browser extension that detects shadowbans on Twitter.",
"url": "https://github.com/robot-inventor/shadowban-scanner",
"created_at": "2023-05-09T13:06:53Z"
},
{
"label": 0,
"text": "ツイート用Webアプリ",
"url": "https://github.com/kentaro1043/tweet-server",
"created_at": "2023-05-09T15:14:55Z"
},
{
"label": 0,
"text": "A proposal specifying package.json",
"url": "https://github.com/wintercg/proposal-package-json",
"created_at": "2023-05-09T20:03:21Z"
},
{
"label": 0,
"text": "A backend API to perform search over Wikipedia using LangChain, Cohere and Weaviate",
"url": "https://github.com/menloparklab/cohere-weaviate-wikipedia-retrieval",
"created_at": "2023-05-10T00:39:25Z"
},
{
"label": 0,
"text": "it's calculate a change preparation for the comic event.",
"url": "https://github.com/tyoshida431/oturi_3",
"created_at": "2023-05-10T01:05:44Z"
},
{
"label": 0,
"text": "中国語の学習を支援するアプリ",
"url": "https://github.com/0918nobita/chinese-trainer",
"created_at": "2023-05-10T06:39:33Z"
},
{
"label": 0,
"text": "Java based MIDI-Mixer / VST Hosting",
"url": "https://github.com/syntaro/mixrecipe",
"created_at": "2023-05-10T06:48:57Z"
},
{
"label": 0,
"text": "A prefab to recreate image-encoded 3D models inside VRChat",
"url": "https://github.com/vr-voyage/direct-model-importer-vrchat",
"created_at": "2023-05-10T17:49:22Z"
},
{
"label": 0,
"text": "QLoRA: Efficient Finetuning of Quantized LLMs",
"url": "https://github.com/artidoro/qlora",
"created_at": "2023-05-11T09:30:23Z"
},
{
"label": 0,
"text": "🛠 Skeet Framework Plugin - Firestore🔥",
"url": "https://github.com/elsoul/skeet-firestore",
"created_at": "2023-05-11T10:18:21Z"
},
{
"label": 0,
"text": "optarg 後継の引数解析ライブラリ",
"url": "https://github.com/grapejuicer/libparseropt",
"created_at": "2023-05-11T16:11:24Z"
},
{
"label": 0,
"text": "【OASYX Official】3D Document",
"url": "https://github.com/doublejumptokyo/oasyx-3d-document",
"created_at": "2023-05-12T07:19:48Z"
},
{
"label": 0,
"text": "A graph node engine and editor written in Javascript similar to PD or UDK Blueprints, comes with its own editor in HTML5 Canvas2D. The engine can run client side or server side using Node. It allows to export graphs as JSONs to be included in applications independently.",
"url": "https://github.com/ltdrdata/comfyui-manager",
"created_at": "2023-05-12T07:35:36Z"
},
{
"label": 0,
"text": "A cyberdeck featuring a QAZ keyboard and Banana Pi M2 Zero",
"url": "https://github.com/g1sbi/qaz-cyberdeck",
"created_at": "2023-05-12T13:18:17Z"
},
{
"label": 0,
"text": "Seamlessly integrate LLMs into scikit-learn.",
"url": "https://github.com/iryna-kondr/scikit-llm",
"created_at": "2023-05-12T18:09:40Z"
},
{
"label": 0,
"text": "🧠 Your Second Brain supercharged by Generative AI 🧠 Dump all your files and chat with your personal assistant on your files & more using GPT 3.5/4, Private, Anthropic, VertexAI, LLMs...",
"url": "https://github.com/stangirard/quivr",
"created_at": "2023-05-12T23:53:30Z"
},
{
"label": 0,
"text": "Tutorial to write a Ruby JIT",
"url": "https://github.com/k0kubun/ruby-jit-challenge",
"created_at": "2023-05-13T04:11:50Z"
},
{
"label": 0,
"text": "Convert to LAP+ dp3 file from RaceChrono vbo file.",
"url": "https://github.com/satorimon/vbo2dp3",
"created_at": "2023-05-13T13:11:27Z"
},
{
"label": 0,
"text": "FDD existence checker for X680x0",
"url": "https://github.com/masaaki-taguchi/chkfdd",
"created_at": "2023-05-13T13:13:21Z"
},
{
"label": 0,
"text": "Motoko Bootcamp 2023 for dapp contest",
"url": "https://github.com/higayasuo/mbc2023-day6",
"created_at": "2023-05-14T11:09:59Z"
},
{
"label": 0,
"text": "Integration with Steam for Galaxy",
"url": "https://github.com/abaumher/galaxy-integration-steam",
"created_at": "2023-05-15T00:54:25Z"
},
{
"label": 0,
"text": "For 「技術書典14 - Data/AIチームの作り方」",
"url": "https://github.com/smdmts/book_tech14_demo",
"created_at": "2023-05-15T01:53:46Z"
},
{
"label": 0,
"text": "A simple ChatGPT Plugin running in Codespaces for dev and Azure for production.",
"url": "https://github.com/azure-samples/openai-plugin-fastapi",
"created_at": "2023-05-15T19:54:10Z"
},
{
"label": 0,
"text": "Slides for my session in Go Conference 2023",
"url": "https://github.com/harsh0240/goconf23",
"created_at": "2023-05-16T01:23:37Z"
},
{
"label": 0,
"text": "卒業研究で作っているBOTの記録です。",
"url": "https://github.com/narukanono/sotukenkun",
"created_at": "2023-05-17T03:10:57Z"
},
{
"label": 0,
"text": "PoC of Greenfield executable",
"url": "https://github.com/bnb-chain/beps",
"created_at": "2023-05-17T06:05:26Z"
},
{
"label": 0,
"text": "Generative Agents for video games and simulations. Based on Generative Agents: Interactive Simulacra of Human Behavior",
"url": "https://github.com/nickm980/smallville",
"created_at": "2023-05-17T16:11:55Z"
},
{
"label": 0,
"text": "Numbers every LLM developer should know",
"url": "https://github.com/ray-project/llm-numbers",
"created_at": "2023-05-17T16:43:01Z"
},
{
"label": 0,
"text": "Inspect a command's effects before modifying your live system",
"url": "https://github.com/binpash/try",
"created_at": "2023-05-17T19:15:04Z"
},
{
"label": 0,
"text": "ChatGPT plugin to solve linear Programming",
"url": "https://github.com/84monta/mlpplugin",
"created_at": "2023-05-18T13:07:28Z"
},
{
"label": 0,
"text": "Shared Objects prefetcher for ELF",
"url": "https://github.com/dancerj/sopreload",
"created_at": "2023-05-18T13:36:00Z"
},
{
"label": 0,
"text": "ComfyUI blog",
"url": "https://github.com/comfyanonymous/comfyui",
"created_at": "2023-05-18T20:52:45Z"
},
{
"label": 0,
"text": "Minimal ESP-IDF project which uses LovyanGFX",
"url": "https://github.com/ciniml/lgfx-idf-example",
"created_at": "2023-05-19T07:14:08Z"
},
{
"label": 0,
"text": "Exercises on Riemannian geometry (in Japanese)",
"url": "https://github.com/ymatz/riemannian-geometry",
"created_at": "2023-05-19T15:44:50Z"
},
{
"label": 0,
"text": "task1",
"url": "https://github.com/teamdev-recursionred/task1",
"created_at": "2023-05-20T01:37:38Z"
},
{
"label": 0,
"text": "convert svg from clipboard to .step",
"url": "https://github.com/iskwmsy/svg2step",
"created_at": "2023-05-20T07:48:01Z"
},
{
"label": 0,
"text": "テスト時にだけマイグレーションする仕組みをどう作るか模索したい",
"url": "https://github.com/hirochon/infra-go-for-test",
"created_at": "2023-05-20T09:39:25Z"
},
{
"label": 0,
"text": "StableSR for Stable Diffusion WebUI - Ultra High-quality Image Upscaler",
"url": "https://github.com/pkuliyi2015/sd-webui-stablesr",
"created_at": "2023-05-20T11:49:37Z"
},
{
"label": 0,
"text": "textchat VP Extension with SkyWay",
"url": "https://github.com/tetunori/vp-ext-textchat-skyway",
"created_at": "2023-05-20T13:21:50Z"
},
{
"label": 0,
"text": "Twitterのフォロー、フォロワー状況をExcelで管理するツールです。",
"url": "https://github.com/eschamali/tvremoteplus",
"created_at": "2023-05-20T14:39:03Z"
},
{
"label": 0,
"text": "YouTubeのチャンネルページの動画などで「新しい順」を自動でクリックするChrome拡張機能",
"url": "https://github.com/hixi12/chrome-extension-ytltac",
"created_at": "2023-05-20T17:07:50Z"
},
{
"label": 0,
"text": "On-demand reverb type controller for ras68k-ext",
"url": "https://github.com/tantangh/pireverb",
"created_at": "2023-05-20T23:06:39Z"
},
{
"label": 1,
"text": "Summarize arXiv paper with figures",
"url": "https://github.com/rkmt/summarize_arxv",
"created_at": "2023-05-21T08:01:45Z"
},
{
"label": 0,
"text": "search papers of cvpr 2023 by chat gpt",
"url": "https://github.com/kotarotanahashi/cvpr",
"created_at": "2023-05-21T12:26:13Z"
},
{
"label": 0,
"text": "[In progress] C compiler written in Swift.",
"url": "https://github.com/tokizuoh/swift-9cc",
"created_at": "2023-05-21T14:55:42Z"
},
{
"label": 0,
"text": "A Java library for CBOR, COSE and JWT",
"url": "https://github.com/authlete/cbor",
"created_at": "2023-05-21T15:24:14Z"
},
{
"label": 0,
"text": "This repository houses the documentation for the proposed Generative BRC-721 Standard, a new concept aimed at optimizing the creation of Non-Fungible Ordinals collections within the Bitcoin ecosystem.",
"url": "https://github.com/jerryfane/generative-brc-721",
"created_at": "2023-05-21T22:22:19Z"
},
{
"label": 0,
"text": "Dependency of Google Pixel 7 (panther), Google Pixel 7 Pro (cheetah)",
"url": "https://github.com/pixelexperience-pixel7/device_google_pantah",
"created_at": "2023-05-22T08:03:18Z"
},
{
"label": 0,
"text": "このリポジトリはClassi株式会社の開発・運用するサービスの一部で実践されているGraphQLスキーマの管理をデモンストレーションするものです。",
"url": "https://github.com/classi/example-graphql-api-schema",
"created_at": "2023-05-22T09:33:32Z"
},
{
"label": 0,
"text": "ONNX and TensorRT implementation of Whisper",
"url": "https://github.com/pinto0309/whisper-onnx-tensorrt",
"created_at": "2023-05-22T09:42:08Z"
},
{
"label": 0,
"text": "lightweight zod-like validator",
"url": "https://github.com/mizchi/lizod",
"created_at": "2023-05-22T15:23:05Z"
},
{
"label": 0,
"text": "Reading list for research topics in Masked Image Modeling",
"url": "https://github.com/ziyuguo99/viewrefer3d",
"created_at": "2023-05-22T20:20:16Z"
},
{
"label": 0,
"text": "PelemayBackend: A memory-saving, fault-tolerant and distributed collection of Nx compilers and backends for embedded systems.",
"url": "https://github.com/zeam-vm/pelemay_backend",
"created_at": "2023-05-23T00:49:11Z"
},
{
"label": 0,
"text": "RINGER: Rapid Conformer Generation for Macrocycles with Sequence-Conditioned Internal Coordinate Diffusion",
"url": "https://github.com/genentech/ringer",
"created_at": "2023-05-23T07:05:23Z"
},
{
"label": 0,
"text": "This is an official inference code of the paper \"GlyphControl: Glyph Conditional Control for Visual Text Generation\"",
"url": "https://github.com/aigtext/glyphcontrol-release",
"created_at": "2023-05-23T09:14:57Z"
},
{
"label": 1,
"text": "Make learning Japanese easier by adding readings for every kanji in the eBook",
"url": "https://github.com/rabbit19981023/yomigana-ebook",
"created_at": "2023-05-23T09:30:01Z"
},
{
"label": 1,
"text": "The repository contains scripts and merge scripts that have been modified to adapt an Alpaca-Lora adapter for LoRA tuning when assuming the use of the \"rinna/japanese-gpt-neox...\" [gpt-neox] model converted to ggml.",
"url": "https://github.com/yukaryavka/rinna_gpt-neox_ggml-lora",
"created_at": "2023-05-23T18:00:39Z"
},
{
"label": 0,
"text": "3D都市モデルPLATEAU建築物データ(3DTiles)及びGoogle Photorealistic 3D TilesをMapLibre GL JSで表示するサンプルコード",
"url": "https://github.com/shi-works/ms-road-on-maplibre-gl-js",
"created_at": "2023-05-24T03:10:07Z"
},
{
"label": 0,
"text": "ONNX implementation of Whisper. PyTorch free.",
"url": "https://github.com/pinto0309/whisper-onnx-cpu",
"created_at": "2023-05-24T14:05:42Z"
},
{
"label": 0,
"text": "IDE-like breadcrumbs, out of the box",
"url": "https://github.com/bekaboo/dropbar.nvim",
"created_at": "2023-05-25T05:57:15Z"
},
{
"label": 0,
"text": "An application that cross-posts to Twitter, Misskey and Bluesky",
"url": "https://github.com/yogorouza/shanari",
"created_at": "2023-05-25T13:19:13Z"
},
{
"label": 0,
"text": "AMBER: Automated annotation and Multimodal Bag Extraction for Robotics",
"url": "https://github.com/hakuturu583/amber",
"created_at": "2023-05-25T13:39:13Z"
},
{
"label": 0,
"text": "Solitaire game made with RubySketch",
"url": "https://github.com/xord/solitaire",
"created_at": "2023-05-25T16:35:42Z"
},
{
"label": 0,
"text": "Protocol Buffer Validation - Go, Java, Python, and C++ Beta Releases!",
"url": "https://github.com/bufbuild/protovalidate",
"created_at": "2023-05-25T19:32:20Z"
},
{
"label": 0,
"text": "keyboard controller firmware for Atmel AVR and ARM USB families",
"url": "https://github.com/burakiyo/qmk_firmware",
"created_at": "2023-05-26T13:23:15Z"
},
{
"label": 0,
"text": "The Lace Wallet.",
"url": "https://github.com/input-output-hk/lace",
"created_at": "2023-05-26T13:53:13Z"
},
{
"label": 0,
"text": "talking head anime 3 for aituber",
"url": "https://github.com/miketako3/talking-head-anime-3-demo-for-aituber",
"created_at": "2023-05-27T01:08:22Z"
},
{
"label": 0,
"text": "GitHub Actions: RSS to Twitter",
"url": "https://github.com/azu/rss-to-twitter",
"created_at": "2023-05-27T06:04:00Z"
},
{
"label": 1,
"text": "Building AI-based conversational avatars lightning fast",
"url": "https://github.com/uezo/aiavatarkit",
"created_at": "2023-05-27T14:22:56Z"
},
{
"label": 0,
"text": "An environment where you can try out faster-whisper immediately.",
"url": "https://github.com/pinto0309/faster-whisper-env",
"created_at": "2023-05-27T15:43:27Z"
},
{
"label": 0,
"text": "ROS/ROS2 package for Ultralytics YOLOv8 real-time object detection. https://github.com/ultralytics/ultralytics",
"url": "https://github.com/alpaca-zip/ultralytics_ros",
"created_at": "2023-05-27T16:27:22Z"
},
{
"label": 0,
"text": "Obsidian plugin. Recursively folds and unfolds the current hierarchy or selection.",
"url": "https://github.com/cat2151/recursive-folding",
"created_at": "2023-05-28T04:48:10Z"
},
{
"label": 0,
"text": "Java MIDI Controller , based XML CC Editor",
"url": "https://github.com/syntaro/cceditor",
"created_at": "2023-05-28T08:18:37Z"
},
{
"label": 0,
"text": "one-click deepfake (face swap)",
"url": "https://github.com/s0md3v/roop",
"created_at": "2023-05-28T14:37:54Z"
},
{
"label": 0,
"text": "This Minesweeper AI does the brain-testing part for you. You do the luck-testing part.",
"url": "https://github.com/mame/minesweeper-spoiled-by-ai",
"created_at": "2023-05-28T20:01:23Z"
},
{
"label": 0,
"text": "Automatic generation of picture undercoat from line drawings",
"url": "https://github.com/mattyamonaca/auto_undercoat",
"created_at": "2023-05-28T22:14:27Z"
},
{
"label": 0,
"text": "シェーダー レクチャー",
"url": "https://github.com/tsmsextreme/shader_lecture",
"created_at": "2023-05-29T10:58:44Z"
},
{
"label": 0,
"text": "Code for Adhoc Unreal plugin",
"url": "https://github.com/speculativecoder/unrealengine-html5-es3",
"created_at": "2023-05-29T12:36:28Z"
},
{
"label": 0,
"text": "`all` for *empty* is ...?",
"url": "https://github.com/kaosf/20230530-all",
"created_at": "2023-05-30T15:02:52Z"
},
{
"label": 0,
"text": "The AI Application Framework for Javascript",
"url": "https://github.com/fixie-ai/ai-jsx",
"created_at": "2023-05-30T19:29:07Z"
},
{
"label": 0,
"text": "Easily create and manage predefined window layouts, bringing a new edge to your workflow",
"url": "https://github.com/folke/edgy.nvim",
"created_at": "2023-05-30T21:09:04Z"
},
{
"label": 0,
"text": "[Preprint] Official Implementation: \"Ambient Diffusion: Learning Clean Distributions from Corrupted Data\"",
"url": "https://github.com/giannisdaras/ambient-diffusion",
"created_at": "2023-05-30T22:26:24Z"
},
{
"label": 0,
"text": "Generates chainable method code from Swift methods.",
"url": "https://github.com/p-x9/swift-method-chainable",
"created_at": "2023-05-31T03:34:02Z"
},
{
"label": 0,
"text": "A linter for TOML files that can detect multiple errors using by tree-sitter parser",
"url": "https://github.com/yaegassy/toml-lint",
"created_at": "2023-05-31T05:21:47Z"
},
{
"label": 0,
"text": "Real-time transcription using faster-whisper",
"url": "https://github.com/kazuph/speech-to-text-with-faster-whisper",
"created_at": "2023-05-31T07:39:40Z"
},
{
"label": 0,
"text": "convert pdf to text",
"url": "https://github.com/lhazy/pdf2text",
"created_at": "2023-05-31T14:07:50Z"
},
{
"label": 0,
"text": "RVC(RVC-Project/Retrieval-based-Voice-Conversion-WebUI)をDockerで手軽に実行するためのDockerfileとシェルスクリプト",
"url": "https://github.com/kenh0u/rvc-docker",
"created_at": "2023-06-01T05:52:10Z"
},
{
"label": 0,
"text": "Article: Functional Declarative Design",
"url": "https://github.com/graninas/functional-declarative-design-methodology",
"created_at": "2023-06-01T08:52:10Z"
},
{
"label": 0,
"text": "Vocos: Closing the gap between time-domain and Fourier-based neural vocoders for high-quality audio synthesis",
"url": "https://github.com/charactr-platform/vocos",
"created_at": "2023-06-01T10:20:23Z"
},
{
"label": 0,
"text": "最初のcommitはNustJS+Next.jsの環境そろってるので、nodemodulesだけ更新する事",
"url": "https://github.com/contengee/monaziri",
"created_at": "2023-06-02T05:27:45Z"
},
{
"label": 0,
"text": "Running aiavatarkit with Docker for Mac",
"url": "https://github.com/tfuru/aiavatarkit-docker",
"created_at": "2023-06-02T13:54:44Z"
},
{
"label": 1,
"text": "Pretrained models, codes and guidances to pretrain official ALBERT(https://github.com/google-research/albert) on Japanese Wikipedia Resources",
"url": "https://github.com/nknytk/albert-japanese-tinysegmenter",
"created_at": "2023-06-03T01:01:26Z"
},
{
"label": 0,
"text": "RPG Maker 2000/2003 Anime Edit Tool",
"url": "https://github.com/lpre-ys/tk2k-cell-batch-plus",
"created_at": "2023-06-04T02:31:05Z"
},
{
"label": 0,
"text": "zshian is tool which reinforce zsh",
"url": "https://github.com/shunsock/zshian",
"created_at": "2023-06-04T13:48:04Z"
},
{
"label": 1,
"text": "Rinna-3.6B、OpenCALM等の日本語対応LLM(大規模言語モデル)用の簡易Webインタフェースです",
"url": "https://github.com/noir55/japanese_llm_simple_webui",
"created_at": "2023-06-04T14:06:12Z"
},
{
"label": 0,
"text": "RSS Reader for X680x0/Human68k",
"url": "https://github.com/tantangh/rssn",
"created_at": "2023-06-04T21:49:02Z"
},
{
"label": 0,
"text": "Downer_Smoker_LegalLolita_Gothic_Surgeon用追加シェル",
"url": "https://github.com/apxxxxxxe/thumbelina-shell",
"created_at": "2023-06-05T13:55:57Z"
},
{
"label": 0,
"text": "A sample Next.js app that integrates Web3Auth with userop.js",
"url": "https://github.com/stackup-wallet/next-web3auth-userop-example",
"created_at": "2023-06-06T11:43:45Z"
},
{
"label": 0,
"text": "graphics processing core",
"url": "https://github.com/ihasq/evolt",
"created_at": "2023-06-06T14:27:42Z"
},
{
"label": 0,
"text": "A Minecraft server that makes you want to clear your mind and head straight into the lava",
"url": "https://github.com/oshinko/minecraft-server",
"created_at": "2023-06-06T15:37:52Z"
},
{
"label": 0,
"text": "Nekoclient infection detector",
"url": "https://github.com/mcrcortex/nekodetector",
"created_at": "2023-06-07T10:01:14Z"
},
{
"label": 0,
"text": "MIDIファイルから配列を生成するアプリです。",
"url": "https://github.com/buffalo107/midi2array",
"created_at": "2023-06-07T14:33:56Z"
},
{
"label": 0,
"text": "Information about the fractureiser malware",
"url": "https://github.com/fractureiser-investigation/fractureiser",
"created_at": "2023-06-07T15:59:56Z"
},
{
"label": 0,
"text": "Scan jar files for known infections",
"url": "https://github.com/overwolf/jar-infection-scanner",
"created_at": "2023-06-07T17:22:39Z"
},
{
"label": 0,
"text": "detection-toolを日本語に翻訳",
"url": "https://github.com/umineko1993/jar-infection-scanner-jp",
"created_at": "2023-06-07T23:17:52Z"
},
{
"label": 0,
"text": "OpenSCAD Code Generator for Go",
"url": "https://github.com/lestrrat-go/openscad",
"created_at": "2023-06-08T00:57:05Z"
},
{
"label": 0,
"text": "Port of openscad/mcad to github.com/lestrrat-go/openscad",
"url": "https://github.com/lestrrat-go/openscad-mcad",
"created_at": "2023-06-08T05:49:01Z"
},
{
"label": 0,
"text": "Audiocraft is a library for audio processing and generation with deep learning. It features the state-of-the-art EnCodec audio compressor / tokenizer, along with MusicGen, a simple and controllable music generation LM with textual and melodic conditioning.",
"url": "https://github.com/facebookresearch/audiocraft",
"created_at": "2023-06-08T06:41:36Z"
},
{
"label": 0,
"text": "Navigate your code with search labels, enhanced character motions and Treesitter integration",
"url": "https://github.com/folke/flash.nvim",
"created_at": "2023-06-08T07:32:45Z"
},
{
"label": 0,
"text": "Vue.js (JavaScript) とSVGを利用して開発したシンプルな将棋盤ウェブアプリです。",
"url": "https://github.com/hideboz/free-shogi-board",
"created_at": "2023-06-08T07:45:26Z"
},
{
"label": 0,
"text": "MINI-DOS for PC-8001/8801/Sharp X1 source and d88 bootable image",
"url": "https://github.com/autumn009/mini-dos",
"created_at": "2023-06-08T10:39:03Z"
},
{
"label": 0,
"text": "Making Eurorack Cases based on the IKEA Tavelan Boxes and some 3D printing",
"url": "https://github.com/finnglink/ikea-case",
"created_at": "2023-06-08T20:33:57Z"
},
{
"label": 0,
"text": "This Repositry is an experiment with an agent that searches documents and asks questions repeatedly in response to the main question. It automatically determines the optimal answer from the current documents or recognizes when there is no answer. ",
"url": "https://github.com/tmori/generative-agents",
"created_at": "2023-06-08T20:44:16Z"
},
{
"label": 0,
"text": "A custom extension for sd-webui that allow you to generate 3D model from txt or image, basing on OpenAI Shap-E.",
"url": "https://github.com/jtydhr88/sd-webui-txt-img-to-3d-model",
"created_at": "2023-06-09T04:11:02Z"
},
{
"label": 0,
"text": "岡山大学のシラバスを解析するためのプログラムです。現在開発中です。",
"url": "https://github.com/gomazarashi/ou_syllabus",
"created_at": "2023-06-09T06:31:59Z"
},
{
"label": 0,
"text": "YoutubeLiveの補助用ツール。リクエストを受けてテーブルに表示したりできる。",
"url": "https://github.com/dj-kata/ytlive_helper",
"created_at": "2023-06-09T07:11:21Z"
},
{
"label": 0,
"text": "Swift macro that simplifies and automates the process of creating spies for testing",
"url": "https://github.com/matejkob/swift-spyable",
"created_at": "2023-06-09T16:48:20Z"
},
{
"label": 0,
"text": "Obsidianに関することで質問に答えます。日本語です。",
"url": "https://github.com/tadashi-aikawa/obsidian-questions",
"created_at": "2023-06-10T10:06:19Z"
},
{
"label": 0,
"text": "Backwards compatibility Extension and Library for PHP 8.x and later",
"url": "https://github.com/colopl/php-colopl_bc",
"created_at": "2023-06-12T03:19:35Z"
},
{
"label": 0,
"text": "H2O: Heavy-Hitter Oracle for Efficient Generative Inference of Large Language Models.",
"url": "https://github.com/fminference/flexgen",
"created_at": "2023-06-12T06:03:19Z"
},
{
"label": 0,
"text": "ゆめみの課題です。",
"url": "https://github.com/gadgelogger/github_search_app",
"created_at": "2023-06-12T11:19:00Z"
},
{
"label": 0,
"text": "ELF to X68k executable converter",
"url": "https://github.com/iwadon/elf2x68k",
"created_at": "2023-06-12T14:17:21Z"
},
{
"label": 0,
"text": "Make your THETA",
"url": "https://github.com/ricohapi/theta-plugins",
"created_at": "2023-06-12T16:13:59Z"
},
{
"label": 0,
"text": "Translation of various documents",
"url": "https://github.com/sakimura/translations",
"created_at": "2023-06-13T09:15:50Z"
},
{
"label": 0,
"text": "A robustness evaluation framework for large language models on adversarial prompts",
"url": "https://github.com/microsoft/deberta",
"created_at": "2023-06-13T14:32:34Z"
},
{
"label": 0,
"text": "Performance Optimizer Observation Platform",
"url": "https://github.com/andrewrk/poop",
"created_at": "2023-06-13T19:36:11Z"
},
{
"label": 1,
"text": "This repository contains scripts to reproduce the LLM-jp corpus.",
"url": "https://github.com/llm-jp/llm-jp-corpus",
"created_at": "2023-06-14T04:32:03Z"
},
{
"label": 0,
"text": "Template repo: Next.js13 x daisyUI3",
"url": "https://github.com/m19e/next13-daisyui-template",
"created_at": "2023-06-14T06:09:48Z"
},
{
"label": 0,
"text": "docker compose sample for ourboard shared on local network",
"url": "https://github.com/suwa-sh/docker-ourboard",
"created_at": "2023-06-14T16:01:50Z"
},
{
"label": 0,
"text": "Neovim colorschemes generated on the fly with a text prompt using ChatGPT",
"url": "https://github.com/svermeulen/text-to-colorscheme",
"created_at": "2023-06-14T23:22:08Z"
},
{
"label": 0,
"text": "A Usage of ChatGPT API's 'Function Calling' feature ",
"url": "https://github.com/kmizu/chatgpt-api-functions",
"created_at": "2023-06-15T04:25:07Z"
},
{
"label": 0,
"text": "A Javascript AI getting started stack for weekend projects, including image/text models, vector stores, auth, and deployment configs",
"url": "https://github.com/a16z-infra/ai-getting-started",
"created_at": "2023-06-16T00:55:08Z"
},
{
"label": 0,
"text": "D'ni Numerals Watch on M5Stack (Core2)",
"url": "https://github.com/shiza4za/m5_d-ni_numerals_watch",
"created_at": "2023-06-16T11:36:33Z"
},
{
"label": 0,
"text": "This is a sample DB transaction pattern when communicating between packages using an interface.",
"url": "https://github.com/junpayment/transactionlabo",
"created_at": "2023-06-17T06:45:43Z"
},
{
"label": 0,
"text": "display a very bright white color on HDR-enabled displays",
"url": "https://github.com/dtinth/superwhite",
"created_at": "2023-06-17T10:58:17Z"
},
{
"label": 0,
"text": "roop extension for StableDiffusion web-ui",
"url": "https://github.com/s0md3v/sd-webui-roop",
"created_at": "2023-06-17T22:53:22Z"
},
{
"label": 0,
"text": "OpenAIapi base prompt preprocessor for Online amatur writer",
"url": "https://github.com/alenbluebee/novelformatter",
"created_at": "2023-06-18T05:22:23Z"
},
{
"label": 1,
"text": "A framework for few-shot evaluation of autoregressive language models.",
"url": "https://github.com/tdc-yamada-ya/lm-evaluation-harness-jp-stable",
"created_at": "2023-06-19T01:27:43Z"
},
{
"label": 0,
"text": "Aligned, Review-Informed Edits of Scientific Papers",
"url": "https://github.com/allenai/aries",
"created_at": "2023-06-19T09:09:49Z"
},
{
"label": 0,
"text": "Azure OpenAI Studioを使ってAzure OpenAIに触れるセルフペースドハンズオンの資料です。",
"url": "https://github.com/dzeyelid/aoai-studio-handson",
"created_at": "2023-06-20T01:29:47Z"
},
{
"label": 1,
"text": "このリポジトリは、神戸市役所でのChatGPTの試行利用に向けて作成したフロー等をソリューション化し公開するものです。",
"url": "https://github.com/City-of-Kobe/pva-aoai-integration-solution",
"created_at": "2023-06-20T04:50:53Z"
},
{
"label": 0,
"text": "LLMs for your CLI",
"url": "https://github.com/gorilla-llm/gorilla-cli",
"created_at": "2023-06-20T08:49:46Z"
},
{
"label": 0,
"text": "Framework to easily create LLM powered bots over any dataset.",
"url": "https://github.com/embedchain/embedchain",
"created_at": "2023-06-20T08:58:36Z"
},
{
"label": 0,
"text": "The PolymurHash universal hash function.",
"url": "https://github.com/orlp/polymur-hash",
"created_at": "2023-06-20T14:29:56Z"
},
{
"label": 0,
"text": "8bit cpu",
"url": "https://github.com/s0man3/8bitcpu",
"created_at": "2023-06-20T17:23:43Z"
},
{
"label": 0,
"text": "自作のツールを置いておきます。(利用は自己責任で)",
"url": "https://github.com/onokennote/vectorworkstools",
"created_at": "2023-06-21T01:13:52Z"
},
{
"label": 0,
"text": "Windows版Rubyで「𠮷.txt」というファイル名の存在がうまく検知できなかったり、表示できない件",
"url": "https://github.com/hymkor/study-ruby-tsuchiyoshi",
"created_at": "2023-06-21T03:20:14Z"
},
{
"label": 0,
"text": "Monobehaviourのシングルトン化にまつわる便利ツール",
"url": "https://github.com/snsnsnsnsnsn/singletonmonobehaviour",
"created_at": "2023-06-21T15:36:24Z"
},
{
"label": 1,
"text": "Azure OpenAIを活用したアプリケーション実装のリファレンスを目的として、アプリのサンプル(リファレンスアーキテクチャ、サンプルコードとデプロイ手順)を無償提供しています。",
"url": "https://github.com/azure-samples/jp-azureopenai-samples",
"created_at": "2023-06-21T21:27:33Z"
},
{
"label": 0,
"text": "Generative Models by Stability AI",
"url": "https://github.com/stability-ai/generative-models",
"created_at": "2023-06-22T00:36:35Z"
},
{
"label": 1,
"text": "Japanese instruction data (日本語指示データ)",
"url": "https://github.com/megagonlabs/instruction_ja",
"created_at": "2023-06-22T06:51:09Z"
},
{
"label": 0,
"text": "Deltabae is a command-line utility that leverages the capabilities of `delta` and `ansifilter` to generate a side-by-side, syntax-highlighted diff of two text files and output it as an HTML file. It is designed to provide a visually appealing and user-friendly way to compare text files, especially useful for code reviews and similar tasks.",
"url": "https://github.com/harxxki/deltabae",
"created_at": "2023-06-23T07:13:09Z"
},
{
"label": 0,
"text": "Remove backgrounds from images directly in the browser environment with ease and no additional costs or privacy concerns. Explore an interactive demo.",
"url": "https://github.com/imgly/background-removal-js",
"created_at": "2023-06-23T11:20:08Z"
},
{
"label": 0,
"text": "A list of AI autonomous agents",
"url": "https://github.com/agiresearch/openagi",
"created_at": "2023-06-23T13:03:17Z"
},
{
"label": 0,
"text": "Demo programs for MSX",
"url": "https://github.com/hra1129/msx_demos",
"created_at": "2023-06-24T21:44:50Z"
},
{
"label": 0,
"text": "fast&high quality discord youtube music bot",
"url": "https://github.com/syslinkteam/sakuramusic_v2",
"created_at": "2023-06-25T01:58:30Z"
},
{
"label": 0,
"text": "https://atcoder.jp/contests/ahc021/tasks/ahc021_a",
"url": "https://github.com/yukari02221/ahc021",
"created_at": "2023-06-25T14:09:19Z"
},
{
"label": 0,
"text": "Gibbon本地文件包含漏洞(CVE-2023-34598)",
"url": "https://github.com/szlein/cve-2023-34598",
"created_at": "2023-06-26T15:14:47Z"
},
{
"label": 0,
"text": "Windows Explorer Context Menu Extensions.",
"url": "https://github.com/masakazu-yanai/new-ex",
"created_at": "2023-06-28T06:32:41Z"
},
{
"label": 0,
"text": "zshrcを管理するリポジトリです.",
"url": "https://github.com/eeeem460/dotfiles",
"created_at": "2023-06-29T03:22:52Z"
},
{
"label": 0,
"text": "The code and data for the GPT-4 based benchmark in the vicuna blog post",
"url": "https://github.com/lm-sys/fastchat",
"created_at": "2023-06-29T06:22:19Z"
},
{
"label": 0,
"text": "Hello world ROM image for GAME BOY",
"url": "https://github.com/voidproc/hellogb",
"created_at": "2023-06-29T14:00:33Z"
},
{
"label": 0,
"text": "1.20へ対応",
"url": "https://github.com/midorikuma/variablesviewer",
"created_at": "2023-07-02T12:04:49Z"
},
{
"label": 1,
"text": "「大規模言語モデル入門」(技術評論社, 2023)のGitHubリポジトリ",
"url": "https://github.com/ghmagazine/llm-book",
"created_at": "2023-07-04T04:45:09Z"
},
{
"label": 0,
"text": ".github repository of the VoronDesign organization",
"url": "https://github.com/vorondesign/voron-0",
"created_at": "2023-07-04T20:56:44Z"
},
{
"label": 0,
"text": "Open source speech codec designed for communications quality speech between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF digital radio. ",
"url": "https://github.com/drowe67/codec2",
"created_at": "2023-07-07T02:54:17Z"
},
{
"label": 1,
"text": "オープンソースの日本語LLMまとめ",
"url": "https://github.com/llm-jp/awesome-japanese-llm",
"created_at": "2023-07-09T04:36:38Z"
},
{
"label": 0,
"text": "Inspect and push SBOMs (such as SPDX documents) to an OCI registry as an OCI artifact",
"url": "https://github.com/azure/aztfy",
"created_at": "2023-07-14T19:06:54Z"
},
{
"label": 1,
"text": "llm-lora-classification",
"url": "https://github.com/hppRC/llm-lora-classification",
"created_at": "2023-07-17T03:43:51Z"
},
{
"label": 0,
"text": "飴豆腐 ソフトウェア ライセンス",
"url": "https://github.com/amedouhu/texthenkankun",
"created_at": "2023-07-20T05:45:28Z"
},
{
"label": 0,
"text": "AITemplate is a Python framework which renders neural network into high performance CUDA/HIP C++ code. Specialized for FP16 TensorCore (NVIDIA GPU) and MatrixCore (AMD GPU) inference.",
"url": "https://github.com/hlky/stable-diffusion",
"created_at": "2023-07-23T01:50:33Z"
},
{
"label": 0,
"text": "Moved to https://github.com/connectrpc/connect-go",
"url": "https://github.com/bufbuild/connect-go",
"created_at": "2023-07-26T18:41:14Z"
},
{
"label": 0,
"text": "Moved to https://github.com/connectrpc/otelconnect-go",
"url": "https://github.com/bufbuild/connect-opentelemetry-go",
"created_at": "2023-07-26T22:40:10Z"
},
{
"label": 0,
"text": "「横浜市立学校 空気の見える化プロジェクト」( https://minnaair.com/blog/yokohama/ )のデータを取得するプログラムのリポジトリです。",
"url": "https://github.com/tetlabo/yokohama_school_air_data",
"created_at": "2023-08-01T13:50:25Z"
},
{
"label": 0,
"text": "OpenMMLab Pose Estimation Toolbox and Benchmark.",
"url": "https://github.com/camenduru/musicgen-colab",
"created_at": "2023-08-02T14:01:22Z"
},
{
"label": 0,
"text": "SkyPilot: Run LLMs, AI, and Batch jobs on any cloud. Get maximum savings, highest GPU availability, and managed execution—all with a simple interface.",
"url": "https://github.com/shopify/paquito",
"created_at": "2023-08-02T18:23:30Z"
},
{
"label": 0,
"text": "Automatic CI releases for DeDRM_tools",
"url": "https://github.com/nodrm/dedrm_tools",
"created_at": "2023-08-03T19:16:06Z"
},
{
"label": 1,
"text": "Predict pitch accent in Japanese",
"url": "https://github.com/shirakaba/pitch-accent",
"created_at": "2023-08-09T04:29:26Z"
},
{
"label": 0,
"text": "PointBLIP: A Point Cloud Multi-modal model Embracing Diverse Data without Reliance on Image Domain",
"url": "https://github.com/pointcept/pointcept",
"created_at": "2023-08-12T10:44:07Z"
},
{
"label": 0,
"text": "This tool performs the polymerization of monomers assigning the head and tail atom positions at the oligomer.",
"url": "https://github.com/ibm/diffg-rl",
"created_at": "2023-08-14T18:07:47Z"
},
{
"label": 0,
"text": "CloudFormation template to provision EC2 instance with LAMP, LEMP, LAPP or LEPP stack",
"url": "https://github.com/aws-samples/aws-security-hub-cross-account-controls-disabler",
"created_at": "2023-08-16T07:07:09Z"
},
{
"label": 0,
"text": ":exclamation: This is a read-only mirror of the CRAN R package repository. bootwar — Nonparametric Bootstrap Test with Pooled Resampling Card Game. Homepage: https://github.com/mightymetrika/bootwar Report bugs for this package: https://github.com/mightymetrika/bootwar/issues",
"url": "https://github.com/cran/pmsampsize",
"created_at": "2023-08-21T15:30:53Z"
}
] |