File size: 41,675 Bytes
a8639ac | 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 | https://github.com/nvbn/thefuck https://github.com/bregman-arie/devops-exercises https://github.com/josephmisiti/awesome-machine-learning https://github.com/abi/screenshot-to-code https://github.com/meta-llama/llama https://github.com/zylon-ai/private-gpt https://github.com/soimort/you-get https://github.com/Z4nzu/hackingtool https://github.com/xai-org/grok-1 https://github.com/charlax/professional-programming https://github.com/minimaxir/big-list-of-naughty-strings https://github.com/faif/python-patterns https://github.com/chubin/cheat.sh https://github.com/floodsung/Deep-Learning-Papers-Reading-Roadmap https://github.com/google-research/bert https://github.com/karpathy/nanoGPT https://github.com/0voice/interview_internal_reference https://github.com/satwikkansal/wtfpython https://github.com/shadowsocks/shadowsocks https://github.com/Pythagora-io/gpt-pilot https://github.com/zhayujie/chatgpt-on-wechat https://github.com/myshell-ai/OpenVoice https://github.com/acheong08/ChatGPT https://github.com/meta-llama/llama3 https://github.com/facebookresearch/Detectron https://github.com/spipm/Depix https://github.com/littlecodersh/ItChat https://github.com/chubin/wttr.in https://github.com/keon/algorithms https://github.com/eriklindernoren/ML-From-Scratch https://github.com/wangzheng0822/algo https://github.com/openai/openai-python https://github.com/sebastianruder/NLP-progress https://github.com/cookiecutter/cookiecutter https://github.com/openai/gpt-2 https://github.com/KurtBestor/Hitomi-Downloader https://github.com/AIHawk-co/Auto_Jobs_Applier https://github.com/jhao104/proxy_pool https://github.com/openai/chatgpt-retrieval-plugin https://github.com/facebookresearch/audiocraft https://github.com/chriskiehl/Gooey https://github.com/yoheinakajima/babyagi https://github.com/magic-wormhole/magic-wormhole https://github.com/karpathy/minGPT https://github.com/PromtEngineer/localGPT https://github.com/Delgan/loguru https://github.com/nginx-proxy/nginx-proxy https://github.com/LiLittleCat/awesome-free-chatgpt https://github.com/Jack-Cherish/python-spider https://github.com/wilsonfreitas/awesome-quant https://github.com/unslothai/unsloth https://github.com/VikParuchuri/marker https://github.com/RunaCapital/awesome-oss-alternatives https://github.com/binux/pyspider https://github.com/cool-RR/PySnooper https://github.com/trekhleb/learn-python https://github.com/wting/autojump https://github.com/meta-llama/codellama https://github.com/twintproject/twint https://github.com/mxrch/GHunt https://github.com/pallets/click https://github.com/fastapi/typer https://github.com/openai/swarm https://github.com/h2y/Shadowrocket-ADBlock-Rules https://github.com/GaiZhenbiao/ChuanhuChatGPT https://github.com/lra/mackup https://github.com/fauxpilot/fauxpilot https://github.com/ranaroussi/yfinance https://github.com/pjialin/py12306 https://github.com/powerline/powerline https://github.com/hindupuravinash/the-gan-zoo https://github.com/NVlabs/stylegan https://github.com/gunthercox/ChatterBot https://github.com/mail-in-a-box/mailinabox https://github.com/youfou/wxpy https://github.com/microsoft/Swin-Transformer https://github.com/davidsandberg/facenet https://github.com/google/yapf https://github.com/psf/requests-html https://github.com/sivel/speedtest-cli https://github.com/s0md3v/XSStrike https://github.com/idank/explainshell https://github.com/state-spaces/mamba https://github.com/MatrixTM/MHDDoS https://github.com/pre-commit/pre-commit https://github.com/postmanlabs/httpbin https://github.com/donnemartin/awesome-aws https://github.com/ActivityWatch/activitywatch https://github.com/openai/tiktoken https://github.com/threat9/routersploit https://github.com/rougier/numpy-100 https://github.com/alexjc/neural-enhance https://github.com/dbader/schedule https://github.com/Embedding/Chinese-Word-Vectors https://github.com/smol-ai/developer https://github.com/sshuttle/sshuttle https://github.com/dbcli/mycli https://github.com/hoya012/deep_learning_object_detection https://github.com/lucidrains/DALLE2-pytorch https://github.com/cyrus-and/gdb-dashboard https://github.com/s0md3v/Photon https://github.com/NVlabs/stylegan2 https://github.com/databrickslabs/dolly https://github.com/openai/DALL-E https://github.com/Rudrabha/Wav2Lip https://github.com/Manisso/fsociety https://github.com/Lightning-AI/litgpt https://github.com/avgupta456/github-trends https://github.com/pypa/pipx https://github.com/mvt-project/mvt https://github.com/asweigart/pyautogui https://github.com/FujiwaraChoki/MoneyPrinter https://github.com/harelba/q https://github.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee https://github.com/aristocratos/bpytop https://github.com/twitter/the-algorithm-ml https://github.com/kkroening/ffmpeg-python https://github.com/sfyc23/EverydayWechat https://github.com/ultrafunkamsterdam/undetected-chromedriver https://github.com/dabeaz-course/practical-python https://github.com/rq/rq https://github.com/aboul3la/Sublist3r https://github.com/benoitc/gunicorn https://github.com/darknessomi/musicbox https://github.com/Datalux/Osintgram https://github.com/nbedos/termtosvg https://github.com/TheR1D/shell_gpt https://github.com/tflearn/tflearn https://github.com/LibreTranslate/LibreTranslate https://github.com/AlessandroZ/LaZagne https://github.com/benbusby/whoogle-search https://github.com/Jack-Cherish/PythonPark https://github.com/facebookresearch/pifuhd https://github.com/Doriandarko/claude-engineer https://github.com/vishnubob/wait-for-it https://github.com/coursera-dl/coursera-dl https://github.com/MrS0m30n3/youtube-dl-gui https://github.com/seatgeek/fuzzywuzzy https://github.com/bigscience-workshop/petals https://github.com/karpathy/minbpe https://github.com/Jack-Cherish/Machine-Learning https://github.com/facebook/chisel https://github.com/DLR-RM/stable-baselines3 https://github.com/gruns/icecream https://github.com/Cadene/pretrained-models.pytorch https://github.com/lauris/awesome-scala https://github.com/togethercomputer/OpenChatKit https://github.com/WongKinYiu/yolov9 https://github.com/httpie/http-prompt https://github.com/facebookresearch/nougat https://github.com/MorvanZhou/Reinforcement-learning-with-tensorflow https://github.com/apenwarr/sshuttle https://github.com/jadore801120/attention-is-all-you-need-pytorch https://github.com/rossant/awesome-math https://github.com/instaloader/instaloader https://github.com/arrow-py/arrow https://github.com/joelgrus/data-science-from-scratch https://github.com/seemoo-lab/opendrop https://github.com/paralax/awesome-honeypots https://github.com/hardikvasa/google-images-download https://github.com/encode/uvicorn https://github.com/miguelgrinberg/flasky https://github.com/vvbbnn00/WARP-Clash-API https://github.com/arogozhnikov/einops https://github.com/nashsu/FreeAskInternet https://github.com/geerlingguy/ansible-for-devops https://github.com/dataabc/weiboSpider https://github.com/dylanaraps/pywal https://github.com/yzhao062/anomaly-detection-resources https://github.com/nebuly-ai/optimate https://github.com/facebookresearch/ImageBind https://github.com/drivendataorg/cookiecutter-data-science https://github.com/lucidrains/denoising-diffusion-pytorch https://github.com/yandex/gixy https://github.com/pydantic/FastUI https://github.com/EleutherAI/gpt-neo https://github.com/baowenbo/DAIN https://github.com/khuedoan/homelab https://github.com/g1879/DrissionPage https://github.com/rbgirshick/py-faster-rcnn https://github.com/mps-youtube/yewtube https://github.com/graphql-python/graphene https://github.com/abetlen/llama-cpp-python https://github.com/lucidrains/imagen-pytorch https://github.com/acheong08/EdgeGPT https://github.com/gelstudios/gitfiti https://github.com/google-deepmind/pysc2 https://github.com/crazyguitar/pysheeet https://github.com/Yelp/elastalert https://github.com/waydroid/waydroid https://github.com/edeng23/binance-trade-bot https://github.com/docopt/docopt https://github.com/shidenggui/easytrader https://github.com/houtianze/bypy https://github.com/huggingface/accelerate https://github.com/lukemelas/EfficientNet-PyTorch https://github.com/jzhang38/TinyLlama https://github.com/openai/jukebox https://github.com/FlareSolverr/FlareSolverr https://github.com/domlysz/BlenderGIS https://github.com/jazzband/pip-tools https://github.com/PyMySQL/PyMySQL https://github.com/yihong0618/bilingual_book_maker https://github.com/theskumar/python-dotenv https://github.com/THUDM/CodeGeeX2 https://github.com/megadose/holehe https://github.com/donnemartin/gitsome https://github.com/samshadwell/TrumpScript https://github.com/openai/universe https://github.com/google/diff-match-patch https://github.com/netease-youdao/EmotiVoice https://github.com/wbt5/real-url https://github.com/wiseodd/generative-models https://github.com/facebookresearch/mae https://github.com/fchollet/deep-learning-models https://github.com/lllyasviel/Omost https://github.com/bigcode-project/starcoder https://github.com/hellerve/programming-talks https://github.com/google/latexify_py https://github.com/Urinx/WeixinBot https://github.com/awslabs/aws-shell https://github.com/kennethreitz/records https://github.com/mvdctop/Movie_Data_Capture https://github.com/LargeWorldModel/LWM https://github.com/qqwweee/keras-yolo3 https://github.com/hunshcn/gh-proxy https://github.com/burnash/gspread https://github.com/anishathalye/dotbot https://github.com/axi0mX/ipwndfu https://github.com/tgalal/yowsup https://github.com/Jrohy/multi-v2ray https://github.com/amoffat/sh https://github.com/bhaskatripathi/pdfGPT https://github.com/ermaozi/get_subscribe https://github.com/taobao/nginx-book https://github.com/schollz/howmanypeoplearearound https://github.com/Yelp/dumb-init https://github.com/EZFNDEV/EZFN-Lobbybot https://github.com/iam-veeramalla/aws-devops-zero-to-hero https://github.com/joshpxyne/gpt-migrate https://github.com/PeterL1n/BackgroundMattingV2 https://github.com/flask-restful/flask-restful https://github.com/jaywalnut310/vits https://github.com/XPixelGroup/BasicSR https://github.com/alexta69/metube https://github.com/smacke/ffsubsync https://github.com/msiemens/tinydb https://github.com/SerpentAI/SerpentAI https://github.com/SWivid/F5-TTS https://github.com/jd/tenacity https://github.com/bndr/pipreqs https://github.com/mli/autocut https://github.com/Johnserf-Seed/TikTokDownload https://github.com/kyutai-labs/moshi https://github.com/liangliangyy/DjangoBlog https://github.com/joerick/pyinstrument https://github.com/gorakhargosh/watchdog https://github.com/openatx/uiautomator2 https://github.com/django-extensions/django-extensions https://github.com/iam-veeramalla/Jenkins-Zero-To-Hero https://github.com/lancopku/pkuseg-python https://github.com/mahmoud/boltons https://github.com/openai/point-e https://github.com/jarun/buku https://github.com/joeyespo/grip https://github.com/jrnl-org/jrnl https://github.com/lebinh/ngxtop https://github.com/python-eel/Eel https://github.com/likedan/Awesome-CoreML-Models https://github.com/newsapps/beeswithmachineguns https://github.com/alirezamika/autoscraper https://github.com/InternLM/InternLM https://github.com/NVlabs/stylegan3 https://github.com/derv82/wifite2 https://github.com/jackhawks/rectg https://github.com/tensorflow/nmt https://github.com/ReaVNaiL/New-Grad-2024 https://github.com/p-e-w/maybe https://github.com/ufoym/deepo https://github.com/rushter/data-science-blogs https://github.com/run-llama/rags https://github.com/kingoflolz/mesh-transformer-jax https://github.com/maxbbraun/trump2cash https://github.com/bitsandbytes-foundation/bitsandbytes https://github.com/yihong0618/xiaogpt https://github.com/openai/guided-diffusion https://github.com/sdispater/pendulum https://github.com/b-ryan/powerline-shell https://github.com/codertimo/BERT-pytorch https://github.com/rany2/edge-tts https://github.com/jianchang512/ChatTTS-ui https://github.com/zihangdai/xlnet https://github.com/snare/voltron https://github.com/openai/consistency_models https://github.com/FunAudioLLM/CosyVoice https://github.com/offa/android-foss https://github.com/donnemartin/dev-setup https://github.com/shadowsocksr-backup/shadowsocksr https://github.com/xfangfang/Macast https://github.com/jarun/googler https://github.com/django/channels https://github.com/tkarras/progressive_growing_of_gans https://github.com/sammchardy/python-binance https://github.com/Lightning-AI/lit-llama https://github.com/kuangliu/pytorch-cifar https://github.com/reorx/httpstat https://github.com/nteract/papermill https://github.com/reorx/awesome-chatgpt-api https://github.com/Shougo/deoplete.nvim https://github.com/chyroc/WechatSogou https://github.com/corpnewt/gibMacOS https://github.com/longld/peda https://github.com/aymericdamien/TopDeepLearning https://github.com/webpy/webpy https://github.com/xchaoinfo/fuck-login https://github.com/madmaze/pytesseract https://github.com/boltgolt/howdy https://github.com/pengxiao-song/LaWGPT https://github.com/AdnanHodzic/auto-cpufreq https://github.com/piku/piku https://github.com/RayVentura/ShortGPT https://github.com/guofei9987/blind_watermark https://github.com/Python3WebSpider/ProxyPool https://github.com/facebookresearch/ConvNeXt https://github.com/frostming/legit https://github.com/ramon-victor/freegpt-webui https://github.com/baichuan-inc/Baichuan-7B https://github.com/vibora-io/vibora https://github.com/pytorch-labs/gpt-fast https://github.com/dennybritz/cnn-text-classification-tf https://github.com/ihebski/DefaultCreds-cheat-sheet https://github.com/dpkp/kafka-python https://github.com/google/seq2seq https://github.com/vi3k6i5/flashtext https://github.com/EwingYangs/awesome-open-gpt https://github.com/anishathalye/neural-style https://github.com/rmax/scrapy-redis https://github.com/keras-rl/keras-rl https://github.com/TCM-Course-Resources/Practical-Ethical-Hacking-Resources https://github.com/martinblech/xmltodict https://github.com/wb14123/seq2seq-couplet https://github.com/yenchenlin/nerf-pytorch https://github.com/USArmyResearchLab/Dshell https://github.com/cchen156/Learning-to-See-in-the-Dark https://github.com/SpiderClub/haipproxy https://github.com/ticarpi/jwt_tool https://github.com/microsoft/promptbase https://github.com/ibab/tensorflow-wavenet https://github.com/SkalskiP/courses https://github.com/tangqiaoboy/iOSBlogCN https://github.com/adamchainz/django-cors-headers https://github.com/mininet/mininet https://github.com/miguelgrinberg/Flask-SocketIO https://github.com/xxh/xxh https://github.com/liuwons/wxBot https://github.com/google-deepmind/graph_nets https://github.com/nwojke/deep_sort https://github.com/adithya-s-k/omniparse https://github.com/pre-commit/pre-commit-hooks https://github.com/naver/dust3r https://github.com/google-research/arxiv-latex-cleaner https://github.com/david-gpu/srez https://github.com/python-attrs/attrs https://github.com/davidhalter/jedi-vim https://github.com/google/gemma_pytorch https://github.com/guofei9987/scikit-opt https://github.com/EnableSecurity/wafw00f https://github.com/ujjwalkarn/DataSciencePython https://github.com/s0md3v/Arjun https://github.com/fogleman/Minecraft https://github.com/Upsonic/gpt-computer-assistant https://github.com/qiyuangong/leetcode https://github.com/prompt-toolkit/ptpython https://github.com/Shawn-Shan/fawkes https://github.com/python-websockets/websockets https://github.com/coleifer/huey https://github.com/biobootloader/wolverine https://github.com/tkipf/pygcn https://github.com/zq1997/deepin-wine https://github.com/father-bot/chatgpt_telegram_bot https://github.com/jpadilla/pyjwt https://github.com/Tib3rius/AutoRecon https://github.com/trustedsec/ptf https://github.com/karpathy/arxiv-sanity-preserver https://github.com/facebook/PathPicker https://github.com/ashnkumar/sketch-code https://github.com/kootenpv/whereami https://github.com/yadm-dev/yadm https://github.com/ajalt/fuckitpy https://github.com/HackSoftware/Django-Styleguide https://github.com/mnotgod96/AppAgent https://github.com/huangsam/ultimate-python https://github.com/sripathikrishnan/redis-rdb-tools https://github.com/navdeep-G/setup.py https://github.com/containers/podman-compose https://github.com/mdbloice/Augmentor https://github.com/isso-comments/isso https://github.com/PyCQA/pycodestyle https://github.com/PeterDing/iScript https://github.com/NullArray/AutoSploit https://github.com/django-crispy-forms/django-crispy-forms https://github.com/spotipy-dev/spotipy https://github.com/careercup/CtCI-6th-Edition-Python https://github.com/10se1ucgo/DisableWinTracking https://github.com/Free-TV/IPTV https://github.com/ecthros/uncaptcha2 https://github.com/gregmalcolm/python_koans https://github.com/tebelorg/RPA-Python https://github.com/dwisiswant0/apkleaks https://github.com/ranaroussi/quantstats https://github.com/ownthink/KnowledgeGraphData https://github.com/salesforce/CodeGen https://github.com/permitio/opal https://github.com/elceef/dnstwist https://github.com/lark-parser/lark https://github.com/commonmark/commonmark-spec https://github.com/Lyken17/pytorch-OpCounter https://github.com/lonePatient/awesome-pretrained-chinese-nlp-models https://github.com/jorgebastida/awslogs https://github.com/EdOverflow/can-i-take-over-xyz https://github.com/r0oth3x49/udemy-dl https://github.com/jaungiers/LSTM-Neural-Network-for-Time-Series-Prediction https://github.com/JakeWharton/pidcat https://github.com/charlesq34/pointnet https://github.com/XuehaiPan/nvitop https://github.com/wbond/package_control https://github.com/princeton-nlp/tree-of-thought-llm https://github.com/libratbag/piper https://github.com/arcee-ai/mergekit https://github.com/facebookresearch/moco https://github.com/IrisRainbowNeko/genshin_auto_fish https://github.com/pudo/dataset https://github.com/0x5e/wechat-deleted-friends https://github.com/Instagram/MonkeyType https://github.com/pkuliyi2015/multidiffusion-upscaler-for-automatic1111 https://github.com/aquasecurity/kube-hunter https://github.com/qubvel/segmentation_models https://github.com/benedekrozemberczki/awesome-graph-classification https://github.com/Plachtaa/VITS-fast-fine-tuning https://github.com/LionSec/katoolin https://github.com/diafygi/acme-tiny https://github.com/AzeemIdrisi/PhoneSploit-Pro https://github.com/devanshbatham/Awesome-Bugbounty-Writeups https://github.com/meta-llama/llama-models https://github.com/jcjohnson/pytorch-examples https://github.com/macanv/BERT-BiLSTM-CRF-NER https://github.com/pytoolz/toolz https://github.com/OpenRunner/clash-freenode https://github.com/aws-cloudformation/aws-cloudformation-templates https://github.com/open-mmlab/OpenPCDet https://github.com/simonw/llm https://github.com/listen1/listen1 https://github.com/MechanicalSoup/MechanicalSoup https://github.com/huggingface/alignment-handbook https://github.com/tortoise/tortoise-orm https://github.com/lorenzodifuccia/safaribooks https://github.com/ct-Open-Source/tuya-convert https://github.com/derrod/legendary https://github.com/AILab-CVC/YOLO-World https://github.com/google-deepmind/graphcast https://github.com/python-jsonschema/jsonschema https://github.com/jazzband/tablib https://github.com/LyleMi/Learn-Web-Hacking https://github.com/microsoft/LLMLingua https://github.com/cookiecutter-flask/cookiecutter-flask https://github.com/Qix-/better-exceptions https://github.com/huggingface/parler-tts https://github.com/al-one/hass-xiaomi-miot https://github.com/offu/WeRoBot https://github.com/Akegarasu/lora-scripts https://github.com/hhatto/autopep8 https://github.com/ThioJoe/YT-Spammer-Purge https://github.com/mouredev/hello-sql https://github.com/togethercomputer/RedPajama-Data https://github.com/lepture/authlib https://github.com/miguelgrinberg/microblog https://github.com/huashengdun/webssh https://github.com/googlemaps/google-maps-services-python https://github.com/gd3kr/BlenderGPT https://github.com/opencv/opencv-python https://github.com/jasperproject/jasper-client https://github.com/SpiderLabs/Responder https://github.com/realpython/discover-flask https://github.com/OFA-Sys/Chinese-CLIP https://github.com/isl-org/MiDaS https://github.com/corna/me_cleaner https://github.com/Mebus/cupp https://github.com/spyoungtech/grequests https://github.com/ollama/ollama-python https://github.com/Tianxiaomo/pytorch-YOLOv4 https://github.com/geopy/geopy https://github.com/facebookresearch/DrQA https://github.com/JustAnotherArchivist/snscrape https://github.com/rbreaves/kinto https://github.com/cjhutto/vaderSentiment https://github.com/carltongibson/django-filter https://github.com/InkboxSoftware/excelCPU https://github.com/TheSpeedX/TBomb https://github.com/zedr/clean-code-python https://github.com/lincolnloop/python-qrcode https://github.com/schenkd/nginx-ui https://github.com/OmkarPathak/pygorithm https://github.com/cbh123/narrator https://github.com/MakiNaruto/Automatic_ticket_purchase https://github.com/pythonprofilers/memory_profiler https://github.com/amperser/proselint https://github.com/NewFuture/DDNS https://github.com/Kr1s77/Python-crawler-tutorial-starts-from-zero https://github.com/Bogdanp/dramatiq https://github.com/phodal/awesome-iot https://github.com/Codium-ai/cover-agent https://github.com/graphql-python/graphene-django https://github.com/wkentaro/gdown https://github.com/jamalex/notion-py https://github.com/qbittorrent/search-plugins https://github.com/RomelTorres/alpha_vantage https://github.com/weiaicunzai/pytorch-cifar100 https://github.com/shidenggui/easyquotation https://github.com/ThoughtfulDev/EagleEye https://github.com/openimages/dataset https://github.com/aiortc/aiortc https://github.com/showlab/Tune-A-Video https://github.com/audreyfeldroy/cookiecutter-pypackage https://github.com/pallets-eco/flask-sqlalchemy https://github.com/rawandahmad698/PyChatGPT https://github.com/amanusk/s-tui https://github.com/FoundationVision/VAR https://github.com/INTERMT/Awesome-PyTorch-Chinese https://github.com/anudeepND/whitelist https://github.com/jeffkaufman/icdiff https://github.com/spulec/freezegun https://github.com/avinassh/rockstar https://github.com/Bing-su/adetailer https://github.com/khast3x/h8mail https://github.com/getsentry/responses https://github.com/Doriandarko/maestro https://github.com/gaussic/text-classification-cnn-rnn https://github.com/google-deepmind/alphageometry https://github.com/agermanidis/autosub https://github.com/facundoolano/software-papers https://github.com/zas023/JdBuyer https://github.com/facebookresearch/lingua https://github.com/pythonguis/pythonguis-examples https://github.com/kwai/DouZero https://github.com/ddgth/cf2dns https://github.com/NVlabs/stylegan2-ada-pytorch https://github.com/facebookarchive/codemod https://github.com/cubiq/ComfyUI_IPAdapter_plus https://github.com/scrapinghub/splash https://github.com/kelvins/awesome-mlops https://github.com/openai/grok https://github.com/cloudflare/flan https://github.com/facebookarchive/huxley https://github.com/Blealtan/efficient-kan https://github.com/instantbox/instantbox https://github.com/google-deepmind/learning-to-learn https://github.com/wookayin/gpustat https://github.com/lanmaster53/recon-ng https://github.com/dabeaz/curio https://github.com/RoganDawes/P4wnP1 https://github.com/openai/transformer-debugger https://github.com/CrazyBoyM/llama3-Chinese-chat https://github.com/yosinski/deep-visualization-toolbox https://github.com/sksq96/pytorch-summary https://github.com/hluwa/frida-dexdump https://github.com/jazzband/djangorestframework-simplejwt https://github.com/CLUEbenchmark/CLUE https://github.com/DanMcInerney/wifijammer https://github.com/Veil-Framework/Veil https://github.com/docker/genai-stack https://github.com/miguelgrinberg/python-socketio https://github.com/scottrogowski/code2flow https://github.com/codemayq/chinese-chatbot-corpus https://github.com/TurboWay/bigdata_analyse https://github.com/UltimaHoarder/UltimaScraper https://github.com/donnemartin/haxor-news https://github.com/paperswithbacktest/awesome-systematic-trading https://github.com/hudson-and-thames/mlfinlab https://github.com/imWildCat/scylla https://github.com/abewley/sort https://github.com/AonCyberLabs/Windows-Exploit-Suggester https://github.com/minivision-ai/photo2cartoon https://github.com/nvdv/vprof https://github.com/buriburisuri/speech-to-text-wavenet https://github.com/Jack-Lee-Hiter/AlgorithmsByPython https://github.com/dreamgaussian/dreamgaussian https://github.com/InternLM/xtuner https://github.com/emre/storm https://github.com/novnc/websockify https://github.com/zhayujie/bot-on-anything https://github.com/bisguzar/twitter-scraper https://github.com/brightmart/albert_zh https://github.com/bulletmark/libinput-gestures https://github.com/RUB-NDS/PRET https://github.com/django-tastypie/django-tastypie https://github.com/quark0/darts https://github.com/dabeaz/python-cookbook https://github.com/hwalsuklee/tensorflow-generative-model-collections https://github.com/ssut/py-googletrans https://github.com/wechatpy/wechatpy https://github.com/Significant-Gravitas/Auto-GPT-Plugins https://github.com/kenshohara/3D-ResNets-PyTorch https://github.com/jayfk/statuspage https://github.com/cs230-stanford/cs230-code-examples https://github.com/argosopentech/argos-translate https://github.com/chrippa/livestreamer https://github.com/jisaacks/GitGutter https://github.com/guelfoweb/knock https://github.com/goodfeli/adversarial https://github.com/joblib/joblib https://github.com/fastmonkeys/stellar https://github.com/lllyasviel/sd-forge-layerdiffuse https://github.com/floydhub/dl-docker https://github.com/promptslab/Awesome-Prompt-Engineering https://github.com/bklieger-groq/g1 https://github.com/Lasagne/Lasagne https://github.com/encode/databases https://github.com/elastic/elasticsearch-dsl-py https://github.com/VPN-Subcription-Links/ClashX-V2Ray-TopFreeProxy https://github.com/mherrmann/fbs https://github.com/rspeer/python-ftfy https://github.com/Yelp/detect-secrets https://github.com/JunMa11/SegLossOdyssey https://github.com/Greenwolf/social_mapper https://github.com/boppreh/keyboard https://github.com/amazon-science/mm-cot https://github.com/naturomics/CapsNet-Tensorflow https://github.com/BigBrotherTrade/trader https://github.com/t3l3machus/Villain https://github.com/Python-Markdown/markdown https://github.com/Blizzard/s2client-proto https://github.com/epinna/tplmap https://github.com/shroominic/codeinterpreter-api https://github.com/lwthiker/curl-impersonate https://github.com/google-research/timesfm https://github.com/openscopeproject/InteractiveHtmlBom https://github.com/facebookresearch/dlrm https://github.com/attardi/wikiextractor https://github.com/yandex/YaLM-100B https://github.com/andialbrecht/sqlparse https://github.com/NVlabs/ffhq-dataset https://github.com/reinderien/mimic https://github.com/more-itertools/more-itertools https://github.com/rytilahti/python-miio https://github.com/trustedsec/unicorn https://github.com/GerbenJavado/LinkFinder https://github.com/shenweichen/GraphEmbedding https://github.com/jmcarp/robobrowser https://github.com/rom1504/img2dataset https://github.com/drathier/stack-overflow-import https://github.com/nalepae/pandarallel https://github.com/fake-useragent/fake-useragent https://github.com/pluwen/awesome-testflight-link https://github.com/pandolia/qqbot https://github.com/llm-workflow-engine/llm-workflow-engine https://github.com/nadimkobeissi/mkbsd https://github.com/andreafrancia/trash-cli https://github.com/endernewton/tf-faster-rcnn https://github.com/google-research/multinerf https://github.com/peterbrittain/asciimatics https://github.com/django-guardian/django-guardian https://github.com/GanymedeNil/document.ai https://github.com/Wookai/paper-tips-and-tricks https://github.com/Codium-ai/AlphaCodium https://github.com/django-haystack/django-haystack https://github.com/kimiyoung/transformer-xl https://github.com/wenge-research/YAYI2 https://github.com/MrGemy95/Tensorflow-Project-Template https://github.com/rkern/line_profiler https://github.com/huggingface/distil-whisper https://github.com/apple/ml-depth-pro https://github.com/asottile/pyupgrade https://github.com/AsahiLinux/m1n1 https://github.com/websocket-client/websocket-client https://github.com/maxcountryman/flask-login https://github.com/karpathy/build-nanogpt https://github.com/lanjelot/patator https://github.com/bchao1/bullet https://github.com/byt3bl33d3r/MITMf https://github.com/miyakogi/pyppeteer https://github.com/JJTech0130/pypush https://github.com/tartley/colorama https://github.com/mukulpatnaik/researchgpt https://github.com/karpathy/ng-video-lecture https://github.com/ricklamers/gpt-code-ui https://github.com/open-mmlab/mmtracking https://github.com/MaartenGr/KeyBERT https://github.com/openai/glide-text2im https://github.com/pdfarranger/pdfarranger https://github.com/rawpython/remi https://github.com/awentzonline/image-analogies https://github.com/miso-belica/sumy https://github.com/FactoryBoy/factory_boy https://github.com/santinic/pampy https://github.com/keylase/nvidia-patch https://github.com/grantjenks/free-python-games https://github.com/jendrikseipp/vulture https://github.com/facebookresearch/encodec https://github.com/elliotgao2/toapi https://github.com/minimaxir/simpleaichat https://github.com/huggingface/speech-to-speech https://github.com/lijiejie/subDomainsBrute https://github.com/xtekky/chatgpt-clone https://github.com/yoheinakajima/instagraph https://github.com/TencentARC/T2I-Adapter https://github.com/eudicots/Cactus https://github.com/tlkh/asitop https://github.com/wal-e/wal-e https://github.com/dataabc/weibo-crawler https://github.com/sloria/doitlive https://github.com/PyCQA/flake8 https://github.com/net4people/bbs https://github.com/lllyasviel/Paints-UNDO https://github.com/anushka23g/Complete-Placement-Preparation https://github.com/llm-attacks/llm-attacks https://github.com/coleifer/sqlite-web https://github.com/CyberPunkMetalHead/Binance-volatility-trading-bot https://github.com/madhavanmalolan/awesome-reactnative-ui https://github.com/kennethreitz/maya https://github.com/jtesta/ssh-audit https://github.com/fullhunt/log4j-scan https://github.com/continue-revolution/sd-webui-segment-anything https://github.com/zhzyker/vulmap https://github.com/s0md3v/sd-webui-roop https://github.com/minimaxir/gpt-2-simple https://github.com/mseitzer/pytorch-fid https://github.com/meetps/pytorch-semseg https://github.com/life4/textdistance https://github.com/biliup/biliup https://github.com/aim-uofa/AdelaiDet https://github.com/Anorov/cloudflare-scrape https://github.com/facebookresearch/PyTorch-BigGraph https://github.com/Suor/funcy https://github.com/dw-0/kiauh https://github.com/unionai-oss/pandera https://github.com/iryna-kondr/scikit-llm https://github.com/scdl-org/scdl https://github.com/rlabbe/filterpy https://github.com/kachayev/fn.py https://github.com/danielgross/localpilot https://github.com/Avik-Jain/100-Days-of-ML-Code-Chinese-Version https://github.com/Dataherald/dataherald https://github.com/rbgirshick/fast-rcnn https://github.com/skorokithakis/catt https://github.com/fundamentalvision/BEVFormer https://github.com/jazzband/django-taggit https://github.com/hamuchiwa/AutoRCCar https://github.com/DingXiaoH/RepVGG https://github.com/arielf/weight-loss https://github.com/insanum/gcalcli https://github.com/danfengcao/binlog2sql https://github.com/secretsquirrel/the-backdoor-factory https://github.com/shelhamer/fcn.berkeleyvision.org https://github.com/jsvine/markovify https://github.com/mooz/percol https://github.com/ayooshkathuria/pytorch-yolo-v3 https://github.com/qiwsir/algorithm https://github.com/aziz/PlainTasks https://github.com/letiantian/TextRank4ZH https://github.com/Miksus/rocketry https://github.com/MTrajK/coding-problems https://github.com/nyaadevs/nyaa https://github.com/hitsz-ids/synthetic-data-generator https://github.com/GeneralMills/pytrends https://github.com/llSourcell/learn_math_fast https://github.com/google/model_search https://github.com/LiuXingMing/SinaSpider https://github.com/flexxui/flexx https://github.com/openai/improved-diffusion https://github.com/wenge-research/YAYI https://github.com/hwchase17/langchain-hub https://github.com/pyserial/pyserial https://github.com/google-research/albert https://github.com/eliben/pycparser https://github.com/jaymody/picoGPT https://github.com/blinker-iot/blinker-py https://github.com/pypa/pipfile https://github.com/zhanghang1989/ResNeSt https://github.com/eon01/kubernetes-workshop https://github.com/fundamentalvision/Deformable-DETR https://github.com/derv82/wifite https://github.com/PetarV-/GAT https://github.com/jrfonseca/gprof2dot https://github.com/archivy/archivy https://github.com/martinarjovsky/WassersteinGAN https://github.com/piskvorky/smart_open https://github.com/Oros42/IMSI-catcher https://github.com/open-mmlab/mmselfsup https://github.com/python-twitter-tools/twitter https://github.com/jpadilla/django-rest-framework-jwt https://github.com/THUDM/GLM https://github.com/facebookresearch/MUSE https://github.com/epinna/weevely3 https://github.com/Textualize/toolong https://github.com/facebookresearch/fairscale https://github.com/behave/behave https://github.com/bowenpay/wechat-spider https://github.com/dl0312/open-apis-korea https://github.com/tensorflow/skflow https://github.com/0rpc/zerorpc-python https://github.com/farizrahman4u/seq2seq https://github.com/pyeve/cerberus https://github.com/lucidrains/musiclm-pytorch https://github.com/H4ckForJob/dirmap https://github.com/thearn/webcam-pulse-detector https://github.com/HRNet/HRNet-Semantic-Segmentation https://github.com/aapatre/Automatic-Udemy-Course-Enroller-GET-PAID-UDEMY-COURSES-for-FREE https://github.com/scrapy-plugins/scrapy-splash https://github.com/jazzband/django-oauth-toolkit https://github.com/my8100/scrapydweb https://github.com/mkaz/termgraph https://github.com/gwen001/pentest-tools https://github.com/charlesq34/pointnet2 https://github.com/GuyTevet/motion-diffusion-model https://github.com/google-deepmind/trfl https://github.com/hankcs/pyhanlp https://github.com/speedyg0nz/MagInkCal https://github.com/fivesheep/chnroutes https://github.com/Overv/outrun https://github.com/lijiejie/GitHack https://github.com/jceb/vim-orgmode https://github.com/lucasjinreal/yolov7_d2 https://github.com/asciimoo/drawille https://github.com/linyiLYi/bilibot https://github.com/nathanlopez/Stitch https://github.com/tckmn/mkcast https://github.com/clovaai/CRAFT-pytorch https://github.com/openai/glow https://github.com/Henryhaohao/Bilibili_video_download https://github.com/bhattsameer/Bombers https://github.com/spadgos/sublime-jsdocs https://github.com/jaredks/rumps https://github.com/Ehco1996/django-sspanel https://github.com/HobbitLong/SupContrast https://github.com/timothymiller/cloudflare-ddns https://github.com/continue-revolution/sd-webui-animatediff https://github.com/CharlesShang/FastMaskRCNN https://github.com/joshua-wu/deepfakes_faceswap https://github.com/ml-tooling/opyrator https://github.com/digitalinnovationone/trilha-python-dio https://github.com/disposable-email-domains/disposable-email-domains https://github.com/livid/v2ex-gae https://github.com/carykh/jumpcutter https://github.com/tusen-ai/simpledet https://github.com/evyatarmeged/Raccoon https://github.com/r0oth3x49/ghauri https://github.com/brennerm/PyTricks https://github.com/hmmlearn/hmmlearn https://github.com/anishathalye/git-remote-dropbox https://github.com/n3d1117/chatgpt-telegram-bot https://github.com/conanhujinming/comments-for-awesome-courses https://github.com/cluic/wxauto https://github.com/man-group/arctic https://github.com/jekil/awesome-hacking https://github.com/Tencent/tencent-ml-images https://github.com/prakhar1989/Algorithms https://github.com/stanford-futuredata/ColBERT https://github.com/not-kennethreitz/osx-gcc-installer https://github.com/plasma-disassembler/plasma https://github.com/almandin/fuxploider https://github.com/elastic/curator https://github.com/MarkFzp/act-plus-plus https://github.com/opengeos/segment-geospatial https://github.com/t3l3machus/hoaxshell https://github.com/etianen/django-reversion https://github.com/feross/SpoofMAC https://github.com/daveshap/OpenAI_Agent_Swarm https://github.com/emscripten-core/emsdk https://github.com/the0demiurge/ShadowSocksShare https://github.com/microsoft/torchscale https://github.com/airingursb/bilibili-user https://github.com/facebookarchive/python-instagram https://github.com/sensepost/reGeorg https://github.com/atlas-comstock/NeteaseCloudMusicFlac https://github.com/joke2k/django-environ https://github.com/shankarpandala/lazypredict https://github.com/hyunwoongko/transformer https://github.com/L1aoXingyu/pytorch-beginner https://github.com/open-mmlab/mmyolo https://github.com/jdepoix/youtube-transcript-api https://github.com/pallets/quart https://github.com/qwopqwop200/GPTQ-for-LLaMa https://github.com/joestump/python-oauth2 https://github.com/ping/instagram_private_api https://github.com/tiangolo/uwsgi-nginx-flask-docker https://github.com/momosecurity/aswan https://github.com/yangjianxin1/GPT2-chitchat https://github.com/swisskyrepo/SSRFmap https://github.com/QwenLM/Qwen2-VL https://github.com/google/skywater-pdk https://github.com/Fewbytes/rubber-docker https://github.com/inducer/pudb https://github.com/what-studio/profiling https://github.com/thomasahle/sunfish https://github.com/hustvl/Vim https://github.com/caj2pdf/caj2pdf https://github.com/scrapy/scrapyd https://github.com/Boris-code/feapder https://github.com/enhuiz/vall-e https://github.com/rougier/matplotlib-tutorial https://github.com/ryankiros/neural-storyteller https://github.com/sc0tfree/updog https://github.com/arthepsy/ssh-audit https://github.com/keithito/tacotron https://github.com/x0rz/tweets_analyzer https://github.com/blockchain-etl/ethereum-etl https://github.com/xjdr-alt/entropix https://github.com/microsoft/human-pose-estimation.pytorch https://github.com/datafold/data-diff https://github.com/jarun/ddgr https://github.com/kstenerud/iOS-Universal-Framework https://github.com/rhsimplex/image-match https://github.com/mhallsmoore/qstrader https://github.com/extremecoders-re/pyinstxtractor https://github.com/Gioman101/FlipperAmiibo https://github.com/google/nogotofail https://github.com/FreedomIntelligence/LLMZoo https://github.com/casualsnek/cassowary https://github.com/shidenggui/easyquant https://github.com/google/gif-for-cli https://github.com/pallets/itsdangerous https://github.com/djrobstep/migra https://github.com/ridgerchu/matmulfreellm https://github.com/divamgupta/image-segmentation-keras https://github.com/codingo/NoSQLMap https://github.com/Diego999/pyGAT https://github.com/rll/rllab https://github.com/Luolc/AdaBound https://github.com/jfzhang95/pytorch-deeplab-xception https://github.com/munificent/vigil https://github.com/rougier/matplotlib-cheatsheet https://github.com/manrajgrover/halo https://github.com/google-deepmind/dm-haiku https://github.com/L-codes/Neo-reGeorg https://github.com/jazzband/django-redis https://github.com/zhaipro/easy12306 https://github.com/facebookresearch/XLM https://github.com/kylemcdonald/FreeWifi https://github.com/jsvine/waybackpack https://github.com/django-mptt/django-mptt https://github.com/adrienverge/yamllint https://github.com/goldsmith/Wikipedia https://github.com/keleshev/schema https://github.com/seungeunrho/minimalRL https://github.com/skelsec/pypykatz https://github.com/huggingface/safetensors https://github.com/seatgeek/thefuzz https://github.com/jonaslejon/malicious-pdf https://github.com/tarunkant/Gopherus https://github.com/rtcatc/Packer-Fuzzer https://github.com/onelivesleft/PrettyErrors https://github.com/keras-team/keras-tuner https://github.com/libffcv/ffcv https://github.com/Tramac/awesome-semantic-segmentation-pytorch https://github.com/nryoung/algorithms https://github.com/JusticeRage/Gepetto https://github.com/sqlalchemy/alembic https://github.com/thp/urlwatch https://github.com/dahlia/awesome-sqlalchemy https://github.com/Tinche/aiofiles https://github.com/mpoon/gpt-repository-loader https://github.com/omab/python-social-auth https://github.com/kemayo/sublime-text-git https://github.com/jumper2014/lianjia-beike-spider https://github.com/xflux-gui/fluxgui https://github.com/oauthlib/oauthlib https://github.com/HBNetwork/python-decouple https://github.com/techgaun/github-dorks https://github.com/BayesWitnesses/m2cgen https://github.com/tomerfiliba/plumbum https://github.com/prabhupant/python-ds https://github.com/facebookresearch/ijepa https://github.com/sovrasov/flops-counter.pytorch https://github.com/scikit-learn-contrib/sklearn-pandas https://github.com/hyperknot/openfreemap https://github.com/nsidnev/fastapi-realworld-example-app https://github.com/opsdisk/pagodo https://github.com/tox-dev/pipdeptree https://github.com/EntySec/Ghost https://github.com/philipperemy/keras-attention https://github.com/django-compressor/django-compressor https://github.com/lmacken/pyrasite https://github.com/ethereon/caffe-tensorflow https://github.com/dabeaz/ply https://github.com/iam-veeramalla/python-for-devops https://github.com/FengQuanLi/ResnetGPT https://github.com/yangwohenmai/LSTM https://github.com/Tencent/PocketFlow https://github.com/huggingface/knockknock https://github.com/Doriandarko/o1-engineer https://github.com/nickliqian/cnn_captcha https://github.com/noamraph/tqdm https://github.com/taki0112/Tensorflow-Cookbook https://github.com/formspree/formspree https://github.com/xiaotudui/pytorch-tutorial https://github.com/MenghaoGuo/Awesome-Vision-Attentions https://github.com/tradytics/eiten https://github.com/jeanphix/Ghost.py https://github.com/explorerhq/sql-explorer https://github.com/salesforce/ja3 |