diff --git a/.github/workflows/checker.yml b/.github/workflows/checker.yml index d89144e..29dbf47 100644 --- a/.github/workflows/checker.yml +++ b/.github/workflows/checker.yml @@ -3,5 +3,51 @@ name: CI on: push: branches: [ main ] + paths: + - '**/*.py' pull_request: branches: [ main ] + paths: + - '**/*.py' + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-python@v5 + with: + python-version: '3.13' + + - name: Install linters + run: | + python -m pip install --upgrade pip + pip install ruff==0.14.0 mypy==1.18.2 + + - name: Collect Python files + id: files + shell: bash + run: | + FILES=$(git ls-files '*.py' 'homework_*/*.py' 'homework_*/**/*.py') + if [ -z "$FILES" ]; then + echo "none=true" >> "$GITHUB_OUTPUT" + else + printf "%s\n" $FILES > py-files.txt + echo "none=false" >> "$GITHUB_OUTPUT" + fi + + - name: Ruff lint + if: steps.files.outputs.none == 'false' + run: | + xargs -a py-files.txt ruff check + + - name: Ruff format check + if: steps.files.outputs.none == 'false' + run: | + xargs -a py-files.txt ruff format --check + + - name: Mypy type-check + if: steps.files.outputs.none == 'false' + run: | + xargs -a py-files.txt mypy diff --git a/homework_oop/errors.py b/homework_oop/errors.py new file mode 100644 index 0000000..6c5b4c5 --- /dev/null +++ b/homework_oop/errors.py @@ -0,0 +1,13 @@ +from typing import Iterable + + +class FieldNotFoundError(KeyError): + def __init__(self, field: str, candidates: Iterable[str]): + self.field = field + self.candidates = tuple(candidates) + message = f"Unknown field: {field}. Did you mean: {', '.join(self.candidates)}" + super().__init__(message) + + +class InvalidOperationError(Exception): + pass diff --git a/homework_oop/init.py b/homework_oop/init.py new file mode 100644 index 0000000..ac5a47f --- /dev/null +++ b/homework_oop/init.py @@ -0,0 +1,6 @@ +from .reader import CsvRepositoryReader +from .query import DataQuery +from .stats import StatsCalculator +from .storage import StatsSerializer +from .user import UserProfile +from .errors import FieldNotFoundError, InvalidOperationError diff --git a/homework_oop/main.py b/homework_oop/main.py new file mode 100644 index 0000000..4ebf2c0 --- /dev/null +++ b/homework_oop/main.py @@ -0,0 +1,10 @@ +from pathlib import Path +from homework_oop import CsvRepositoryReader + +def Run(): + CsvPath = Path(__file__).parent / "homework_oop" / "repositories.csv" + Rows = CsvRepositoryReader(CsvPath).read() + return Rows + +if __name__ == "__main__": + Run() diff --git a/homework_oop/repositories.csv b/homework_oop/repositories.csv new file mode 100644 index 0000000..d10197f --- /dev/null +++ b/homework_oop/repositories.csv @@ -0,0 +1,473 @@ +Name,Description,URL,Created At,Updated At,Homepage,Size,Stars,Forks,Issues,Watchers,Language,License,Topics,Has Issues,Has Projects,Has Downloads,Has Wiki,Has Pages,Has Discussions,Is Fork,Is Archived,Is Template,Default Branch +freeCodeCamp,freeCodeCamp.org's open-source codebase and curriculum. Learn to code for free.,https://github.com/freeCodeCamp/freeCodeCamp,2014-12-24T17:49:19Z,2023-09-21T11:32:33Z,http://contribute.freecodecamp.org/,387451,374074,33599,248,374074,TypeScript,BSD-3-Clause,"['careers', 'certification', 'community', 'curriculum', 'd3', 'education', 'freecodecamp', 'hacktoberfest', 'javascript', 'learn-to-code', 'math', 'nodejs', 'nonprofits', 'programming', 'react', 'teachers']",True,True,True,False,True,False,False,False,False,main +free-programming-books,:books: Freely available programming books,https://github.com/EbookFoundation/free-programming-books,2013-10-11T06:50:37Z,2023-09-21T11:09:25Z,https://ebookfoundation.github.io/free-programming-books/,17087,298393,57194,46,298393,,CC-BY-4.0,"['books', 'education', 'hacktoberfest', 'list', 'resource']",True,False,True,False,True,False,False,False,False,main +awesome,😎 Awesome lists about all kinds of interesting topics,https://github.com/sindresorhus/awesome,2014-07-11T13:42:37Z,2023-09-21T11:18:22Z,,1441,269997,26485,61,269997,,CC0-1.0,"['awesome', 'awesome-list', 'lists', 'resources', 'unicorns']",True,False,True,False,True,False,False,False,False,main +996.ICU,Repo for counting stars and contributing. Press F to pay respect to glorious developers.,https://github.com/996icu/996.ICU,2019-03-26T07:31:14Z,2023-09-21T08:09:01Z,https://996.icu,187799,267901,21497,16712,267901,,NOASSERTION,[],False,False,True,False,False,False,False,True,False,master +coding-interview-university,A complete computer science study plan to become a software engineer.,https://github.com/jwasham/coding-interview-university,2016-06-06T02:34:12Z,2023-09-21T10:54:48Z,,20998,265161,69434,56,265161,,CC-BY-SA-4.0,"['algorithm', 'algorithms', 'coding-interview', 'coding-interviews', 'computer-science', 'data-structures', 'interview', 'interview-prep', 'interview-preparation', 'programming-interviews', 'software-engineering', 'study-plan']",True,False,True,False,False,False,False,False,False,main +public-apis,A collective list of free APIs,https://github.com/public-apis/public-apis,2016-03-20T23:49:42Z,2023-09-21T11:22:06Z,http://public-apis.org,5088,256615,29254,191,256615,Python,MIT,"['api', 'apis', 'dataset', 'development', 'free', 'list', 'lists', 'open-source', 'public', 'public-api', 'public-apis', 'resources', 'software']",True,False,True,False,False,False,False,False,False,master +developer-roadmap,"Interactive roadmaps, guides and other educational content to help developers grow in their careers.",https://github.com/kamranahmedse/developer-roadmap,2017-03-15T13:45:52Z,2023-09-21T11:32:17Z,https://roadmap.sh,2267461,251416,34927,643,251416,TypeScript,NOASSERTION,"['angular-roadmap', 'backend-roadmap', 'blockchain-roadmap', 'computer-science', 'dba-roadmap', 'developer-roadmap', 'devops-roadmap', 'frontend-roadmap', 'go-roadmap', 'java-roadmap', 'javascript-roadmap', 'nodejs-roadmap', 'python-roadmap', 'qa-roadmap', 'react-roadmap', 'roadmap', 'software-architect-roadmap', 'vue-roadmap']",True,False,True,True,True,False,False,False,False,master +system-design-primer,Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.,https://github.com/donnemartin/system-design-primer,2017-02-26T16:15:28Z,2023-09-21T11:32:17Z,,11187,229569,40474,393,229569,Python,NOASSERTION,"['design', 'design-patterns', 'design-system', 'development', 'interview', 'interview-practice', 'interview-questions', 'programming', 'python', 'system', 'web', 'web-application', 'webapp']",True,True,True,True,False,False,False,False,False,master +build-your-own-x,Master programming by recreating your favorite technologies from scratch.,https://github.com/codecrafters-io/build-your-own-x,2018-05-09T12:03:18Z,2023-09-21T11:23:44Z,https://codecrafters.io,974,217627,21159,282,217627,,,"['awesome-list', 'free', 'programming', 'tutorial-code', 'tutorial-exercises', 'tutorials']",True,False,True,False,False,False,False,False,False,master +react,The library for web and native user interfaces,https://github.com/facebook/react,2013-05-24T16:15:54Z,2023-09-21T11:37:15Z,https://react.dev,345964,213299,44842,1497,213299,JavaScript,MIT,"['declarative', 'frontend', 'javascript', 'library', 'react', 'ui']",True,True,True,True,True,False,False,False,False,main +vue,"This is the repo for Vue 2. For Vue 3, go to https://github.com/vuejs/core",https://github.com/vuejs/vue,2013-07-29T03:24:51Z,2023-09-21T11:03:56Z,http://v2.vuejs.org,31925,205326,34385,649,205326,TypeScript,MIT,"['framework', 'frontend', 'javascript', 'vue']",True,True,True,True,False,False,False,False,False,main +awesome-python,"A curated list of awesome Python frameworks, libraries, software and resources",https://github.com/vinta/awesome-python,2014-06-27T21:00:06Z,2023-09-21T11:40:38Z,https://awesome-python.com/,6696,181326,23837,383,181326,Python,NOASSERTION,"['awesome', 'collections', 'python', 'python-framework', 'python-library', 'python-resources']",False,False,True,False,True,False,False,False,False,master +tensorflow,An Open Source Machine Learning Framework for Everyone,https://github.com/tensorflow/tensorflow,2015-11-07T01:19:20Z,2023-09-21T11:18:14Z,https://tensorflow.org,892377,177727,88940,2066,177727,C++,Apache-2.0,"['deep-learning', 'deep-neural-networks', 'distributed', 'machine-learning', 'ml', 'neural-network', 'python', 'tensorflow']",True,True,True,False,False,False,False,False,False,master +javascript-algorithms,📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings,https://github.com/trekhleb/javascript-algorithms,2018-03-24T07:47:04Z,2023-09-21T11:30:39Z,,13363,175401,28811,338,175401,JavaScript,MIT,"['algorithm', 'algorithms', 'computer-science', 'data-structures', 'interview', 'interview-preparation', 'javascript', 'javascript-algorithms']",True,False,True,False,False,False,False,False,False,master +You-Dont-Know-JS,A book series on JavaScript. @YDKJS on twitter.,https://github.com/getify/You-Dont-Know-JS,2013-11-16T02:37:24Z,2023-09-21T11:36:45Z,,12645,171274,33018,127,171274,,NOASSERTION,"['async', 'book', 'book-series', 'closures', 'education', 'es2015', 'es6', 'javascript', 'learn-to-code', 'programming', 'prototypes', 'training-materials', 'training-providers']",True,True,True,False,False,False,False,False,False,2nd-ed +Python,All Algorithms implemented in Python,https://github.com/TheAlgorithms/Python,2016-07-16T09:44:01Z,2023-09-21T11:35:46Z,https://the-algorithms.com/,13858,169000,41926,118,169000,Python,MIT,"['algorithm', 'algorithm-competitions', 'algorithms-implemented', 'algos', 'community-driven', 'education', 'hacktoberfest', 'interview', 'learn', 'practice', 'python', 'searches', 'sorting-algorithms', 'sorts']",True,True,True,True,False,True,False,False,False,master +CS-Notes,:books: 技术面试必备基础知识、Leetcode、计算机操作系统、计算机网络、系统设计,https://github.com/CyC2018/CS-Notes,2018-02-13T14:56:24Z,2023-09-21T11:18:15Z,http://www.cyc2018.xyz,116179,167116,50543,187,167116,,,"['algorithm', 'computer-science', 'cpp', 'interview', 'java', 'leetcode', 'python', 'system-design']",True,True,True,True,True,False,False,False,False,master +bootstrap,"The most popular HTML, CSS, and JavaScript framework for developing responsive, mobile first projects on the web.",https://github.com/twbs/bootstrap,2011-07-29T21:19:00Z,2023-09-21T11:18:20Z,https://getbootstrap.com,236221,165352,78906,477,165352,JavaScript,MIT,"['bootstrap', 'css', 'css-framework', 'html', 'javascript', 'sass', 'scss']",True,True,True,False,True,True,False,False,False,main +ohmyzsh,"🙃 A delightful community-driven (with 2,100+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool so that makes it easy to keep up with the latest updates from the community.",https://github.com/ohmyzsh/ohmyzsh,2009-08-28T18:15:37Z,2023-09-21T11:18:36Z,https://ohmyz.sh,10328,162499,25486,599,162499,Shell,MIT,"['cli', 'cli-app', 'hacktoberfest', 'oh-my-zsh', 'oh-my-zsh-plugin', 'oh-my-zsh-theme', 'ohmyzsh', 'plugin-framework', 'plugins', 'productivity', 'shell', 'terminal', 'theme', 'themes', 'zsh', 'zsh-configuration']",True,True,True,True,False,True,False,False,False,master +linux,Linux kernel source tree,https://github.com/torvalds/linux,2011-09-04T22:48:12Z,2023-09-21T10:57:52Z,,4695128,157823,50275,310,157823,C,NOASSERTION,[],False,True,True,False,False,False,False,False,False,master +flutter,Flutter makes it easy and fast to build beautiful apps for mobile and beyond,https://github.com/flutter/flutter,2015-03-06T22:54:58Z,2023-09-21T11:32:09Z,https://flutter.dev,268622,156818,26002,11792,156818,Dart,BSD-3-Clause,"['android', 'app-framework', 'cross-platform', 'dart', 'dart-platform', 'desktop', 'flutter', 'flutter-package', 'fuchsia', 'ios', 'linux-desktop', 'macos', 'material-design', 'mobile', 'mobile-development', 'skia', 'web', 'web-framework', 'windows']",True,True,True,True,False,False,False,False,False,master +gitignore,A collection of useful .gitignore templates,https://github.com/github/gitignore,2010-11-08T20:17:14Z,2023-09-21T11:19:09Z,,2356,151549,84060,446,151549,,CC0-1.0,"['git', 'gitignore']",False,False,True,False,False,False,False,False,False,main +vscode,Visual Studio Code,https://github.com/microsoft/vscode,2015-09-03T20:23:38Z,2023-09-21T11:19:17Z,https://code.visualstudio.com,848347,151340,26962,8045,151340,TypeScript,MIT,"['editor', 'electron', 'microsoft', 'typescript', 'visual-studio-code']",True,True,True,True,False,False,False,False,False,main +awesome-selfhosted,A list of Free Software network services and web applications which can be hosted on your own servers,https://github.com/awesome-selfhosted/awesome-selfhosted,2015-06-01T02:33:17Z,2023-09-21T11:42:16Z,https://awesome-selfhosted.net/,15866,149363,8279,0,149363,,NOASSERTION,"['awesome', 'awesome-list', 'cloud', 'free-software', 'hosting', 'privacy', 'self-hosted', 'selfhosted']",True,True,True,False,False,False,False,False,False,master +computer-science,:mortar_board: Path to a free self-taught education in Computer Science!,https://github.com/ossu/computer-science,2014-05-04T00:18:39Z,2023-09-21T11:43:43Z,,1224,149292,19075,17,149292,,MIT,"['awesome-list', 'computer-science', 'courses', 'curriculum']",True,True,True,True,False,False,False,False,False,master +Auto-GPT,An experimental open-source attempt to make GPT-4 fully autonomous.,https://github.com/Significant-Gravitas/Auto-GPT,2023-03-16T09:21:07Z,2023-09-21T11:33:50Z,https://agpt.co,69300,149034,32393,207,149034,JavaScript,MIT,"['ai', 'artificial-intelligence', 'autonomous-agents', 'gpt-4', 'openai', 'python']",True,True,True,True,False,True,False,False,False,master +Python-100-Days,Python - 100天从新手到大师,https://github.com/jackfrued/Python-100-Days,2018-03-01T16:05:52Z,2023-09-21T11:37:48Z,,310266,140142,49865,691,140142,Python,,[],True,True,True,True,False,False,False,False,False,master +the-art-of-command-line,"Master the command line, in one page",https://github.com/jlevy/the-art-of-command-line,2015-05-20T15:11:03Z,2023-09-21T11:19:22Z,,2772,139488,13769,222,139488,,,"['bash', 'documentation', 'linux', 'macos', 'unix', 'windows']",True,True,True,False,False,False,False,False,False,master +JavaGuide,「Java学习+面试指南」一份涵盖大部分 Java 程序员所需要掌握的核心知识。准备 Java 面试,首选 JavaGuide!,https://github.com/Snailclimb/JavaGuide,2018-05-07T13:27:00Z,2023-09-21T11:32:14Z,https://javaguide.cn,162806,137294,44828,60,137294,Java,Apache-2.0,"['algorithms', 'interview', 'java', 'jvm', 'mysql', 'redis', 'spring', 'system', 'system-design', 'zookeeper']",True,True,True,True,False,True,False,False,False,main +javascript,JavaScript Style Guide,https://github.com/airbnb/javascript,2012-11-01T23:13:50Z,2023-09-21T11:16:30Z,,3619,136485,26053,160,136485,JavaScript,MIT,"['arrow-functions', 'es2015', 'es2016', 'es2017', 'es2018', 'es6', 'eslint', 'javascript', 'linting', 'naming-conventions', 'style-guide', 'style-linter', 'styleguide', 'tc39']",True,False,True,True,True,False,False,False,False,master +youtube-dl,Command-line program to download videos from YouTube.com and other video sites,https://github.com/ytdl-org/youtube-dl,2010-10-31T14:35:07Z,2023-09-21T11:19:30Z,http://ytdl-org.github.io/youtube-dl/,64708,123522,9329,4332,123522,Python,Unlicense,[],True,True,True,False,True,False,False,False,False,master +fucking-algorithm,"刷算法全靠套路,认准 labuladong 就够了!English version supported! Crack LeetCode, not only how, but also why. ",https://github.com/labuladong/fucking-algorithm,2020-02-19T09:01:23Z,2023-09-21T11:07:06Z,https://labuladong.github.io/algo/,125919,119573,22792,360,119573,Markdown,,"['algorithms', 'computer-science', 'data-structures', 'dynamic-programming', 'dynamic-programming-algorithm', 'interview-questions', 'kmp', 'leetcode']",True,True,True,True,False,True,False,False,False,master +project-based-learning,Curated list of project-based tutorials,https://github.com/practical-tutorials/project-based-learning,2017-04-12T05:07:46Z,2023-09-21T11:22:32Z,,438,116167,16175,50,116167,,MIT,"['beginner-project', 'cpp', 'golang', 'javascript', 'project', 'python', 'tutorial', 'webdevelopment']",True,True,True,True,False,True,False,False,False,master +30-seconds-of-code,Short code snippets for all your development needs,https://github.com/30-seconds/30-seconds-of-code,2017-11-29T17:35:03Z,2023-09-21T11:19:38Z,https://30secondsofcode.org/,592926,115631,11927,34,115631,JavaScript,CC-BY-4.0,"['awesome-list', 'css', 'education', 'es6-javascript', 'git', 'html', 'javascript', 'learn-to-code', 'learning-resources', 'nodejs', 'programming', 'python', 'reactjs', 'snippets', 'snippets-collection']",True,True,True,True,False,True,False,False,False,master +go,The Go programming language,https://github.com/golang/go,2014-08-19T04:33:40Z,2023-09-21T11:26:50Z,https://go.dev,326744,114535,17164,8651,114535,Go,BSD-3-Clause,"['go', 'golang', 'language', 'programming-language']",True,True,True,True,False,True,False,False,False,master +transformers,"🤗 Transformers: State-of-the-art Machine Learning for Pytorch, TensorFlow, and JAX.",https://github.com/huggingface/transformers,2018-10-29T13:56:00Z,2023-09-21T11:26:55Z,https://huggingface.co/transformers,164291,112153,22276,811,112153,Python,Apache-2.0,"['bert', 'deep-learning', 'flax', 'hacktoberfest', 'jax', 'language-model', 'language-models', 'machine-learning', 'model-hub', 'natural-language-processing', 'nlp', 'nlp-library', 'pretrained-models', 'python', 'pytorch', 'pytorch-transformers', 'seq2seq', 'speech-recognition', 'tensorflow', 'transformer']",True,True,True,True,False,False,False,False,False,main +react-native,A framework for building native applications using React,https://github.com/facebook/react-native,2015-01-09T18:10:16Z,2023-09-21T11:26:39Z,https://reactnative.dev,856634,112057,23820,1649,112057,Java,MIT,"['android', 'app-framework', 'cross-platform', 'ios', 'mobile', 'mobile-development', 'react', 'react-native']",True,True,True,True,True,False,False,False,False,main +next.js,The React Framework,https://github.com/vercel/next.js,2016-10-05T23:32:51Z,2023-09-21T11:20:48Z,https://nextjs.org,1863492,111891,24753,2444,111891,JavaScript,MIT,"['blog', 'browser', 'compiler', 'components', 'hybrid', 'nextjs', 'node', 'react', 'server-rendering', 'ssg', 'static', 'static-site-generator', 'universal', 'vercel']",True,False,True,False,False,True,False,False,False,canary +electron,":electron: Build cross-platform desktop apps with JavaScript, HTML, and CSS",https://github.com/electron/electron,2013-04-12T01:47:36Z,2023-09-21T10:44:46Z,https://electronjs.org,141341,109151,15077,935,109151,C++,MIT,"['c-plus-plus', 'chrome', 'css', 'electron', 'html', 'javascript', 'nodejs', 'v8', 'works-with-codespaces']",True,True,True,False,False,False,False,False,False,main +awesome-go,"A curated list of awesome Go frameworks, libraries and software",https://github.com/avelino/awesome-go,2014-07-06T13:42:15Z,2023-09-21T11:34:57Z,https://awesome-go.com,10181,108489,11270,171,108489,Go,MIT,"['awesome', 'awesome-list', 'go', 'golang', 'golang-library', 'hacktoberfest']",True,False,True,False,False,True,False,False,False,main +the-book-of-secret-knowledge,"A collection of inspiring lists, manuals, cheatsheets, blogs, hacks, one-liners, cli/web tools and more.",https://github.com/trimstray/the-book-of-secret-knowledge,2018-06-23T10:43:14Z,2023-09-21T11:29:43Z,,3479,107762,7675,49,107762,,MIT,"['awesome', 'awesome-list', 'bsd', 'cheatsheets', 'devops', 'guidelines', 'hacking', 'hacks', 'howtos', 'linux', 'lists', 'manuals', 'one-liners', 'pentesters', 'resources', 'search-engines', 'security', 'security-researchers', 'sysops']",False,False,True,False,False,False,False,False,False,master +d3,"Bring data to life with SVG, Canvas and HTML. :bar_chart::chart_with_upwards_trend::tada:",https://github.com/d3/d3,2010-09-27T17:22:42Z,2023-09-21T11:20:23Z,https://d3js.org,43043,106290,23350,7,106290,Shell,ISC,"['chart', 'charts', 'd3', 'data-visualization', 'svg', 'visualization']",True,False,True,False,True,True,False,False,False,main +free-programming-books-zh_CN,:books: 免费的计算机编程类中文书籍,欢迎投稿,https://github.com/justjavac/free-programming-books-zh_CN,2013-11-04T01:59:19Z,2023-09-21T09:47:13Z,http://weibo.com/justjavac,1236,105059,27861,30,105059,,GPL-3.0,"['android', 'angular', 'books', 'free', 'ios', 'javascript', 'kotlin', 'pdf', 'programming', 'python', 'react', 'react-native', 'swift', 'vue']",False,False,True,False,False,False,False,False,False,main +stable-diffusion-webui,Stable Diffusion web UI,https://github.com/AUTOMATIC1111/stable-diffusion-webui,2022-08-22T14:05:26Z,2023-09-21T11:43:33Z,,32988,102888,20522,1489,102888,Python,AGPL-3.0,"['ai', 'ai-art', 'deep-learning', 'diffusion', 'gradio', 'image-generation', 'image2image', 'img2img', 'pytorch', 'stable-diffusion', 'text2image', 'torch', 'txt2img', 'unstable', 'upscaling', 'web']",True,True,True,True,False,True,False,False,False,master +kubernetes,Production-Grade Container Scheduling and Management,https://github.com/kubernetes/kubernetes,2014-06-06T22:56:04Z,2023-09-21T11:10:07Z,https://kubernetes.io,1201191,101803,37826,2797,101803,Go,Apache-2.0,"['cncf', 'containers', 'go', 'kubernetes']",True,True,True,False,False,False,False,False,False,master +axios,Promise based HTTP client for the browser and node.js,https://github.com/axios/axios,2014-08-18T22:30:27Z,2023-09-21T09:08:11Z,https://axios-http.com,9944,101732,10497,460,101732,JavaScript,MIT,"['hacktoberfest', 'http-client', 'javascript', 'nodejs', 'promise']",True,True,True,False,False,True,False,False,False,v1.x +create-react-app,Set up a modern web app by running one command.,https://github.com/facebook/create-react-app,2016-07-17T14:55:11Z,2023-09-21T08:05:24Z,https://create-react-app.dev,25116,100777,26703,2108,100777,JavaScript,MIT,"['build-tools', 'react', 'zero-configuration']",True,True,True,False,True,True,False,False,False,main +node,Node.js JavaScript runtime :sparkles::turtle::rocket::sparkles:,https://github.com/nodejs/node,2014-11-26T19:57:11Z,2023-09-21T11:32:18Z,https://nodejs.org,1110607,97883,27042,1884,97883,JavaScript,NOASSERTION,"['javascript', 'js', 'linux', 'macos', 'mit', 'node', 'nodejs', 'runtime', 'windows']",True,True,True,False,False,True,False,False,False,main +PowerToys,Windows system utilities to maximize productivity,https://github.com/microsoft/PowerToys,2019-05-01T17:44:02Z,2023-09-21T11:35:26Z,,332684,95486,5612,5196,95486,C#,MIT,"['color-picker', 'desktop', 'fancyzones', 'keyboard-manager', 'microsoft-powertoys', 'powerrename', 'powertoys', 'windows']",True,True,True,True,False,False,False,False,False,main +tech-interview-handbook,💯 Curated coding interview preparation materials for busy software engineers,https://github.com/yangshun/tech-interview-handbook,2016-07-05T05:00:48Z,2023-09-21T11:21:13Z,https://www.techinterviewhandbook.org,32062,94912,12259,23,94912,TypeScript,MIT,"['algorithm', 'algorithm-interview', 'algorithm-interview-questions', 'algorithms', 'behavioral-interviews', 'coding-interviews', 'interview-practice', 'interview-preparation', 'interview-questions', 'system-design']",True,False,True,True,False,True,False,False,False,main +three.js,JavaScript 3D Library.,https://github.com/mrdoob/three.js,2010-03-23T18:58:01Z,2023-09-21T11:42:41Z,https://threejs.org/,1300109,94580,35017,540,94580,JavaScript,MIT,"['3d', 'augmented-reality', 'canvas', 'html5', 'javascript', 'svg', 'virtual-reality', 'webaudio', 'webgl', 'webgl2', 'webgpu', 'webxr']",True,False,False,True,True,False,False,False,False,dev +TypeScript,TypeScript is a superset of JavaScript that compiles to clean JavaScript output.,https://github.com/microsoft/TypeScript,2014-06-17T15:28:39Z,2023-09-21T11:21:17Z,https://www.typescriptlang.org,2274848,94181,12193,5960,94181,TypeScript,Apache-2.0,"['javascript', 'language', 'typechecker', 'typescript']",True,True,True,True,False,False,False,False,False,main +nodebestpractices,:white_check_mark: The Node.js best practices list (July 2023),https://github.com/goldbergyoni/nodebestpractices,2017-09-15T08:33:19Z,2023-09-21T10:58:53Z,https://twitter.com/nodepractices/,70365,93002,9612,65,93002,Dockerfile,CC-BY-SA-4.0,"['best-practices', 'es6', 'eslint', 'express', 'expressjs', 'javascript', 'jest', 'microservices', 'mocha', 'node-js', 'nodejs', 'nodejs-development', 'npm', 'rest', 'style-guide', 'styleguide', 'testing', 'types']",True,True,True,False,False,False,False,False,False,master +scrcpy,Display and control your Android device,https://github.com/Genymobile/scrcpy,2017-11-21T18:00:27Z,2023-09-21T10:55:11Z,,5630,91258,9256,1519,91258,C,Apache-2.0,"['android', 'c', 'ffmpeg', 'libav', 'mirroring', 'recording', 'screen', 'sdl2']",True,True,True,True,False,False,False,False,False,master +deno,A modern runtime for JavaScript and TypeScript.,https://github.com/denoland/deno,2018-05-15T01:34:26Z,2023-09-21T11:41:43Z,https://deno.land,108234,90877,5035,1550,90877,Rust,MIT,"['deno', 'javascript', 'rust', 'typescript']",True,False,True,True,False,True,False,False,False,main +terminal,"The new Windows Terminal and the original Windows console host, all in the same place!",https://github.com/microsoft/terminal,2017-08-11T18:38:22Z,2023-09-21T11:38:31Z,,137408,90394,8025,1459,90394,C++,MIT,"['cmd', 'command-line', 'console', 'contributions-welcome', 'good-first-issue', 'terminal', 'windows', 'windows-console', 'windows-terminal', 'wsl']",True,True,True,True,False,True,False,False,False,main +angular,The modern web developer’s platform,https://github.com/angular/angular,2014-09-18T16:12:01Z,2023-09-21T10:11:40Z,https://angular.io,473769,90337,24264,1524,90337,TypeScript,MIT,"['angular', 'javascript', 'pwa', 'typescript', 'web', 'web-framework', 'web-performance']",True,True,True,False,False,True,False,False,False,main +awesome-chatgpt-prompts,This repo includes ChatGPT prompt curation to use ChatGPT better.,https://github.com/f/awesome-chatgpt-prompts,2022-12-05T13:54:13Z,2023-09-21T11:37:43Z,https://prompts.chat,517,89051,12036,291,89051,HTML,CC0-1.0,"['bots', 'chatbot', 'chatgpt', 'chatgpt-api', 'language']",False,False,True,False,True,False,False,False,False,main +material-ui,"MUI Core: Ready-to-use foundational React components, free forever. It includes Material UI, which implements Google's Material Design.",https://github.com/mui/material-ui,2014-08-18T19:11:54Z,2023-09-21T11:17:56Z,https://mui.com/core/,439902,88845,30222,1630,88845,TypeScript,MIT,"['design-systems', 'hacktoberfest', 'javascript', 'material-design', 'react', 'react-components', 'typescript']",True,True,True,False,False,True,False,False,False,master +ant-design,An enterprise-class UI design language and React UI library,https://github.com/ant-design/ant-design,2015-04-24T15:37:24Z,2023-09-21T11:17:52Z,https://ant.design,169599,87612,41795,1015,87612,TypeScript,MIT,"['ant-design', 'antd', 'design-systems', 'react', 'typescript', 'ui-kit', 'ui-library']",True,True,True,True,True,True,False,False,False,master +clean-code-javascript,:bathtub: Clean Code concepts adapted for JavaScript,https://github.com/ryanmcdermott/clean-code-javascript,2016-11-25T22:25:41Z,2023-09-21T11:14:04Z,,520,85801,11649,97,85801,JavaScript,MIT,"['best-practices', 'clean-architecture', 'clean-code', 'composition', 'inheritance', 'javascript', 'principles']",True,True,True,True,False,False,False,False,False,master +rust,Empowering everyone to build reliable and efficient software.,https://github.com/rust-lang/rust,2010-06-16T20:39:03Z,2023-09-21T11:17:30Z,https://www.rust-lang.org,970147,85479,11303,9589,85479,Rust,NOASSERTION,"['compiler', 'hacktoberfest', 'language', 'rust']",True,True,True,False,False,False,False,False,False,master +puppeteer,Node.js API for Chrome ,https://github.com/puppeteer/puppeteer,2017-05-09T22:16:13Z,2023-09-21T09:16:25Z,https://pptr.dev,591703,84598,9091,278,84598,TypeScript,Apache-2.0,"['automation', 'chrome', 'chromium', 'developer-tools', 'headless-chrome', 'node-module', 'testing', 'web']",True,False,True,False,True,False,False,False,False,main +vue-element-admin,:tada: A magical vue admin https://panjiachen.github.io/vue-element-admin,https://github.com/PanJiaChen/vue-element-admin,2017-04-17T03:35:49Z,2023-09-21T10:47:30Z,,15436,84040,30201,1310,84040,Vue,MIT,"['admin', 'admin-dashboard', 'admin-template', 'axios', 'dashboard', 'desktop', 'element', 'element-ui', 'i18n', 'management-system', 'mock', 'tinymce', 'vue', 'vue-admin', 'vue-cli', 'vuex', 'webpack', 'webpack4', 'xlsx']",True,True,True,True,True,True,False,False,False,master +java-design-patterns,Design patterns implemented in Java,https://github.com/iluwatar/java-design-patterns,2014-08-09T16:45:18Z,2023-09-21T09:40:04Z,https://java-design-patterns.com,30897,83772,25514,191,83772,Java,NOASSERTION,"['awesome-list', 'design-patterns', 'hacktoberfest', 'java', 'principles', 'snippets', 'snippets-collection', 'snippets-library']",True,False,True,True,False,False,False,False,False,master +storybook,"Storybook is a frontend workshop for building UI components and pages in isolation. Made for UI development, testing, and documentation. ",https://github.com/storybookjs/storybook,2016-03-18T04:23:44Z,2023-09-21T11:16:20Z,https://storybook.js.org,723883,80398,8721,1813,80398,TypeScript,MIT,"['angular', 'components', 'design-systems', 'documentation', 'ember', 'html', 'javascript', 'react', 'react-native', 'storybook', 'styleguide', 'svelte', 'testing', 'typescript', 'ui', 'ui-components', 'vue', 'web-components', 'webpack']",True,True,True,False,False,True,False,False,False,next +thefuck,Magnificent app which corrects your previous console command.,https://github.com/nvbn/thefuck,2015-04-08T15:08:04Z,2023-09-21T11:14:44Z,,4043,79397,3435,302,79397,Python,MIT,"['python', 'shell']",True,True,True,True,False,False,False,False,False,master +animate.css,🍿 A cross-browser library of CSS animations. As easy to use as an easy thing.,https://github.com/animate-css/animate.css,2011-10-12T10:07:38Z,2023-09-21T11:16:20Z,https://animate.style/,1778,78600,16528,54,78600,CSS,NOASSERTION,"['animation', 'css', 'css-animations', 'stylesheets']",True,True,True,False,True,True,False,False,False,main +Web-Dev-For-Beginners,"24 Lessons, 12 Weeks, Get Started as a Web Developer",https://github.com/microsoft/Web-Dev-For-Beginners,2020-11-10T02:44:00Z,2023-09-21T11:25:14Z,https://microsoft.github.io/Web-Dev-For-Beginners/,86621,76757,11896,75,76757,JavaScript,MIT,"['css', 'curriculum', 'education', 'html', 'javascript', 'learning', 'tutorials']",True,False,True,True,True,True,False,False,True,main +papers-we-love,Papers from the computer science community to read and discuss.,https://github.com/papers-we-love/papers-we-love,2013-12-15T14:31:41Z,2023-09-21T11:14:20Z,http://paperswelove.org/,230570,76507,5655,13,76507,Shell,,"['awesome', 'computer-science', 'meetup', 'papers', 'programming', 'read-papers', 'theory']",True,False,True,False,False,False,False,False,False,main +realworld,"""The mother of all demo apps"" — Exemplary fullstack Medium.com clone powered by React, Angular, Node, Django, and many more",https://github.com/gothinkster/realworld,2016-02-26T20:49:53Z,2023-09-21T11:14:11Z,https://www.realworld.how/,35487,76360,7062,71,76360,TypeScript,MIT,[],True,True,True,False,False,True,False,False,False,main +models,Models and examples built with TensorFlow,https://github.com/tensorflow/models,2016-02-05T01:15:20Z,2023-09-21T11:11:25Z,,613721,76105,46226,1205,76105,Jupyter Notebook,NOASSERTION,[],True,True,True,True,False,False,False,False,False,master +HelloGitHub,":octocat: 分享 GitHub 上有趣、入门级的开源项目。Share interesting, entry-level open source projects on GitHub.",https://github.com/521xueweihan/HelloGitHub,2016-05-04T06:24:11Z,2023-09-21T11:38:58Z,https://hellogithub.com,4296,75465,9304,124,75465,Python,,"['awesome', 'github', 'hellogithub', 'python']",True,True,True,False,False,True,False,False,False,master +laravel,"Laravel is a web application framework with expressive, elegant syntax. We’ve already laid the foundation for your next big idea — freeing you to create without sweating the small things.",https://github.com/laravel/laravel,2011-06-08T03:06:08Z,2023-09-21T10:58:00Z,https://laravel.com,10701,74742,23984,31,74742,PHP,,"['framework', 'laravel', 'php']",False,False,True,False,False,False,False,False,False,10.x +LeetCodeAnimation,Demonstrate all the questions on LeetCode in the form of animation.(用动画的形式呈现解LeetCode题目的思路),https://github.com/MisterBooo/LeetCodeAnimation,2018-12-06T08:01:22Z,2023-09-21T11:28:58Z,,509807,74032,13979,19,74032,Java,,"['animation', 'leetcode', 'leetcode-c', 'leetcode-java', 'leetcode-solutions']",True,True,True,True,False,False,False,False,False,master +free-for-dev,"A list of SaaS, PaaS and IaaS offerings that have free tiers of interest to devops and infradev",https://github.com/ripienaar/free-for-dev,2015-03-18T21:06:26Z,2023-09-21T11:35:21Z,https://free-for.dev/,7237,73948,8106,18,73948,HTML,,"['awesome-list', 'free-for-developers']",False,False,True,False,True,False,False,False,False,master +godot,Godot Engine – Multi-platform 2D and 3D game engine,https://github.com/godotengine/godot,2014-01-04T16:05:36Z,2023-09-21T11:41:04Z,https://godotengine.org,1345674,73884,14405,10328,73884,C++,MIT,"['game-development', 'game-engine', 'gamedev', 'godot', 'godotengine', 'hacktoberfest', 'multi-platform', 'open-source']",True,True,True,False,False,False,False,False,False,master +django,The Web framework for perfectionists with deadlines.,https://github.com/django/django,2012-04-28T02:47:18Z,2023-09-21T09:45:41Z,https://www.djangoproject.com/,241654,73146,29973,147,73146,Python,BSD-3-Clause,"['apps', 'django', 'framework', 'models', 'orm', 'python', 'templates', 'views', 'web']",False,False,True,False,False,False,False,False,False,main +every-programmer-should-know,A collection of (mostly) technical things every software developer should know about,https://github.com/mtdvio/every-programmer-should-know,2017-08-24T13:18:26Z,2023-09-21T11:11:04Z,,301,72971,6973,47,72971,,CC-BY-4.0,"['cc-by', 'collection', 'computer-science', 'educational', 'novice']",True,True,True,True,False,False,False,False,False,master +svelte,Cybernetically enhanced web apps,https://github.com/sveltejs/svelte,2016-11-20T18:13:05Z,2023-09-21T11:23:32Z,https://svelte.dev,99241,72642,4013,869,72642,JavaScript,MIT,"['compiler', 'template', 'ui']",True,True,True,True,False,False,False,False,False,master +FiraCode,Free monospaced font with programming ligatures,https://github.com/tonsky/FiraCode,2014-11-11T19:32:38Z,2023-09-21T10:37:39Z,,88609,72505,3045,367,72505,Clojure,OFL-1.1,"['font', 'ligatures', 'programming-ligatures']",True,True,True,True,False,True,False,False,False,master +Font-Awesome,"The iconic SVG, font, and CSS toolkit",https://github.com/FortAwesome/Font-Awesome,2012-02-17T14:19:43Z,2023-09-21T11:13:19Z,https://fontawesome.com,111971,72253,12434,5428,72253,JavaScript,NOASSERTION,"['css', 'font', 'fontawesome', 'icons', 'svg-icons', 'svg-sprites', 'webfont']",True,True,True,True,False,True,False,False,False,6.x +tailwindcss,A utility-first CSS framework for rapid UI development.,https://github.com/tailwindlabs/tailwindcss,2017-10-06T14:59:14Z,2023-09-21T11:33:10Z,https://tailwindcss.com/,99409,72109,3753,13,72109,HTML,MIT,"['css', 'css-framework', 'functional-css', 'postcss', 'responsive', 'tailwindcss', 'utility-classes']",True,False,True,False,False,True,False,False,False,master +frp,A fast reverse proxy to help you expose a local server behind a NAT or firewall to the internet.,https://github.com/fatedier/frp,2015-12-21T15:24:59Z,2023-09-21T11:08:20Z,,26730,72050,11963,79,72050,Go,Apache-2.0,"['expose', 'firewall', 'frp', 'go', 'http-proxy', 'nat', 'p2p', 'proxy', 'reverse-proxy', 'tunnel']",True,True,True,False,False,False,False,False,False,dev +advanced-java,😮 Core Interview Questions & Answers For Experienced Java(Backend) Developers | 互联网 Java 工程师进阶知识完全扫盲:涵盖高并发、分布式、高可用、微服务、海量数据处理等领域知识,https://github.com/doocs/advanced-java,2018-10-06T11:38:30Z,2023-09-21T10:59:45Z,https://doocs.github.io/advanced-java,33692,71635,18620,3,71635,Java,CC-BY-SA-4.0,"['advanced-java', 'distributed-search-engine', 'distributed-systems', 'doocs', 'dubbo', 'elasticsearch', 'eureka', 'feign', 'high-availability', 'high-concurrency', 'hystrix', 'java', 'message-queue', 'microservices-architecture', 'redis', 'ribbon', 'rpc', 'spring-cloud', 'springcloud-config', 'zookeeper']",True,False,True,False,True,True,False,False,False,main +gin,"Gin is a HTTP web framework written in Go (Golang). It features a Martini-like API with much better performance -- up to 40 times faster. If you need smashing performance, get yourself some Gin.",https://github.com/gin-gonic/gin,2014-06-16T23:57:25Z,2023-09-21T10:06:28Z,https://gin-gonic.com/,3263,71555,7704,754,71555,Go,MIT,"['framework', 'gin', 'go', 'middleware', 'performance', 'router', 'server']",True,False,True,False,False,False,False,False,False,master +bitcoin,Bitcoin Core integration/staging tree,https://github.com/bitcoin/bitcoin,2010-12-19T15:16:43Z,2023-09-21T10:35:37Z,https://bitcoincore.org/en/download,240110,71444,35719,666,71444,C++,MIT,"['bitcoin', 'c-plus-plus', 'cryptocurrency', 'cryptography', 'p2p']",True,True,False,False,False,False,False,False,False,master +opencv,Open Source Computer Vision Library,https://github.com/opencv/opencv,2012-07-19T09:40:17Z,2023-09-21T11:14:13Z,https://opencv.org,521137,71279,55603,2526,71279,C++,Apache-2.0,"['c-plus-plus', 'computer-vision', 'deep-learning', 'image-processing', 'opencv']",True,False,True,True,False,False,False,False,False,4.x +pytorch,Tensors and Dynamic neural networks in Python with strong GPU acceleration,https://github.com/pytorch/pytorch,2016-08-13T05:26:41Z,2023-09-21T10:55:01Z,https://pytorch.org,1185630,70933,19511,12736,70933,Python,NOASSERTION,"['autograd', 'deep-learning', 'gpu', 'machine-learning', 'neural-network', 'numpy', 'python', 'tensor']",True,True,True,True,False,False,False,False,False,main +nvm,Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions,https://github.com/nvm-sh/nvm,2010-04-15T17:47:47Z,2023-09-21T11:12:30Z,,3325,70228,7465,395,70228,Shell,MIT,"['bash', 'install', 'lts', 'node', 'node-js', 'nodejs', 'nvm', 'nvmrc', 'posix', 'posix-compliant', 'shell', 'version-manager', 'zsh']",True,False,True,False,False,False,False,False,False,master +mall,mall项目是一套电商系统,包括前台商城系统及后台管理系统,基于SpringBoot+MyBatis实现,采用Docker容器化部署。 前台商城系统包含首页门户、商品推荐、商品搜索、商品展示、购物车、订单流程、会员中心、客户服务、帮助中心等模块。 后台管理系统包含商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等模块。,https://github.com/macrozheng/mall,2018-04-04T01:11:44Z,2023-09-21T11:08:52Z,https://www.macrozheng.com/admin/,58131,70151,27571,38,70151,Java,Apache-2.0,"['docker', 'elasticsearch', 'elk', 'java', 'mongodb', 'mybatis', 'mysql', 'rabbitmq', 'redis', 'spring', 'spring-boot', 'spring-cloud', 'spring-security', 'springboot', 'springcloud', 'swagger-ui']",True,True,True,True,False,False,False,False,False,master +neovim,Vim-fork focused on extensibility and usability,https://github.com/neovim/neovim,2014-01-31T13:39:22Z,2023-09-21T11:31:11Z,https://neovim.io,246710,69560,4880,1660,69560,Vim Script,NOASSERTION,"['api', 'c', 'lua', 'neovim', 'nvim', 'text-editor', 'vim']",True,True,True,True,False,True,False,False,False,master +awesome-vue,🎉 A curated list of awesome things related to Vue.js,https://github.com/vuejs/awesome-vue,2015-10-20T00:16:14Z,2023-09-21T11:08:04Z,,13322,69509,9447,40,69509,,MIT,[],True,True,True,False,False,False,False,False,False,master +spring-boot,Spring Boot,https://github.com/spring-projects/spring-boot,2012-10-19T15:02:57Z,2023-09-21T10:39:49Z,https://spring.io/projects/spring-boot,165704,69412,39451,638,69412,Java,Apache-2.0,"['framework', 'java', 'spring', 'spring-boot']",True,True,True,True,False,False,False,False,False,main +Awesome-Hacking,"A collection of various awesome lists for hackers, pentesters and security researchers",https://github.com/Hack-with-Github/Awesome-Hacking,2016-03-30T15:47:10Z,2023-09-21T11:20:47Z,,165,69234,8668,27,69234,,CC0-1.0,"['android', 'awesome', 'bug-bounty', 'fuzzing', 'hacking', 'penetration-testing', 'pentesting-windows', 'reverse-engineering', 'security']",False,False,True,False,False,False,False,False,False,master +hugo,The world’s fastest framework for building websites.,https://github.com/gohugoio/hugo,2013-07-04T15:26:26Z,2023-09-21T11:37:56Z,https://gohugo.io,118176,69075,7354,642,69075,Go,Apache-2.0,"['blog-engine', 'cms', 'content-management-system', 'documentation-tool', 'go', 'hugo', 'static-site-generator']",True,True,True,False,False,False,False,False,False,master +tauri,"Build smaller, faster, and more secure desktop applications with a web frontend.",https://github.com/tauri-apps/tauri,2019-07-13T09:09:37Z,2023-09-21T11:00:55Z,https://tauri.app,77497,68590,1977,588,68590,Rust,Apache-2.0,"['hacktoberfest', 'high-performance', 'rust', 'webview', 'works-with-clojurescript', 'works-with-construct', 'works-with-elm', 'works-with-flutter', 'works-with-gatsby', 'works-with-mint', 'works-with-phaser', 'works-with-quasar', 'works-with-react', 'works-with-reason', 'works-with-svelte', 'works-with-vue', 'works-with-yew']",True,True,True,False,False,True,False,False,False,dev +iptv,Collection of publicly available IPTV channels from all over the world,https://github.com/iptv-org/iptv,2018-11-14T22:00:57Z,2023-09-21T09:17:27Z,,356733,68511,787,12,68511,JavaScript,Unlicense,"['iptv', 'm3u', 'playlist', 'streams', 'tv']",True,False,True,False,True,False,False,False,False,master +json-server,Get a full fake REST API with zero coding in less than 30 seconds (seriously),https://github.com/typicode/json-server,2013-11-27T13:21:13Z,2023-09-21T11:14:34Z,,3761,68430,6768,671,68430,JavaScript,MIT,[],True,True,True,False,False,False,False,False,False,master +app-ideas,A Collection of application ideas which can be used to improve your coding skills.,https://github.com/florinpop17/app-ideas,2019-02-25T18:36:56Z,2023-09-21T11:07:41Z,,614,66929,8510,348,66929,,MIT,"['applications', 'coding', 'hacktoberfest', 'ideas']",True,True,True,True,False,False,False,False,False,master +moby,Moby Project - a collaborative project for the container ecosystem to assemble container-based systems,https://github.com/moby/moby,2013-01-18T18:10:57Z,2023-09-21T10:36:35Z,https://mobyproject.org/,203440,66680,18874,3278,66680,Go,Apache-2.0,"['containers', 'docker', 'go', 'golang']",True,True,True,True,False,True,False,False,False,master +Front-End-Checklist,🗂 The perfect Front-End Checklist for modern websites and meticulous developers,https://github.com/thedaviddias/Front-End-Checklist,2017-10-16T10:12:36Z,2023-09-21T04:55:53Z,https://frontendchecklist.io,2883,66062,6359,2,66062,,CC0-1.0,"['checklist', 'css', 'front-end-developer-tool', 'front-end-development', 'frontend', 'guidelines', 'html', 'javascript', 'lists', 'reference', 'resources', 'web-development']",True,False,True,False,True,True,False,False,False,master +GitHub-Chinese-Top-Charts,:cn: GitHub中文排行榜,各语言分设「软件 | 资料」榜单,精准定位中文好项目。各取所需,高效学习。,https://github.com/GrowingGit/GitHub-Chinese-Top-Charts,2019-09-05T03:01:56Z,2023-09-21T09:32:17Z,,46919,65388,9336,127,65388,Java,NOASSERTION,[],True,True,True,True,False,False,False,False,False,master +elasticsearch,"Free and Open, Distributed, RESTful Search Engine",https://github.com/elastic/elasticsearch,2010-02-08T13:20:56Z,2023-09-21T11:34:29Z,https://www.elastic.co/products/elasticsearch,1110554,65160,23583,4418,65160,Java,NOASSERTION,"['elasticsearch', 'java', 'search-engine']",True,True,True,False,False,False,False,False,False,main +netdata,"Monitor your servers, containers, and applications, in high-resolution and in real-time!",https://github.com/netdata/netdata,2013-06-17T18:39:10Z,2023-09-21T11:16:26Z,https://www.netdata.cloud,145258,65126,5664,359,65126,C,GPL-3.0,"['alerting', 'cncf', 'data-visualization', 'database', 'devops', 'docker', 'grafana', 'influxdb', 'kubernetes', 'linux', 'machine-learning', 'mongodb', 'monitoring', 'mysql', 'netdata', 'observability', 'postgresql', 'prometheus', 'raspberry-pi', 'statsd']",True,True,True,False,False,True,False,False,False,master +reveal.js,The HTML Presentation Framework,https://github.com/hakimel/reveal.js,2011-06-07T18:54:22Z,2023-09-21T11:14:18Z,https://revealjs.com,22063,64590,16687,753,64590,JavaScript,MIT,"['presentations', 'slides', 'slideshow']",True,True,True,True,True,True,False,False,False,master +flask,The Python micro framework for building web applications.,https://github.com/pallets/flask,2010-04-06T11:11:59Z,2023-09-21T11:29:54Z,https://flask.palletsprojects.com,10345,64197,15889,3,64197,Python,BSD-3-Clause,"['flask', 'jinja', 'pallets', 'python', 'web-framework', 'werkzeug', 'wsgi']",True,False,True,False,False,True,False,False,False,main +swift,The Swift Programming Language,https://github.com/apple/swift,2015-10-23T21:15:07Z,2023-09-21T10:35:51Z,https://swift.org,1047416,64072,10286,6723,64072,C++,Apache-2.0,[],True,False,True,False,False,False,False,False,False,main +awesome-mac," Now we have become very big, Different from the original idea. Collect premium software in various categories.",https://github.com/jaywcjlove/awesome-mac,2016-07-17T15:33:47Z,2023-09-21T11:20:55Z,https://git.io/macx,11137,63603,5968,141,63603,JavaScript,CC0-1.0,"['apple', 'awesome', 'awesome-list', 'awesome-lists', 'list', 'mac', 'mac-osx', 'macos', 'macosx', 'software']",True,True,True,True,True,False,False,False,False,master +webpack,"A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows for loading parts of the application on demand. Through ""loaders"", modules can be CommonJs, AMD, ES6 modules, CSS, Images, JSON, Coffeescript, LESS, ... and your custom stuff.",https://github.com/webpack/webpack,2012-03-10T10:08:14Z,2023-09-21T09:05:00Z,https://webpack.js.org,61702,63514,8867,327,63514,JavaScript,MIT,"['amd', 'build-tool', 'commonjs', 'compiler', 'es2015', 'es6', 'esm', 'javascript', 'javascript-compiler', 'javascript-modules', 'loaders', 'module-bundler', 'plugins', 'web', 'web-performance', 'webpack']",True,True,True,False,False,True,False,False,False,main +node,Everything required to run your own Base node,https://github.com/base-org/node,2023-02-01T13:55:02Z,2023-09-21T11:35:13Z,,2612,63154,2152,6,63154,Shell,MIT,[],True,True,True,True,False,False,False,False,False,main +core,:house_with_garden: Open source home automation that puts local control and privacy first.,https://github.com/home-assistant/core,2013-09-17T07:29:48Z,2023-09-21T11:07:26Z,https://www.home-assistant.io,471813,62995,24773,2647,62995,Python,Apache-2.0,"['asyncio', 'hacktoberfest', 'home-automation', 'internet-of-things', 'iot', 'mqtt', 'python', 'raspberry-pi']",True,True,True,False,False,False,False,False,False,dev +langchain,⚡ Building applications with LLMs through composability ⚡,https://github.com/langchain-ai/langchain,2022-10-17T02:58:36Z,2023-09-21T11:32:53Z,https://python.langchain.com,73729,62801,8718,2287,62801,Python,MIT,[],True,True,True,True,False,True,False,False,False,master +fastapi,"FastAPI framework, high performance, easy to learn, fast to code, ready for production",https://github.com/tiangolo/fastapi,2018-12-08T08:21:47Z,2023-09-21T11:25:18Z,https://fastapi.tiangolo.com/,19063,62759,5298,517,62759,Python,MIT,"['api', 'async', 'asyncio', 'fastapi', 'framework', 'json', 'json-schema', 'openapi', 'openapi3', 'pydantic', 'python', 'python-types', 'python3', 'redoc', 'rest', 'starlette', 'swagger', 'swagger-ui', 'uvicorn', 'web']",True,True,True,True,False,True,False,False,False,master +code-server,VS Code in the browser,https://github.com/coder/code-server,2019-02-27T16:50:41Z,2023-09-21T11:33:57Z,https://coder.com,52928,62198,5202,303,62198,TypeScript,MIT,"['browser-ide', 'dev-tools', 'development-environment', 'ide', 'remote-work', 'vscode', 'vscode-remote']",True,True,True,False,False,True,False,False,False,main +bun,"Incredibly fast JavaScript runtime, bundler, test runner, and package manager – all in one",https://github.com/oven-sh/bun,2021-04-14T00:48:17Z,2023-09-21T11:40:11Z,https://bun.sh,122345,61964,1785,1801,61964,Zig,,"['bun', 'bundler', 'javascript', 'javascriptcore', 'jsx', 'nodejs', 'npm', 'react', 'transpiler', 'typescript', 'zig', 'ziglang']",True,False,True,False,False,True,False,False,False,main +express,"Fast, unopinionated, minimalist web framework for node.",https://github.com/expressjs/express,2009-06-26T18:56:01Z,2023-09-21T11:16:42Z,https://expressjs.com,9097,61914,11164,186,61914,JavaScript,MIT,"['express', 'javascript', 'nodejs', 'server']",True,False,True,True,False,True,False,False,False,master +Chart.js,Simple HTML5 Charts using the tag,https://github.com/chartjs/Chart.js,2013-03-17T23:56:36Z,2023-09-21T11:33:43Z,https://www.chartjs.org/,42718,61812,11944,302,61812,JavaScript,MIT,"['canvas', 'chart', 'graph', 'hacktoberfest', 'html5', 'html5-charts', 'javascript']",True,True,True,False,False,True,False,False,False,master +redis,"Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes, Streams, HyperLogLogs, Bitmaps.",https://github.com/redis/redis,2009-03-21T22:32:25Z,2023-09-21T09:30:45Z,http://redis.io,134599,61527,22932,2500,61527,C,BSD-3-Clause,"['cache', 'database', 'key-value', 'message-broker', 'nosql', 'redis']",True,True,True,False,False,True,False,False,False,unstable +clash_for_windows_pkg,A Windows/macOS GUI based on Clash,https://github.com/Fndroid/clash_for_windows_pkg,2018-10-18T22:59:10Z,2023-09-21T11:35:51Z,,42834,61276,6970,179,61276,,,"['clash', 'cross-platform', 'electron', 'gui', 'vuejs']",True,False,True,True,False,False,False,False,False,master +mermaid,Generation of diagrams like flowcharts or sequence diagrams from text in a similar manner as markdown,https://github.com/mermaid-js/mermaid,2014-11-01T23:52:32Z,2023-09-21T11:12:53Z,https://mermaid.js.org,221313,61118,5043,827,61118,JavaScript,MIT,"['diagrams', 'diagrams-as-code', 'documentation', 'flowchart', 'hacktoberfest', 'javascript', 'mindmap', 'typescript', 'uml-diagrams']",True,True,True,True,True,True,False,False,False,develop +protobuf,Protocol Buffers - Google's data interchange format,https://github.com/protocolbuffers/protobuf,2014-08-26T15:52:15Z,2023-09-21T10:14:10Z,http://protobuf.dev,139329,60831,15210,903,60831,C++,NOASSERTION,"['marshalling', 'protobuf', 'protobuf-runtime', 'protoc', 'protocol-buffers', 'protocol-compiler', 'rpc', 'serialization']",True,True,True,True,True,False,False,False,False,main +resume.github.com,Resumes generated using the GitHub informations,https://github.com/resume/resume.github.com,2011-02-06T13:39:55Z,2023-09-21T11:36:25Z,https://resume.github.com,411,60715,1426,64,60715,JavaScript,,[],True,True,True,True,True,False,False,False,False,master +interviews,Everything you need to know to get the job.,https://github.com/kdn251/interviews,2017-02-14T18:19:25Z,2023-09-21T06:00:20Z,https://www.youtube.com/channel/UCKvwPt6BifPP54yzH99ff1g?view_as=subscriber,24091,60406,12652,113,60406,Java,MIT,"['algorithm', 'algorithm-challenges', 'algorithm-competitions', 'algorithms', 'coding-challenge', 'coding-challenges', 'coding-interview', 'coding-interviews', 'interview', 'interview-practice', 'interview-prep', 'interview-preparation', 'interview-questions', 'interviews', 'java', 'leetcode', 'leetcode-java', 'leetcode-questions', 'leetcode-solutions', 'technical-coding-interview']",True,True,True,True,False,False,False,False,False,master +cs-video-courses,List of Computer Science courses with video lectures.,https://github.com/Developer-Y/cs-video-courses,2016-10-21T17:02:11Z,2023-09-21T11:41:27Z,,487,60200,8465,4,60200,,,"['algorithms', 'bioinformatics', 'computational-biology', 'computational-physics', 'computer-architecture', 'computer-science', 'computer-vision', 'database-systems', 'databases', 'deep-learning', 'embedded-systems', 'machine-learning', 'quantum-computing', 'reinforcement-learning', 'robotics', 'security', 'systems', 'web-development']",False,True,True,True,False,False,False,False,False,master +stable-diffusion,A latent text-to-image diffusion model,https://github.com/CompVis/stable-diffusion,2022-08-10T14:36:44Z,2023-09-21T10:49:46Z,https://ommer-lab.com/research/latent-diffusion-models/,43676,60139,9264,543,60139,Jupyter Notebook,NOASSERTION,[],True,True,True,True,False,False,False,False,False,main +awesome-machine-learning,"A curated list of awesome Machine Learning frameworks, libraries and software.",https://github.com/josephmisiti/awesome-machine-learning,2014-07-15T19:11:19Z,2023-09-21T11:07:19Z,,2538,60101,14187,1,60101,Python,NOASSERTION,[],True,False,True,False,True,False,False,False,False,master +redux,Predictable state container for JavaScript apps,https://github.com/reduxjs/redux,2015-05-29T23:53:15Z,2023-09-21T07:42:59Z,https://redux.js.org,29080,59933,15441,51,59933,TypeScript,MIT,['redux'],True,False,True,False,True,True,False,False,False,master +the-algorithm,Source code for Twitter's Recommendation Algorithm,https://github.com/twitter/the-algorithm,2023-03-27T14:57:57Z,2023-09-21T11:04:02Z,https://blog.twitter.com/engineering/en_us/topics/open-source/2023/twitter-recommendation-algorithm,7803,59885,12159,378,59885,Scala,AGPL-3.0,[],True,True,True,False,False,False,False,False,False,main +nest,"A progressive Node.js framework for building efficient, scalable, and enterprise-grade server-side applications with TypeScript/JavaScript 🚀",https://github.com/nestjs/nest,2017-02-04T20:12:52Z,2023-09-21T11:32:48Z,https://nestjs.com,306186,59739,7136,84,59739,TypeScript,MIT,"['framework', 'hacktoberfest', 'javascript', 'javascript-framework', 'microservices', 'nest', 'nestjs', 'node', 'nodejs', 'nodejs-framework', 'typescript', 'typescript-framework', 'websockets']",True,True,True,True,False,False,False,False,False,master +vite,Next generation frontend tooling. It's fast!,https://github.com/vitejs/vite,2020-04-21T05:03:57Z,2023-09-21T11:03:59Z,http://vitejs.dev,35082,59717,5325,577,59717,TypeScript,MIT,"['build-tool', 'dev-server', 'frontend', 'hmr', 'vite']",True,True,True,False,False,True,False,False,False,main +atom,:atom: The hackable text editor,https://github.com/atom/atom,2012-01-20T18:18:21Z,2023-09-21T08:25:17Z,https://atom.io,330585,59619,18352,994,59619,JavaScript,MIT,"['atom', 'editor', 'electron', 'javascript', 'linux', 'macos', 'windows']",True,False,True,False,False,True,False,True,False,master +keras,Deep Learning for humans,https://github.com/keras-team/keras,2015-03-28T00:35:42Z,2023-09-21T10:54:54Z,http://keras.io/,37098,59372,19411,274,59372,Python,Apache-2.0,"['data-science', 'deep-learning', 'machine-learning', 'neural-networks', 'python', 'tensorflow']",True,True,True,True,False,False,False,False,False,master +github-readme-stats,:zap: Dynamically generated stats for your github readmes,https://github.com/anuraghazra/github-readme-stats,2020-07-09T10:34:22Z,2023-09-21T11:40:41Z,https://github-readme-stats.vercel.app,3450,59198,18654,279,59198,JavaScript,MIT,"['dynamic', 'hacktoberfest', 'profile-readme', 'readme-generator', 'readme-stats', 'serverless']",True,True,True,False,False,True,False,False,False,master +markdown-here,"Google Chrome, Firefox, and Thunderbird extension that lets you write email in Markdown and render it before sending.",https://github.com/adam-p/markdown-here,2012-05-13T03:27:22Z,2023-09-21T10:04:29Z,http://markdown-here.com,16027,59154,11444,325,59154,JavaScript,MIT,[],True,True,True,True,True,False,False,False,False,master +angular.js,AngularJS - HTML enhanced for web apps!,https://github.com/angular/angular.js,2010-01-06T00:34:37Z,2023-09-20T09:51:33Z,https://angularjs.org,101744,59090,28096,464,59090,JavaScript,MIT,[],True,True,True,True,False,False,False,True,False,master +socket.io,Realtime application framework (Node.JS server),https://github.com/socketio/socket.io,2010-03-11T18:24:48Z,2023-09-21T10:16:14Z,https://socket.io,18160,58999,10220,94,58999,TypeScript,MIT,"['javascript', 'nodejs', 'socket-io', 'websocket']",True,True,True,False,True,True,False,False,False,main +ansible,"Ansible is a radically simple IT automation platform that makes your applications and systems easier to deploy and maintain. Automate everything from code deployment to network configuration to cloud management, in a language that approaches plain English, using SSH, with no agents to install on remote systems. https://docs.ansible.com.",https://github.com/ansible/ansible,2012-03-06T14:58:02Z,2023-09-21T10:28:23Z,https://www.ansible.com/,249877,58604,23681,843,58604,Python,GPL-3.0,"['ansible', 'hacktoberfest', 'python']",True,True,True,False,False,False,False,False,False,devel +architect-awesome,后端架构师技术图谱,https://github.com/xingshaocheng/architect-awesome,2018-04-06T13:30:58Z,2023-09-21T10:58:23Z,,3080,58494,17807,63,58494,,,[],True,True,True,True,False,False,False,False,False,master +awesome-react,A collection of awesome things regarding React ecosystem,https://github.com/enaqx/awesome-react,2014-08-06T05:31:44Z,2023-09-21T08:40:13Z,,2480,58204,6887,5,58204,,,"['awesome', 'awesome-list', 'javascript', 'react', 'react-apps', 'react-native', 'react-tutorial', 'samples', 'tutorial', 'typescript']",True,False,True,False,False,False,False,False,False,master +devops-exercises,"Linux, Jenkins, AWS, SRE, Prometheus, Docker, Python, Ansible, Git, Kubernetes, Terraform, OpenStack, SQL, NoSQL, Azure, GCP, DNS, Elastic, Network, Virtualization. DevOps Interview Questions",https://github.com/bregman-arie/devops-exercises,2019-10-03T17:31:21Z,2023-09-21T10:55:26Z,,4600,58131,12289,42,58131,Python,NOASSERTION,"['ansible', 'aws', 'azure', 'coding', 'containers', 'devops', 'docker', 'git', 'interview', 'interview-questions', 'kubernetes', 'linux', 'openstack', 'production-engineer', 'prometheus', 'python', 'sql', 'sre', 'terraform']",True,True,True,True,True,True,False,False,False,master +Front-end-Developer-Interview-Questions,"A list of helpful front-end related questions you can use to interview potential candidates, test yourself or completely ignore.",https://github.com/h5bp/Front-end-Developer-Interview-Questions,2012-02-09T23:34:10Z,2023-09-21T09:08:15Z,https://h5bp.org/Front-end-Developer-Interview-Questions/,5484,57845,10979,38,57845,Nunjucks,MIT,"['css-questions', 'front-end', 'html-questions', 'interview-questions', 'interview-test', 'js-questions']",True,False,True,False,True,True,False,False,False,main +jquery,jQuery JavaScript Library,https://github.com/jquery/jquery,2009-04-03T15:20:14Z,2023-09-21T10:50:49Z,https://jquery.com,32910,57816,20863,87,57816,JavaScript,MIT,['jquery'],True,False,False,True,False,True,False,False,False,main +33-js-concepts,📜 33 JavaScript concepts every developer should know.,https://github.com/leonardomso/33-js-concepts,2018-09-04T13:27:04Z,2023-09-21T10:58:56Z,,856,57702,8149,74,57702,JavaScript,MIT,"['angular', 'concepts', 'es6', 'es6-javascript', 'hacktoberfest', 'javascript', 'javascript-closures', 'javascript-engines', 'javascript-programming', 'nodejs', 'primitive-types', 'programming', 'react']",True,True,True,True,False,False,False,False,False,master +nocode,The best way to write secure and reliable applications. Write nothing; deploy nowhere.,https://github.com/kelseyhightower/nocode,2018-02-06T23:54:00Z,2023-09-21T11:32:01Z,,5,57679,4694,4361,57679,Dockerfile,Apache-2.0,[],True,True,True,True,False,False,False,False,False,master +awesome-interview-questions,:octocat: A curated awesome list of lists of interview questions. Feel free to contribute! :mortar_board: ,https://github.com/DopplerHQ/awesome-interview-questions,2015-11-28T09:48:17Z,2023-09-21T09:35:59Z,https://doppler.com,1096,57501,7684,24,57501,,,"['android-interview-questions', 'angularjs-interview-questions', 'awesome', 'awesome-list', 'awesomeness', 'interview-practice', 'interview-questions', 'interviewing', 'javascript', 'javascript-interview-questions', 'list', 'python-interview-questions', 'rails-interview', 'ruby']",True,True,True,True,False,False,False,False,False,master +lodash,"A modern JavaScript utility library delivering modularity, performance, & extras.",https://github.com/lodash/lodash,2012-04-07T04:11:46Z,2023-09-21T10:22:48Z,https://lodash.com/,48144,57483,7086,3,57483,JavaScript,NOASSERTION,"['javascript', 'lodash', 'modules', 'utilities']",True,True,True,True,False,True,False,False,False,main +funNLP,"中英文敏感词、语言检测、中外手机/电话归属地/运营商查询、名字推断性别、手机号抽取、身份证抽取、邮箱抽取、中日文人名库、中文缩写库、拆字词典、词汇情感值、停用词、反动词表、暴恐词表、繁简体转换、英文模拟中文发音、汪峰歌词生成器、职业名称词库、同义词库、反义词库、否定词库、汽车品牌词库、汽车零件词库、连续英文切割、各种中文词向量、公司名字大全、古诗词库、IT词库、财经词库、成语词库、地名词库、历史名人词库、诗词词库、医学词库、饮食词库、法律词库、汽车词库、动物词库、中文聊天语料、中文谣言数据、百度中文问答数据集、句子相似度匹配算法集合、bert资源、文本生成&摘要相关工具、cocoNLP信息抽取工具、国内电话号码正则匹配、清华大学XLORE:中英文跨语言百科知识图谱、清华大学人工智能技术系列报告、自然语言生成、NLU太难了系列、自动对联数据及机器人、用户名黑名单列表、罪名法务名词及分类模型、微信公众号语料、cs224n深度学习自然语言处理课程、中文手写汉字识别、中文自然语言处理 语料/数据集、变量命名神器、分词语料库+代码、任务型对话英文数据集、ASR 语音数据集 + 基于深度学习的中文语音识别系统、笑声检测器、Microsoft多语言数字/单位/如日期时间识别包、中华新华字典数据库及api(包括常用歇后语、成语、词语和汉字)、文档图谱自动生成、SpaCy 中文模型、Common Voice语音识别数据集新版、神经网络关系抽取、基于bert的命名实体识别、关键词(Keyphrase)抽取包pke、基于医疗领域知识图谱的问答系统、基于依存句法与语义角色标注的事件三元组抽取、依存句法分析4万句高质量标注数据、cnocr:用来做中文OCR的Python3包、中文人物关系知识图谱项目、中文nlp竞赛项目及代码汇总、中文字符数据、speech-aligner: 从“人声语音”及其“语言文本”产生音素级别时间对齐标注的工具、AmpliGraph: 知识图谱表示学习(Python)库:知识图谱概念链接预测、Scattertext 文本可视化(python)、语言/知识表示工具:BERT & ERNIE、中文对比英文自然语言处理NLP的区别综述、Synonyms中文近义词工具包、HarvestText领域自适应文本挖掘工具(新词发现-情感分析-实体链接等)、word2word:(Python)方便易用的多语言词-词对集:62种语言/3,564个多语言对、语音识别语料生成工具:从具有音频/字幕的在线视频创建自动语音识别(ASR)语料库、构建医疗实体识别的模型(包含词典和语料标注)、单文档非监督的关键词抽取、Kashgari中使用gpt-2语言模型、开源的金融投资数据提取工具、文本自动摘要库TextTeaser: 仅支持英文、人民日报语料处理工具集、一些关于自然语言的基本模型、基于14W歌曲知识库的问答尝试--功能包括歌词接龙and已知歌词找歌曲以及歌曲歌手歌词三角关系的问答、基于Siamese bilstm模型的相似句子判定模型并提供训练数据集和测试数据集、用Transformer编解码模型实现的根据Hacker News文章标题自动生成评论、用BERT进行序列标记和文本分类的模板代码、LitBank:NLP数据集——支持自然语言处理和计算人文学科任务的100部带标记英文小说语料、百度开源的基准信息抽取系统、虚假新闻数据集、Facebook: LAMA语言模型分析,提供Transformer-XL/BERT/ELMo/GPT预训练语言模型的统一访问接口、CommonsenseQA:面向常识的英文QA挑战、中文知识图谱资料、数据及工具、各大公司内部里大牛分享的技术文档 PDF 或者 PPT、自然语言生成SQL语句(英文)、中文NLP数据增强(EDA)工具、英文NLP数据增强工具 、基于医药知识图谱的智能问答系统、京东商品知识图谱、基于mongodb存储的军事领域知识图谱问答项目、基于远监督的中文关系抽取、语音情感分析、中文ULMFiT-情感分析-文本分类-语料及模型、一个拍照做题程序、世界各国大规模人名库、一个利用有趣中文语料库 qingyun 训练出来的中文聊天机器人、中文聊天机器人seqGAN、省市区镇行政区划数据带拼音标注、教育行业新闻语料库包含自动文摘功能、开放了对话机器人-知识图谱-语义理解-自然语言处理工具及数据、中文知识图谱:基于百度百科中文页面-抽取三元组信息-构建中文知识图谱、masr: 中文语音识别-提供预训练模型-高识别率、Python音频数据增广库、中文全词覆盖BERT及两份阅读理解数据、ConvLab:开源多域端到端对话系统平台、中文自然语言处理数据集、基于最新版本rasa搭建的对话系统、基于TensorFlow和BERT的管道式实体及关系抽取、一个小型的证券知识图谱/知识库、复盘所有NLP比赛的TOP方案、OpenCLaP:多领域开源中文预训练语言模型仓库、UER:基于不同语料+编码器+目标任务的中文预训练模型仓库、中文自然语言处理向量合集、基于金融-司法领域(兼有闲聊性质)的聊天机器人、g2pC:基于上下文的汉语读音自动标记模块、Zincbase 知识图谱构建工具包、诗歌质量评价/细粒度情感诗歌语料库、快速转化「中文数字」和「阿拉伯数字」、百度知道问答语料库、基于知识图谱的问答系统、jieba_fast 加速版的jieba、正则表达式教程、中文阅读理解数据集、基于BERT等最新语言模型的抽取式摘要提取、Python利用深度学习进行文本摘要的综合指南、知识图谱深度学习相关资料整理、维基大规模平行文本语料、StanfordNLP 0.2.0:纯Python版自然语言处理包、NeuralNLP-NeuralClassifier:腾讯开源深度学习文本分类工具、端到端的封闭域对话系统、中文命名实体识别:NeuroNER vs. BertNER、新闻事件线索抽取、2019年百度的三元组抽取比赛:“科学空间队”源码、基于依存句法的开放域文本知识三元组抽取和知识库构建、中文的GPT2训练代码、ML-NLP - 机器学习(Machine Learning)NLP面试中常考到的知识点和代码实现、nlp4han:中文自然语言处理工具集(断句/分词/词性标注/组块/句法分析/语义分析/NER/N元语法/HMM/代词消解/情感分析/拼写检查、XLM:Facebook的跨语言预训练语言模型、用基于BERT的微调和特征提取方法来进行知识图谱百度百科人物词条属性抽取、中文自然语言处理相关的开放任务-数据集-当前最佳结果、CoupletAI - 基于CNN+Bi-LSTM+Attention 的自动对对联系统、抽象知识图谱、MiningZhiDaoQACorpus - 580万百度知道问答数据挖掘项目、brat rapid annotation tool: 序列标注工具、大规模中文知识图谱数据:1.4亿实体、数据增强在机器翻译及其他nlp任务中的应用及效果、allennlp阅读理解:支持多种数据和模型、PDF表格数据提取工具 、 Graphbrain:AI开源软件库和科研工具,目的是促进自动意义提取和文本理解以及知识的探索和推断、简历自动筛选系统、基于命名实体识别的简历自动摘要、中文语言理解测评基准,包括代表性的数据集&基准模型&语料库&排行榜、树洞 OCR 文字识别 、从包含表格的扫描图片中识别表格和文字、语声迁移、Python口语自然语言处理工具集(英文)、 similarity:相似度计算工具包,java编写、海量中文预训练ALBERT模型 、Transformers 2.0 、基于大规模音频数据集Audioset的音频增强 、Poplar:网页版自然语言标注工具、图片文字去除,可用于漫画翻译 、186种语言的数字叫法库、Amazon发布基于知识的人-人开放领域对话数据集 、中文文本纠错模块代码、繁简体转换 、 Python实现的多种文本可读性评价指标、类似于人名/地名/组织机构名的命名体识别数据集 、东南大学《知识图谱》研究生课程(资料)、. 英文拼写检查库 、 wwsearch是企业微信后台自研的全文检索引擎、CHAMELEON:深度学习新闻推荐系统元架构 、 8篇论文梳理BERT相关模型进展与反思、DocSearch:免费文档搜索引擎、 LIDA:轻量交互式对话标注工具 、aili - the fastest in-memory index in the East 东半球最快并发索引 、知识图谱车音工作项目、自然语言生成资源大全 、中日韩分词库mecab的Python接口库、中文文本摘要/关键词提取、汉字字符特征提取器 (featurizer),提取汉字的特征(发音特征、字形特征)用做深度学习的特征、中文生成任务基准测评 、中文缩写数据集、中文任务基准测评 - 代表性的数据集-基准(预训练)模型-语料库-baseline-工具包-排行榜、PySS3:面向可解释AI的SS3文本分类器机器可视化工具 、中文NLP数据集列表、COPE - 格律诗编辑程序、doccano:基于网页的开源协同多语言文本标注工具 、PreNLP:自然语言预处理库、简单的简历解析器,用来从简历中提取关键信息、用于中文闲聊的GPT2模型:GPT2-chitchat、基于检索聊天机器人多轮响应选择相关资源列表(Leaderboards、Datasets、Papers)、(Colab)抽象文本摘要实现集锦(教程 、词语拼音数据、高效模糊搜索工具、NLP数据增广资源集、微软对话机器人框架 、 GitHub Typo Corpus:大规模GitHub多语言拼写错误/语法错误数据集、TextCluster:短文本聚类预处理模块 Short text cluster、面向语音识别的中文文本规范化、BLINK:最先进的实体链接库、BertPunc:基于BERT的最先进标点修复模型、Tokenizer:快速、可定制的文本词条化库、中文语言理解测评基准,包括代表性的数据集、基准(预训练)模型、语料库、排行榜、spaCy 医学文本挖掘与信息提取 、 NLP任务示例项目代码集、 python拼写检查库、chatbot-list - 行业内关于智能客服、聊天机器人的应用和架构、算法分享和介绍、语音质量评价指标(MOSNet, BSSEval, STOI, PESQ, SRMR)、 用138GB语料训练的法文RoBERTa预训练语言模型 、BERT-NER-Pytorch:三种不同模式的BERT中文NER实验、无道词典 - 有道词典的命令行版本,支持英汉互查和在线查询、2019年NLP亮点回顾、 Chinese medical dialogue data 中文医疗对话数据集 、最好的汉字数字(中文数字)-阿拉伯数字转换工具、 基于百科知识库的中文词语多词义/义项获取与特定句子词语语义消歧、awesome-nlp-sentiment-analysis - 情感分析、情绪原因识别、评价对象和评价词抽取、LineFlow:面向所有深度学习框架的NLP数据高效加载器、中文医学NLP公开资源整理 、MedQuAD:(英文)医学问答数据集、将自然语言数字串解析转换为整数和浮点数、Transfer Learning in Natural Language Processing (NLP) 、面向语音识别的中文/英文发音辞典、Tokenizers:注重性能与多功能性的最先进分词器、CLUENER 细粒度命名实体识别 Fine Grained Named Entity Recognition、 基于BERT的中文命名实体识别、中文谣言数据库、NLP数据集/基准任务大列表、nlp相关的一些论文及代码, 包括主题模型、词向量(Word Embedding)、命名实体识别(NER)、文本分类(Text Classificatin)、文本生成(Text Generation)、文本相似性(Text Similarity)计算等,涉及到各种与nlp相关的算法,基于keras和tensorflow 、Python文本挖掘/NLP实战示例、 Blackstone:面向非结构化法律文本的spaCy pipeline和NLP模型通过同义词替换实现文本“变脸” 、中文 预训练 ELECTREA 模型: 基于对抗学习 pretrain Chinese Model 、albert-chinese-ner - 用预训练语言模型ALBERT做中文NER 、基于GPT2的特定主题文本生成/文本增广、开源预训练语言模型合集、多语言句向量包、编码、标记和实现:一种可控高效的文本生成方法、 英文脏话大列表 、attnvis:GPT2、BERT等transformer语言模型注意力交互可视化、CoVoST:Facebook发布的多语种语音-文本翻译语料库,包括11种语言(法语、德语、荷兰语、俄语、西班牙语、意大利语、土耳其语、波斯语、瑞典语、蒙古语和中文)的语音、文字转录及英文译文、Jiagu自然语言处理工具 - 以BiLSTM等模型为基础,提供知识图谱关系抽取 中文分词 词性标注 命名实体识别 情感分析 新词发现 关键词 文本摘要 文本聚类等功能、用unet实现对文档表格的自动检测,表格重建、NLP事件提取文献资源列表 、 金融领域自然语言处理研究资源大列表、CLUEDatasetSearch - 中英文NLP数据集:搜索所有中文NLP数据集,附常用英文NLP数据集 、medical_NER - 中文医学知识图谱命名实体识别 、(哈佛)讲因果推理的免费书、知识图谱相关学习资料/数据集/工具资源大列表、Forte:灵活强大的自然语言处理pipeline工具集 、Python字符串相似性算法库、PyLaia:面向手写文档分析的深度学习工具包、TextFooler:针对文本分类/推理的对抗文本生成模块、Haystack:灵活、强大的可扩展问答(QA)框架、中文关键短语抽取工具",https://github.com/fighting41love/funNLP,2018-08-21T11:20:39Z,2023-09-21T10:27:13Z,https://zhuanlan.zhihu.com/yangyangfuture,174188,57206,13493,16,57206,Python,,[],True,True,True,True,False,False,False,False,False,master +grafana,"The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more. ",https://github.com/grafana/grafana,2013-12-11T15:59:56Z,2023-09-21T11:17:21Z,https://grafana.com,824438,57147,11258,3918,57147,TypeScript,AGPL-3.0,"['alerting', 'analytics', 'business-intelligence', 'dashboard', 'data-visualization', 'elasticsearch', 'go', 'grafana', 'hacktoberfest', 'influxdb', 'metrics', 'monitoring', 'mysql', 'postgres', 'prometheus']",True,True,True,False,False,True,False,False,False,main +shadowsocks-windows,A C# port of shadowsocks,https://github.com/shadowsocks/shadowsocks-windows,2013-01-14T07:54:16Z,2023-09-21T10:54:02Z,,13485,56977,16718,157,56977,C#,NOASSERTION,"['c-sharp', 'proxy', 'shadowsocks']",True,True,True,True,False,True,False,False,False,main +supabase,The open source Firebase alternative. Follow to stay updated about our public Beta.,https://github.com/supabase/supabase,2019-10-12T05:56:49Z,2023-09-21T11:30:24Z,https://supabase.com,1301756,56930,4881,385,56930,TypeScript,Apache-2.0,"['deno', 'embeddings', 'firebase', 'graphql', 'postgres', 'postgresql', 'postgrest', 'realtime', 'supabase', 'vectors', 'websockets']",True,True,True,False,False,True,False,False,False,master +awesome-for-beginners,A list of awesome beginners-friendly projects.,https://github.com/MunGell/awesome-for-beginners,2015-10-24T19:53:36Z,2023-09-21T11:37:21Z,,498,56760,6568,111,56760,,,"['awesome', 'awesome-list', 'beginner-project', 'beginners-friendly', 'list']",True,False,True,False,False,False,False,False,False,main +echarts,"Apache ECharts is a powerful, interactive charting and data visualization library for browser",https://github.com/apache/echarts,2013-04-03T03:18:59Z,2023-09-21T09:07:11Z,https://echarts.apache.org,220712,56384,19567,2392,56384,TypeScript,Apache-2.0,"['apache', 'canvas', 'charting-library', 'charts', 'data-visualization', 'data-viz', 'echarts', 'svg', 'visualization']",True,True,True,True,False,False,False,False,False,master +yt-dlp,A youtube-dl fork with additional features and fixes,https://github.com/yt-dlp/yt-dlp,2020-10-26T04:22:55Z,2023-09-21T11:34:26Z,https://discord.gg/H5MNcFW63r,43100,56349,4605,1303,56349,Python,Unlicense,"['python', 'sponskrub', 'sponsorblock', 'video-downloader', 'youtube-dl', 'youtube-dlc', 'youtube-downloader', 'yt-dlp']",True,True,True,True,True,True,False,False,False,master +javascript-questions,"A long list of (advanced) JavaScript questions, and their explanations :sparkles: ",https://github.com/lydiahallie/javascript-questions,2019-06-12T08:26:27Z,2023-09-21T11:02:34Z,,4132,56149,8097,10,56149,,MIT,[],True,True,True,True,False,False,False,False,False,master +strapi,"🚀 Strapi is the leading open-source headless CMS. It’s 100% JavaScript/TypeScript, fully customizable and developer-first.",https://github.com/strapi/strapi,2015-09-30T15:34:48Z,2023-09-21T09:44:16Z,https://strapi.io,454486,56105,6925,462,56105,JavaScript,NOASSERTION,"['api', 'cms', 'cms-framework', 'content-management', 'content-management-system', 'customizable', 'dashboard', 'graphql', 'hacktoberfest', 'hacktoberfest2022', 'headless-cms', 'jamstack', 'javascript', 'koa', 'koa2', 'mysql', 'nodejs', 'rest', 'strapi', 'typescript']",True,True,True,False,True,False,False,False,False,main +HowToCook,程序员在家做饭方法指南。Programmer's guide about how to cook at home (Chinese only).,https://github.com/Anduin2017/HowToCook,2020-02-29T10:43:49Z,2023-09-21T10:48:30Z,https://cook.aiurs.co,402222,56001,7911,365,56001,Shell,Unlicense,"['chinese', 'cookbook', 'cooking', 'dishes', 'recipes']",True,False,True,False,True,True,False,False,False,master +awesome-public-datasets,A topic-centric list of HQ open datasets.,https://github.com/awesomedata/awesome-public-datasets,2014-11-20T06:20:50Z,2023-09-21T10:54:53Z,https://awesomedataworld.slack.com,1003,55956,9520,125,55956,,MIT,"['aaron-swartz', 'awesome-public-datasets', 'datasets', 'opendata']",True,False,True,False,False,False,False,False,False,master +scikit-learn,scikit-learn: machine learning in Python,https://github.com/scikit-learn/scikit-learn,2010-08-17T09:43:38Z,2023-09-21T11:26:54Z,https://scikit-learn.org,159283,55881,24667,2240,55881,Python,BSD-3-Clause,"['data-analysis', 'data-science', 'machine-learning', 'python', 'statistics']",True,True,True,True,False,True,False,False,False,main +cpython,The Python programming language,https://github.com/python/cpython,2017-02-10T19:23:51Z,2023-09-21T08:55:49Z,https://www.python.org/,575953,55810,27697,8543,55810,Python,NOASSERTION,[],True,True,True,False,False,False,False,False,False,main +Apollo-11,Original Apollo 11 Guidance Computer (AGC) source code for the command and lunar modules.,https://github.com/chrislgarry/Apollo-11,2014-04-03T15:45:02Z,2023-09-20T14:43:25Z,,2957,55442,6877,139,55442,Assembly,NOASSERTION,"['agc', 'apollo', 'hacktoberfest', 'nasa']",True,True,True,True,False,False,False,False,False,master +html5-boilerplate,"A professional front-end template for building fast, robust, and adaptable web apps or sites.",https://github.com/h5bp/html5-boilerplate,2010-01-24T18:03:24Z,2023-09-21T10:32:46Z,https://html5boilerplate.com/,22266,55252,12416,8,55252,JavaScript,MIT,"['best-practices', 'css', 'html', 'html5', 'html5-boilerplate', 'javascript', 'robust']",True,False,True,True,False,True,False,False,False,main +excalidraw,Virtual whiteboard for sketching hand-drawn like diagrams,https://github.com/excalidraw/excalidraw,2020-01-02T01:04:43Z,2023-09-21T11:23:43Z,https://excalidraw.com,44913,55076,4823,1203,55076,TypeScript,MIT,"['canvas', 'collaboration', 'diagrams', 'drawing', 'productivity', 'whiteboard']",True,True,True,False,False,True,False,False,False,master +playwright,"Playwright is a framework for Web Testing and Automation. It allows testing Chromium, Firefox and WebKit with a single API. ",https://github.com/microsoft/playwright,2019-11-15T18:32:42Z,2023-09-21T11:43:53Z,https://playwright.dev,151617,55024,3017,715,55024,TypeScript,Apache-2.0,"['automation', 'chrome', 'chromium', 'e2e-testing', 'electron', 'firefox', 'javascript', 'playwright', 'testing', 'web', 'webkit']",True,False,True,False,False,True,False,False,False,main +gatsby,"The best React-based framework with performance, scalability and security built in.",https://github.com/gatsbyjs/gatsby,2015-05-21T22:43:05Z,2023-09-21T07:55:24Z,https://www.gatsbyjs.com,1127287,54718,10574,281,54718,JavaScript,MIT,"['blog', 'compiler', 'gatsby', 'graphql', 'react', 'static-site-generator', 'web-app']",True,True,True,False,False,True,False,False,False,master +hoppscotch,👽 Open source API development ecosystem - https://hoppscotch.io,https://github.com/hoppscotch/hoppscotch,2019-08-21T13:15:24Z,2023-09-21T11:24:42Z,https://hoppscotch.io,71281,54608,3748,180,54608,TypeScript,MIT,"['api', 'api-client', 'api-rest', 'api-testing', 'developer-tools', 'graphql', 'hacktoberfest', 'http', 'http-client', 'pwa', 'rest', 'rest-api', 'spa', 'testing', 'testing-tools', 'tools', 'vue', 'vuejs', 'websocket']",True,True,True,True,False,True,False,False,False,main +fzf,:cherry_blossom: A command-line fuzzy finder,https://github.com/junegunn/fzf,2013-10-23T16:04:23Z,2023-09-21T09:09:17Z,,5157,54418,2237,340,54418,Go,MIT,"['bash', 'cli', 'fish', 'fzf', 'go', 'neovim', 'tmux', 'unix', 'vim', 'zsh']",True,False,True,True,False,True,False,False,False,master +syncthing,Open Source Continuous File Synchronization,https://github.com/syncthing/syncthing,2013-11-26T09:48:21Z,2023-09-21T11:06:11Z,https://forum.syncthing.net/,124645,54394,3879,335,54394,Go,MPL-2.0,"['go', 'p2p', 'peer-to-peer', 'synchronization']",True,True,True,True,False,False,False,False,False,main +superset,Apache Superset is a Data Visualization and Data Exploration Platform,https://github.com/apache/superset,2015-07-21T18:55:34Z,2023-09-21T10:45:42Z,https://superset.apache.org/,529922,54239,11302,1488,54239,TypeScript,Apache-2.0,"['analytics', 'apache', 'apache-superset', 'asf', 'bi', 'business-analytics', 'business-intelligence', 'data-analysis', 'data-analytics', 'data-engineering', 'data-science', 'data-visualization', 'data-viz', 'flask', 'python', 'react', 'sql-editor', 'superset']",True,True,True,True,True,True,False,False,False,master +manim,Animation engine for explanatory math videos,https://github.com/3b1b/manim,2015-03-22T18:50:58Z,2023-09-21T08:58:40Z,,75821,53778,5468,392,53778,Python,MIT,"['3b1b-videos', 'animation', 'explanatory-math-videos', 'python']",True,True,True,True,True,True,False,False,False,master +element,A Vue.js 2.0 UI Toolkit for Web,https://github.com/ElemeFE/element,2016-09-03T06:19:26Z,2023-09-21T07:32:39Z,https://element.eleme.io/,94400,53678,14673,2629,53678,Vue,MIT,"['components', 'element-ui', 'javascript', 'ui-kit', 'vue', 'vue-components', 'vuejs']",True,True,True,True,True,True,False,False,False,dev +Java,All Algorithms implemented in Java,https://github.com/TheAlgorithms/Java,2016-07-16T10:21:02Z,2023-09-21T11:26:17Z,,3823,53617,18155,14,53617,Java,MIT,"['algorithm', 'algorithm-challenges', 'algorithms', 'algorithms-datastructures', 'data-structures', 'hacktoberfest', 'java', 'search', 'sort', 'sorting-algorithms']",True,False,True,False,False,False,False,False,False,master +ML-For-Beginners,"12 weeks, 26 lessons, 52 quizzes, classic Machine Learning for all",https://github.com/microsoft/ML-For-Beginners,2021-03-03T01:34:05Z,2023-09-21T10:33:15Z,https://microsoft.github.io/ML-For-Beginners/,225261,53588,11222,9,53588,HTML,MIT,"['data-science', 'education', 'machine-learning', 'machine-learning-algorithms', 'machinelearning', 'machinelearning-python', 'ml', 'python', 'r', 'scikit-learn', 'scikit-learn-python']",False,False,True,True,True,True,False,False,False,main +rails,Ruby on Rails,https://github.com/rails/rails,2008-04-11T02:19:47Z,2023-09-21T10:43:35Z,https://rubyonrails.org,264886,53499,21323,869,53499,Ruby,MIT,"['activejob', 'activerecord', 'framework', 'html', 'mvc', 'rails', 'ruby']",True,True,True,False,False,False,False,False,False,main +tesseract,Tesseract Open Source OCR Engine (main repository),https://github.com/tesseract-ocr/tesseract,2014-08-12T18:04:59Z,2023-09-21T11:14:58Z,https://tesseract-ocr.github.io/,52738,53423,8772,409,53423,C++,Apache-2.0,"['hacktoberfest', 'lstm', 'machine-learning', 'ocr', 'ocr-engine', 'tesseract', 'tesseract-ocr']",True,True,True,True,False,False,False,False,False,main +design-resources-for-developers,"Curated list of design and UI resources from stock photos, web templates, CSS frameworks, UI libraries, tools and much more",https://github.com/bradtraversy/design-resources-for-developers,2020-05-06T14:40:35Z,2023-09-21T10:37:44Z,,4679,53240,10824,0,53240,,MIT,[],True,True,True,True,False,False,False,False,False,master +spring-framework,Spring Framework,https://github.com/spring-projects/spring-framework,2010-12-08T04:04:45Z,2023-09-21T11:00:24Z,https://spring.io/projects/spring-framework,197589,53183,36903,1087,53183,Java,Apache-2.0,"['framework', 'spring', 'spring-framework']",True,True,True,True,True,False,False,False,False,main +Ventoy,A new bootable USB solution.,https://github.com/ventoy/Ventoy,2020-03-10T15:19:19Z,2023-09-21T11:40:27Z,https://www.ventoy.net,212489,52858,3731,552,52858,C,GPL-3.0,"['auto-install', 'bootable-usb', 'bsd', 'chromeos', 'iso-files', 'legacy', 'linux', 'multiboot', 'persistence', 'secure-boot', 'uefi', 'unattended', 'unix', 'usb', 'windows']",True,True,True,True,False,True,False,False,False,master +awesome-nodejs,:zap: Delightful Node.js packages and resources,https://github.com/sindresorhus/awesome-nodejs,2014-07-11T13:35:34Z,2023-09-21T11:17:16Z,https://node.cool,1511,52848,5810,4,52848,,CC0-1.0,"['awesome', 'awesome-list', 'javascript', 'list', 'node', 'nodejs']",True,False,True,False,False,True,False,False,False,main +leetcode,LeetCode Solutions: A Record of My Problem Solving Journey.( leetcode题解,记录自己的leetcode解题之路。),https://github.com/azl397985856/leetcode,2018-03-30T09:13:51Z,2023-09-21T10:55:14Z,https://leetcode-solution-leetcode-pp.gitbook.io/leetcode-solution/,145549,52454,9430,7,52454,JavaScript,NOASSERTION,"['algo', 'algorithm', 'algorithms', 'algorithms-datastructures', 'computer-science', 'cpp', 'data-structures', 'interview', 'java', 'javascript', 'leetcode', 'leetcode-solutions', 'python', 'tree']",True,True,True,True,False,True,False,False,False,master +gpt4all,gpt4all: open-source LLM chatbots that you can run anywhere,https://github.com/nomic-ai/gpt4all,2023-03-27T18:49:32Z,2023-09-21T11:33:17Z,https://gpt4all.io,13455,52362,5735,279,52362,C++,MIT,['llm-inference'],True,True,True,True,False,False,False,False,False,main +Best-websites-a-programmer-should-visit,:link: Some useful websites for programmers.,https://github.com/sdmg15/Best-websites-a-programmer-should-visit,2017-03-05T20:25:17Z,2023-09-21T11:03:37Z,,1885,52101,6891,797,52101,,MIT,"['books', 'cs', 'hacktoberfest', 'links', 'programmer', 'sites']",True,True,True,True,True,False,False,False,False,master +DeepLearning-500-questions,深度学习500问,以问答形式对常用的概率知识、线性代数、机器学习、深度学习、计算机视觉等热点问题进行阐述,以帮助自己及有需要的读者。 全书分为18个章节,50余万字。由于水平有限,书中不妥之处恳请广大读者批评指正。 未完待续............ 如有意合作,联系scutjy2015@163.com 版权所有,违权必究 Tan 2018.06,https://github.com/scutan90/DeepLearning-500-questions,2018-06-27T06:36:45Z,2023-09-21T08:16:52Z,https://github.com/scutan90/DeepLearning-500-questions,207074,51574,15688,111,51574,JavaScript,GPL-3.0,[],True,True,True,True,True,False,False,False,False,master +normalize.css,A modern alternative to CSS resets,https://github.com/necolas/normalize.css,2011-05-04T10:20:25Z,2023-09-21T10:58:17Z,http://necolas.github.io/normalize.css/,379,50991,10994,79,50991,CSS,MIT,"['css', 'css-reset', 'normalize-css']",True,False,True,False,True,False,False,False,False,master +react-router,Declarative routing for React,https://github.com/remix-run/react-router,2014-05-16T22:22:51Z,2023-09-21T08:32:16Z,https://reactrouter.com,22174,50964,10139,51,50964,TypeScript,MIT,[],True,False,True,False,False,True,False,False,False,main +PayloadsAllTheThings,A list of useful payloads and bypass for Web Application Security and Pentest/CTF,https://github.com/swisskyrepo/PayloadsAllTheThings,2016-10-18T07:29:07Z,2023-09-21T10:48:18Z,https://swisskyrepo.github.io/PayloadsAllTheThings/,17106,50831,13204,19,50831,Python,MIT,"['bounty', 'bugbounty', 'bypass', 'cheatsheet', 'enumeration', 'hacking', 'hacktoberfest', 'methodology', 'payload', 'payloads', 'penetration-testing', 'pentest', 'privilege-escalation', 'redteam', 'security', 'vulnerability', 'web-application']",False,True,True,False,True,False,False,False,False,master +Semantic-UI,Semantic is a UI component framework based around useful principles from natural language.,https://github.com/Semantic-Org/Semantic-UI,2013-04-08T23:32:04Z,2023-09-21T02:50:27Z,http://www.semantic-ui.com,113116,50763,5102,1076,50763,JavaScript,MIT,"['button', 'css-framework', 'dropdown', 'flexbox', 'popup', 'semantic', 'sidebar', 'tooltip', 'ui', 'ui-components']",True,True,True,True,False,True,False,False,False,master +tabby,A terminal for a more modern age,https://github.com/Eugeny/tabby,2016-12-23T09:06:10Z,2023-09-21T10:36:06Z,https://tabby.sh,92394,50748,3051,1601,50748,TypeScript,MIT,"['serial', 'ssh-client', 'telnet-client', 'terminal', 'terminal-emulators']",True,True,True,True,True,True,False,False,False,master +imgui,Dear ImGui: Bloat-free Graphical User interface for C++ with minimal dependencies,https://github.com/ocornut/imgui,2014-07-21T14:29:47Z,2023-09-21T10:26:10Z,,81321,50425,8981,913,50425,C++,MIT,"['api', 'cplusplus', 'framework', 'game-development', 'game-engine', 'gamedev', 'gui', 'imgui', 'immediate-gui', 'library', 'multi-platform', 'native', 'toolkit', 'tools', 'ui']",True,False,True,True,False,True,False,False,False,master +obs-studio,OBS Studio - Free and open source software for live streaming and screen recording,https://github.com/obsproject/obs-studio,2013-10-01T02:40:31Z,2023-09-21T10:06:25Z,https://obsproject.com,60304,50348,7193,593,50348,C,GPL-2.0,"['c', 'c-plus-plus', 'directshow', 'facebook-live', 'ffmpeg', 'game-capture', 'live-streaming', 'screen-capture', 'twitch-tv', 'video-recording', 'youtube-live']",True,True,True,True,True,True,False,False,False,master +requests,"A simple, yet elegant, HTTP library.",https://github.com/psf/requests,2011-02-13T18:38:17Z,2023-09-21T08:43:42Z,https://requests.readthedocs.io/en/latest/,12907,50246,9174,261,50246,Python,Apache-2.0,"['client', 'cookies', 'forhumans', 'http', 'humans', 'python', 'python-requests', 'requests']",True,False,True,True,False,False,False,False,False,main +prometheus,The Prometheus monitoring system and time series database.,https://github.com/prometheus/prometheus,2012-11-24T11:14:12Z,2023-09-21T10:52:56Z,https://prometheus.io/,166057,49937,8494,909,49937,Go,Apache-2.0,"['alerting', 'graphing', 'hacktoberfest', 'metrics', 'monitoring', 'prometheus', 'time-series']",True,True,True,True,False,True,False,False,False,main +caddy,Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTTPS,https://github.com/caddyserver/caddy,2015-01-13T19:45:03Z,2023-09-21T11:36:29Z,https://caddyserver.com,16760,49799,3802,129,49799,Go,Apache-2.0,"['acme', 'automatic-https', 'caddy', 'caddyfile', 'go', 'golang', 'hacktoberfest', 'http', 'http-server', 'http3', 'https', 'privacy', 'reverse-proxy', 'security', 'tls', 'web-server']",True,False,True,False,False,False,False,False,False,master +ionic-framework,"A powerful cross-platform UI toolkit for building native-quality iOS, Android, and Progressive Web Apps with HTML, CSS, and JavaScript.",https://github.com/ionic-team/ionic-framework,2013-08-20T23:06:02Z,2023-09-21T10:28:24Z,https://ionicframework.com,1128764,49487,13666,430,49487,TypeScript,MIT,"['angular', 'capacitor', 'framework', 'frontend', 'ionic', 'ios', 'javascript', 'material-design', 'mobile', 'pwa', 'react', 'stencil', 'stenciljs', 'typescript', 'vue', 'web', 'webcomponents']",True,False,True,True,False,True,False,False,False,main +face_recognition,The world's simplest facial recognition api for Python and the command line,https://github.com/ageitgey/face_recognition,2017-03-03T21:52:39Z,2023-09-21T10:33:30Z,,103959,49373,13111,739,49373,Python,MIT,"['face-detection', 'face-recognition', 'machine-learning', 'python']",True,True,True,True,False,False,False,False,False,master +awesome-courses,:books: List of awesome university courses for learning Computer Science!,https://github.com/prakhar1989/awesome-courses,2014-11-15T18:36:49Z,2023-09-21T10:24:01Z,,1401,49242,8040,48,49242,,,"['awesome', 'awesome-list', 'computer-science', 'courses']",True,True,True,False,True,False,False,False,False,master +awesome-cpp,"A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny things. Inspired by awesome-... stuff.",https://github.com/fffaraz/awesome-cpp,2014-07-17T08:51:11Z,2023-09-21T09:38:16Z,http://fffaraz.github.io/awesome-cpp/,2182,49111,7256,415,49111,,MIT,"['awesome', 'awesome-list', 'c', 'c-plus-plus', 'cpp', 'cpp-library', 'cppcon', 'libraries', 'list', 'lists', 'programming-tutorial', 'resources']",True,False,True,True,True,True,False,False,False,master +SecLists,"SecLists is the security tester's companion. It's a collection of multiple types of lists used during security assessments, collected in one place. List types include usernames, passwords, URLs, sensitive data patterns, fuzzing payloads, web shells, and many more.",https://github.com/danielmiessler/SecLists,2012-02-19T01:30:18Z,2023-09-21T10:41:39Z,https://www.owasp.org/index.php/OWASP_Internet_of_Things_Project,937763,48944,23219,38,48944,PHP,MIT,[],True,True,True,True,False,False,False,False,False,master +alacritty,"A cross-platform, OpenGL terminal emulator.",https://github.com/alacritty/alacritty,2016-02-18T05:02:30Z,2023-09-21T10:59:09Z,https://alacritty.org,12921,48650,2829,312,48650,Rust,Apache-2.0,"['bsd', 'gpu', 'linux', 'macos', 'opengl', 'rust', 'terminal', 'terminal-emulators', 'vte', 'windows']",True,False,True,True,False,False,False,False,False,master +material-design-icons,Material Design icons by Google,https://github.com/google/material-design-icons,2014-10-08T18:01:28Z,2023-09-21T08:06:51Z,http://google.github.io/material-design-icons/,2072721,48650,9697,252,48650,,Apache-2.0,"['android', 'icons', 'ios', 'material', 'material-design', 'sprites', 'web']",True,True,False,False,True,False,False,False,False,master +localstack,💻 A fully functional local AWS cloud stack. Develop and test your cloud & Serverless apps offline,https://github.com/localstack/localstack,2016-10-25T23:48:03Z,2023-09-21T10:55:03Z,https://localstack.cloud,32155,48519,3677,392,48519,Python,NOASSERTION,"['aws', 'cloud', 'continuous-integration', 'developer-tools', 'localstack', 'python', 'testing']",True,True,True,True,True,False,False,False,False,master +awesome-flutter,"An awesome list that curates the best Flutter libraries, tools, tutorials, articles and more.",https://github.com/Solido/awesome-flutter,2017-05-07T11:45:27Z,2023-09-21T06:50:39Z,,3229,48506,6504,57,48506,Dart,,"['android', 'awesome', 'awesome-list', 'collections', 'cross-platform', 'dartlang', 'flutter', 'flutter-apps', 'flutter-examples', 'flutter-plugin', 'flutter-plugins', 'ios', 'material-design', 'mobile', 'mobile-app', 'mobile-development', 'reactive-programming', 'resources']",False,False,True,False,True,False,False,False,False,master +scrapy,"Scrapy, a fast high-level web crawling & scraping framework for Python.",https://github.com/scrapy/scrapy,2010-02-22T02:01:14Z,2023-09-21T10:51:00Z,https://scrapy.org,25398,48501,10155,711,48501,Python,BSD-3-Clause,"['crawler', 'crawling', 'framework', 'hacktoberfest', 'python', 'scraping', 'web-scraping', 'web-scraping-python']",True,True,False,True,False,False,False,False,False,master +d2l-zh,《动手学深度学习》:面向中文读者、能运行、可讨论。中英文版被70多个国家的500多所大学用于教学。,https://github.com/d2l-ai/d2l-zh,2017-08-23T04:40:24Z,2023-09-21T11:39:16Z,http://zh.d2l.ai,316965,48498,9615,48,48498,Python,Apache-2.0,"['book', 'chinese', 'computer-vision', 'deep-learning', 'machine-learning', 'natural-language-processing', 'notebook', 'python']",False,False,True,False,False,False,False,False,False,master +openai-cookbook,Examples and guides for using the OpenAI API,https://github.com/openai/openai-cookbook,2022-03-11T02:08:53Z,2023-09-21T10:30:42Z,https://platform.openai.com/docs/,136004,48438,7951,105,48438,Jupyter Notebook,MIT,"['chatgpt', 'docs', 'gpt-3', 'gpt-4', 'openai']",True,False,True,False,False,False,False,False,False,main +awesome-scalability,"The Patterns of Scalable, Reliable, and Performant Large-Scale Systems",https://github.com/binhnguyennus/awesome-scalability,2017-12-27T03:46:40Z,2023-09-21T10:55:11Z,,1416,48395,5268,15,48395,,MIT,"['architecture', 'awesome', 'awesome-list', 'backend', 'big-data', 'computer-science', 'design-patterns', 'devops', 'distributed-systems', 'interview', 'interview-practice', 'interview-questions', 'lists', 'machine-learning', 'programming', 'resources', 'scalability', 'system', 'system-design', 'web-development']",False,False,True,False,True,False,False,False,False,master +guava,Google core libraries for Java,https://github.com/google/guava,2014-05-29T16:23:17Z,2023-09-21T11:05:02Z,,439783,48325,10759,722,48325,Java,Apache-2.0,"['guava', 'java']",True,True,True,True,True,False,False,False,False,master +you-get,:arrow_double_down: Dumb downloader that scrapes the web,https://github.com/soimort/you-get,2012-08-20T15:53:36Z,2023-09-21T07:40:12Z,https://you-get.org/,3761,48194,9310,383,48194,Python,NOASSERTION,[],False,True,True,True,True,False,False,False,False,develop +docusaurus,Easy to maintain open source documentation websites.,https://github.com/facebook/docusaurus,2017-06-20T16:13:53Z,2023-09-21T10:49:33Z,https://docusaurus.io,247987,47805,7347,316,47805,TypeScript,MIT,"['documentation', 'hacktoberfest', 'javascript', 'open-source', 'react', 'website']",True,True,True,False,True,True,False,False,False,main +moment,"Parse, validate, manipulate, and display dates in javascript.",https://github.com/moment/moment,2011-03-01T02:46:06Z,2023-09-21T06:07:32Z,momentjs.com,20992,47538,7193,296,47538,JavaScript,MIT,[],True,True,True,False,False,False,False,False,False,develop +bulma,Modern CSS framework based on Flexbox,https://github.com/jgthms/bulma,2016-01-23T23:48:34Z,2023-09-21T11:07:25Z,https://bulma.io,102822,47529,3995,377,47529,CSS,MIT,"['css', 'css-framework', 'design', 'flexbox', 'html']",True,True,True,True,True,False,False,False,False,master +nuxt,"Nuxt is an intuitive and extendable way to create type-safe, performant and production-grade full-stack web apps and websites with Vue 3.",https://github.com/nuxt/nuxt,2016-10-26T11:18:47Z,2023-09-21T11:11:34Z,https://nuxt.com,106926,47504,4365,964,47504,TypeScript,MIT,"['csr', 'full-stack', 'hybrid', 'node', 'nuxt', 'server-rendering', 'ssg', 'ssr', 'static-site-generator', 'universal', 'vue']",True,True,True,False,False,True,False,False,False,main +git,Git Source Code Mirror - This is a publish-only repository but pull requests can be turned into patches to the mailing list via GitGitGadget (https://gitgitgadget.github.io/). Please follow Documentation/SubmittingPatches procedure for any of your improvements.,https://github.com/git/git,2008-07-23T14:21:26Z,2023-09-21T09:11:08Z,,234490,47388,25461,153,47388,C,NOASSERTION,"['c', 'hacktoberfest', 'shell']",False,False,True,False,False,False,False,False,False,master +awesome-android-ui,A curated list of awesome Android UI/UX libraries,https://github.com/wasabeef/awesome-android-ui,2014-12-24T01:45:03Z,2023-09-21T11:21:23Z,,871781,47384,10326,27,47384,,MIT,"['android', 'awesome', 'ui']",True,True,True,True,False,False,False,False,False,master +jekyll,:globe_with_meridians: Jekyll is a blog-aware static site generator in Ruby,https://github.com/jekyll/jekyll,2008-10-20T06:29:03Z,2023-09-21T08:21:11Z,https://jekyllrb.com,58687,47261,10192,194,47261,Ruby,MIT,"['blog-engine', 'jekyll', 'liquid', 'markdown', 'ruby', 'static-site-generator']",True,True,True,True,True,True,False,False,False,master +RxJava,RxJava – Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observable sequences for the Java VM.,https://github.com/ReactiveX/RxJava,2013-01-08T20:11:48Z,2023-09-21T11:05:19Z,,140666,47233,7745,16,47233,Java,Apache-2.0,"['flow', 'java', 'reactive-streams', 'rxjava']",True,True,True,True,True,False,False,False,False,3.x +v2rayN,"A GUI client for Windows, support Xray core and v2fly core and others",https://github.com/2dust/v2rayN,2019-07-30T03:47:24Z,2023-09-21T11:22:42Z,https://1.2345345.xyz,30558,47222,8633,209,47222,C#,GPL-3.0,"['proxy', 'shadowsocks', 'socks5', 'trojan', 'v2fly', 'v2ray', 'vless', 'vmess', 'windows', 'xray', 'xtls']",True,False,True,True,False,True,False,False,False,master +rustdesk,"An open-source remote desktop, and alternative to TeamViewer.",https://github.com/rustdesk/rustdesk,2020-09-28T15:36:08Z,2023-09-21T10:42:38Z,https://rustdesk.com,36960,47199,5013,66,47199,Rust,AGPL-3.0,"['anydesk', 'dart', 'flutter', 'flutter-apps', 'flutter-desktop', 'flutter-examples', 'flutter-mobile', 'flutter-ui', 'flutter-web', 'linux', 'p2p', 'rdp', 'remote-control', 'remote-desktop', 'rust', 'rust-lang', 'teamviewer', 'vnc', 'wayland']",True,True,True,True,False,True,False,False,False,master +faceswap,Deepfakes Software For All,https://github.com/deepfakes/faceswap,2017-12-19T09:44:13Z,2023-09-21T11:08:06Z,https://www.faceswap.dev,201882,47086,12647,23,47086,Python,GPL-3.0,"['deep-face-swap', 'deep-learning', 'deep-neural-networks', 'deepface', 'deepfakes', 'deeplearning', 'face-swap', 'faceswap', 'fakeapp', 'machine-learning', 'myfakeapp', 'neural-nets', 'neural-networks', 'openfaceswap']",True,True,True,False,True,False,False,False,False,master +anime,JavaScript animation engine,https://github.com/juliangarnier/anime,2016-03-13T21:37:45Z,2023-09-21T10:28:41Z,https://animejs.com,49179,47065,3725,206,47065,JavaScript,MIT,"['animation', 'anime', 'canvas', 'css', 'javascript', 'javascript-library', 'svg']",True,True,True,True,True,False,False,False,False,master +clash,A rule-based tunnel in Go.,https://github.com/Dreamacro/clash,2018-06-10T14:28:14Z,2023-09-21T09:56:17Z,,2121,46866,6100,55,46866,Go,GPL-3.0,"['clash', 'golang', 'rule-based', 'tunnel']",True,True,True,True,True,False,False,False,False,master +hacker-scripts,Based on a true story,https://github.com/NARKOZ/hacker-scripts,2015-11-21T19:05:09Z,2023-09-21T10:54:57Z,,105,46786,6750,70,46786,JavaScript,,[],True,False,True,False,False,False,False,False,False,master +new-pac,翻墙-科学上网、免费科学上网、免费翻墙、VPN、一键翻墙浏览器,vps一键搭建翻墙服务器脚本/教程,免费shadowsocks/ss/ssr/v2ray/goflyway账号/节点,免费自由上网、fanqiang、翻墙梯子,电脑、手机、iOS、安卓、windows、Mac、Linux、路由器翻墙、科学上网,https://github.com/Alvin9999/new-pac,2016-03-23T08:43:36Z,2023-09-21T11:35:17Z,,1382,46641,8611,362,46641,,,"['brook', 'fanqiang', 'free-ss', 'free-ssr', 'freegate', 'gfw', 'goflyway', 'kcptun', 'lantern', 'naiveproxy', 'shadowsocks', 'shadowsocksr', 'ss', 'ssr', 'trojan', 'v2ray', 'vmess', 'vpn']",True,True,True,True,False,False,False,False,False,master +prettier,Prettier is an opinionated code formatter.,https://github.com/prettier/prettier,2016-11-29T17:13:37Z,2023-09-21T08:40:47Z,https://prettier.io,111447,46628,4030,1244,46628,JavaScript,MIT,"['angular', 'ast', 'css', 'flow', 'formatter', 'graphql', 'html', 'javascript', 'json', 'jsx', 'less', 'markdown', 'prettier', 'printer', 'scss', 'typescript', 'vue', 'yaml']",True,True,True,True,False,True,False,False,False,main +nerd-fonts,"Iconic font aggregator, collection, & patcher. 3,600+ icons, 50+ patched fonts: Hack, Source Code Pro, more. Glyph collections: Font Awesome, Material Design Icons, Octicons, & more",https://github.com/ryanoasis/nerd-fonts,2014-12-05T04:31:17Z,2023-09-21T08:58:45Z,https://NerdFonts.com,21750570,46459,3385,35,46459,CSS,NOASSERTION,"['font', 'font-awesome', 'fonts', 'hacktoberfest', 'icon-font', 'iconic-fonts', 'octicons', 'patched-fonts', 'patcher', 'powerline', 'python', 'shell', 'statusline']",True,True,True,True,True,True,False,False,False,master +kotlin,The Kotlin Programming Language. ,https://github.com/JetBrains/kotlin,2012-02-13T17:29:58Z,2023-09-21T10:30:14Z,https://kotlinlang.org,2210164,45808,5659,168,45808,Kotlin,,"['compiler', 'gradle-plugin', 'intellij-plugin', 'kotlin', 'kotlin-library', 'maven-plugin', 'programming-language']",False,False,True,False,False,False,False,False,False,master +Real-Time-Voice-Cloning,Clone a voice in 5 seconds to generate arbitrary speech in real-time,https://github.com/CorentinJ/Real-Time-Voice-Cloning,2019-05-26T08:56:15Z,2023-09-21T11:44:23Z,,369676,45521,8055,162,45521,Python,NOASSERTION,"['deep-learning', 'python', 'pytorch', 'tensorflow', 'tts', 'voice-cloning']",True,False,True,True,False,False,False,False,False,master +tldr,📚 Collaborative cheatsheets for console commands,https://github.com/tldr-pages/tldr,2013-12-08T07:34:43Z,2023-09-21T11:41:40Z,https://tldr.sh,19863,45459,3746,173,45459,Markdown,NOASSERTION,"['command-line', 'console', 'documentation', 'examples', 'hacktoberfest', 'help', 'man-page', 'manpages', 'manual', 'shell', 'terminal', 'tldr']",True,True,True,True,False,True,False,False,False,main +DefinitelyTyped,The repository for high quality TypeScript type definitions.,https://github.com/DefinitelyTyped/DefinitelyTyped,2012-10-05T16:39:45Z,2023-09-21T10:13:06Z,,619185,45270,29487,901,45270,TypeScript,NOASSERTION,"['definition', 'dts', 'hacktoberfest', 'types', 'typescript', 'typescript-definitions', 'typings']",True,True,True,False,False,True,False,False,False,master +big-list-of-naughty-strings,The Big List of Naughty Strings is a list of strings which have a high probability of causing issues when used as user-input data.,https://github.com/minimaxir/big-list-of-naughty-strings,2015-08-08T20:57:20Z,2023-09-21T09:56:55Z,,330,45216,2160,99,45216,Python,MIT,[],True,True,True,True,False,False,False,False,False,master +serverless,"⚡ Serverless Framework – Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more! – ",https://github.com/serverless/serverless,2015-04-21T03:48:40Z,2023-09-21T10:54:54Z,https://serverless.com,97981,45174,5698,1074,45174,JavaScript,MIT,"['aws', 'aws-dynamodb', 'aws-lambda', 'azure-functions', 'google-cloud-functions', 'microservice', 'serverless', 'serverless-architectures', 'serverless-framework']",True,False,True,False,False,True,False,False,False,main +gpt4free,The official gpt4free repository | various collection of powerful language models,https://github.com/xtekky/gpt4free,2023-03-29T17:00:43Z,2023-09-21T11:21:02Z,https://discord.gg/gpt4free,159332,45083,11532,53,45083,Python,GPL-3.0,"['chatbot', 'chatbots', 'chatgpt', 'chatgpt-4', 'chatgpt-api', 'chatgpt-free', 'chatgpt4', 'free-gpt', 'gpt', 'gpt-3', 'gpt-4', 'gpt3', 'gpt4', 'gpt4-api', 'language-model', 'openai', 'openai-api', 'openai-chatgpt', 'python', 'reverse-engineering']",True,True,True,True,False,True,False,False,False,main +whisper,Robust Speech Recognition via Large-Scale Weak Supervision,https://github.com/openai/whisper,2022-09-16T20:02:54Z,2023-09-21T11:40:00Z,,8401,44977,5147,29,44977,Python,MIT,[],False,False,True,False,False,True,False,False,False,main +cypress,"Fast, easy and reliable testing for anything that runs in a browser.",https://github.com/cypress-io/cypress,2015-03-04T00:46:28Z,2023-09-21T11:13:24Z,https://cypress.io,679953,44951,3027,1387,44951,JavaScript,MIT,"['cypress', 'e2e-testing', 'e2e-tests', 'end-to-end-testing', 'javascript-tests', 'test', 'test-automation', 'test-runner', 'test-suite', 'testing', 'testing-tools', 'tests']",True,False,True,False,True,True,False,False,False,develop +rich,Rich is a Python library for rich text and beautiful formatting in the terminal.,https://github.com/Textualize/rich,2019-11-10T15:28:09Z,2023-09-21T10:34:28Z,https://rich.readthedocs.io/en/latest/,49308,44796,1636,185,44796,Python,MIT,"['ansi-colors', 'emoji', 'markdown', 'progress-bar', 'progress-bar-python', 'python', 'python-library', 'python3', 'rich', 'syntax-highlighting', 'tables', 'terminal', 'terminal-color', 'traceback', 'tracebacks-rich', 'tui']",True,True,True,True,False,True,False,False,False,master +chinese-poetry,"The most comprehensive database of Chinese poetry 🧶最全中华古诗词数据库, 唐宋两朝近一万四千古诗人, 接近5.5万首唐诗加26万宋诗. 两宋时期1564位词人,21050首词。",https://github.com/chinese-poetry/chinese-poetry,2016-09-02T03:32:25Z,2023-09-21T11:22:31Z,http://shici.store,202595,44791,9103,103,44791,JavaScript,MIT,"['chinese', 'chinese-poetry', 'ci', 'json', 'poetry', 'tangshi']",True,False,True,True,True,True,False,False,False,master +traefik,The Cloud Native Application Proxy,https://github.com/traefik/traefik,2015-09-13T19:04:02Z,2023-09-21T11:14:00Z,https://traefik.io,120528,44672,4715,643,44672,Go,MIT,"['consul', 'docker', 'etcd', 'go', 'golang', 'kubernetes', 'letsencrypt', 'load-balancer', 'marathon', 'mesos', 'microservice', 'reverse-proxy', 'zookeeper']",True,True,True,True,True,False,False,False,False,master +learn-regex,Learn regex the easy way,https://github.com/ziishaned/learn-regex,2017-07-22T12:21:03Z,2023-09-21T09:02:42Z,https://gum.co/learn-regex,991,44526,6264,69,44526,,MIT,"['learn-regex', 'regex', 'regular-expression']",True,True,True,True,False,False,False,False,False,master +etcd,Distributed reliable key-value store for the most critical data of a distributed system,https://github.com/etcd-io/etcd,2013-07-06T21:57:21Z,2023-09-21T07:42:55Z,https://etcd.io,71129,44520,9484,230,44520,Go,Apache-2.0,"['cncf', 'consensus', 'database', 'distributed-database', 'distributed-systems', 'etcd', 'go', 'key-value', 'kubernetes', 'raft']",True,True,True,False,False,True,False,False,False,main +okhttp,"Square’s meticulous HTTP client for the JVM, Android, and GraalVM.",https://github.com/square/okhttp,2012-07-23T13:42:55Z,2023-09-21T11:28:42Z,https://square.github.io/okhttp/,48758,44503,9209,107,44503,Kotlin,Apache-2.0,"['android', 'graalvm', 'java', 'kotlin']",True,False,True,False,True,False,False,False,False,master +algorithm-visualizer,:fireworks:Interactive Online Platform that Visualizes Algorithms from Code,https://github.com/algorithm-visualizer/algorithm-visualizer,2016-05-15T00:27:45Z,2023-09-21T08:23:37Z,https://algorithm-visualizer.org/,21541,44307,7097,60,44307,JavaScript,MIT,"['algorithm', 'animation', 'data-structure', 'visualization']",True,True,True,True,False,False,False,False,False,master +dayjs,⏰ Day.js 2kB immutable date-time library alternative to Moment.js with the same modern API,https://github.com/iamkun/dayjs,2018-04-10T09:26:44Z,2023-09-21T06:18:52Z,https://day.js.org,5489,44118,2235,803,44118,JavaScript,MIT,"['date', 'date-formatting', 'datetime', 'dayjs', 'moment', 'time']",True,True,True,True,True,False,False,False,False,dev +Ghost,"Turn your audience into a business. Publishing, memberships, subscriptions and newsletters.",https://github.com/TryGhost/Ghost,2013-05-04T11:09:13Z,2023-09-21T10:54:49Z,https://ghost.org,261211,44005,9714,129,44005,JavaScript,MIT,"['blogging', 'cms', 'creator-economy', 'ember', 'ghost', 'hacktoberfest', 'headless-cms', 'jamstack', 'javascript', 'journalism', 'nodejs', 'publishing', 'web-application']",True,False,True,False,False,False,False,False,False,main +mastodon,"Your self-hosted, globally interconnected microblogging community",https://github.com/mastodon/mastodon,2016-02-22T15:01:25Z,2023-09-21T11:44:49Z,https://joinmastodon.org,221812,43993,6567,4142,43993,Ruby,AGPL-3.0,"['activity-stream', 'activitypub', 'docker', 'mastodon', 'microblog', 'social-network', 'webfinger']",True,True,True,False,False,True,False,False,False,main +awesome-ios,"A curated list of awesome iOS ecosystem, including Objective-C and Swift Projects ",https://github.com/vsouza/awesome-ios,2014-07-10T16:03:45Z,2023-09-21T09:41:07Z,http://awesomeios.com,13711,43974,6879,1,43974,Swift,MIT,"['apple-swift', 'arkit', 'awesome', 'ios', 'ios-animation', 'ios-libraries', 'objective-c', 'objective-c-library', 'swift-extensions', 'swift-framework', 'swift-language', 'swift-library', 'swift-programming']",True,False,True,False,False,False,False,False,False,master +ChatGPT-Next-Web,A well-designed cross-platform ChatGPT UI (Web / PWA / Linux / Win / MacOS). 一键拥有你自己的跨平台 ChatGPT 应用。,https://github.com/Yidadaa/ChatGPT-Next-Web,2023-03-10T18:27:54Z,2023-09-21T11:04:56Z,https://nb.nextweb.fun,7497,43919,40808,33,43919,TypeScript,MIT,"['chatgpt', 'cross-platform', 'nextjs', 'react', 'tauri', 'tauri-app', 'vercel', 'webui']",True,False,True,False,False,True,False,False,False,main +pdf.js,PDF Reader in JavaScript,https://github.com/mozilla/pdf.js,2011-04-26T06:32:03Z,2023-09-21T10:03:31Z,https://mozilla.github.io/pdf.js/,133444,43876,9572,360,43876,JavaScript,Apache-2.0,[],True,True,True,True,True,False,False,False,False,master +awesome-chatgpt-prompts-zh,ChatGPT 中文调教指南。各种场景使用指南。学习怎么让它听你的话。,https://github.com/PlexPt/awesome-chatgpt-prompts-zh,2022-12-12T01:55:03Z,2023-09-21T11:19:51Z,https://chat.aimakex.com/,39405,43854,13119,35,43854,,MIT,"['chat-gpt', 'chatgpt', 'chatgpt3', 'chatgpt4', 'gpt']",True,True,True,True,False,True,False,False,False,main +meteor,"Meteor, the JavaScript App Platform",https://github.com/meteor/meteor,2012-01-19T01:58:17Z,2023-09-21T11:19:01Z,https://meteor.com,121318,43748,5311,272,43748,JavaScript,NOASSERTION,"['build-system', 'framework', 'javascript', 'meteor', 'mongodb', 'nodejs', 'npm', 'react', 'reactive-programming', 'realtime', 'rpc', 'zero-configuration']",True,True,True,True,False,True,False,False,False,devel +go-ethereum,Official Go implementation of the Ethereum protocol,https://github.com/ethereum/go-ethereum,2013-12-26T13:05:46Z,2023-09-21T08:06:04Z,https://geth.ethereum.org,207509,43666,18501,338,43666,Go,LGPL-3.0,"['blockchain', 'ethereum', 'geth', 'go', 'p2p']",True,False,True,True,True,False,False,False,False,master +pi-hole,A black hole for Internet advertisements,https://github.com/pi-hole/pi-hole,2014-06-08T15:02:55Z,2023-09-21T10:37:05Z,https://pi-hole.net,7548,43413,2528,42,43413,Shell,NOASSERTION,"['ad-blocker', 'blocker', 'cloud', 'dashboard', 'dhcp', 'dhcp-server', 'dns-server', 'dnsmasq', 'hacktoberfest', 'pi-hole', 'raspberry-pi', 'shell']",True,True,True,False,False,True,False,False,False,master +act,Run your GitHub Actions locally 🚀,https://github.com/nektos/act,2019-01-02T19:53:43Z,2023-09-21T11:38:35Z,https://nektosact.com,9221,43375,1079,176,43375,Go,MIT,"['ci', 'devops', 'github-actions', 'golang']",True,True,True,True,False,True,False,False,False,master +gpt-engineer,"Specify what you want it to build, the AI asks for clarification, and then builds it.",https://github.com/AntonOsika/gpt-engineer,2023-04-29T12:52:15Z,2023-09-21T10:53:18Z,https://gpt-engineer.readthedocs.io,590,43327,7159,21,43327,Python,MIT,"['ai', 'autonomous-agent', 'codebase-generation', 'coding-assistant', 'gpt-4', 'openai', 'python']",True,True,True,False,False,True,False,False,False,main +sherlock,🔎 Hunt down social media accounts by username across social networks,https://github.com/sherlock-project/sherlock,2018-12-24T14:30:48Z,2023-09-21T08:44:03Z,http://sherlock-project.github.io,16650,43317,5310,155,43317,Python,MIT,"['cli', 'hacktoberfest', 'hacktoberfest2022', 'information-gathering', 'linux', 'macos', 'osint', 'python', 'python3', 'reconnaissance', 'redteam', 'sherlock', 'tools', 'windows']",True,True,True,True,False,True,False,False,False,master +julia,The Julia Programming Language,https://github.com/JuliaLang/julia,2011-04-21T07:01:50Z,2023-09-21T11:23:55Z,https://julialang.org/,274276,43174,5282,4792,43174,Julia,MIT,"['hacktoberfest', 'hpc', 'julia', 'julia-language', 'julialang', 'machine-learning', 'numerical', 'programming-language', 'science', 'scientific']",True,False,True,False,False,True,False,False,False,master +architecture-samples,A collection of samples to discuss and showcase different architectural tools and patterns for Android apps.,https://github.com/android/architecture-samples,2016-02-05T13:42:07Z,2023-09-21T10:47:27Z,,13313,43146,11580,203,43146,Kotlin,Apache-2.0,"['android', 'android-architecture', 'samples']",True,True,True,True,False,False,False,False,False,main +v2ray-core,A platform for building proxies to bypass network restrictions.,https://github.com/v2ray/v2ray-core,2015-09-04T11:42:53Z,2023-09-21T10:54:56Z,https://www.v2ray.com/,55212,43114,8764,26,43114,Go,MIT,"['golang', 'http-proxy', 'proxy', 'shadowsocks', 'socks', 'socks5', 'v2ray', 'vmess']",True,False,True,False,False,False,False,False,False,master +bat,A cat(1) clone with wings.,https://github.com/sharkdp/bat,2018-04-21T10:52:23Z,2023-09-21T11:33:06Z,,30760,43007,1137,214,43007,Rust,Apache-2.0,"['cli', 'command-line', 'git', 'hacktoberfest', 'rust', 'syntax-highlighting', 'terminal', 'tool']",True,False,True,False,False,True,False,False,False,master +TensorFlow-Examples,TensorFlow Tutorial and Examples for Beginners (support TF v1 & v2),https://github.com/aymericdamien/TensorFlow-Examples,2015-11-11T14:21:19Z,2023-09-21T10:34:50Z,,10242,42962,15127,217,42962,Jupyter Notebook,NOASSERTION,"['deep-learning', 'examples', 'machine-learning', 'python', 'tensorflow', 'tutorial']",True,True,True,True,False,False,False,False,False,master +ghidra,Ghidra is a software reverse engineering (SRE) framework,https://github.com/NationalSecurityAgency/ghidra,2019-03-01T03:27:48Z,2023-09-21T11:37:35Z,https://www.nsa.gov/ghidra,315973,42944,5233,1438,42944,Java,Apache-2.0,"['disassembler', 'reverse-engineering', 'software-analysis']",True,True,True,True,False,True,False,False,False,master +AdminLTE,AdminLTE - Free admin dashboard template based on Bootstrap 5,https://github.com/ColorlibHQ/AdminLTE,2013-12-25T02:52:40Z,2023-09-21T09:57:28Z,https://adminlte.io,131504,42942,18192,94,42942,Astro,MIT,"['admin', 'admin-dashboard', 'admin-panel', 'admin-template', 'bootstrap']",True,True,True,False,True,True,False,False,False,master +gogs,Gogs is a painless self-hosted Git service,https://github.com/gogs/gogs,2014-02-12T01:57:08Z,2023-09-21T11:37:51Z,https://gogs.io,206015,42932,4831,873,42932,Go,MIT,"['docker', 'git', 'go', 'gogs', 'lsif-enabled', 'mysql', 'postgresql', 'raspberry-pi', 'scip-enabled', 'self-hosted', 'sqlite3']",True,False,True,False,False,True,False,False,False,main +Projects,:page_with_curl: A list of practical projects that anyone can solve in any programming language.,https://github.com/karan/Projects,2013-07-04T13:37:27Z,2023-09-21T02:03:48Z,https://twitter.com/karangoel,1790,42913,10475,84,42913,,MIT,[],True,True,True,False,False,False,False,False,False,master +drawio-desktop,Official electron build of draw.io,https://github.com/jgraph/drawio-desktop,2017-05-25T20:58:42Z,2023-09-21T11:42:55Z,https://www.diagrams.net,2500,42808,4515,161,42808,JavaScript,Apache-2.0,"['diagram-editor', 'electron-app', 'graphics', 'javascript-applications']",True,True,True,True,False,True,False,False,False,dev +jest,Delightful JavaScript Testing.,https://github.com/jestjs/jest,2013-12-10T00:18:04Z,2023-09-21T11:01:34Z,https://jestjs.io,296272,42740,6480,450,42740,TypeScript,MIT,"['easy', 'expectation', 'facebook', 'immersive', 'javascript', 'painless', 'painless-javascript-testing', 'snapshot', 'testing']",True,True,True,True,True,False,False,False,False,main +parcel,The zero configuration build tool for the web. 📦🚀,https://github.com/parcel-bundler/parcel,2017-08-07T16:36:47Z,2023-09-21T09:22:08Z,https://parceljs.org,40462,42700,2301,761,42700,JavaScript,MIT,"['assets', 'build-tool', 'commonjs', 'compiler', 'css', 'es6', 'html', 'javascript', 'module-bundler', 'modules', 'web']",True,True,True,False,False,True,False,False,False,v2 +mkcert,A simple zero-config tool to make locally trusted development certificates with any names you'd like.,https://github.com/FiloSottile/mkcert,2018-06-25T05:33:03Z,2023-09-21T10:38:44Z,https://mkcert.dev,1844,42686,2257,129,42686,Go,BSD-3-Clause,"['certificates', 'chrome', 'firefox', 'https', 'ios', 'linux', 'local-development', 'localhost', 'macos', 'root-ca', 'tls', 'windows']",True,False,True,False,False,True,False,False,False,master +Microsoft-Activation-Scripts,"A Windows and Office activator using HWID / KMS38 / Online KMS activation methods, with a focus on open-source code and fewer antivirus detections.",https://github.com/massgravel/Microsoft-Activation-Scripts,2020-01-12T23:03:34Z,2023-09-21T11:38:56Z,https://massgrave.dev,7061,42632,4503,1,42632,Batchfile,GPL-3.0,"['activator', 'hwid', 'kms', 'kms38', 'massgrave', 'massgravel', 'office', 'windows', 'windows-10', 'windows-11']",True,True,True,True,False,True,False,False,False,master +DeepFaceLab,DeepFaceLab is the leading software for creating deepfakes.,https://github.com/iperov/DeepFaceLab,2018-06-04T13:10:00Z,2023-09-21T10:46:00Z,,848593,42582,9535,539,42582,Python,GPL-3.0,"['arxiv', 'creating-deepfakes', 'deep-face-swap', 'deep-learning', 'deep-neural-networks', 'deepface', 'deepfacelab', 'deepfakes', 'deeplearning', 'face-swap', 'faceswap', 'fakeapp', 'machine-learning', 'neural-nets', 'neural-networks']",True,True,True,True,True,False,False,False,False,master +babel,🐠 Babel is a compiler for writing next generation JavaScript.,https://github.com/babel/babel,2014-09-28T13:38:23Z,2023-09-21T10:52:54Z,https://babel.dev,99642,42533,5756,819,42533,TypeScript,MIT,"['ast', 'babel', 'compiler', 'es2015', 'es6', 'flavortown', 'javascript']",True,True,True,False,False,True,False,False,False,main +github-cheat-sheet,A list of cool features of Git and GitHub.,https://github.com/tiimgreen/github-cheat-sheet,2014-04-12T16:38:42Z,2023-09-21T11:21:28Z,http://git.io/sheet,764,42480,5305,31,42480,,MIT,"['awesome', 'awesome-list', 'git', 'github', 'list']",True,True,True,False,False,False,False,False,False,master +build-web-application-with-golang,A golang ebook intro how to build a web with golang,https://github.com/astaxie/build-web-application-with-golang,2012-08-02T11:49:35Z,2023-09-21T01:33:35Z,,38293,42322,10803,126,42322,Go,BSD-3-Clause,[],True,True,True,True,False,False,False,False,False,master +react,Cheatsheets for experienced React developers getting started with TypeScript,https://github.com/typescript-cheatsheets/react,2018-06-02T04:08:16Z,2023-09-21T07:47:04Z,https://react-typescript-cheatsheet.netlify.app,3037,42201,3880,1,42201,JavaScript,MIT,"['cheatsheet', 'guide', 'hacktoberfest', 'hacktoberfest2022', 'react', 'typescript']",True,False,True,False,False,True,False,False,False,main +llama,Inference code for LLaMA models,https://github.com/facebookresearch/llama,2023-02-14T09:29:12Z,2023-09-21T10:42:45Z,,1063,42169,7056,289,42169,Python,NOASSERTION,[],True,True,True,False,False,False,False,False,False,main +leetcode-master,《代码随想录》LeetCode 刷题攻略:200道经典题目刷题顺序,共60w字的详细图解,视频难点剖析,50余张思维导图,支持C++,Java,Python,Go,JavaScript等多语言版本,从此算法学习不再迷茫!🔥🔥 来看看,你会发现相见恨晚!🚀 ,https://github.com/youngyangyang04/leetcode-master,2019-12-14T12:05:42Z,2023-09-21T11:14:42Z,,95860,42136,10066,137,42136,Shell,,"['algorithm', 'cpp', 'go', 'interview', 'java', 'javascript', 'leetcode', 'offer', 'programmer', 'python']",True,True,True,True,False,False,False,False,False,master +rustlings,:crab: Small exercises to get you used to reading and writing Rust code!,https://github.com/rust-lang/rustlings,2015-09-15T02:25:18Z,2023-09-21T11:43:36Z,https://rustlings.cool,2687,42107,7659,119,42107,Rust,MIT,"['beginner-friendly', 'rust', 'rustlings']",True,False,True,False,True,False,False,False,False,main +awesome-wechat-weapp,微信小程序开发资源汇总 :100:,https://github.com/justjavac/awesome-wechat-weapp,2016-09-22T20:04:48Z,2023-09-21T11:29:06Z,,844,42072,8519,2,42072,,GPL-3.0,"['demo', 'minapp', 'miniprogram', 'weapp-demo', 'wechat', 'wechat-weapp', 'wepy', 'wxapp', 'wxml']",False,False,True,False,False,False,False,False,False,main +retrofit,A type-safe HTTP client for Android and the JVM,https://github.com/square/retrofit,2010-09-06T21:39:43Z,2023-09-21T09:03:04Z,https://square.github.io/retrofit/,5882,41993,7339,189,41993,Java,Apache-2.0,"['android', 'java']",True,False,True,True,True,True,False,False,False,master +project-layout,Standard Go Project Layout,https://github.com/golang-standards/project-layout,2017-09-09T16:33:26Z,2023-09-21T10:37:43Z,,533,41943,4647,93,41943,Makefile,NOASSERTION,"['go', 'golang', 'project-structure', 'project-template', 'standards']",True,True,True,True,False,False,False,False,False,master +design-patterns-for-humans,An ultra-simplified explanation to design patterns,https://github.com/kamranahmedse/design-patterns-for-humans,2017-02-16T21:24:39Z,2023-09-21T11:04:08Z,,159,41879,4956,10,41879,,,"['architecture', 'computer-science', 'design-patterns', 'engineering', 'principles', 'software-engineering']",True,True,True,True,False,False,False,False,False,master +100-Days-Of-ML-Code,100 Days of ML Coding,https://github.com/Avik-Jain/100-Days-Of-ML-Code,2018-07-05T09:11:43Z,2023-09-21T06:15:50Z,,10955,41836,10184,60,41836,,MIT,"['100-days-of-code-log', '100daysofcode', 'deep-learning', 'implementation', 'infographics', 'linear-algebra', 'linear-regression', 'logistic-regression', 'machine-learning', 'machine-learning-algorithms', 'naive-bayes-classifier', 'python', 'scikit-learn', 'siraj-raval', 'siraj-raval-challenge', 'support-vector-machines', 'svm', 'tutorial']",False,True,True,True,True,False,False,False,False,master +openpilot,openpilot is an open source driver assistance system. openpilot performs the functions of Automated Lane Centering and Adaptive Cruise Control for 250+ supported car makes and models.,https://github.com/commaai/openpilot,2016-11-24T01:33:30Z,2023-09-21T10:32:36Z,https://comma.ai/,2530311,41836,7663,304,41836,Python,MIT,[],True,True,True,True,False,True,False,False,False,master +yolov5,YOLOv5 🚀 in PyTorch > ONNX > CoreML > TFLite,https://github.com/ultralytics/yolov5,2020-05-18T03:45:11Z,2023-09-21T11:38:18Z,https://docs.ultralytics.com,15017,41715,14627,237,41715,Python,AGPL-3.0,"['coreml', 'deep-learning', 'ios', 'machine-learning', 'ml', 'object-detection', 'onnx', 'pytorch', 'tflite', 'ultralytics', 'yolo', 'yolov3', 'yolov5']",True,True,True,True,False,True,False,False,False,master +gpt_academic,"为ChatGPT/GLM提供实用化交互界面,特别优化论文阅读/润色/写作体验,模块化设计,支持自定义快捷按钮&函数插件,支持Python和C++等项目剖析&自译解功能,PDF/LaTex论文翻译&总结功能,支持并行问询多种LLM模型,支持chatglm2等本地模型。兼容文心一言, moss, llama2, rwkv, claude2, 通义千问, 书生, 讯飞星火等。",https://github.com/binary-husky/gpt_academic,2023-03-20T09:05:13Z,2023-09-21T11:41:14Z,https://huggingface.co/spaces/qingxu98/gpt-academic,61238,41694,5494,276,41694,Python,GPL-3.0,"['academic', 'chatglm-6b', 'chatgpt', 'gpt-4', 'large-language-models']",True,True,True,True,False,True,False,False,False,master +x64dbg,An open-source user mode debugger for Windows. Optimized for reverse engineering and malware analysis.,https://github.com/x64dbg/x64dbg,2015-04-11T20:48:23Z,2023-09-21T11:13:19Z,http://x64dbg.com,59802,41625,2220,565,41625,C++,NOASSERTION,"['binary-analysis', 'cpp', 'ctf', 'debugger', 'debugging', 'disassembler', 'dynamic-analysis', 'exploit-development', 'hacking', 'malware-analysis', 'oscp', 'program-analysis', 'reverse-engineering', 'security', 'security-tools', 'windows', 'x64', 'x86', 'x86-64']",True,True,True,True,False,True,False,False,False,development +hyper,A terminal built on web technologies,https://github.com/vercel/hyper,2016-07-01T06:01:21Z,2023-09-21T08:22:30Z,https://hyper.is,23038,41509,3504,872,41509,TypeScript,MIT,"['css', 'html', 'hyper', 'javascript', 'linux', 'macos', 'react', 'terminal', 'terminal-emulators']",True,False,True,False,False,True,False,False,False,canary +marktext,"📝A simple and elegant markdown editor, available for Linux, macOS and Windows.",https://github.com/marktext/marktext,2017-11-12T16:05:25Z,2023-09-21T10:55:10Z,https://www.marktext.cc/,72496,41456,3162,1039,41456,JavaScript,MIT,"['dark-mode', 'editor', 'electron', 'element-ui', 'emoji', 'focus-mode', 'latex', 'linux', 'mac', 'macos', 'markdown', 'marktext', 'next-generation', 'source-code', 'typewriter-mode', 'vue', 'windows']",True,True,True,True,False,False,False,False,False,develop +trackerslist,Updated list of public BitTorrent trackers,https://github.com/ngosang/trackerslist,2016-04-24T11:57:57Z,2023-09-21T03:16:41Z,https://ngosang.github.io/trackerslist/,5139,41352,6582,7,41352,,GPL-2.0,"['bittorrent', 'bittorrent-tracker', 'bittorrent-trackers', 'http', 'list', 'lists', 'public-tracker', 'public-trackers', 'torrent', 'tracker', 'trackers', 'trackerslist', 'udp', 'webtorrent', 'ws']",True,False,True,False,True,False,False,False,False,master +yarn,The 1.x line is frozen - features and bugfixes now happen on https://github.com/yarnpkg/berry,https://github.com/yarnpkg/yarn,2016-01-19T17:39:16Z,2023-09-21T10:50:10Z,https://classic.yarnpkg.com,119459,41266,2912,1982,41266,JavaScript,NOASSERTION,"['javascript', 'npm', 'package-manager', 'yarn']",True,True,True,False,False,False,False,False,False,master +git-flight-rules,Flight rules for git,https://github.com/k88hudson/git-flight-rules,2014-07-22T20:35:09Z,2023-09-20T23:41:16Z,,920,41258,3207,18,41258,,CC-BY-SA-4.0,[],True,True,True,True,False,False,False,False,False,master +ChatGPT,"🔮 ChatGPT Desktop Application (Mac, Windows and Linux)",https://github.com/lencx/ChatGPT,2022-12-07T09:43:02Z,2023-09-21T11:35:13Z,https://nofwl.com,31612,41246,4915,493,41246,Rust,AGPL-3.0,"['ai', 'app', 'application', 'chatgpt', 'desktop-app', 'gpt', 'gpt-3', 'linux', 'macos', 'notes-app', 'openai', 'rust', 'tauri', 'webview', 'windows']",True,False,True,False,True,True,False,False,False,main +bypass-paywalls-chrome,Bypass Paywalls web browser extension for Chrome and Firefox.,https://github.com/iamadamdev/bypass-paywalls-chrome,2018-04-07T20:33:19Z,2023-09-21T09:38:34Z,,1317,41183,2987,0,41183,JavaScript,,"['bypass', 'bypass-paywalls', 'chrome', 'chrome-extension', 'chrome-extensions', 'firefox', 'firefox-addon', 'firefox-extension', 'paywall']",True,True,True,True,False,False,False,False,False,master +llama.cpp,Port of Facebook's LLaMA model in C/C++,https://github.com/ggerganov/llama.cpp,2023-03-10T18:58:00Z,2023-09-21T11:12:26Z,,8823,41005,5756,577,41005,C,MIT,[],True,True,True,True,False,True,False,False,False,master +pixijs,"The HTML5 Creation Engine: Create beautiful digital content with the fastest, most flexible 2D WebGL renderer.",https://github.com/pixijs/pixijs,2013-01-21T22:40:50Z,2023-09-21T10:01:00Z,http://pixijs.com,95194,40956,4806,193,40956,TypeScript,MIT,"['canvas', 'canvas2d', 'data-visualization', 'game', 'glsl', 'javascript', 'pixi', 'pixijs', 'renderer', 'rendering', 'rendering-2d-graphics', 'rendering-engine', 'webgl']",True,True,True,True,False,True,False,False,False,dev +minio,High Performance Object Storage for AI,https://github.com/minio/minio,2015-01-14T19:23:58Z,2023-09-21T10:20:35Z,https://min.io/download,113084,40865,4927,41,40865,Go,AGPL-3.0,"['amazon-s3', 'cloud', 'cloudnative', 'cloudstorage', 'go', 'k8s', 'kubernetes', 'multi-cloud', 'multi-cloud-kubernetes', 'objectstorage', 's3', 'storage']",True,False,True,False,True,True,False,False,False,master +PowerShell,PowerShell for every system!,https://github.com/PowerShell/PowerShell,2016-01-13T23:41:35Z,2023-09-21T11:41:17Z,https://microsoft.com/PowerShell,94061,40584,7514,3498,40584,C#,MIT,"['command-line', 'hacktoberfest', 'linux', 'macos', 'netcore', 'powershell', 'shell', 'windows']",True,True,True,False,False,True,False,False,False,master +vue2-elm,Large single page application with 45 pages built on vue2 + vuex. 基于 vue2 + vuex 构建一个具有 45 个页面的大型单页面应用,https://github.com/bailicangdu/vue2-elm,2016-12-23T01:49:20Z,2023-09-21T10:15:46Z,https://cangdu.org/elm/,34429,40363,12621,112,40363,Vue,GPL-2.0,"['es2015', 'flex', 'sass', 'vue', 'vue-router', 'vuex', 'webpack']",True,True,True,True,False,False,False,False,False,master +core,"🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.",https://github.com/vuejs/core,2018-06-12T13:49:36Z,2023-09-21T10:15:07Z,https://vuejs.org/,24142,40334,7368,1181,40334,TypeScript,MIT,[],True,True,True,False,False,True,False,False,False,main +rclone,"""rsync for cloud storage"" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Wasabi, Google Cloud Storage, Yandex Files",https://github.com/rclone/rclone,2014-03-16T16:19:57Z,2023-09-21T06:58:59Z,https://rclone.org,177155,40320,3693,900,40320,Go,MIT,"['amazon-drive', 'azure-blob', 'backblaze-b2', 'cloud-storage', 'dropbox', 'encryption', 'ftp', 'fuse-filesystem', 'go', 'golang', 'google-cloud-storage', 'google-drive', 'hubic', 'onedrive', 'openstack-swift', 'rclone', 's3', 'sftp', 'sync', 'webdav']",True,True,True,True,False,False,False,False,False,master +Motrix,A full-featured download manager.,https://github.com/agalwood/Motrix,2018-12-18T11:45:05Z,2023-09-21T11:32:31Z,https://motrix.app,69808,40181,4309,648,40181,JavaScript,MIT,"['aria2', 'bittorrent', 'bt', 'download', 'download-manager', 'electron', 'linux', 'mac', 'macos', 'magnet', 'motrix', 'torrent', 'windows']",True,True,True,True,False,True,False,False,False,master +ripgrep,ripgrep recursively searches directories for a regex pattern while respecting your gitignore,https://github.com/BurntSushi/ripgrep,2016-03-11T02:02:33Z,2023-09-21T11:24:24Z,,4292,40093,1765,136,40093,Rust,Unlicense,"['cli', 'command-line', 'command-line-tool', 'gitignore', 'grep', 'recursively-search', 'regex', 'ripgrep', 'rust', 'search']",True,False,True,False,False,True,False,False,False,master +nw.js,Call all Node.js modules directly from DOM/WebWorker and enable a new way of writing applications with all Web technologies.,https://github.com/nwjs/nw.js,2012-01-04T06:21:10Z,2023-09-21T01:14:52Z,https://nwjs.io,129553,39831,3961,900,39831,JavaScript,MIT,"['desktop', 'javascript', 'node-webkit', 'nodejs', 'nwjs', 'web-application-framework']",True,True,True,True,False,False,False,False,False,nw80 +Alamofire,Elegant HTTP Networking in Swift,https://github.com/Alamofire/Alamofire,2014-07-31T05:56:19Z,2023-09-21T11:44:34Z,,32713,39788,7507,36,39788,Swift,MIT,"['alamofire', 'carthage', 'certificate-pinning', 'cocoapods', 'httpurlresponse', 'networking', 'parameter-encoding', 'public-key-pinning', 'request', 'response', 'swift', 'swift-package-manager', 'urlrequest', 'urlsession', 'xcode']",True,True,True,False,True,True,False,False,False,master +pandas,"Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more",https://github.com/pandas-dev/pandas,2010-08-24T01:37:33Z,2023-09-21T10:11:30Z,https://pandas.pydata.org,338799,39767,16709,3597,39767,Python,BSD-3-Clause,"['alignment', 'data-analysis', 'data-science', 'flexible', 'pandas', 'python']",True,True,True,False,False,False,False,False,False,main +pm2,Node.js Production Process Manager with a built-in Load Balancer.,https://github.com/Unitech/pm2,2013-05-21T03:25:25Z,2023-09-21T11:10:39Z,https://pm2.keymetrics.io/docs/usage/quick-start/,13026,39682,2572,829,39682,JavaScript,NOASSERTION,"['command-line', 'command-line-tool', 'deploy', 'load-balancer', 'monitoring', 'node', 'nodejs', 'pm2', 'process-manager', 'production']",True,False,True,False,False,False,False,False,False,master +PythonDataScienceHandbook,Python Data Science Handbook: full text in Jupyter Notebooks,https://github.com/jakevdp/PythonDataScienceHandbook,2016-08-10T14:24:36Z,2023-09-21T10:35:23Z,http://jakevdp.github.io/PythonDataScienceHandbook,45159,39598,17305,200,39598,Jupyter Notebook,MIT,"['jupyter-notebook', 'matplotlib', 'numpy', 'pandas', 'python', 'scikit-learn']",True,True,True,True,True,False,False,False,False,master +styled-components,Visual primitives for the component age. Use the best bits of ES6 and CSS to style your apps without stress 💅,https://github.com/styled-components/styled-components,2016-08-16T06:41:32Z,2023-09-21T11:10:56Z,https://styled-components.com,34461,39486,2496,213,39486,TypeScript,MIT,"['css', 'css-in-js', 'react', 'styled-components']",True,False,True,False,False,True,False,False,False,main +CppCoreGuidelines,"The C++ Core Guidelines are a set of tried-and-true guidelines, rules, and best practices about coding in C++",https://github.com/isocpp/CppCoreGuidelines,2015-08-19T20:22:52Z,2023-09-21T10:51:16Z,http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines,26305,39439,5311,249,39439,Python,NOASSERTION,[],True,True,True,True,True,False,False,False,False,master +dubbo,The java implementation of Apache Dubbo. An RPC and microservice framework.,https://github.com/apache/dubbo,2012-06-19T07:56:02Z,2023-09-21T03:31:26Z,https://dubbo.apache.org/,50272,39390,26196,1003,39390,Java,Apache-2.0,"['distributed-systems', 'dubbo', 'framework', 'grpc', 'http', 'java', 'microservices', 'restful', 'rpc', 'service-mesh', 'web']",True,True,True,True,False,False,False,False,False,3.2 +huginn,Create agents that monitor and act on your behalf. Your agents are standing by!,https://github.com/huginn/huginn,2013-03-10T06:00:31Z,2023-09-21T10:55:44Z,,8648,39335,3519,697,39335,Ruby,MIT,"['agent', 'automation', 'feed', 'feedgenerator', 'huginn', 'monitoring', 'notifications', 'rss', 'scraper', 'twitter', 'twitter-streaming', 'webscraping']",True,True,True,True,False,False,False,False,False,master +frontend-dev-bookmarks,Manually curated collection of resources for frontend web developers.,https://github.com/dypsilon/frontend-dev-bookmarks,2013-06-22T13:23:55Z,2023-09-21T10:24:19Z,,1048,39173,5121,117,39173,,,"['awesome', 'awesome-list', 'frontend', 'list']",True,True,True,False,False,False,False,False,False,master +grpc,"The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)",https://github.com/grpc/grpc,2014-12-08T18:58:53Z,2023-09-21T11:03:18Z,https://grpc.io,506631,39047,10472,817,39047,C++,Apache-2.0,[],True,True,False,False,True,False,False,False,False,master +lazygit,simple terminal UI for git commands,https://github.com/jesseduffield/lazygit,2018-05-19T00:53:06Z,2023-09-21T11:05:56Z,,131925,38925,1522,530,38925,Go,MIT,"['cli', 'git', 'terminal']",True,True,True,True,False,True,False,False,False,master +meilisearch,"A lightning-fast search engine that fits effortlessly into your apps, websites, and workflow.",https://github.com/meilisearch/meilisearch,2018-04-23T11:45:28Z,2023-09-21T11:13:51Z,https://www.meilisearch.com,57213,38877,1448,132,38877,Rust,MIT,"['api', 'app-search', 'customizable', 'database', 'easy-to-use', 'enterprise-search', 'faceting', 'full-text-search', 'geosearch', 'instantsearch', 'out-of-the-box', 'rest', 'rust', 'search', 'search-as-you-type', 'search-engine', 'site-search', 'synonyms', 'typo-tolerance']",True,True,True,False,False,True,False,False,False,main +materialize,"Materialize, a CSS Framework based on Material Design",https://github.com/Dogfalo/materialize,2014-09-12T19:35:38Z,2023-09-21T06:35:46Z,https://materializecss.com,164476,38847,4836,799,38847,JavaScript,MIT,"['css', 'css-framework', 'design', 'framework', 'javascript', 'material', 'material-design']",True,True,True,True,True,False,False,False,False,v1-dev +terraform,"Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available tool that codifies APIs into declarative configuration files that can be shared amongst team members, treated as code, edited, reviewed, and versioned.",https://github.com/hashicorp/terraform,2014-03-13T22:25:48Z,2023-09-21T11:41:45Z,https://www.terraform.io/,301895,38832,9049,1884,38832,Go,NOASSERTION,"['cloud', 'cloud-management', 'graph', 'infrastructure-as-code', 'terraform']",True,False,True,False,False,False,False,False,False,main +discourse,"A platform for community discussion. Free, open, simple.",https://github.com/discourse/discourse,2013-01-12T00:25:55Z,2023-09-21T09:26:09Z,https://www.discourse.org,594804,38794,8117,101,38794,Ruby,GPL-2.0,"['discourse', 'ember', 'forum', 'javascript', 'postgresql', 'rails', 'ruby']",False,False,True,False,False,False,False,False,False,main +hackingtool,ALL IN ONE Hacking Tool For Hackers,https://github.com/Z4nzu/hackingtool,2020-04-11T09:21:31Z,2023-09-21T11:14:07Z,https://forms.gle/ntuAX8BGRR5yAb9ZA,1365,38727,4273,21,38727,Python,MIT,"['allinonehackingtool', 'besthackingtool', 'ctf-tools', 'ddos-attack-tool', 'hacker', 'hacking', 'linux', 'password-attack', 'steganography', 'web-attack', 'wireless-attack', 'xss-attacks', 'xss-detection']",True,True,True,True,False,False,False,False,False,master +powerlevel10k,A Zsh theme,https://github.com/romkatv/powerlevel10k,2019-02-24T19:09:45Z,2023-09-21T11:16:56Z,,71920,38672,1962,32,38672,Shell,MIT,['zsh'],True,False,True,False,False,False,False,False,False,master +AppFlowy,AppFlowy is an open-source alternative to Notion. You are in charge of your data and customizations. Built with Flutter and Rust.,https://github.com/AppFlowy-IO/AppFlowy,2021-06-16T12:56:48Z,2023-09-21T10:38:12Z,https://www.appflowy.io,72970,38662,2408,558,38662,Dart,AGPL-3.0,"['content-management', 'content-services', 'editor', 'flutter', 'flutter-app', 'flutter-apps', 'flutter-examples', 'flutter-ui', 'hacktoberfest', 'low-code', 'no-code', 'no-code-platform', 'notion', 'notion-alternative', 'rust', 'rust-lang', 'rust-language', 'wiki']",True,True,True,False,False,True,False,False,False,main +joplin,"Joplin - the secure note taking and to-do app with synchronisation capabilities for Windows, macOS, Linux, Android and iOS.",https://github.com/laurent22/joplin,2017-01-16T21:49:41Z,2023-09-21T10:02:50Z,https://joplinapp.org,395082,38658,4151,353,38658,TypeScript,NOASSERTION,"['android', 'dropbox', 'electron', 'enex-files', 'evernote', 'javascript', 'joplin', 'nextcloud', 'nodejs', 'note-taking', 'onedrive', 'react-native', 'synchronisation', 'web-clipper', 'webdav']",True,True,True,False,False,False,False,False,False,dev +uni-app,A cross-platform framework using Vue.js,https://github.com/dcloudio/uni-app,2018-07-12T08:52:39Z,2023-09-21T05:32:40Z,https://uniapp.dcloud.io,1974573,38609,3556,1219,38609,JavaScript,Apache-2.0,"['android', 'cross-platform', 'crossplatform', 'hbuilderx', 'ios', 'javascript', 'miniprogram', 'mpvue', 'uni', 'uni-app', 'uniapp', 'vue', 'vue3']",True,True,True,True,False,False,False,False,False,dev +hiring-without-whiteboards,⭐️ Companies that don't have a broken hiring process,https://github.com/poteto/hiring-without-whiteboards,2017-03-15T05:09:01Z,2023-09-21T11:26:48Z,,3581,38575,3235,11,38575,JavaScript,MIT,"['airtable', 'hiring', 'hiring-without-whiteboards', 'interview', 'jobs', 'tech', 'whiteboard']",False,False,True,False,False,False,False,False,False,main +uptime-kuma,A fancy self-hosted monitoring tool,https://github.com/louislam/uptime-kuma,2021-07-03T01:02:42Z,2023-09-21T10:34:08Z,https://uptime.kuma.pet,22104,38538,3396,927,38538,JavaScript,MIT,"['docker', 'hacktoberfest', 'monitor', 'monitoring', 'responsive', 'self-hosted', 'selfhosted', 'single-page-app', 'socket-io', 'uptime', 'uptime-monitoring', 'webapp', 'websocket']",True,False,True,True,True,False,False,False,False,master +zx,A tool for writing better scripts,https://github.com/google/zx,2021-05-05T05:50:01Z,2023-09-21T11:42:36Z,https://google.github.io/zx/,1367,38538,990,60,38538,JavaScript,Apache-2.0,"['bash', 'cli', 'javascript', 'nodejs', 'shell']",True,False,True,False,True,True,False,False,False,main +segment-anything,"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.",https://github.com/facebookresearch/segment-anything,2023-03-23T17:03:03Z,2023-09-21T11:31:17Z,,10990,38500,4405,384,38500,Jupyter Notebook,Apache-2.0,[],True,True,True,False,False,False,False,False,False,main +FFmpeg,Mirror of https://git.ffmpeg.org/ffmpeg.git,https://github.com/FFmpeg/FFmpeg,2011-04-14T14:12:38Z,2023-09-21T10:58:26Z,https://ffmpeg.org/,375535,38467,11292,3,38467,C,NOASSERTION,"['audio', 'c', 'ffmpeg', 'fft', 'hevc', 'hls', 'matroska', 'mp4', 'mpeg', 'multimedia', 'rtmp', 'rtsp', 'streaming', 'video', 'webm']",False,False,True,False,False,False,False,False,False,master +30-Days-Of-JavaScript,"30 days of JavaScript programming challenge is a step-by-step guide to learn JavaScript programming language in 30 days. This challenge may take more than 100 days, please just follow your own pace. These videos may help too: https://www.youtube.com/channel/UC7PNRuno1rzYPb1xLa4yktw",https://github.com/Asabeneh/30-Days-Of-JavaScript,2019-12-23T14:07:40Z,2023-09-21T11:38:31Z,,124975,38463,9132,323,38463,JavaScript,,"['30daysofjavascript', 'angular', 'challenge', 'css', 'd3', 'd3js', 'html', 'javascript', 'javascript-for-everyone', 'js', 'json', 'node', 'nodejs', 'programming', 'react', 'redux', 'typescript', 'vue', 'webdevelopment', 'website']",True,True,True,True,False,True,False,False,False,master +dive,A tool for exploring each layer in a docker image,https://github.com/wagoodman/dive,2018-05-13T15:44:01Z,2023-09-21T11:18:08Z,,4529,38433,1538,139,38433,Go,MIT,"['cli', 'docker', 'docker-image', 'explorer', 'inspector', 'tui']",True,True,True,False,False,False,False,False,False,main +Leaflet,🍃 JavaScript library for mobile-friendly interactive maps 🇺🇦,https://github.com/Leaflet/Leaflet,2010-09-22T16:57:44Z,2023-09-21T09:20:33Z,https://leafletjs.com,57889,38428,5722,499,38428,JavaScript,BSD-2-Clause,"['hacktoberfest', 'javascript', 'leaflet', 'maps']",True,True,False,False,True,True,False,False,False,main +gitea,"Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD",https://github.com/go-gitea/gitea,2016-11-01T02:13:26Z,2023-09-21T11:15:08Z,https://about.gitea.com,276739,38389,4861,2332,38389,Go,MIT,"['devops', 'git', 'git-gui', 'git-server', 'gitea', 'github', 'github-clone', 'gitlab', 'go', 'gogs', 'golang', 'hacktoberfest']",True,False,True,True,False,False,False,False,False,main +front-end-interview-handbook,⚡️ Front End interview preparation materials for busy engineers,https://github.com/yangshun/front-end-interview-handbook,2018-01-13T19:40:08Z,2023-09-21T08:22:03Z,https://frontendinterviewhandbook.com,5699,38229,5468,25,38229,MDX,MIT,"['css', 'css-questions', 'front-end', 'front-end-development', 'front-end-interview', 'front-end-system-design', 'html', 'html-questions', 'interview', 'interview-preparation', 'interview-questions', 'interview-test', 'javascript', 'js-questions', 'web-development']",True,True,True,True,False,True,False,False,False,main +edex-ui,"A cross-platform, customizable science fiction terminal emulator with advanced monitoring & touchscreen support.",https://github.com/GitSquared/edex-ui,2017-01-28T09:35:02Z,2023-09-21T11:39:23Z,,31579,38225,2360,6,38225,JavaScript,GPL-3.0,"['desktop', 'edex-ui', 'electron', 'linux', 'macos', 'nodejs', 'science-fiction', 'shell', 'terminal', 'touchscreen', 'tron', 'unixporn', 'windows']",True,False,True,True,False,True,False,True,False,master +Magisk,The Magic Mask for Android,https://github.com/topjohnwu/Magisk,2016-09-08T12:42:53Z,2023-09-21T11:12:49Z,,58609,38174,9958,34,38174,C++,GPL-3.0,[],True,False,True,False,True,False,False,False,False,master +react-use,React Hooks — 👍,https://github.com/streamich/react-use,2018-10-27T10:16:05Z,2023-09-21T11:44:11Z,http://streamich.github.io/react-use,83875,38124,3018,570,38124,TypeScript,Unlicense,[],True,True,True,True,True,False,False,False,False,master +python-patterns,A collection of design patterns/idioms in Python,https://github.com/faif/python-patterns,2012-06-06T21:02:35Z,2023-09-21T10:35:30Z,,3777,38113,6900,13,38113,Python,,"['design-patterns', 'idioms', 'python']",True,True,True,True,False,False,False,False,False,master +vuetify,🐉 Vue Component Framework,https://github.com/vuetifyjs/vuetify,2016-09-12T00:39:35Z,2023-09-21T10:55:02Z,https://vuetifyjs.com,85782,37958,6895,724,37958,TypeScript,MIT,"['javascript', 'material', 'material-components', 'material-design', 'material-theme', 'semantic', 'typescript', 'ui', 'ui-components', 'ui-design', 'ui-kit', 'ui-library', 'vue', 'vue-components', 'vue-material', 'vuejs', 'vuejs3', 'vuetify', 'vuetifyjs']",True,False,True,False,False,True,False,False,False,master +nocodb,🔥 🔥 🔥 Open Source Airtable Alternative,https://github.com/nocodb/nocodb,2017-10-29T18:51:48Z,2023-09-21T11:23:35Z,https://nocodb.com,951925,37874,2472,556,37874,TypeScript,AGPL-3.0,"['admin-dashboard', 'admin-ui', 'airtable', 'airtable-alternative', 'automatic-api', 'hacktoberfest', 'low-code', 'mariadb', 'mysql', 'no-code', 'no-code-database', 'no-code-platform', 'postgresql', 'rest-api', 'restful-api', 'spreadsheet', 'sqlite', 'sqlserver', 'swagger']",True,True,True,True,False,True,False,False,False,develop +privateGPT,"Interact privately with your documents using the power of GPT, 100% privately, no data leaks",https://github.com/imartinez/privateGPT,2023-05-02T09:15:31Z,2023-09-21T10:00:38Z,,149,37812,4920,489,37812,Python,Apache-2.0,[],True,True,True,True,False,True,False,False,False,main +first-contributions,🚀✨ Help beginners to contribute to open source projects,https://github.com/firstcontributions/first-contributions,2016-09-20T14:35:09Z,2023-09-21T11:38:05Z,https://firstcontributions.github.io,30610,37762,65211,260,37762,,MIT,"['beginner', 'beginner-friendly', 'community', 'contribution', 'contributions', 'contributions-welcome', 'good-first-issue', 'help-wanted', 'open-source', 'tutorial', 'tutorials']",True,True,True,True,False,False,False,False,False,main +awesome-java,"A curated list of awesome frameworks, libraries and software for the Java programming language.",https://github.com/akullpp/awesome-java,2014-07-09T10:12:43Z,2023-09-21T07:44:06Z,,1949,37718,7232,8,37718,,NOASSERTION,"['awesome', 'awesome-list']",True,True,True,True,False,False,False,False,False,master +fastlane,🚀 The easiest way to automate building and releasing your iOS and Android apps,https://github.com/fastlane/fastlane,2014-12-02T17:00:38Z,2023-09-21T07:10:10Z,https://fastlane.tools,81810,37530,5611,532,37530,Ruby,MIT,"['android', 'apps', 'automation', 'deployment', 'fastlane', 'hacktoberfest', 'hacktoberfest2021', 'ios', 'mobile', 'ruby', 'screenshots']",True,True,True,False,False,True,False,False,False,master +uBlock,uBlock Origin - An efficient blocker for Chromium and Firefox. Fast and lean.,https://github.com/gorhill/uBlock,2015-04-01T17:51:11Z,2023-09-21T11:04:49Z,,140238,37481,2835,14,37481,JavaScript,GPL-3.0,"['blocker', 'browser-extension', 'chromium', 'firefox', 'javascript', 'ublock', 'ublock-origin']",True,True,True,True,True,False,False,False,False,master +hexo,"A fast, simple & powerful blog framework, powered by Node.js.",https://github.com/hexojs/hexo,2012-09-23T15:17:08Z,2023-09-21T09:21:57Z,https://hexo.io,7581,37432,4645,88,37432,JavaScript,MIT,"['hexo', 'javascript', 'nodejs', 'static-site-generator']",True,False,True,True,False,True,False,False,False,master +impress.js,It's a presentation framework based on the power of CSS3 transforms and transitions in modern browsers and inspired by the idea behind prezi.com.,https://github.com/impress/impress.js,2011-12-28T22:23:19Z,2023-09-21T11:13:45Z,http://impress.js.org,4678,37327,6809,76,37327,JavaScript,MIT,[],True,True,True,True,True,False,False,False,False,master +what-happens-when,"An attempt to answer the age old interview question ""What happens when you type google.com into your browser and press enter?""",https://github.com/alex/what-happens-when,2013-11-07T04:30:06Z,2023-09-21T11:18:14Z,,260,37300,3841,961,37300,,,[],True,True,True,True,False,False,False,False,False,master +awesome-react-components,Curated List of React Components & Libraries.,https://github.com/brillout/awesome-react-components,2016-06-24T15:19:33Z,2023-09-21T10:26:33Z,,1037,37239,3203,3,37239,,CC0-1.0,"['awesome', 'awesome-list', 'react', 'react-component', 'react-components']",True,True,True,True,False,False,False,False,False,master +awesome-rust,A curated list of Rust code and resources.,https://github.com/rust-unofficial/awesome-rust,2014-07-17T10:45:10Z,2023-09-21T10:36:07Z,,6232,37165,2329,10,37165,Rust,CC0-1.0,"['awesome', 'rust']",True,False,True,False,False,False,False,False,False,main +brew,🍺 The missing package manager for macOS (or Linux),https://github.com/Homebrew/brew,2016-03-06T05:08:38Z,2023-09-21T10:13:25Z,https://brew.sh,74702,37110,9186,38,37110,Ruby,BSD-2-Clause,"['brew', 'homebrew', 'macos', 'package-manager', 'ruby']",True,False,True,False,True,False,False,False,False,master +Rocket.Chat,The communications platform that puts data protection first.,https://github.com/RocketChat/Rocket.Chat,2015-05-19T07:36:09Z,2023-09-21T10:25:21Z,https://rocket.chat/,797034,37061,9079,2968,37061,TypeScript,NOASSERTION,"['chat', 'collaboration', 'foss', 'free', 'hacktoberfest', 'javascript', 'meteor', 'mit', 'real-time', 'slack', 'webrtc']",True,True,True,True,True,True,False,False,False,develop +quill,Quill is a modern WYSIWYG editor built for compatibility and extensibility.,https://github.com/quilljs/quill,2012-07-30T23:23:18Z,2023-09-21T11:33:53Z,https://quilljs.com,15409,36988,3129,1352,36988,TypeScript,BSD-3-Clause,"['editor', 'quill', 'rich-text-editor', 'wysiwyg']",True,False,True,False,True,False,False,False,False,develop +open-source-mac-os-apps,🚀 Awesome list of open source applications for macOS. https://t.me/s/opensourcemacosapps,https://github.com/serhii-londar/open-source-mac-os-apps,2017-11-03T02:35:33Z,2023-09-21T08:39:44Z,,5871,36860,2224,93,36860,,CC0-1.0,"['applications', 'apps', 'awesome', 'awesome-list', 'c', 'c-plus-plus', 'hacktoberfest', 'javascript', 'mac', 'macos', 'macos-application', 'macosx', 'objective-c', 'open-source', 'opensource', 'python', 'ruby', 'swift']",True,True,True,True,True,True,False,False,False,master +MPAndroidChart,"A powerful 🚀 Android chart view / graph view library, supporting line- bar- pie- radar- bubble- and candlestick charts as well as scaling, panning and animations.",https://github.com/PhilJay/MPAndroidChart,2014-04-25T14:29:47Z,2023-09-21T09:29:42Z,,21720,36817,9001,2137,36817,Java,NOASSERTION,"['android', 'chart', 'graph', 'java', 'mpandroidchart']",True,True,True,True,False,False,False,False,False,master +react-hook-form,📋 React Hooks for form state management and validation (Web + React Native),https://github.com/react-hook-form/react-hook-form,2019-03-05T23:47:10Z,2023-09-21T11:44:44Z,https://react-hook-form.com,27824,36810,1845,30,36810,TypeScript,MIT,"['dx', 'form-builder', 'forms', 'react-hooks', 'react-native', 'reactjs', 'typescript', 'ux', 'validation']",True,True,True,False,False,True,False,False,False,master +spark,Apache Spark - A unified analytics engine for large-scale data processing,https://github.com/apache/spark,2014-02-25T08:00:08Z,2023-09-21T10:51:38Z,https://spark.apache.org/,433202,36774,27684,249,36774,Scala,Apache-2.0,"['big-data', 'java', 'jdbc', 'python', 'r', 'scala', 'spark', 'sql']",False,True,True,False,False,False,False,False,False,master +json,JSON for Modern C++,https://github.com/nlohmann/json,2013-07-04T08:47:49Z,2023-09-21T11:45:17Z,https://json.nlohmann.me,180799,36666,6255,121,36666,C++,MIT,"['bson', 'cbor', 'header-only', 'json', 'json-diff', 'json-merge-patch', 'json-parser', 'json-patch', 'json-pointer', 'json-serialization', 'messagepack', 'msgpack', 'rfc-6901', 'rfc-6902', 'rfc-7049', 'rfc-7159', 'rfc-8259', 'stl-containers', 'ubjson']",True,True,True,False,True,True,False,False,False,develop +kubernetes-the-hard-way,Bootstrap Kubernetes the hard way on Google Cloud Platform. No scripts.,https://github.com/kelseyhightower/kubernetes-the-hard-way,2016-07-07T14:15:27Z,2023-09-21T10:55:01Z,,659,36533,12658,160,36533,,Apache-2.0,[],True,True,True,True,False,False,False,False,False,master +freecodecamp.cn,FCC China open source codebase and curriculum. Learn to code and help nonprofits.,https://github.com/FreeCodeCampChina/freecodecamp.cn,2016-09-30T03:13:43Z,2023-09-21T11:37:52Z,https://fcc.asia/,30959,36528,1374,152,36528,CSS,NOASSERTION,"['career', 'certification', 'cn-freecodecamp', 'community', 'curriculum', 'd3', 'education', 'freecodecamp', 'javascript', 'learn-to-code', 'math', 'nodejs', 'nonprofits', 'react']",True,True,True,True,False,False,False,False,False,dev +starship,"☄🌌️ The minimal, blazing-fast, and infinitely customizable prompt for any shell!",https://github.com/starship/starship,2019-04-02T03:23:12Z,2023-09-21T11:02:33Z,https://starship.rs,32914,36468,1549,608,36468,Rust,ISC,"['bash', 'fish', 'fish-prompt', 'fish-theme', 'oh-my-zsh', 'powershell', 'rust', 'shell-prompt', 'starship', 'zsh', 'zsh-prompt', 'zsh-theme']",True,False,True,False,False,True,False,False,False,master +swiper,Most modern mobile touch slider with hardware accelerated transitions,https://github.com/nolimits4web/swiper,2012-03-14T19:11:45Z,2023-09-21T10:36:13Z,https://swiperjs.com,79190,36455,9769,182,36455,JavaScript,MIT,"['carousel', 'gallery', 'mobile', 'slider', 'swipe', 'swiper', 'touch', 'touch-events']",True,True,True,False,False,True,False,False,False,master +ailearning,AiLearning:数据分析+机器学习实战+线性代数+PyTorch+NLTK+TF2,https://github.com/apachecn/ailearning,2017-02-25T08:53:02Z,2023-09-21T11:30:58Z,http://ailearning.apachecn.org/,171332,36446,11297,3,36446,Python,NOASSERTION,"['adaboost', 'apriori', 'deeplearning', 'dnn', 'fp-growth', 'kmeans', 'logistic', 'lstm', 'mahchine-leaning', 'naivebayes', 'nlp', 'pca', 'python', 'recommendedsystem', 'regression', 'rnn', 'scikit-learn', 'sklearn', 'svd', 'svm']",True,True,True,False,True,True,False,False,False,master +open-source-ios-apps,:iphone: Collaborative List of Open-Source iOS Apps,https://github.com/dkhamsing/open-source-ios-apps,2015-01-26T23:32:34Z,2023-09-21T11:21:42Z,,22796,36431,5176,2,36431,,CC0-1.0,"['app', 'apple', 'apple-tv', 'apple-watch', 'awesome', 'cocoapods', 'example', 'flutter', 'game', 'ios', 'ipad', 'iphone', 'list', 'objective-c', 'react-native', 'swift', 'swiftui', 'tvos', 'watchos']",True,False,True,True,False,False,False,False,False,master +type-challenges,Collection of TypeScript type challenges with online judge,https://github.com/type-challenges/type-challenges,2020-07-23T14:33:11Z,2023-09-21T10:40:37Z,https://tsch.js.org/,2556,36388,3879,26543,36388,TypeScript,MIT,"['challenges', 'type', 'type-system', 'typescript']",True,True,True,False,False,True,False,False,False,main +query,"🤖 Powerful asynchronous state management, server-state utilities and data fetching for the web. TS/JS, React Query, Solid Query, Svelte Query and Vue Query.",https://github.com/TanStack/query,2019-09-10T19:23:58Z,2023-09-21T11:09:32Z,https://tanstack.com/query,37652,36316,2391,41,36316,TypeScript,MIT,"['async', 'cache', 'data', 'fetch', 'graphql', 'hooks', 'query', 'react', 'rest', 'stale', 'stale-while-revalidate', 'update']",True,True,True,False,False,True,False,False,False,main +Deep-Learning-Papers-Reading-Roadmap,Deep Learning papers reading roadmap for anyone who are eager to learn this amazing tech!,https://github.com/floodsung/Deep-Learning-Papers-Reading-Roadmap,2016-10-14T11:49:48Z,2023-09-21T10:55:02Z,,3638,36311,7315,90,36311,Python,,['deep-learning'],True,True,True,True,False,False,False,False,False,master +jadx,Dex to Java decompiler,https://github.com/skylot/jadx,2013-03-18T17:08:21Z,2023-09-21T10:58:50Z,,20231,36275,4503,345,36275,Java,Apache-2.0,"['android', 'decompiler', 'dex', 'java']",True,False,True,True,False,False,False,False,False,master +weekly,科技爱好者周刊,每周五发布,https://github.com/ruanyf/weekly,2018-10-13T12:36:07Z,2023-09-21T11:14:31Z,,5884,36267,2440,2706,36267,,,[],True,True,True,True,False,False,False,False,False,master +video.js,Video.js - open source HTML5 video player,https://github.com/videojs/video.js,2010-05-14T18:45:10Z,2023-09-21T11:02:06Z,https://videojs.com,127193,36202,7427,476,36202,JavaScript,NOASSERTION,"['dash', 'hls', 'html', 'html5', 'html5-audio', 'html5-video', 'javascript', 'player', 'video', 'videojs']",True,True,False,True,True,True,False,False,False,main +annotated_deep_learning_paper_implementations,"🧑‍🏫 60 Implementations/tutorials of deep learning papers with side-by-side notes 📝; including transformers (original, xl, switch, feedback, vit, ...), optimizers (adam, adabelief, sophia, ...), gans(cyclegan, stylegan2, ...), 🎮 reinforcement learning (ppo, dqn), capsnet, distillation, ... 🧠",https://github.com/labmlai/annotated_deep_learning_paper_implementations,2020-08-25T02:29:34Z,2023-09-21T11:17:09Z,https://nn.labml.ai,149779,36179,3771,26,36179,Jupyter Notebook,MIT,"['attention', 'deep-learning', 'deep-learning-tutorial', 'gan', 'literate-programming', 'machine-learning', 'neural-networks', 'optimizers', 'pytorch', 'reinforcement-learning', 'transformer', 'transformers']",True,True,True,True,True,True,False,False,False,master +esbuild,An extremely fast bundler for the web,https://github.com/evanw/esbuild,2016-06-14T16:08:50Z,2023-09-21T10:43:52Z,https://esbuild.github.io/,18355,36076,1054,338,36076,Go,MIT,"['bundler', 'commonjs', 'compiler', 'css', 'esm', 'javascript', 'jsx', 'minifier', 'react', 'tsx', 'typescript']",True,False,True,False,False,False,False,False,False,main +php-src,The PHP Interpreter,https://github.com/php/php-src,2011-06-16T01:52:25Z,2023-09-21T07:35:39Z,https://www.php.net,520137,36046,7640,772,36046,C,NOASSERTION,[],True,False,True,False,False,False,False,False,False,master +cheat.sh,the only cheat sheet you need,https://github.com/chubin/cheat.sh,2017-05-07T21:40:56Z,2023-09-21T10:39:32Z,https://cheat.sh/,4558,36023,1738,123,36023,Python,MIT,"['cheatsheet', 'cli', 'command-line', 'curl', 'documentation', 'examples', 'hacktoberfest2021', 'help', 'terminal', 'tldr']",True,True,True,True,False,False,False,False,False,master +drawio,"draw.io is a JavaScript, client-side editor for general diagramming and whiteboarding",https://github.com/jgraph/drawio,2016-09-06T12:59:15Z,2023-09-21T05:46:55Z,https://www.drawio.com,1388684,35955,6983,354,35955,JavaScript,Apache-2.0,"['diagram', 'javascript', 'whiteboard']",True,True,True,True,True,True,False,False,False,dev +kong,🦍 The Cloud-Native API Gateway ,https://github.com/Kong/kong,2014-11-17T23:56:08Z,2023-09-21T10:59:15Z,https://konghq.com/install/#kong-community,30493,35924,4609,246,35924,Lua,Apache-2.0,"['api-gateway', 'api-management', 'apis', 'cloud-native', 'consul', 'devops', 'docker', 'iot', 'kong', 'kubernetes', 'kubernetes-ingress', 'kubernetes-ingress-controller', 'luajit', 'microservice', 'microservices', 'nginx', 'reverse-proxy', 'serverless', 'servicecontrol']",True,False,True,False,False,True,False,False,False,master +jeecg-boot,🔥「企业级低代码平台」前后端分离架构SpringBoot 2.x,SpringCloud,Ant Design&Vue,Mybatis,Shiro,JWT。强大的代码生成器让前后端代码一键生成,无需写任何代码! 引领新的开发模式OnlineCoding->代码生成->手工MERGE,帮助Java项目解决70%重复工作,让开发更关注业务,既能快速提高效率,帮助公司节省成本,同时又不失灵活性。,https://github.com/jeecgboot/jeecg-boot,2018-11-26T10:40:00Z,2023-09-21T11:41:42Z,http://www.jeecg.com,55173,35890,13891,60,35890,Java,Apache-2.0,"['activiti', 'ant-design', 'ant-design-vue', 'antd', 'codegenerator', 'flowable', 'java', 'jbpm', 'jeecg', 'jeecgboot', 'low-code', 'mybatis', 'shiro', 'spring', 'spring-boot', 'spring-cloud', 'springboot', 'springcloud', 'vue', 'vue3']",True,True,True,True,True,False,False,False,False,master +Prompt-Engineering-Guide,"🐙 Guides, papers, lecture, notebooks and resources for prompt engineering",https://github.com/dair-ai/Prompt-Engineering-Guide,2022-12-16T16:04:50Z,2023-09-21T11:22:34Z,https://www.promptingguide.ai/,10798,35862,3249,67,35862,MDX,MIT,"['chatgpt', 'deep-learning', 'language-model', 'openai', 'prompt-engineering']",True,True,True,True,False,False,False,False,False,main +monaco-editor,A browser based code editor,https://github.com/microsoft/monaco-editor,2016-06-07T16:56:31Z,2023-09-21T10:11:20Z,https://microsoft.github.io/monaco-editor/,137160,35638,3388,375,35638,JavaScript,MIT,"['browser', 'editor', 'monaco-editor', 'typescript', 'vscode']",True,False,True,True,True,True,False,False,False,main +manifesto,The OpenTF Manifesto expresses concern over HashiCorp's switch of the Terraform license from open-source to the Business Source License (BSL) and calls for the tool's return to a truly open-source license.,https://github.com/opentofu/manifesto,2023-08-13T16:17:24Z,2023-09-21T11:39:45Z,https://opentf.org,1823,35478,1093,48,35478,HTML,Apache-2.0,[],True,True,True,False,True,True,False,False,False,main +slate,Beautiful static documentation for your API,https://github.com/slatedocs/slate,2013-09-13T22:15:24Z,2023-09-21T10:47:02Z,https://slatedocs.github.io/slate,2423,35460,22188,56,35460,SCSS,Apache-2.0,"['api', 'api-documentation', 'slate', 'static-site-generator']",True,False,True,True,True,True,False,False,True,main +tabler,Tabler is free and open-source HTML Dashboard UI Kit built on Bootstrap,https://github.com/tabler/tabler,2018-02-01T09:08:59Z,2023-09-21T11:35:03Z,https://tabler.io,277679,35439,3751,89,35439,HTML,MIT,"['admin-dashboard', 'adminpanel', 'boilerplate-template', 'bootstrap', 'bootstrap4-theme', 'bootstrap5', 'css', 'dashboard', 'dashboard-templates', 'dashboards', 'html', 'html5', 'jekyll', 'modular', 'sass', 'scss', 'sponsors', 'themes', 'ui-kit', 'uikit']",True,True,True,False,True,True,False,False,False,dev +styleguide,Style guides for Google-originated open-source projects,https://github.com/google/styleguide,2015-05-20T19:18:59Z,2023-09-21T10:22:09Z,https://google.github.io/styleguide/,2700,35423,13331,323,35423,HTML,Apache-2.0,"['cpplint', 'style-guide', 'styleguide']",True,False,False,False,True,False,False,False,False,gh-pages +interview_internal_reference,2023年最新总结,阿里,腾讯,百度,美团,头条等技术面试题目,以及答案,专家出题人分析汇总。,https://github.com/0voice/interview_internal_reference,2019-06-10T06:54:19Z,2023-09-21T07:44:18Z,,1104,35409,9362,30,35409,Python,,"['cpu', 'high-performance', 'interview', 'mongodb', 'mysql', 'network', 'nginx', 'redis', 'storage', 'zookeeper']",True,True,True,True,False,False,False,False,False,master +wrk,Modern HTTP benchmarking tool,https://github.com/wg/wrk,2012-03-20T11:12:28Z,2023-09-21T11:32:37Z,,38743,35346,2849,187,35346,C,NOASSERTION,[],True,True,True,False,False,False,False,False,False,master +bert,TensorFlow code and pre-trained models for BERT,https://github.com/google-research/bert,2018-10-25T22:57:34Z,2023-09-21T11:02:22Z,https://arxiv.org/abs/1810.04805,317,35295,9373,873,35295,Python,Apache-2.0,"['google', 'natural-language-processing', 'natural-language-understanding', 'nlp', 'tensorflow']",True,True,True,True,False,False,False,False,False,master +zustand,🐻 Bear necessities for state management in React,https://github.com/pmndrs/zustand,2019-04-09T09:10:06Z,2023-09-21T10:03:56Z,https://zustand-demo.pmnd.rs/,6050,35260,1084,6,35260,TypeScript,MIT,"['hooks', 'react', 'react-context', 'reactjs', 'redux', 'state-management']",True,True,True,True,False,True,False,False,False,main +phaser,"Phaser is a fun, free and fast 2D game framework for making HTML5 games for desktop and mobile web browsers, supporting Canvas and WebGL rendering.",https://github.com/photonstorm/phaser,2013-04-12T12:27:51Z,2023-09-21T09:02:37Z,https://phaser.io,370432,35245,7059,131,35245,JavaScript,MIT,"['canvas', 'facebook-instant-games', 'game-development', 'game-frameworks', 'gamedev', 'html5-game-development', 'javascript', 'phaser', 'phaser-development', 'phaserjs', 'webgl']",True,False,True,False,False,True,False,False,False,master +Open-Assistant,"OpenAssistant is a chat-based assistant that understands tasks, can interact with third-party systems, and retrieve information dynamically to do so.",https://github.com/LAION-AI/Open-Assistant,2022-12-13T05:24:17Z,2023-09-21T11:34:23Z,https://open-assistant.io,51059,35189,3150,283,35189,Python,Apache-2.0,"['ai', 'assistant', 'chatgpt', 'discord-bot', 'language-model', 'machine-learning', 'nextjs', 'python', 'rlhf']",True,True,True,False,True,True,False,False,False,main +astro,"The web framework that scales with you — Build fast content sites, powerful web applications, dynamic server APIs, and everything in-between ⭐️ Star to support our work!",https://github.com/withastro/astro,2021-03-15T17:19:47Z,2023-09-21T11:22:35Z,https://astro.build,148209,35168,1816,171,35168,TypeScript,NOASSERTION,"['astro', 'blog', 'browser', 'components', 'hybrid', 'islands', 'node', 'server', 'static', 'static-site-generator', 'universal']",True,True,True,False,False,False,False,False,False,main +sentry,Developer-first error tracking and performance monitoring,https://github.com/getsentry/sentry,2010-08-30T22:06:41Z,2023-09-21T10:54:46Z,https://sentry.io,425570,35140,3929,1655,35140,Python,NOASSERTION,"['apm', 'crash-reporting', 'crash-reports', 'csp-report', 'devops', 'django', 'error-logging', 'error-monitoring', 'hacktoberfest', 'monitor', 'monitoring', 'python', 'sentry', 'tag-production']",True,False,True,False,False,True,False,False,False,master +preact,⚛️ Fast 3kB React alternative with the same modern API. Components & Virtual DOM.,https://github.com/preactjs/preact,2015-09-11T02:40:18Z,2023-09-21T11:02:23Z,https://preactjs.com,14995,35038,1943,248,35038,JavaScript,MIT,"['components', 'dom', 'jsx', 'preact', 'react', 'vdom', 'virtual-dom']",True,True,True,True,True,True,False,False,False,main +lerna,":dragon: Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository.",https://github.com/lerna/lerna,2015-12-04T09:36:55Z,2023-09-21T11:05:42Z,https://lerna.js.org,35174,34932,2330,331,34932,TypeScript,MIT,"['lerna', 'monorepo', 'npm', 'package', 'publishing']",True,False,True,False,False,True,False,False,False,main +tutorials,"Just Announced - ""Learn Spring Security OAuth"": ",https://github.com/eugenp/tutorials,2013-04-29T18:26:36Z,2023-09-21T10:23:03Z,http://bit.ly/github-lsso,378626,34904,54050,73,34904,Java,MIT,[],True,True,True,True,False,False,False,False,False,master +ant-design-pro,👨🏻‍💻👩🏻‍💻 Use Ant Design like a Pro!,https://github.com/ant-design/ant-design-pro,2017-08-25T10:40:44Z,2023-09-21T10:47:06Z,https://pro.ant.design,7884,34881,8027,390,34881,TypeScript,MIT,"['admin', 'ant-design', 'antd', 'antv', 'boilerplate', 'dashboard', 'enterprise', 'react', 'umi']",True,True,True,True,True,True,False,False,True,master +tidb,"TiDB is an open-source, cloud-native, distributed, MySQL-Compatible database for elastic scale and real-time analytics. Try AI-powered Chat2Query free at : https://tidbcloud.com/free-trial",https://github.com/pingcap/tidb,2015-09-06T04:01:52Z,2023-09-21T09:37:07Z,https://pingcap.com,439362,34863,5609,4339,34863,Go,Apache-2.0,"['cloud-native', 'database', 'distributed-database', 'distributed-transactions', 'go', 'hacktoberfest', 'htap', 'mysql', 'mysql-compatibility', 'scale', 'serverless', 'sql', 'tidb']",True,True,True,True,False,False,False,False,False,master +pure-bash-bible,📖 A collection of pure bash alternatives to external processes.,https://github.com/dylanaraps/pure-bash-bible,2018-06-13T01:39:33Z,2023-09-21T11:40:00Z,,232,34744,3171,60,34744,Shell,MIT,"['bash', 'bible', 'book', 'guide', 'handbook', 'how-to', 'learning', 'list', 'reference', 'script', 'shell', 'shell-scripts']",True,False,True,False,False,False,False,False,False,master +fullPage.js,fullPage plugin by Alvaro Trigo. Create full screen pages fast and simple,https://github.com/alvarotrigo/fullPage.js,2013-09-20T11:58:29Z,2023-09-21T04:56:07Z,http://alvarotrigo.com/fullPage/,16810,34727,7425,189,34727,JavaScript,GPL-3.0,"['fullpage', 'fullscreen', 'javascript', 'jquery', 'mousewheel', 'onepage', 'scrolling', 'sections', 'slide', 'slideshow', 'snap', 'swipe']",True,True,True,True,False,False,False,False,False,master +v,"Simple, fast, safe, compiled language for developing maintainable software. Compiles itself in <1s with zero library dependencies. Supports automatic C => V translation. https://vlang.io",https://github.com/vlang/v,2019-02-08T02:57:06Z,2023-09-21T09:15:19Z,,65436,34609,2106,843,34609,V,MIT,"['compiler', 'language', 'programming-language', 'v']",True,True,True,True,False,True,False,False,False,master +awesome-cheatsheets,"👩‍💻👨‍💻 Awesome cheatsheets for popular programming languages, frameworks and development tools. They include everything you should know in one single file.",https://github.com/LeCoupa/awesome-cheatsheets,2017-11-09T02:47:15Z,2023-09-21T10:30:23Z,https://lecoupa.github.io/awesome-cheatsheets/,8935,34609,5681,88,34609,JavaScript,MIT,"['backend', 'bash', 'cheatsheet', 'cheatsheets', 'database', 'django', 'docker', 'feathersjs', 'frontend', 'javascript', 'kubernetes', 'language', 'nodejs', 'php', 'programming-language', 'redis', 'sailsjs', 'vim', 'vuejs', 'xcode']",True,True,True,True,True,False,False,False,False,master +node-v0.x-archive,Moved to https://github.com/nodejs/node,https://github.com/nodejs/node-v0.x-archive,2009-05-27T16:29:46Z,2023-09-21T04:13:46Z,,144238,34536,7522,0,34536,,,[],True,True,False,True,False,False,False,True,False,moved +og-aws,📙 Amazon Web Services — a practical guide,https://github.com/open-guides/og-aws,2016-07-13T17:30:16Z,2023-09-21T10:58:39Z,,7680,34525,3774,150,34525,Shell,CC-BY-4.0,[],True,True,True,False,False,False,False,False,False,master +iina,The modern video player for macOS.,https://github.com/iina/iina,2016-12-19T07:18:45Z,2023-09-21T06:20:38Z,https://iina.io,266943,34494,2479,1651,34494,Swift,GPL-3.0,"['hacktoberfest', 'macos', 'mpv', 'swift', 'video', 'video-player']",True,False,True,True,False,True,False,False,False,develop +JavaFamily,【Java面试+Java学习指南】 一份涵盖大部分Java程序员所需要掌握的核心知识。,https://github.com/AobingJava/JavaFamily,2019-11-12T04:26:18Z,2023-09-21T09:37:57Z,,437,34456,7723,1,34456,,,"['interview', 'java', 'java8', 'jvm', 'mysql', 'redis', 'rocketmq', 'system', 'zookeeper']",True,True,True,True,False,False,False,False,False,master +chakra-ui,"⚡️ Simple, Modular & Accessible UI Components for your React Applications",https://github.com/chakra-ui/chakra-ui,2019-08-17T14:27:54Z,2023-09-21T10:54:50Z,https://chakra-ui.com,126694,34413,3033,219,34413,TypeScript,MIT,"['a11y', 'accessible', 'chakra-ui', 'dark-mode', 'react', 'react-components', 'reactjs', 'ui-components', 'ui-library', 'uikit', 'wai-aria']",True,True,True,True,False,True,False,False,False,main +koa,Expressive middleware for node.js using ES2017 async functions,https://github.com/koajs/koa,2013-07-20T18:53:45Z,2023-09-21T09:16:44Z,https://koajs.com,3740,34356,3302,59,34356,JavaScript,MIT,['koa'],True,False,True,True,False,True,False,False,False,master +ChatGLM-6B,ChatGLM-6B: An Open Bilingual Dialogue Language Model | 开源双语对话语言模型,https://github.com/THUDM/ChatGLM-6B,2023-03-13T12:00:18Z,2023-09-21T11:25:34Z,,9348,34356,4627,527,34356,Python,Apache-2.0,[],True,True,True,False,False,True,False,False,False,main +hackathon-starter,A boilerplate for Node.js web applications,https://github.com/sahat/hackathon-starter,2013-11-13T17:24:12Z,2023-09-20T21:52:41Z,,13849,34348,8153,11,34348,JavaScript,MIT,"['boilerplate', 'hackathon', 'hacktoberfest', 'nodejs', 'oauth2', 'starter-kit']",True,False,True,False,False,False,False,False,False,master +nativefier,Make any web page a desktop application,https://github.com/nativefier/nativefier,2015-07-05T05:56:42Z,2023-09-21T09:30:54Z,,6430,34268,2150,259,34268,TypeScript,MIT,"['desktop-application', 'electron', 'linux', 'macos', 'nodejs', 'windows']",True,False,True,False,False,False,False,False,False,master +wtfpython,What the f*ck Python? 😱,https://github.com/satwikkansal/wtfpython,2017-08-28T20:22:19Z,2023-09-21T10:36:18Z,,1192,34263,2632,74,34263,Python,WTFPL,"['documentation', 'gotchas', 'interview-questions', 'pitfalls', 'python', 'python-interview-questions', 'snippets', 'wats', 'wtf']",True,True,True,True,False,False,False,False,False,master +lottie-android,"Render After Effects animations natively on Android and iOS, Web, and React Native",https://github.com/airbnb/lottie-android,2016-10-06T22:42:42Z,2023-09-21T10:53:44Z,http://airbnb.io/lottie/,136611,34238,5389,37,34238,Java,Apache-2.0,"['after-effects', 'airbnb', 'android', 'animation', 'lottie']",True,False,True,False,False,False,False,False,False,master +deeplearningbook-chinese,Deep Learning Book Chinese Translation,https://github.com/exacity/deeplearningbook-chinese,2016-12-07T11:46:51Z,2023-09-21T10:05:48Z,https://exacity.github.io/deeplearningbook-chinese,8908,34197,9117,65,34197,TeX,,[],True,True,True,True,True,False,False,False,False,master +Made-With-ML,"Learn how to design, develop, deploy and iterate on production-grade ML applications.",https://github.com/GokuMohandas/Made-With-ML,2018-11-05T03:44:27Z,2023-09-21T11:15:04Z,https://madewithml.com,3860,34172,5569,1,34172,Jupyter Notebook,MIT,"['data-engineering', 'data-quality', 'data-science', 'deep-learning', 'distributed-ml', 'distributed-training', 'llms', 'machine-learning', 'mlops', 'natural-language-processing', 'python', 'pytorch', 'ray']",True,True,True,True,False,False,False,False,False,main +cs-self-learning,计算机自学指南,https://github.com/PKUFlyingPig/cs-self-learning,2021-10-20T13:43:42Z,2023-09-21T11:20:24Z,https://csdiy.wiki,35737,34137,4507,82,34137,HTML,MIT,[],True,True,True,True,True,True,False,False,False,master +metabase,"The simplest, fastest way to get business intelligence and analytics to everyone in your company :yum:",https://github.com/metabase/metabase,2015-02-02T19:25:47Z,2023-09-21T09:19:37Z,https://metabase.com,433781,34109,4645,3264,34109,Clojure,NOASSERTION,"['analytics', 'bi', 'business-intelligence', 'businessintelligence', 'clojure', 'dashboard', 'data', 'data-analysis', 'data-visualization', 'database', 'metabase', 'mysql', 'postgres', 'postgresql', 'reporting', 'slack', 'sql-editor', 'visualization']",True,True,True,True,False,False,False,False,False,master +TaskMatrix,,https://github.com/microsoft/TaskMatrix,2023-03-02T09:04:28Z,2023-09-21T10:34:20Z,,41168,34093,3314,240,34093,Python,NOASSERTION,[],True,True,True,True,False,False,False,False,False,main +shadowsocks-android,A shadowsocks client for Android,https://github.com/shadowsocks/shadowsocks-android,2012-12-16T13:40:29Z,2023-09-21T09:39:02Z,,53585,33976,11645,40,33976,Kotlin,NOASSERTION,"['android', 'shadowsocks']",True,True,True,True,False,True,False,False,False,master +glide,An image loading and caching library for Android focused on smooth scrolling,https://github.com/bumptech/glide,2013-07-08T22:52:33Z,2023-09-21T10:01:14Z,https://bumptech.github.io/glide/,95839,33922,6102,454,33922,Java,NOASSERTION,"['android', 'disk-cache', 'gif', 'glide', 'imageloader']",True,True,True,True,True,False,False,False,False,master +prisma,"Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB",https://github.com/prisma/prisma,2019-06-20T13:33:47Z,2023-09-21T09:11:35Z,https://www.prisma.io,102763,33885,1319,2915,33885,TypeScript,Apache-2.0,"['cockroachdb', 'database', 'javascript', 'mariadb', 'mongo', 'mongodb', 'mongodb-orm', 'mssql', 'mysql', 'nodejs', 'orm', 'postgres', 'postgresql', 'prisma', 'prisma-client', 'query-builder', 'sql-server', 'sqlite', 'sqlserver', 'typescript']",True,True,True,False,True,True,False,False,False,main +dbeaver,Free universal database tool and SQL client,https://github.com/dbeaver/dbeaver,2015-10-21T08:26:28Z,2023-09-21T10:41:11Z,https://dbeaver.io,169859,33804,3030,1792,33804,Java,Apache-2.0,"['database', 'db2', 'dbeaver', 'erd', 'gui', 'java', 'mysql', 'nosql', 'oracle', 'postgresql', 'redshift', 'sql', 'sqlite', 'sqlserver']",True,True,True,True,True,True,False,False,False,devel +n8n,Free and source-available fair-code licensed workflow automation tool. Easily automate tasks across different services.,https://github.com/n8n-io/n8n,2019-06-22T09:24:21Z,2023-09-21T11:11:19Z,https://n8n.io,137897,33719,3923,249,33719,TypeScript,NOASSERTION,"['apis', 'automated', 'automation', 'cli', 'data-flow', 'development', 'docker', 'iaas', 'integration-framework', 'integrations', 'ipaas', 'low-code', 'low-code-development-platform', 'low-code-platform', 'n8n', 'node', 'self-hosted', 'typescript', 'workflow', 'workflow-automation']",True,True,True,True,True,False,False,False,False,master +istio,"Connect, secure, control, and observe services.",https://github.com/istio/istio,2016-11-18T23:57:21Z,2023-09-21T11:10:50Z,https://istio.io,257169,33680,7354,586,33680,Go,Apache-2.0,"['api-management', 'circuit-breaker', 'consul', 'enforce-policies', 'envoy', 'fault-injection', 'kubernetes', 'lyft-envoy', 'microservice', 'microservices', 'nomad', 'polyglot-microservices', 'proxies', 'request-routing', 'resiliency', 'service-mesh']",True,False,True,True,False,True,False,False,False,master +gorm,"The fantastic ORM library for Golang, aims to be developer friendly",https://github.com/go-gorm/gorm,2013-10-25T08:31:38Z,2023-09-21T07:13:51Z,https://gorm.io,4517,33662,3713,276,33662,Go,MIT,"['go', 'golang', 'gorm', 'orm', 'web']",True,True,True,True,False,True,False,False,False,master +black,The uncompromising Python code formatter,https://github.com/psf/black,2018-03-14T19:54:45Z,2023-09-21T10:09:39Z,https://black.readthedocs.io/en/stable/,6962,33603,2196,370,33603,Python,MIT,"['autopep8', 'code', 'codeformatter', 'formatter', 'gofmt', 'hacktoberfest', 'pre-commit-hook', 'python', 'yapf']",True,True,True,True,False,False,False,False,False,main +sheetjs,📗 SheetJS Spreadsheet Data Toolkit -- New home https://git.sheetjs.com/SheetJS/sheetjs,https://github.com/SheetJS/sheetjs,2012-12-03T19:25:52Z,2023-09-21T10:18:45Z,https://sheetjs.com/,106471,33577,8067,130,33577,JavaScript,Apache-2.0,"['angular', 'bun', 'csv', 'data', 'database', 'deno', 'excel', 'grid', 'html', 'html5', 'ios', 'javascript', 'json', 'nodejs', 'react', 'spreadsheet', 'table', 'vue', 'xlsx', 'xml']",True,False,True,False,True,False,False,False,False,github +zju-icicles,浙江大学课程攻略共享计划,https://github.com/QSCTech/zju-icicles,2016-06-28T16:17:32Z,2023-09-21T09:20:17Z,https://qsctech.github.io/zju-icicles/,4494198,33575,9043,7,33575,HTML,,[],True,True,True,True,True,False,False,False,False,master +taro,开放式跨端跨框架解决方案,支持使用 React/Vue/Nerv 等框架来开发微信/京东/百度/支付宝/字节跳动/ QQ 小程序/H5/React Native 等应用。 https://taro.zone/,https://github.com/NervJS/taro,2018-04-08T09:32:26Z,2023-09-21T06:02:22Z,https://docs.taro.zone/,1447654,33569,4696,1041,33569,TypeScript,NOASSERTION,"['javascript', 'jquery', 'nerv', 'nervjs', 'react', 'react-native', 'reactjs', 'taro', 'typescript', 'vue', 'vue3', 'wechat', 'wechat-mini-program', 'weixin', 'wxapp']",True,True,True,True,True,True,False,False,False,next +caffe,Caffe: a fast open framework for deep learning.,https://github.com/BVLC/caffe,2013-09-12T18:39:48Z,2023-09-21T06:27:34Z,http://caffe.berkeleyvision.org/,76170,33558,18981,1181,33558,C++,NOASSERTION,"['deep-learning', 'machine-learning', 'vision']",True,True,True,True,True,False,False,False,False,master +leveldb,LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values.,https://github.com/google/leveldb,2014-08-27T21:17:52Z,2023-09-21T08:59:02Z,,1653,33556,7488,295,33556,C++,BSD-3-Clause,[],True,False,False,False,False,False,False,False,False,main +free,翻墙、免费翻墙、免费科学上网、免费节点、免费梯子、免费ss/v2ray/trojan节点、蓝灯、谷歌商店、翻墙梯子,https://github.com/freefq/free,2020-06-07T02:48:33Z,2023-09-21T11:45:16Z,,37839,33528,5799,380,33528,,,"['bulink', 'fanqiang', 'freefq', 'gfw', 'lantern', 'shadowsocks', 'trojan', 'v2ray', 'vmess', 'vpn']",True,True,True,True,False,False,False,False,False,master +the-way-to-go_ZH_CN,《The Way to Go》中文译本,中文正式名《Go 入门指南》,https://github.com/unknwon/the-way-to-go_ZH_CN,2013-03-24T17:18:38Z,2023-09-21T10:10:50Z,,12602,33485,8629,43,33485,Go,,"['book', 'go', 'translation', 'tutorial']",False,False,True,False,False,False,False,False,False,master +clipboard.js,:scissors: Modern copy to clipboard. No Flash. Just 3kb gzipped :clipboard:,https://github.com/zenorocha/clipboard.js,2015-09-18T23:04:55Z,2023-09-21T06:24:28Z,https://clipboardjs.com,3006,33470,4102,7,33470,JavaScript,MIT,"['clipboard', 'javascript']",True,True,True,True,True,True,False,False,False,master +shadowsocks,,https://github.com/shadowsocks/shadowsocks,2012-04-20T13:10:49Z,2023-09-21T01:29:46Z,,891,33442,19004,447,33442,Python,,[],False,True,True,True,False,False,False,False,False,rm +cobra,A Commander for modern Go CLI interactions,https://github.com/spf13/cobra,2013-09-03T20:40:26Z,2023-09-21T10:52:24Z,https://cobra.dev,1681,33423,2764,235,33423,Go,Apache-2.0,"['cli', 'cli-app', 'cobra', 'cobra-generator', 'cobra-library', 'command', 'command-cobra', 'command-line', 'commandline', 'go', 'golang', 'golang-application', 'golang-library', 'posix', 'posix-compliant-flags', 'subcommands']",True,True,True,True,False,False,False,False,False,main +pyenv,Simple Python version management,https://github.com/pyenv/pyenv,2012-08-31T06:57:52Z,2023-09-21T11:42:11Z,,4785,33388,2874,39,33388,Roff,MIT,"['python', 'shell']",True,True,True,True,False,True,False,False,False,master +brackets,"An open source code editor for the web, written in JavaScript, HTML and CSS.",https://github.com/adobe/brackets,2011-12-07T21:14:40Z,2023-09-21T09:46:30Z,http://brackets.io,92974,33385,7956,2787,33385,JavaScript,MIT,[],True,True,True,True,False,False,False,True,False,master +python-cheatsheet,Comprehensive Python Cheatsheet,https://github.com/gto76/python-cheatsheet,2018-01-25T04:16:53Z,2023-09-21T10:55:12Z,https://gto76.github.io/python-cheatsheet/,11876,33384,6128,24,33384,Python,,"['cheatsheet', 'python', 'python-cheatsheet', 'reference']",True,True,True,True,True,False,False,False,False,main +arthas,Alibaba Java Diagnostic Tool Arthas/Alibaba Java诊断利器Arthas,https://github.com/alibaba/arthas,2018-08-29T17:15:57Z,2023-09-21T11:06:48Z,https://arthas.aliyun.com/,43995,33365,7212,291,33365,Java,Apache-2.0,"['agent', 'alibaba', 'arthas', 'classloader', 'diagnosis', 'java', 'jvm', 'trace', 'trouble-shooting']",True,True,True,True,True,True,False,False,False,master +AFNetworking,"A delightful networking framework for iOS, macOS, watchOS, and tvOS.",https://github.com/AFNetworking/AFNetworking,2011-05-31T21:28:44Z,2023-09-21T01:19:12Z,http://afnetworking.com,6129,33352,10400,103,33352,Objective-C,MIT,[],False,False,True,True,False,False,False,True,False,master +awesome-react-native,"Awesome React Native components, news, tools, and learning material!",https://github.com/jondot/awesome-react-native,2015-03-26T19:58:06Z,2023-09-21T06:07:12Z,http://www.awesome-react-native.com,5250,33315,4006,78,33315,JavaScript,,"['awesome-list', 'mobile', 'react', 'react-native']",True,True,True,True,True,False,False,False,False,master +PaddleOCR,"Awesome multilingual OCR toolkits based on PaddlePaddle (practical ultra lightweight OCR system, support 80+ languages recognition, provide data annotation and synthesis tools, support training and deployment among server, mobile, embedded and IoT devices)",https://github.com/PaddlePaddle/PaddleOCR,2020-05-08T10:38:16Z,2023-09-21T10:07:33Z,,351621,33306,6667,866,33306,Python,Apache-2.0,"['chineseocr', 'crnn', 'db', 'ocr', 'ocrlite']",True,True,True,True,False,True,False,False,False,release/2.7 +cli,GitHub’s official command line tool,https://github.com/cli/cli,2019-10-03T15:24:53Z,2023-09-21T10:37:00Z,https://cli.github.com,28054,33281,5479,458,33281,Go,MIT,"['cli', 'git', 'github-api-v4', 'golang']",True,True,True,False,False,True,False,False,False,trunk +carbon,:black_heart: Create and share beautiful images of your source code,https://github.com/carbon-app/carbon,2017-06-16T02:50:28Z,2023-09-21T10:55:07Z,https://carbon.now.sh,20275,33206,1913,76,33206,JavaScript,MIT,"['beautiful', 'carbon', 'education', 'github-gist', 'javascript', 'presentation', 'sharing', 'snippets', 'tweet']",True,False,True,False,False,True,False,False,False,main +appwrite,Build Fast. Scale Big. All in One Place. Cloud is now available in public beta. 🌩,https://github.com/appwrite/appwrite,2019-04-08T16:36:25Z,2023-09-21T10:28:30Z,https://appwrite.io,249930,33186,3017,609,33186,TypeScript,BSD-3-Clause,"['android', 'apple', 'appwrite', 'baas', 'backend', 'backend-as-a-service', 'docker', 'firebase', 'flutter', 'hacktoberfest', 'ios', 'javascript', 'self-hosted', 'selfhosted', 'serverless', 'swift', 'tools', 'web']",True,True,True,False,False,True,False,False,False,master +955.WLB,955 不加班的公司名单 - 工作 955,work–life balance (工作与生活的平衡),https://github.com/formulahendry/955.WLB,2019-03-27T23:53:37Z,2023-09-21T09:17:58Z,,124,33167,1739,192,33167,,,[],True,True,True,True,False,False,False,False,False,master +acme.sh,A pure Unix shell script implementing ACME client protocol,https://github.com/acmesh-official/acme.sh,2015-12-26T12:56:33Z,2023-09-21T07:52:38Z,https://acme.sh,6213,33144,4449,1059,33144,Shell,GPL-3.0,"['acme', 'acme-client', 'acme-protocol', 'ash', 'bash', 'buypass', 'certbot', 'letsencrypt', 'posix', 'posix-sh', 'shell', 'zerossl']",True,True,True,True,False,True,False,False,False,master +CPlusPlusThings,C++那些事,https://github.com/Light-City/CPlusPlusThings,2019-07-14T08:45:45Z,2023-09-21T11:38:00Z,https://light-city.github.io/,1418,33101,7798,6,33101,C++,,"['cplusplus', 'cpp', 'cpp11', 'cpp14']",True,True,True,True,False,False,False,False,False,master +DragGAN,Official Code for DragGAN (SIGGRAPH 2023),https://github.com/XingangPan/DragGAN,2023-05-18T10:08:02Z,2023-09-21T11:40:34Z,https://vcai.mpi-inf.mpg.de/projects/DragGAN/,34846,33082,3677,127,33082,Python,NOASSERTION,"['artificial-intelligence', 'generative-adversarial-network', 'generative-models', 'image-manipulation']",True,True,True,True,False,False,False,False,False,main +hello-algorithm,🌍 针对小白的算法训练 | 包括四部分:①.大厂面经 ②.力扣图解 ③.千本开源电子书 ④.百张技术思维导图(项目花了上百小时,希望可以点 star 支持,🌹感谢~)推荐免费ChatGPT使用网站,https://github.com/geekxh/hello-algorithm,2020-05-29T05:47:09Z,2023-09-21T10:48:05Z,https://www.lintcode.com/chat-gpt?utm_source=tf-github-xhGPT,365053,33065,6316,7,33065,Java,,"['algorithms', 'dynamic-programming', 'interview-questions', 'leetcode', 'leetcode-solutions']",True,True,True,True,False,False,False,False,False,master +shellcheck,"ShellCheck, a static analysis tool for shell scripts",https://github.com/koalaman/shellcheck,2012-11-17T03:15:11Z,2023-09-21T10:37:00Z,https://www.shellcheck.net,5559,33048,1694,930,33048,Haskell,GPL-3.0,"['bash', 'developer-tools', 'haskell', 'linter', 'shell', 'static-analysis']",True,True,True,True,False,False,False,False,False,master +ColossalAI,"Making large AI models cheaper, faster and more accessible",https://github.com/hpcaitech/ColossalAI,2021-10-28T16:19:44Z,2023-09-21T09:12:33Z,https://www.colossalai.org,27261,32959,3801,290,32959,Python,Apache-2.0,"['ai', 'big-model', 'data-parallelism', 'deep-learning', 'distributed-computing', 'foundation-models', 'heterogeneous-training', 'hpc', 'inference', 'large-scale', 'model-parallelism', 'pipeline-parallelism']",True,True,True,True,False,True,False,False,False,main +formik,"Build forms in React, without the tears 😭 ",https://github.com/jaredpalmer/formik,2017-06-14T19:50:59Z,2023-09-21T09:52:17Z,https://formik.org,15545,32845,2731,781,32845,TypeScript,Apache-2.0,"['form', 'formik', 'forms', 'higher-order-component', 'hooks', 'react', 'react-hooks', 'react-native', 'render-props']",True,True,True,False,False,True,False,False,False,main +vim,The official Vim repository,https://github.com/vim/vim,2015-08-18T21:03:56Z,2023-09-21T08:02:17Z,https://www.vim.org,152106,32838,4991,1478,32838,Vim Script,Vim,"['c', 'cross-platform', 'text-editor', 'vim']",True,True,False,True,False,True,False,False,False,master +gulp,A toolkit to automate & enhance your workflow,https://github.com/gulpjs/gulp,2013-07-04T05:26:06Z,2023-09-20T18:49:58Z,https://gulpjs.com,1088,32826,4374,27,32826,JavaScript,MIT,[],True,True,True,False,False,True,False,False,False,master +gold-miner,🥇掘金翻译计划,可能是世界最大最好的英译中技术社区,最懂读者和译者的翻译平台:,https://github.com/xitu/gold-miner,2015-11-04T03:29:13Z,2023-09-21T10:23:03Z,https://juejin.cn/tag/掘金翻译计划,80098,32770,5083,2,32770,,,"['ai', 'android', 'frontend', 'ios', 'javascript', 'react', 'swift', 'tensorflow', 'translation', 'tutorials']",True,False,True,True,False,True,False,False,False,master +gym,A toolkit for developing and comparing reinforcement learning algorithms.,https://github.com/openai/gym,2016-04-27T14:59:16Z,2023-09-21T11:16:08Z,https://www.gymlibrary.dev,7113,32743,8589,71,32743,Python,NOASSERTION,[],True,True,True,True,False,False,False,False,False,master +immutable-js,Immutable persistent data collections for Javascript which increase efficiency and simplicity.,https://github.com/immutable-js/immutable-js,2014-07-02T06:02:29Z,2023-09-21T11:28:52Z,https://immutable-js.com,56760,32688,1869,119,32688,TypeScript,MIT,[],True,True,True,True,True,False,False,False,False,main +aspnetcore,"ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux.",https://github.com/dotnet/aspnetcore,2014-03-11T06:09:42Z,2023-09-21T11:42:09Z,https://asp.net,416863,32621,9364,2844,32621,C#,MIT,"['aspnetcore', 'dotnet', 'hacktoberfest']",True,True,True,True,False,True,False,False,False,main +AndroidUtilCode,:fire: Android developers should collect the following utils(updating).,https://github.com/Blankj/AndroidUtilCode,2016-07-30T18:18:32Z,2023-09-21T08:18:28Z,https://blankj.com/2016/07/31/android-utils-code/,47327,32472,10641,284,32472,Java,Apache-2.0,"['android', 'androidx', 'app', 'bar', 'cache', 'encode', 'encrypt', 'eventbus', 'file', 'fragment', 'log', 'network', 'permission', 'reflect', 'regex', 'snackbar', 'spannable-string', 'thread-pool', 'toast', 'utils']",True,False,True,False,True,True,False,False,False,master +devdocs,API Documentation Browser,https://github.com/freeCodeCamp/devdocs,2013-10-24T18:16:07Z,2023-09-21T11:24:55Z,https://devdocs.io,30859,32358,2198,175,32358,Ruby,MPL-2.0,"['api-documentation', 'app', 'devdocs', 'developer-tools', 'docs', 'documentation', 'documentation-tool', 'hacktoberfest', 'offline', 'pwa']",True,False,True,False,False,False,False,False,False,main +date-fns,⏳ Modern JavaScript date utility library ⌛️,https://github.com/date-fns/date-fns,2014-10-06T10:24:22Z,2023-09-21T11:35:17Z,https://date-fns.org,20351,32312,1713,625,32312,TypeScript,MIT,"['date', 'date-fns', 'hacktoberfest', 'javascript', 'modules', 'nodejs', 'time', 'utilities']",True,False,True,False,False,True,False,False,False,main +mitmproxy,An interactive TLS-capable intercepting HTTP proxy for penetration testers and software developers.,https://github.com/mitmproxy/mitmproxy,2010-02-16T04:10:13Z,2023-09-21T08:58:32Z,https://mitmproxy.org,59464,32299,3781,303,32299,Python,MIT,"['debugging', 'http', 'http2', 'man-in-the-middle', 'mitmproxy', 'proxy', 'python', 'security', 'ssl', 'tls', 'websocket']",True,True,True,False,False,True,False,False,False,main +GFPGAN,GFPGAN aims at developing Practical Algorithms for Real-world Face Restoration.,https://github.com/TencentARC/GFPGAN,2021-03-19T06:18:20Z,2023-09-21T11:43:49Z,,5534,32287,5172,271,32287,Python,NOASSERTION,"['deep-learning', 'face-restoration', 'gan', 'gfpgan', 'image-restoration', 'pytorch', 'super-resolution']",True,True,True,True,False,True,False,False,False,master +awesome-design-patterns,A curated list of software and architecture related design patterns.,https://github.com/DovAmir/awesome-design-patterns,2018-06-04T17:47:48Z,2023-09-21T10:24:32Z,,91,32230,2529,16,32230,,,"['architecture', 'awesome', 'awesome-list', 'cloud-computing', 'design-patterns', 'gof-patterns', 'lists', 'microservices', 'resources']",True,True,True,True,True,False,False,False,False,master +material-design-lite,Material Design Components in HTML/CSS/JS,https://github.com/google/material-design-lite,2015-01-14T22:01:33Z,2023-09-21T10:28:26Z,https://getmdl.io,56968,32211,5222,407,32211,HTML,Apache-2.0,"['material', 'material-components', 'material-design', 'material-design-lite', 'mdl']",True,False,False,True,False,False,False,False,False,mdl-1.x +XX-Net,A proxy tool to bypass GFW.,https://github.com/XX-net/XX-Net,2015-01-15T09:35:51Z,2023-09-21T06:14:19Z,,60271,32160,7800,7880,32160,Python,,"['gfw', 'goagent', 'proxy', 'uncensored', 'vpn']",True,True,True,True,False,False,False,False,False,master +typeorm,"ORM for TypeScript and JavaScript. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, SAP Hana, WebSQL databases. Works in NodeJS, Browser, Ionic, Cordova and Electron platforms.",https://github.com/typeorm/typeorm,2016-02-29T07:41:14Z,2023-09-21T10:02:37Z,http://typeorm.io,26071,32118,5983,2155,32118,TypeScript,MIT,"['active-record', 'cockroachdb', 'data-mapper', 'database', 'electron', 'hacktoberfest', 'javascript', 'mariadb', 'mysql', 'oracle', 'orm', 'postgresql', 'react-native', 'sap', 'sap-hana', 'sqlite', 'sqlserver', 'typeorm', 'typescript', 'websql']",True,False,True,True,False,False,False,False,False,master +12306,12306智能刷票,订票,https://github.com/testerSunshine/12306,2017-05-17T12:23:40Z,2023-09-21T11:32:55Z,,58570,32053,9592,277,32053,Python,MIT,[],True,True,True,True,False,False,False,False,False,master +vim-plug,:hibiscus: Minimalist Vim Plugin Manager,https://github.com/junegunn/vim-plug,2013-09-10T14:58:51Z,2023-09-21T11:17:41Z,,8803,32007,1924,130,32007,Vim Script,MIT,['vim'],True,True,True,True,False,False,False,False,False,master +fanqiang,翻墙-科学上网,https://github.com/bannedbook/fanqiang,2015-01-14T00:34:25Z,2023-09-21T09:40:35Z,,712210,31928,6453,286,31928,Kotlin,,"['brook', 'daze', 'fanqiang', 'goflyway', 'lightsocks', 'proxy', 'psiphon', 'shadowsocks', 'ssr', 'trojan', 'v2ray']",True,True,True,True,True,True,False,False,False,master +reactjs-interview-questions,List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are coming soon!!,https://github.com/sudheerj/reactjs-interview-questions,2018-05-31T17:17:01Z,2023-09-21T11:01:45Z,,2182,31865,7833,18,31865,JavaScript,,"['interview-preparation', 'interview-questions', 'javascript', 'javascript-applications', 'javascript-framework', 'javascript-interview-questions', 'react', 'react-interview-questions', 'react-native', 'react-router', 'react16', 'reactjs', 'redux']",True,True,True,True,False,False,False,False,False,master +netty,Netty project - an event-driven asynchronous network application framework,https://github.com/netty/netty,2010-11-09T09:22:21Z,2023-09-21T08:09:06Z,http://netty.io,86585,31832,15611,592,31832,Java,Apache-2.0,[],True,True,True,True,False,True,False,False,False,4.1 +wtfjs,🤪 A list of funny and tricky JavaScript examples,https://github.com/denysdovhan/wtfjs,2017-07-14T15:42:12Z,2023-09-21T11:03:51Z,http://bit.ly/wtfjavascript,1549,31810,2406,33,31810,JavaScript,WTFPL,"['book', 'handbook', 'javascript', 'js', 'learning', 'notes', 'specification', 'wtf']",True,False,True,False,False,True,False,False,False,master +airflow,"Apache Airflow - A platform to programmatically author, schedule, and monitor workflows",https://github.com/apache/airflow,2015-04-13T18:04:58Z,2023-09-21T10:17:03Z,https://airflow.apache.org/,246984,31757,12849,885,31757,Python,Apache-2.0,"['airflow', 'apache', 'apache-airflow', 'hacktoberfest', 'python', 'scheduler', 'workflow']",True,True,True,False,False,True,False,False,False,main diff --git a/homework_oop/utils.py b/homework_oop/utils.py new file mode 100644 index 0000000..39c3f01 --- /dev/null +++ b/homework_oop/utils.py @@ -0,0 +1,32 @@ +from difflib import get_close_matches +from typing import Iterable + + +class FieldResolver: + def __init__(self, available: Iterable[str]): + items = list(available) + self._available = set(items) + self._lower_map = {x.lower(): x for x in items} + + def resolve(self, name: str) -> str: + if name in self._available: + return name + lower = name.lower() + if lower in self._lower_map: + return self._lower_map[lower] + close = get_close_matches(name, list(self._available), n=3, cutoff=0.6) + raise KeyError(",".join(close)) + + +def try_int(text: str) -> int | None: + try: + return int(text) + except Exception: + return None + + +def try_float(text: str) -> float | None: + try: + return float(text) + except Exception: + return None