├── .github ├── FUNDING.yml ├── README-template.j2 ├── scripts │ └── render-readme.py └── workflows │ ├── build.yml │ └── invalid.yml ├── CONTRIBUTING.md ├── README.md └── data.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [MunGell] 4 | -------------------------------------------------------------------------------- /.github/README-template.j2: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | # Awesome First Pull Request Opportunities [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) 7 | 8 | Inspired by [First Timers Only](https://kentcdodds.com/blog/first-timers-only) blog post. 9 | 10 | If you are a maintainer of open-source projects, add the label `first-timers-only` (or similar) to your project and list it here so that people can find it. 11 | 12 | If you are not a programmer but would like to contribute, check out the [Awesome for non-programmers](https://github.com/szabgab/awesome-for-non-programmers) list. 13 | 14 | If you would like to be guided through how to contribute to a repository on GitHub, check out [the First Contributions repository](https://github.com/firstcontributions/first-contributions). 15 | 16 | > [!TIP] 17 | > All links open in the same tab. If you want to open in a new tab, use `Ctrl + Click` (Windows/Linux) or `Cmd + Click` (Mac). 18 | ## Table of Contents: 19 | 20 | ||Languages| 21 | |--|--|{% for category_group, categories in category_groups.items() %} 22 | |{{ category_group }}|{% for category in categories %}[{{ category.title }}](#{{ category.link_id }}){% if loop.index < (categories | length) %}, {% endif %}{% endfor %}|{% endfor %} 23 | {% for category in categories %} 24 | ## {{ category.title }} 25 | {% for entry in category.entries %} 26 | - [{{ entry.name }}]({{ entry.link }}) _(label: {% if entry.label is defined %}{{ entry.label }}{% else %}n/a{% endif %})_
{{ entry.description }}{% endfor %} 27 | {% endfor %} 28 | 29 | ## Contribute 30 | 31 | Contributions are welcome! See the [contributing guidelines](CONTRIBUTING.md). 32 | 33 | ## Thanks to GitHub Sponsors 34 | 35 | {% for sponsor in sponsors %}{% if loop.index != 1 and (loop.index - 1) % 6 == 0 %}{% endif %}{% endfor %}

{{ sponsor.name }}
36 | 37 | ## License 38 | 39 | [![CC0](http://i.creativecommons.org/p/zero/1.0/88x31.png)](http://creativecommons.org/publicdomain/zero/1.0/) 40 | 41 | To the extent possible under law, the author has waived all copyrights and related or neighboring rights to this work. 42 | 43 | -------------------------------------------------------------------------------- /.github/scripts/render-readme.py: -------------------------------------------------------------------------------- 1 | from jinja2 import Environment, FileSystemLoader 2 | import json 3 | 4 | DATAFILE = "./data.json" 5 | TEMPLATEPATH = "./.github/" 6 | TEMPLATEFILE = "README-template.j2" 7 | TARGETFILE = "./README.md" 8 | 9 | def new_technology_dict(repo_technology): 10 | return {"link_id": repo_technology.lower(), "entries": []} 11 | 12 | technologies = {} 13 | 14 | with open(DATAFILE, "r") as datafile: 15 | data = json.loads(datafile.read()) 16 | 17 | for technology in data["technologies"]: 18 | technologies[technology] = { 19 | "link_id": data["technologies"][technology], 20 | "entries": [], 21 | } 22 | 23 | for repository in data["repositories"]: 24 | repo_technologies = repository["technologies"] 25 | for repo_technology in repo_technologies: 26 | if not technologies.get(repo_technology, False): 27 | technologies[repo_technology] = new_technology_dict(repo_technology) 28 | technologies[repo_technology]["entries"].append(repository) 29 | 30 | env = Environment(loader=FileSystemLoader(TEMPLATEPATH)) 31 | template = env.get_template(TEMPLATEFILE) 32 | 33 | categories = [] 34 | for key, value in zip(technologies.keys(), technologies.values()): 35 | categories.append( 36 | {"title": key, "link_id": value["link_id"], "entries": value["entries"]} 37 | ) 38 | 39 | categories = sorted(categories, key=lambda x: x["title"].upper()) 40 | category_groups = {"Misc": []} 41 | for category in categories: 42 | category["entries"] = sorted(category["entries"], key=lambda x: x["name"].upper()) 43 | first_char = category["title"][0].upper() 44 | if first_char in "ABCDEFGHIJKLMNOPQRSTUVWXYZ": 45 | if first_char not in category_groups: 46 | category_groups[first_char] = [] 47 | category_groups[first_char].append(category) 48 | else: 49 | category_groups["Misc"].append(category) 50 | 51 | sponsors = data["sponsors"] 52 | 53 | output = template.render(category_groups=category_groups, categories=categories, sponsors=sponsors) 54 | 55 | open(TARGETFILE, "w").write(output) 56 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: Build 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | paths: 8 | - 'data.json' 9 | - '.github/tpl.md' 10 | 11 | jobs: 12 | build: 13 | runs-on: ubuntu-latest 14 | steps: 15 | - uses: actions/checkout@v3 16 | - name: install jinja2 17 | run: sudo pip install jinja2 18 | - name: Build 19 | run: python3 .github/scripts/render-readme.py 20 | - name: Commit 21 | run: | 22 | git config --global user.name 'Shmavon Gazanchyan' 23 | git config --global user.email 'MunGell@users.noreply.github.com' 24 | git commit -am "Update README.md" 25 | git push 26 | -------------------------------------------------------------------------------- /.github/workflows/invalid.yml: -------------------------------------------------------------------------------- 1 | name: Check on Invalid PR 2 | 3 | on: 4 | pull_request_target: 5 | branches: 6 | - main 7 | paths-ignore: 8 | - '.github/**' 9 | - 'data.json' 10 | - 'CONTRIBUTING.md' 11 | 12 | jobs: 13 | check: 14 | runs-on: ubuntu-latest 15 | steps: 16 | - uses: actions/github-script@v6 17 | with: 18 | script: | 19 | await github.rest.issues.createComment({ 20 | issue_number: context.issue.number, 21 | owner: context.repo.owner, 22 | repo: context.repo.repo, 23 | body: 'This PR is not valid. Please read [contributing guidelines](https://github.com/MunGell/awesome-for-beginners/blob/main/CONTRIBUTING.md).' 24 | }); 25 | if (context.payload.pull_request.labels.indexOf('Invalid') === -1) { 26 | await github.rest.issues.addLabels({ 27 | issue_number: context.issue.number, 28 | owner: context.repo.owner, 29 | repo: context.repo.repo, 30 | labels: ['Invalid'] 31 | }); 32 | } 33 | await github.rest.pulls.update({ 34 | owner: context.repo.owner, 35 | repo: context.repo.repo, 36 | pull_number: context.issue.number, 37 | state: 'closed' 38 | }); 39 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution Guide & Guidelines 🚀 2 | 3 | Welcome to the **Awesome First Pull Request Opportunities** project! We're excited that you want to contribute. 4 | 5 | This guide aims to help you get started contributing new repositories to the list. 6 | 7 | It outlines the recommended order for executing tasks and assumes that you have identified a repository you wish to add to the list. Check out the repository requirements section, if you would like to know what a good addition should have. 8 | 9 | _Please note that the list in this repository is intended for more substantial projects, and we kindly ask that small personal projects not be added in the hope of receiving contributions. Thank you for your understanding._ 10 | 11 | ## Intitial Checks 12 | 13 | - **Search for Duplicates**: Check the current list and previous pull requests to avoid submitting duplicates. 14 | 15 | ## Repository Requirements 16 | 17 | - **Reasonably Developed**: The repository must be reasonably established, along with having with a clear goal or function. New repositories with few commits and little content will likely be rejected. 18 | - **Active Maintenance**: Ensure the contributed repository is actively maintained. 19 | - **Appropriate Labels**: Issues with appropriate beginner-friend labels must exist. Confirm with the owner around a label's meaning if it's not obviously beginner-friendly (usually `good-first-issue` or `low-hanging-fruit`). 20 | - **Supportive Community**: The repository should have a supportive community. 21 | 22 | ## Making Changes and Opening a PR (Pull Request) 23 | 24 | ### 1. **Edit the `data.json` File Directly on GitHub** 25 | The easiest way to contribute is by editing the `data.json` file directly in your browser. Here's how: 26 | 27 | 1. Go to the [`data.json` file](https://github.com/MunGell/awesome-for-beginners/blob/main/data.json) in the repository. 28 | 2. Click the **"Edit"** button (pencil icon) in the top right corner. 29 | 3. Make your changes directly in the browser: 30 | - Copy an existing entry in the file. 31 | - Fill in your own information following the same format. 32 | - Ensure to check the following: 33 | - **Direct Links**: Links must point directly to the repository. No tracking links are allowed. This list is not for advertising purposes. 34 | - **Spelling and Grammar**: Proofread your contribution for spelling and grammar errors. 35 | - **Trailing Whitespace**: Ensure to avoiding adding any trailing whitespace (at the end of lines). 36 | - **Spelling and Grammar**: Proofread your contribution for spelling and grammar errors. 37 | - **Single addition**: Make an individual pull request for each suggestion. 38 | - **New Technologies**: New technologies are welcomed, all you need to do is add them and a new heading will be generated for them. 39 | 4. Describe your changes concisely in the commit message. 40 | 5. Click **"Propose changes"** to create a new branch and open a Pull Request (PR). 41 | --- 42 | 43 | ### 2. **Submitting a Pull Request (PR)** 44 | 1. After proposing changes, GitHub will guide you through creating a PR. 45 | 2. Fill out the PR form, ensuring its content (especially the title) is understandable, descriptive and relevant. 46 | 3. If your suggest repository uses a non-obvious beginner-friendly issue label, ensure to link to confirmation or proof that the label is beginner friendly. 47 | 4. Submit the PR and wait for feedback from the maintainers. 48 | 49 | --- 50 | 51 | ### 3. **Reporting an Issue** 52 | If you encounter an issue or have a suggestion that you don't want to implement yourself, open an issue ensuring you provide: 53 | - A clear description of the problem or suggestion. 54 | - The expected behavior (if creating a feature request or bug report). 55 | - The current behavior (if creating a bug report). 56 | 57 | --- 58 | 59 | ### 4. **Additional Resources** 60 | For a more comprehensive guide on contributing to open-source projects, check out the [First Contributions](https://github.com/firstcontributions/first-contributions) repository. 61 | 62 | --- 63 | 64 | Thank you for your contribution! 65 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | # Awesome First Pull Request Opportunities [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) 7 | 8 | Inspired by [First Timers Only](https://kentcdodds.com/blog/first-timers-only) blog post. 9 | 10 | If you are a maintainer of open-source projects, add the label `first-timers-only` (or similar) to your project and list it here so that people can find it. 11 | 12 | If you are not a programmer but would like to contribute, check out the [Awesome for non-programmers](https://github.com/szabgab/awesome-for-non-programmers) list. 13 | 14 | If you would like to be guided through how to contribute to a repository on GitHub, check out [the First Contributions repository](https://github.com/firstcontributions/first-contributions). 15 | 16 | > [!TIP] 17 | > All links open in the same tab. If you want to open in a new tab, use `Ctrl + Click` (Windows/Linux) or `Cmd + Click` (Mac). 18 | ## Table of Contents: 19 | 20 | ||Languages| 21 | |--|--| 22 | |Misc|[.NET](#net)| 23 | |A|[Angular](#angular), [Ansible](#ansible)| 24 | |C|[C](#c), [C#](#c-1), [C++](#c-2), [Clojure](#clojure), [CSS](#css)| 25 | |D|[Dart](#dart)| 26 | |E|[Elixir](#elixir), [Elm](#elm)| 27 | |G|[Go](#go)| 28 | |H|[Haskell](#haskell)| 29 | |J|[Java](#java), [JavaScript](#javascript), [JSON](#json), [Julia](#julia)| 30 | |K|[Kotlin](#kotlin)| 31 | |M|[Markdown](#markdown), [MLOps](#mlops)| 32 | |P|[Perl](#perl), [PHP](#php), [Pug](#pug), [Python](#python)| 33 | |R|[Ruby](#ruby), [Rust](#rust)| 34 | |S|[Scala](#scala), [Smalltalk](#smalltalk), [Swift](#swift)| 35 | |T|[TypeScript](#typescript)| 36 | 37 | ## .NET 38 | 39 | - [Legerity](https://github.com/MADE-Apps/legerity) _(label: good first issue)_
A framework for speeding up the development of automated UI tests for Windows, Android, iOS, and Web with Appium/Selenium on .NET. 40 | - [Legerity for Uno Platform](https://github.com/MADE-Apps/legerity-uno) _(label: good first issue)_
An extension framework to Legerity for speeding up the development of automated UI tests for Uno Platform applications with Appium/Selenium on .NET. 41 | - [MvvmCross](https://github.com/MvvmCross/MvvmCross) _(label: first-timers-only)_
The .NET MVVM framework for cross-platform solutions, including Xamarin.iOS, Xamarin.Android, Windows and Mac. 42 | - [RawCMS](https://github.com/arduosoft/RawCMS) _(label: good first issue)_
RawCMS is a headless CMS written in ASP.NET Core, built for developers that embrace API-first technology. 43 | 44 | ## Angular 45 | 46 | - [Oppia](https://github.com/oppia/oppia) _(label: good first issue)_
Oppia is an open-source project whose aim is to empower learners across the globe by providing access to high-quality, engaging education. We envision a society in which access to high-quality education is a human right rather than a privilege. 47 | 48 | ## Ansible 49 | 50 | - [Exosphere](https://gitlab.com/exosphere/exosphere) _(label: Good First Issue)_
Exosphere is a user-friendly client interface for OpenStack-based cloud systems. 51 | 52 | ## C 53 | 54 | - [Profanity](https://github.com/profanity-im/profanity) _(label: good first issue)_
Ncurses XMPP chat client. 55 | 56 | ## C# 57 | 58 | - [Cake](https://github.com/cake-build/cake) _(label: Good-first-issue)_
Cake (C# Make) is a free and open source cross-platform build automation system with a C# DSL for tasks such as compiling code, copying files and folders, running unit tests, compressing files and building NuGet packages. 59 | - [grok.net](https://github.com/Marusyk/grok.net) _(label: good first issue)_
Cross platform .NET grok implementation 60 | - [osu!](https://github.com/ppy/osu) _(label: good first issue)_
Music game. Rhythm is just a click away! 61 | - [Spectre.Console](https://github.com/spectreconsole/spectre.console) _(label: good first issue)_
A .NET library that makes it easier to create beautiful console applications. 62 | - [Uno Platform](https://github.com/unoplatform/uno) _(label: good first issue)_
OSS project for creating pixel-perfect, single-source C# and XAML apps which run natively on iOS, Android, macOS, Linux and Web via WebAssembly. 63 | 64 | ## C++ 65 | 66 | - [electron](https://github.com/electron/electron) _(label: good first issue)_
Build cross platform desktop apps with JavaScript, HTML, and CSS 67 | - [F3D](https://github.com/f3d-app/f3d) _(label: good first issue)_
Fast and minimalist 3D viewer. 68 | - [Godot Engine](https://github.com/godotengine/godot) _(label: good first issue)_
2D and 3D cross-platform game engine. Also has C# and Python code. 69 | - [MiniOB](https://github.com/oceanbase/miniob) _(label: good first issue)_
MiniOB is a compact database that assists developers in understanding the fundamental workings of a database(main language is Chinese). 70 | - [MoveIt](https://github.com/ros-planning/moveit) _(label: good first issue)_
Easy-to-use open source robotics manipulation platform for developing commercial applications, prototyping designs, and benchmarking algorithms. 71 | - [projectM](https://github.com/projectM-visualizer/projectm) _(label: good first issue)_
A music visualizer library using OpenGL and GLSL. Has applications using Qt5, SDL, emscripten, iTunes, Kodi. 72 | - [Roc Toolkit](https://github.com/roc-streaming/roc-toolkit) _(label: help-wanted)_
A toolkit for real-time audio streaming over the network. 73 | - [tensorflow](https://github.com/tensorflow/tensorflow) _(label: stat:contributions-welcome)_
Computation using data flow graphs for scalable machine learning 74 | - [Yugabyte DB](https://github.com/yugabyte/yugabyte-db) _(label: good first issue)_
Distributed SQL database. 75 | 76 | ## Clojure 77 | 78 | - [Metabase](https://github.com/metabase/metabase) _(label: good first issue)_
Open source business intelligence and analytics platform 79 | 80 | ## CSS 81 | 82 | - [ImprovedTube](https://github.com/code-charity/youtube) _(label: good first issue)_
A powerful but lightweight extension, to enrich your video experience & enable your content selection. 83 | 84 | ## Dart 85 | 86 | - [dart.dev](https://github.com/dart-lang/site-www) _(label: beginner)_
A website covering Dart language and common libraries, for developers of Dart libraries, web apps, server-side code, and mobile (Flutter) apps. 87 | - [flutter](https://github.com/flutter/flutter) _(label: good first issue)_
Flutter is Google's UI toolkit for building beautiful, natively compiled applications for mobile, web, desktop, and embedded devices from a single codebase. 88 | - [OpenFoodFacts](https://github.com/openfoodfacts/smooth-app) _(label: good first issue)_
Collaborative, free and open database of food products from around the world. Scan barcode to get info or add a product 89 | 90 | ## Elixir 91 | 92 | - [Ecto](https://github.com/elixir-ecto/ecto) _(label: Level:Starter)_
Ecto is a database wrapper and language integrated query for Elixir 93 | - [Elixir](https://github.com/elixir-lang/elixir) _(label: Level:Starter)_
Elixir is a dynamic, functional language designed for building scalable and maintainable applications 94 | 95 | ## Elm 96 | 97 | - [Exosphere](https://gitlab.com/exosphere/exosphere) _(label: Good First Issue)_
Exosphere is a user-friendly client interface for OpenStack-based cloud systems. 98 | 99 | ## Go 100 | 101 | - [Alda](https://github.com/alda-lang/alda) _(label: low-hanging-fruit)_
A music programming language for musicians. 🎶 102 | - [containerd](https://github.com/containerd/containerd) _(label: exp/beginner)_
Industry-standard container runtime with an emphasis on simplicity, robustness and portability. 103 | - [Docker/CLI](https://github.com/docker/cli) _(label: exp/beginner)_
The Docker CLI 104 | - [Dragonfly](https://github.com/dragonflyoss/Dragonfly2) _(label: good first issue)_
Provide efficient, stable and secure file distribution and image acceleration based on p2p technology 105 | - [Helm](https://github.com/kubernetes/helm) _(label: good first issue)_
The Kubernetes Package Manager 106 | - [Hugo](https://github.com/gohugoio/hugo) _(label: GoodFirstIssue)_
A Fast and Flexible Static Site Generator built with love in GoLang 107 | - [Kanister](https://github.com/kanisterio/kanister) _(label: good first issue)_
A Data Protection Workflow Management Engine 108 | - [Killgrave](https://github.com/friendsofgo/killgrave) _(label: good first issue)_
Simple way to generate mock servers in Go. 109 | - [Kubernetes](https://github.com/kubernetes/kubernetes) _(label: good first issue)_
Production-Grade Container Scheduling and Management System 110 | - [lxd](https://github.com/lxc/lxd) _(label: easy)_
System container and virtual machine manager. 111 | - [Mattermost](https://github.com/mattermost/mattermost) _(label: Good First Issue, Difficulty/1:Easy)_
Open source Slack-alternative in Golang and React
Look for issues labelled 'Up For Grabs' 112 | - [Meshery](https://github.com/layer5io/meshery) _(label: good first issue)_
Meshery, the service mesh management plane. 113 | - [Moby](https://github.com/moby/moby) _(label: exp/beginner)_
Open-source application container engine 114 | - [PureLB](https://gitlab.com/purelb/purelb) _(label: n/a)_
Load-balancer orchestrator for Kubernetes that uses standard Linux networking and routing protocols. 115 | - [script](https://github.com/bitfield/script) _(label: good first issue)_
A Go library for doing the kind of tasks that shell scripts are good at: reading files, executing subprocesses, counting lines, matching strings, and so on. Beginners are very welcome and will get detailed code review and help through the PR process. 116 | - [Terraform](https://github.com/hashicorp/terraform) _(label: good first issue)_
A tool for building, changing, and versioning infrastructure safely and efficiently. 117 | - [TiDB](https://github.com/pingcap/tidb) _(label: good first issue)_
A distributed scalable Hybrid Transactional and Analytical Processing (HTAP) database 118 | - [utils](https://github.com/kashifkhan0771/utils) _(label: good first issue)_
Common Utilities library for Go 119 | 120 | ## Haskell 121 | 122 | - [Hasura GraphQL Engine](https://github.com/hasura/graphql-engine) _(label: good first issue)_
Blazing fast, instant realtime GraphQL APIs on Postgres with fine grained access control, also trigger webhooks on database events. 123 | 124 | ## Java 125 | 126 | - [appsmith](https://github.com/appsmithorg/appsmith) _(label: good first issue)_
Drag & Drop internal tool builder 127 | - [Catima - Android App](https://github.com/CatimaLoyalty/Android) _(label: good first issue)_
Catima, a Loyalty Card & Ticket Manager for Android 128 | - [Codename One](https://github.com/codenameone/CodenameOne) _(label: good first issue)_
Cross-platform mobile app development framework for Java developers 129 | - [DSA](https://github.com/abhishektripathi66/DSA) _(label: good first issue)_
DSA questions practising repo for Java developers 130 | - [elasticsearch](https://github.com/elastic/elasticsearch) _(label: good first issue)_
Open Source, Distributed, RESTful Search Engine. 131 | - [JabRef](https://github.com/JabRef/jabref) _(label: good first issue)_
Desktop application for managing literature references using modern Java features including JavaFX. Dedicated to code quality and constructive feedback: Each Pull Request is reviewed by two developers to provide high-quality feedback and to ensure high quality of new contributions. 132 | - [OpenMetadata](https://github.com/open-metadata/OpenMetadata) _(label: good first issue)_
OpenMetadata is an all-in-one platform for data discovery, data quality, observability, governance, data lineage, and team collaboration. 133 | - [QuestDB](https://github.com/questdb/questdb) _(label: Good first issue)_
Questdb is a fast open source SQL time series database. 134 | - [Strongbox](https://github.com/strongbox/strongbox) _(label: good first issue)_
Strongbox is an artifact repository manager written in Java. 135 | - [TEAMMATES](https://github.com/TEAMMATES/teammates) _(label: good first issue)_
TEAMMATES is a free online tool for managing peer evaluations and other feedback paths of your students. 136 | - [Trino (formerly Presto SQL)](https://github.com/trinodb/trino) _(label: good first issue)_
A distributed SQL query engine for big data. Ask for guidance on project's Slack. 137 | - [Wikimedia Commons Android App](https://github.com/commons-app/apps-android-commons) _(label: good first issue)_
Allows users to upload pictures from their Android phone/tablet to Wikimedia Commons. 138 | - [XWiki](https://jira.xwiki.org/issues) _(label: onboarding)_
XWiki is a free wiki software platform written in Java with a design emphasis on extensibility. Beginners should follow the [onboarding wiki](http://dev.xwiki.org/xwiki/bin/view/Onboarding/). 139 | - [zerocode](https://github.com/authorjapps/zerocode) _(label: good first issue)_
API Automation without coding, easy JSON response assertions, Testing REST, SOAP, Kafka and Java/DB APIs, CI/Jenkins Friendly. 140 | 141 | ## JavaScript 142 | 143 | - [altair](https://github.com/imolorhe/altair) _(label: good first issue)_
A beautiful feature-rich GraphQL Client for all platforms. 144 | - [Ancient Beast](https://github.com/FreezingMoon/AncientBeast) _(label: easy)_
Turn based strategy game where you 3d print a squad of creatures with unique abilities in order to defeat your enemies. 145 | - [API-pull-with-JavaScript](https://github.com/AliBasboga/APIExampleWithExpress.git) _(label: API-pull-and-use)_
API data extraction and delivery to the user to present. 146 | - [appsmith](https://github.com/appsmithorg/appsmith) _(label: good first issue)_
Drag & Drop internal tool builder 147 | - [AVA](https://github.com/sindresorhus/ava) _(label: good-for-beginner)_
Futuristic test runner. 148 | - [Babel](https://github.com/babel/babel) _(label: good first issue)_
A compiler for writing next generation JavaScript. 149 | - [Berry - Active development trunk for Yarn](https://github.com/yarnpkg/berry) _(label: good first issue)_
Fast, reliable, and secure dependency management. 150 | - [Botpress](https://github.com/botpress/botpress) _(label: contributor-friendly)_
The only sane way to build great bots. 151 | - [Brave Browser](https://github.com/brave/brave-browser) _(label: good first issue)_
Desktop browser for macOS, Windows, and Linux. 152 | - [Check It Out](https://github.com/jwu910/check-it-out) _(label: good first issue)_
Check It Out is an ncurses-like CLI to let the user interactively navigate and select a git branch to check out. 153 | - [Create React App](https://github.com/facebook/create-react-app) _(label: good first issue)_
Create React apps with no build configuration. 154 | - [cypress](https://github.com/cypress-io/cypress) _(label: good first issue)_
Fast, easy and reliable testing for anything that runs in a browser. 155 | - [electron](https://github.com/electron/electron) _(label: good first issue)_
Build cross platform desktop apps with JavaScript, HTML, and CSS 156 | - [Ember.js](https://github.com/emberjs/ember.js) _(label: Good-for-New-Contributors)_
A JavaScript framework for creating ambitious web applications. 157 | - [Ember.js Data](https://github.com/emberjs/data) _(label: Good-for-New-Contributors)_
A data persistence library for Ember.js. 158 | - [ESLint](https://github.com/eslint/eslint) _(label: good first issue)_
A fully pluggable tool for identifying and reporting on patterns in JavaScript. 159 | - [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) _(label: good-for-beginner)_
Awesome ESLint rules. 160 | - [Fastify](https://github.com/fastify/fastify) _(label: good first issue)_
Fast and low overhead web framework, for Node.js. 161 | - [freeCodeCamp](https://github.com/freeCodeCamp/freeCodeCamp) _(label: first-timers-only)_
Open source codebase and curriculum. Learn to code and help nonprofits. 162 | - [Gatsby.js](https://github.com/gatsbyjs/gatsby) _(label: good first issue)_
Build blazing fast, modern apps and websites with React. 163 | - [Ghost](https://github.com/TryGhost/Ghost) _(label: good first issue)_
Just a blogging platform 164 | - [grommet](https://github.com/grommet/grommet) _(label: good first issue)_
a react-based framework that provides accessibility, modularity, responsiveness, and theming in a tidy package 165 | - [Habitica](https://github.com/HabitRPG/habitica) _(label: good first issue)_
Habitica is a gamified task manager, webapp and android/ios app, really wonderful atmosphere. Guidance for contributing here (mongo, express, vue, node stack for webapp) 166 | - [HMPL](https://github.com/hmpl-language/hmpl) _(label: good first issue)_
Server-oriented customizable templating for JavaScript. 167 | - [Hoppscotch](https://github.com/hoppscotch/hoppscotch) _(label: good first issue)_
A free, fast and beautiful API request builder. 168 | - [HueHive](https://github.com/croma-app/croma) _(label: good first issue)_
An open source react native app iOS and android for color palette management 169 | - [iD](https://github.com/openstreetmap/iD) _(label: new contributor opportunity)_
The easy-to-use OpenStreetMap editor in JavaScript. 170 | - [ImprovedTube](https://github.com/code-charity/youtube) _(label: good first issue)_
A powerful but lightweight extension, to enrich your video experience & enable your content selection. 171 | - [Jasmine](https://github.com/jasmine/jasmine) _(label: good first issue)_
Simple JavaScript testing framework for browsers and node.js. 172 | - [Jest](https://github.com/facebook/jest) _(label: good first issue)_
A complete and easy to set up JavaScript testing solution. 173 | - [json-editor](https://github.com/json-editor/json-editor) _(label: good first issue)_
JSON Schema Based Editor. JSON Editor takes a JSON Schema and uses it to generate an HTML form. It has full support for JSON Schema version 3 and 4 and can integrate with several popular CSS frameworks (bootstrap, spectre, tailwind). 174 | - [Kinto.js](https://github.com/Kinto/kinto.js) _(label: easy-pick)_
An offline-first JavaScript client leveraging the Kinto API for remote data synchronization. 175 | - [Leaflet](https://github.com/Leaflet/Leaflet) _(label: good first issue)_
JavaScript library for mobile-friendly interactive maps. 176 | - [material-ui](https://github.com/mui-org/material-ui) _(label: good first issue)_
React components for faster and easier web development. Build your own design system, or start with Material Design. 177 | - [Mattermost](https://github.com/mattermost/mattermost) _(label: Good First Issue, Difficulty/1:Easy)_
Open source Slack-alternative in Golang and React
Look for issues labelled 'Up For Grabs' 178 | - [Meteor](https://github.com/meteor/meteor) _(label: good first issue)_
Meteor is an ultra-simple environment for building modern web applications. 179 | - [Mocha](https://github.com/mochajs/mocha) _(label: good first issue)_
Javascript test framework for Node.js and the browser. 180 | - [Moment.js](https://github.com/moment/moment) _(label: Up-For-Grabs)_
A lightweight JavaScript date library for parsing, validating, manipulating, and formatting dates. 181 | - [name-suggestion-index](https://github.com/osmlab/name-suggestion-index) _(label: good first issue)_
Canonical common brand names for OpenStreetMap 182 | - [NativeScript](https://github.com/NativeScript/NativeScript) _(label: good first issue)_
NativeScript is an open source framework for building truly native mobile apps with JavaScript. Use web skills, like Angular and Vue.js, FlexBox and CSS, and get native UI and performance on iOS and Android. 183 | - [netlify-cms](https://github.com/netlify/netlify-cms) _(label: good first issue)_
Open source content management for your git workflow. 184 | - [Next.js](https://github.com/zeit/next.js) _(label: good first issue)_
A minimalistic framework for universal server-rendered React applications 185 | - [Node.js core](https://github.com/nodejs/node) _(label: good first issue)_
JavaScript runtime built on Chrome's V8 JavaScript engine 186 | - [nuclear](https://github.com/nukeop/nuclear) _(label: good first issue)_
Multiplatform music player that streams from free sources. 187 | - [p5.js](https://github.com/processing/p5.js) _(label: good first issue)_
p5.js is a client-side JS platform that empowers artists, designers, students, and anyone to learn to code and express themselves creatively on the web. 188 | - [pixi.js](https://github.com/pixijs/pixi.js) _(label: 🤩 Good First PR)_
A 2D JavaScript Renderer 189 | - [PouchDB](https://github.com/pouchdb/pouchdb) _(label: help-wanted)_
PouchDB is a pocket-sized database. 190 | - [Predator](https://github.com/Zooz/predator) _(label: good first issue)_
A powerful open-source platform for load testing APIs. 191 | - [ramda-adjunct](https://github.com/char0n/ramda-adjunct) _(label: help-wanted)_
Ramda Adjunct is the most popular and most comprehensive set of functional utilities for use with Ramda, providing a variety of useful, well tested functions with excellent documentation. 192 | - [Rawsec Cybersecurity Inventory](https://gitlab.com/rawsec/rawsec-cybersecurity-list) _(label: difficulty::easy)_
An inventory of tools and resources that aims to help people to find everything related to CyberSecurity. 193 | - [React](https://github.com/facebook/react) _(label: good first issue)_
A declarative, efficient, and flexible JavaScript library for building user interfaces. 194 | - [React Native](https://github.com/facebook/react-native) _(label: Good-first-issue)_
A framework for building native apps with React. 195 | - [React server](https://github.com/redfin/react-server) _(label: good-first-contribution)_
React framework with server render for blazing fast page load and seamless transitions between pages in the browser. 196 | - [React-content-loader](https://github.com/danilowoz/create-content-loader) _(label: good first issue)_
Tool to create your own react-content-loader easily. 197 | - [ReactiveSearch](https://github.com/appbaseio/reactivesearch) _(label: good first issue-:wave:)_
A UI components library for Elasticsearch: Available for React, Vue and React Native. 198 | - [reactjs.org](https://github.com/reactjs/reactjs.org) _(label: good first issue)_
The documentation website for reactjs 199 | - [Reddit Enhancement Suite](https://github.com/honestbleeps/Reddit-Enhancement-Suite) _(label: help-wanted)_
A browser extension to enhance the Reddit browsing experience. 200 | - [Semantic-UI-React](https://github.com/Semantic-Org/Semantic-UI-React) _(label: good first issue)_
The official React integration for Semantic UI. 201 | - [serverless](https://github.com/serverless/serverless) _(label: good first issue)_
The Serverless Framework 202 | - [Storybook JS](https://github.com/storybookjs/storybook) _(label: good first issue)_
Storybook is a frontend workshop for building UI components and pages in isolation. 203 | - [stryker](https://github.com/stryker-mutator/stryker) _(label: 👶 Good first issue)_
The JavaScript mutation testing framework 204 | - [Superalgos](https://github.com/Superalgos/Superalgos) _(label: good first issue)_
A completely Open Source crypto trading bot rewarding good contributions with the SA(Superalgos)-Token. 205 | - [Svelte](https://github.com/sveltejs/svelte) _(label: good first issue)_
Component framework that runs at build time, converting your components into highly efficient imperative code that surgically updates the DOM. 206 | - [swag-for-dev](https://github.com/swapagarwal/swag-for-dev) _(label: good first issue)_
Swag opportunities for developers. 207 | - [Time to Leave](https://github.com/thamara/time-to-leave) _(label: good first issue)_
Working hours time tracker app based on Electron and Javascript. 208 | - [Vest](https://github.com/ealush/vest) _(label: good first issue)_
Validations framework inspired by unit testing frameworks. 209 | - [Video Hub App](https://github.com/whyboris/Video-Hub-App) _(label: good first issue)_
Angular & Electron app for browsing and searching videos on your PC. 210 | - [Video.js](https://github.com/videojs/video.js) _(label: good first issue)_
The player framework 211 | - [Vite](https://github.com/vitejs/vite) _(label: good first issue)_
Next generation frontend tooling. It's fast! Alternative to Create React App 212 | - [Vue Router](https://github.com/vuejs/vue-router) _(label: good first issue)_
The official router for Vue.js. 213 | - [Vue.js](https://github.com/vuejs/vue) _(label: good first issue)_
The Progressive JavaScript Framework. 214 | - [VuePress](https://github.com/vuejs/vuepress) _(label: good first issue)_
Minimalistic Vue-powered static site generator 215 | - [webdriver.io](https://github.com/webdriverio/webdriverio) _(label: first-timers-only)_
Next-gen browser and mobile automation test framework for Node.js 216 | 217 | ## JSON 218 | 219 | - [Rawsec Cybersecurity Inventory](https://gitlab.com/rawsec/rawsec-cybersecurity-list) _(label: difficulty::easy)_
An inventory of tools and resources that aims to help people to find everything related to CyberSecurity. 220 | 221 | ## Julia 222 | 223 | - [Julia](https://github.com/JuliaLang/julia) _(label: good first issue)_
Julia Projects for Beginners — Easy Ideas to Get Started Coding in Julia 224 | - [Julia Language: Good first issue](https://github.com/JuliaLang/julia) _(label: good first issue)_
"Move like Python, Run like C" - A fresh approach to technical computing! 225 | - [Julia Language: Help wanted](https://github.com/JuliaLang/julia) _(label: help-wanted)_
"Move like Python, Run like C" - A fresh approach to technical computing! 226 | 227 | ## Kotlin 228 | 229 | - [Atrium](https://github.com/robstoll/atrium) _(label: good first issue)_
Multiplatform assertion library for Kotlin 230 | - [Hexagon](https://github.com/hexagonkt/hexagon) _(label: help-wanted)_
A microservices toolkit written in Kotlin 231 | - [Non-Blocking SirixDB HTTP(S)-Server](https://github.com/sirixdb/sirix) _(label: good first issue)_
A non-blocking HTTP(S)-Server for SirixDB, a temporal, evolutionary NoSQL document store for XML and JSON. 232 | - [OpenCalc](https://github.com/Darkempire78/OpenCalc) _(label: good first issue)_
A simple and beautiful calculator for Android. 233 | - [Scribe-Android](https://github.com/scribe-org/Scribe-Android) _(label: good first issue)_
Android keyboards for language learners with translation, verb conjugation and more! 234 | 235 | ## Markdown 236 | 237 | - [tldr-pages](https://github.com/tldr-pages/tldr) _(label: help-wanted)_
Collaborative cheatsheets for console commands. 238 | 239 | ## MLOps 240 | 241 | - [SuperDuperDB](https://github.com/SuperDuperDB/superduperdb) _(label: good first issue)_
🔮SuperDuperDB: Bring AI to your favourite database! Integrate, train and manage any AI models and APIs directly with your database and your data 242 | 243 | ## Perl 244 | 245 | - [Ravada](https://github.com/UPC/ravada) _(label: good first issue)_
Remote Virtual Desktops Manager. 246 | 247 | ## PHP 248 | 249 | - [Appwrite](https://github.com/appwrite/appwrite) _(label: good first issue)_
An End-to-end backend server for frontend and mobile developers. 🚀 250 | - [Deployer](https://github.com/deployphp/deployer) _(label: good-for-beginner)_
A deployment tool written in PHP with support for popular frameworks out of the box. 251 | - [Drupal](https://www.drupal.org/getting-involved-guide) _(label: n/a)_
Leading open-source CMS for ambitious digital experiences that reach your audience across multiple channels. 252 | - [Flarum](https://github.com/flarum/core) _(label: Good-first-issue)_
Simple forum software for building great communities. 253 | - [FreshRSS](https://github.com/FreshRSS/FreshRSS) _(label: good first issue)_
FreshRSS is a self-hosted RSS and Atom feed aggregator. It is lightweight, easy to work with, powerful, and customizable. Since 2012. 254 | - [Laravel Newsletters](https://github.com/spatie/laravel-newsletter) _(label: good first issue)_
A package that provides an easy way to integrate MailChimp with Laravel 5. 255 | - [Matomo](https://github.com/matomo-org/matomo) _(label: help-wanted)_
Matomo is the leading Free/Libre open analytics platform. 256 | - [MediaWiki](https://phabricator.wikimedia.org/maniphest/query/4Q5_qR51u_oz/#R) _(label: n/a)_
The free and open-source wiki software package that powers Wikipedia. 257 | - [NextCloud Server](https://github.com/nextcloud/server) _(label: good first issue)_
Nextcloud server, a safe home for all your data. 258 | - [OrgManager](https://github.com/orgmanager/orgmanager) _(label: beginners-only)_
Supercharge your GitHub organizations! 259 | - [PHP Censor](https://github.com/php-censor/php-censor) _(label: good-for-beginner)_
Open source self-hosted continuous integration server for PHP projects. 260 | - [phpMyAdmin](https://github.com/phpmyadmin/phpmyadmin) _(label: newbie)_
Admin interface for MySQL written in PHP. 261 | - [PrestaShop](https://github.com/PrestaShop/PrestaShop) _(label: good first issue)_
The open source ecommerce solution to start your online business and start selling online. 262 | - [Symfony](https://github.com/symfony/symfony) _(label: good first issue)_
Symfony is a PHP framework for web applications and a set of reusable PHP components. 263 | 264 | ## Pug 265 | 266 | - [Rawsec Cybersecurity Inventory](https://gitlab.com/rawsec/rawsec-cybersecurity-list) _(label: difficulty::easy)_
An inventory of tools and resources that aims to help people to find everything related to CyberSecurity. 267 | 268 | ## Python 269 | 270 | - [activist](https://github.com/activist-org/activist) _(label: good first issue)_
activist.org is a network for political action that allows people to coordinate and collaborate on the issues that matter most to them. 271 | - [Ansible](https://github.com/ansible/ansible) _(label: easyfix)_
A simple IT automation platform 272 | - [ArviZ](https://github.com/arviz-devs/arviz) _(label: Beginner)_
Exploratory Analysis of Bayesian Models. 273 | - [Bokeh](https://github.com/bokeh/bokeh) _(label: good first issue)_
Bokeh is an interactive visualization library for modern web browsers. 274 | - [BorgBackup](https://github.com/borgbackup/borg) _(label: easy)_
Deduplicating backup program with compression and authenticated encryption. 275 | - [CiviWiki](https://github.com/CiviWiki/OpenCiviWiki) _(label: good first issue)_
Building a Better Democracy for the Internet Age 276 | - [Colossal-AI](https://github.com/hpcaitech/ColossalAI) _(label: good first issue)_
An open-source deep learning system for large-scale model training and inference with high efficiency and low cost. 277 | - [cookiecutter](https://github.com/cookiecutter/cookiecutter) _(label: good first issue)_
A command-line utility that creates projects from cookiecutters (project templates). E.g. Python package projects, jQuery plugin projects. 278 | - [datascience](https://github.com/data-8/datascience) _(label: good first issue)_
A Jupyter notebook Python library for introductory data science. 279 | - [Devopness](https://github.com/devopness/devopness) _(label: good first issue)_
Deploy any software to any cloud: automated DevOps workflows to save software teams time and money. 280 | - [django cookiecutter](https://github.com/pydanny/cookiecutter-django) _(label: hacktoberfest)_
An implementation of Python for backend web development. 281 | - [Embedchain](https://github.com/embedchain/embedchain/) _(label: good first issue)_
Embedchain is a framework to easily create LLM powered bots over any dataset. 282 | - [Fabric](https://github.com/fabric/fabric) _(label: Low-hanging-fruit)_
Pythonic remote execution and deployment. 283 | - [FastAPI](https://github.com/tiangolo/fastapi) _(label: good first issue)_
A modern, fast (high-performance) web framework for building APIs with Python 3.6+ based on standard Python type hints. 284 | - [H2O Wave](https://github.com/h2oai/wave) _(label: good first issue)_
Realtime Web Apps and Dashboards framework for Python and R. Suited (not only) for AI audience. 285 | - [H2O Wave Apps](https://github.com/h2oai/wave-apps) _(label: hacktoberfest)_
Sample AI Apps built with H2O Wave. 286 | - [Harmony](https://github.com/harmonydata/harmony) _(label: Good First Issue)_
Natural language processing tool for psychologists to analyse and compare datasets with AI and LLMs.
Up for a challenge? Try [this LLM training competition](https://harmonydata.ac.uk/doxa/) for a chance to win up to £500! 287 | - [jarvis](https://github.com/sukeesh/Jarvis) _(label: difficulty/newcomer)_
A personal assistant for Linux, MacOs and Windows based on Command line Interface. 288 | - [Jupyter notebook](https://github.com/jupyter/notebook) _(label: good first issue)_
Jupyter interactive notebook. 289 | - [Kinto](https://github.com/Kinto/kinto) _(label: easy-pick)_
A lightweight JSON storage service with synchronisation and sharing abilities. 290 | - [matplotlib](https://github.com/matplotlib/matplotlib) _(label: good first issue)_
Matplotlib is a comprehensive library for creating static, animated, and interactive visualizations in Python. 291 | - [MindsDB](https://github.com/mindsdb/mindsdb) _(label: good first issue)_
MindsDB is an open source AI layer for existing databases. 292 | - [mitmproxy](https://github.com/mitmproxy/mitmproxy) _(label: help-wanted)_
An interactive TLS-capable intercepting HTTP proxy for penetration testers and software developers 293 | - [mygpo](https://github.com/gpodder/mygpo) _(label: starter-issue)_
The webservice for gpodder.net, a libre web service that allows users to manage their podcast subscriptions and discover new content. 294 | - [mypy](https://github.com/python/mypy) _(label: good first issue)_
Optional static typing for Python. 295 | - [OMRChecker](https://github.com/Udayraj123/OMRChecker) _(label: good first issue)_
OMRChecker helps to grade exams fast and accurately using a scanner 🖨 or your phone 🤳. Learn image processing with Python and OpenCV while contributing to one of the most popular repositories related to OMR topic on github. 296 | - [OpenMetadata](https://github.com/open-metadata/OpenMetadata) _(label: good first issue)_
OpenMetadata is an all-in-one platform for data discovery, data quality, observability, governance, data lineage, and team collaboration. 297 | - [Oppia](https://github.com/oppia/oppia) _(label: good first issue)_
Oppia is an open-source project whose aim is to empower learners across the globe by providing access to high-quality, engaging education. We envision a society in which access to high-quality education is a human right rather than a privilege. 298 | - [opsdroid](https://github.com/opsdroid/opsdroid) _(label: good first issue)_
An open source chat-ops bot framework. 299 | - [pandas](https://github.com/pandas-dev/pandas) _(label: good first issue)_
Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more 300 | - [PyMC](https://github.com/pymc-devs/pymc) _(label: beginner friendly)_
A Python library for Bayesian statistical modeling and probabilistic machine learning. Beginner-friendly with 'good first issue' labels. 301 | - [Pytest](https://github.com/pytest-dev/pytest) _(label: status:-easy)_
The pytest framework makes it easy to write small tests, yet scales to support complex functional testing. 302 | - [Python Babel](https://github.com/python-babel/babel) _(label: difficulty/low)_
The Python Internationalization Library. 303 | - [Pytorch](https://github.com/pytorch/pytorch) _(label: good first issue)_
PyTorch is an open source machine learning library based on the Torch library, used for applications such as computer vision and natural language processing. 304 | - [SaltStack](https://github.com/saltstack/salt) _(label: good first issue)_
Software to automate the management and configuration of any infrastructure or application at scale. 305 | - [scikit-learn](https://github.com/scikit-learn/scikit-learn) _(label: good first issue)_
Scikit-learn is a machine learning library for Python. 306 | - [scrapy](https://github.com/scrapy/scrapy) _(label: good first issue)_
A fast high-level web crawling & scraping framework for Python. 307 | - [SuperDuperDB](https://github.com/SuperDuperDB/superduperdb) _(label: good first issue)_
🔮SuperDuperDB: Bring AI to your favourite database! Integrate, train and manage any AI models and APIs directly with your database and your data 308 | - [SymPy](https://github.com/sympy/sympy) _(label: Easy-to-Fix)_
A Python library for symbolic mathematics. 309 | - [wemake-python-styleguide](https://github.com/wemake-services/wemake-python-styleguide) _(label: level:starter)_
The strictest and most opinionated python linter ever! 310 | - [Zulip](https://github.com/zulip/zulip) _(label: good first issue)_
Powerful open source group chat. 311 | 312 | ## Ruby 313 | 314 | - [Avo Admin for Ruby on Rails](https://github.com/avo-hq/avo) _(label: Good first issue)_
Build business apps 10x faster using Ruby on Rails. 315 | - [bolt](https://github.com/puppetlabs/bolt) _(label: Beginner-Friendly)_
Bolt is a Ruby command-line tool for executing commands, scripts, and tasks on remote systems using SSH and WinRM. 316 | - [chatwoot](https://github.com/chatwoot/chatwoot) _(label: good first issue)_
Opensource customer support platform which can be an alternative to Intercom, Zendesk, Drift, Crisp etc. 317 | - [chef](https://github.com/chef/chef) _(label: Type:-Jump-In)_
A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure 318 | - [Hanami](https://github.com/hanami/hanami) _(label: easy)_
A modern framework for Ruby. 319 | - [JRuby](https://github.com/jruby/jruby) _(label: beginner)_
An implementation of Ruby on the Java Virtual Machine. 320 | - [mapknitter](https://github.com/publiclab/mapknitter) _(label: first-timers-only)_
Upload your own aerial images, position (rubbersheet) them in a web interface over existing map data, and share via web or composite and export for print. 321 | - [multiwoven](https://github.com/Multiwoven/multiwoven) _(label: good first issue)_
The open-source reverse ETL, data activation platform for modern data teams. 322 | - [ohai](https://github.com/chef/ohai) _(label: Type:-Jump-In)_
Ohai profiles your system and emits JSON 323 | - [open-build-service](https://github.com/openSUSE/open-build-service) _(label: good first issue-:1st_place_medal:)_
A generic system to build and distribute packages from sources in an automatic, consistent and reproducible way. 324 | - [osem](https://github.com/openSUSE/osem) _(label: good first issue)_
Open Source Event Manager. An event management tool tailored to Free and Open Source Software conferences 325 | - [PublicLab.org](https://github.com/publiclab/plots2) _(label: first-timers-only)_
An open source publishing platform for environmental projects. Check out new contributors welcome page. 326 | - [Ruby on Rails](https://github.com/rails/rails) _(label: good first issue)_
Ruby on Rails (Rails) is an open source web application framework written in Ruby. 327 | - [Sinatra](https://github.com/sinatra/sinatra) _(label: good first issue)_
Classy web-development dressed in a DSL. 328 | 329 | ## Rust 330 | 331 | - [a-b-street](https://github.com/a-b-street/abstreet) _(label: good first issue)_
Transportation planning and traffic simulation software for creating cities friendlier to walking, biking, and public transit. 332 | - [dotenv-linter](https://github.com/dotenv-linter/dotenv-linter) _(label: good first issue)_
Lightning-fast linter for .env files. Written in Rust 333 | - [Hyper](https://github.com/hyperium/hyper) _(label: E-easy)_
A fast, safe and correct low-level HTTP library for Rust. 334 | - [nushell](https://github.com/nushell/nushell) _(label: good first issue)_
A modern shell for the GitHub era written in Rust. 335 | - [Ockam](https://github.com/ockam-network/ockam) _(label: good first issue)_
End-to-end encryption and mutual authentication for distributed applications. 336 | - [Readest](https://github.com/readest/readest) _(label: good first issue)_
A modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface. 337 | - [Rust-Clippy](https://github.com/rust-lang/rust-clippy) _(label: good first issue)_
A bunch of lints to catch common mistakes and improve Rust code 338 | - [Rustfmt](https://github.com/rust-lang-nursery/rustfmt) _(label: good first issue)_
A tool for formatting Rust code according to style guidelines. 339 | - [Servo](https://github.com/servo/servo) _(label: E-easy)_
A browser engine designed for applications including embedded use. 340 | - [Sniffnet](https://github.com/GyulyVGC/sniffnet) _(label: good first issue)_
Application to comfortably monitor network traffic. 341 | - [TensorZero](https://github.com/tensorzero/tensorzero) _(label: good-first-issue)_
TensorZero creates a feedback loop for optimizing LLM applications — turning production data into smarter, faster, and cheaper models. 342 | - [TiKV](https://github.com/tikv/tikv) _(label: difficulty/easy)_
A distributed transactional key-value database 343 | - [Veloren](https://gitlab.com/veloren/veloren) _(label: n/a)_
Veloren is a multiplayer voxel RPG written in Rust. 344 | - [zoom-rs](https://github.com/security-union/zoom-rs) _(label: good first issue)_
Teleconference system with a web based user interface written in Rust 345 | 346 | ## Scala 347 | 348 | - [playframework](https://github.com/playframework/playframework) _(label: good first issue)_
The High Velocity Web Framework 349 | - [Twitter Util](https://github.com/twitter/util) _(label: good first issue)_
Wonderful reusable code from Twitter 350 | 351 | ## Smalltalk 352 | 353 | - [Pharo](https://github.com/pharo-project/pharo) _(label: good first issue)_
A dynamic reflective pure object-oriented language supporting live programming inspired by Smalltalk. 354 | 355 | ## Swift 356 | 357 | - [Basic-Car-Maintenance](https://github.com/mikaelacaron/Basic-Car-Maintenance) _(label: good first issue)_
A basic app to track your car's maintenance events, like fixes, oil changes, etc. 358 | 359 | ## TypeScript 360 | 361 | - [activist](https://github.com/activist-org/activist) _(label: good first issue)_
activist.org is a network for political action that allows people to coordinate and collaborate on the issues that matter most to them. 362 | - [Amplication](https://github.com/amplication/amplication) _(label: good first issue)_
Amplication is an open-source development tool. It helps you develop quality Node.js applications without spending time on repetitive coding tasks. 363 | - [Berry - Active development trunk for Yarn](https://github.com/yarnpkg/berry) _(label: good first issue)_
Fast, reliable, and secure dependency management. 364 | - [Booster](https://github.com/boostercloud/booster) _(label: good first issue)_
A truly serverless framework, write your code and deploy it in seconds without any server configuration files. 365 | - [Devopness](https://github.com/devopness/devopness) _(label: good first issue)_
Deploy any software to any cloud: automated DevOps workflows to save software teams time and money. 366 | - [Graphback](https://github.com/aerogear/graphback) _(label: good first issue)_
A CLI and runtime framework to generate a GraphQL API in seconds. 367 | - [H2O Wave](https://github.com/h2oai/wave) _(label: good first issue)_
Realtime Web Apps and Dashboards framework for Python and R. Suited (not only) for AI audience. 368 | - [Hasura GraphQL Engine](https://github.com/hasura/graphql-engine) _(label: good first issue)_
Blazing fast, instant realtime GraphQL APIs on Postgres with fine grained access control, also trigger webhooks on database events. 369 | - [Impler.io](https://github.com/implerhq/impler.io) _(label: good first issue)_
100% open source data import experience with readymade CSV & Excel import widget 🚀 370 | - [IterTools TS](https://github.com/Smoren/itertools-ts) _(label: good first issue)_
Extended itertools port for TypeScript and JavaScript. Provides a huge set of functions for working with iterable collections (including async ones). 371 | - [LinksHub](https://github.com/rupali-codes/LinksHub) _(label: good first issue)_
LinksHub aims to provide developers with access to a wide range of free resources and tools that they can use in their work. 372 | - [LitmusChaos](https://github.com/litmuschaos/litmus) _(label: good first issue)_
Litmus is a toolset to do cloud-native chaos engineering. 373 | - [Manifest](https://github.com/mnfst/manifest) _(label: good first issue)_
Manifest is an open-source Backend-as-a-Service allowing developers to create a backend easily and quickly. 374 | - [Metabase](https://github.com/metabase/metabase) _(label: good first issue)_
Open source business intelligence and analytics platform 375 | - [OpenMetadata](https://github.com/open-metadata/OpenMetadata) _(label: good first issue)_
OpenMetadata is an all-in-one platform for data discovery, data quality, observability, governance, data lineage, and team collaboration. 376 | - [Oppia](https://github.com/oppia/oppia) _(label: good first issue)_
Oppia is an open-source project whose aim is to empower learners across the globe by providing access to high-quality, engaging education. We envision a society in which access to high-quality education is a human right rather than a privilege. 377 | - [Readest](https://github.com/readest/readest) _(label: good first issue)_
A modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface. 378 | - [reatom](https://github.com/artalar/reatom) _(label: good first issue)_
Reatom is declarative and reactive state manager, designed for both simple and complex applications. 379 | - [Storybook JS](https://github.com/storybookjs/storybook) _(label: good first issue)_
Storybook is a frontend workshop for building UI components and pages in isolation. 380 | - [supabase](https://github.com/supabase/supabase) _(label: good first issue)_
The open source Firebase alternative. Supabase gives you a dedicated Postgres database to build your web, mobile, and AI applications. 381 | - [tinyhttp](https://github.com/talentlessguy/tinyhttp) _(label: good first issue)_
A 0-legacy, tiny & fast web framework as a replacement of Express. 382 | - [TypeScript](https://github.com/Microsoft/TypeScript) _(label: good first issue)_
A superset of JavaScript that compiles to clean JavaScript output. 383 | - [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint) _(label: good first issue)_
Monorepo for all the tooling which enables ESLint to support TypeScript. 384 | - [Visual Studio Code](https://github.com/Microsoft/vscode) _(label: good first issue)_
A code editor redefined and optimized for building and debugging modern web and cloud applications. 385 | - [Vite](https://github.com/vitejs/vite) _(label: good first issue)_
Next generation frontend tooling. It's fast! Alternative to Create React App 386 | 387 | 388 | ## Contribute 389 | 390 | Contributions are welcome! See the [contributing guidelines](CONTRIBUTING.md). 391 | 392 | ## Thanks to GitHub Sponsors 393 | 394 |

Michał Gołkowski
395 | 396 | ## License 397 | 398 | [![CC0](http://i.creativecommons.org/p/zero/1.0/88x31.png)](http://creativecommons.org/publicdomain/zero/1.0/) 399 | 400 | To the extent possible under law, the author has waived all copyrights and related or neighboring rights to this work. 401 | -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- 1 | { 2 | "sponsors": [ 3 | { 4 | "name": "Michał Gołkowski", 5 | "image": "https://avatars.githubusercontent.com/u/40803091", 6 | "link": "https://github.com/MixeroTN" 7 | } 8 | ], 9 | "technologies": { 10 | ".NET": "net", 11 | "C#": "c-1", 12 | "C++": "c-2" 13 | }, 14 | "repositories": [ 15 | { 16 | "name": "MvvmCross", 17 | "link": "https://github.com/MvvmCross/MvvmCross", 18 | "label": "first-timers-only", 19 | "technologies": [ 20 | ".NET" 21 | ], 22 | "description": "The .NET MVVM framework for cross-platform solutions, including Xamarin.iOS, Xamarin.Android, Windows and Mac." 23 | }, 24 | { 25 | "name": "RawCMS", 26 | "link": "https://github.com/arduosoft/RawCMS", 27 | "label": "good first issue", 28 | "technologies": [ 29 | ".NET" 30 | ], 31 | "description": "RawCMS is a headless CMS written in ASP.NET Core, built for developers that embrace API-first technology." 32 | }, 33 | { 34 | "name": "grok.net", 35 | "link": "https://github.com/Marusyk/grok.net", 36 | "label": "good first issue", 37 | "technologies": [ 38 | "C#" 39 | ], 40 | "description": "Cross platform .NET grok implementation" 41 | }, 42 | { 43 | "name": "osu!", 44 | "link": "https://github.com/ppy/osu", 45 | "label": "good first issue", 46 | "technologies": [ 47 | "C#" 48 | ], 49 | "description": "Music game. Rhythm is just a click away!" 50 | }, 51 | { 52 | "name": "Uno Platform", 53 | "link": "https://github.com/unoplatform/uno", 54 | "label": "good first issue", 55 | "technologies": [ 56 | "C#" 57 | ], 58 | "description": "OSS project for creating pixel-perfect, single-source C# and XAML apps which run natively on iOS, Android, macOS, Linux and Web via WebAssembly." 59 | }, 60 | { 61 | "name": "Cake", 62 | "link": "https://github.com/cake-build/cake", 63 | "label": "Good-first-issue", 64 | "technologies": [ 65 | "C#" 66 | ], 67 | "description": "Cake (C# Make) is a free and open source cross-platform build automation system with a C# DSL for tasks such as compiling code, copying files and folders, running unit tests, compressing files and building NuGet packages." 68 | }, 69 | { 70 | "name": "Spectre.Console", 71 | "link": "https://github.com/spectreconsole/spectre.console", 72 | "label": "good first issue", 73 | "technologies": [ 74 | "C#" 75 | ], 76 | "description": "A .NET library that makes it easier to create beautiful console applications." 77 | }, 78 | { 79 | "name": "electron", 80 | "link": "https://github.com/electron/electron", 81 | "label": "good first issue", 82 | "technologies": [ 83 | "C++", 84 | "JavaScript" 85 | ], 86 | "description": "Build cross platform desktop apps with JavaScript, HTML, and CSS" 87 | }, 88 | { 89 | "name": "Godot Engine", 90 | "link": "https://github.com/godotengine/godot", 91 | "label": "good first issue", 92 | "technologies": [ 93 | "C++" 94 | ], 95 | "description": "2D and 3D cross-platform game engine. Also has C# and Python code." 96 | }, 97 | { 98 | "name": "projectM", 99 | "link": "https://github.com/projectM-visualizer/projectm", 100 | "label": "good first issue", 101 | "technologies": [ 102 | "C++" 103 | ], 104 | "description": "A music visualizer library using OpenGL and GLSL. Has applications using Qt5, SDL, emscripten, iTunes, Kodi." 105 | }, 106 | { 107 | "name": "Roc Toolkit", 108 | "link": "https://github.com/roc-streaming/roc-toolkit", 109 | "label": "help-wanted", 110 | "technologies": [ 111 | "C++" 112 | ], 113 | "description": "A toolkit for real-time audio streaming over the network." 114 | }, 115 | { 116 | "name": "tensorflow", 117 | "link": "https://github.com/tensorflow/tensorflow", 118 | "label": "stat:contributions-welcome", 119 | "technologies": [ 120 | "C++" 121 | ], 122 | "description": "Computation using data flow graphs for scalable machine learning" 123 | }, 124 | { 125 | "name": "Yugabyte DB", 126 | "link": "https://github.com/yugabyte/yugabyte-db", 127 | "label": "good first issue", 128 | "technologies": [ 129 | "C++" 130 | ], 131 | "description": "Distributed SQL database." 132 | }, 133 | { 134 | "name": "MoveIt", 135 | "link": "https://github.com/ros-planning/moveit", 136 | "label": "good first issue", 137 | "technologies": [ 138 | "C++" 139 | ], 140 | "description": "Easy-to-use open source robotics manipulation platform for developing commercial applications, prototyping designs, and benchmarking algorithms." 141 | }, 142 | { 143 | "name": "MiniOB", 144 | "link": "https://github.com/oceanbase/miniob", 145 | "label": "good first issue", 146 | "technologies": [ 147 | "C++" 148 | ], 149 | "description": "MiniOB is a compact database that assists developers in understanding the fundamental workings of a database(main language is Chinese)." 150 | }, 151 | { 152 | "name": "F3D", 153 | "link": "https://github.com/f3d-app/f3d", 154 | "label": "good first issue", 155 | "technologies": [ 156 | "C++" 157 | ], 158 | "description": "Fast and minimalist 3D viewer." 159 | }, 160 | { 161 | "name": "Alda", 162 | "link": "https://github.com/alda-lang/alda", 163 | "label": "low-hanging-fruit", 164 | "technologies": [ 165 | "Go" 166 | ], 167 | "description": "A music programming language for musicians. 🎶" 168 | }, 169 | { 170 | "name": "Metabase", 171 | "link": "https://github.com/metabase/metabase", 172 | "label": "good first issue", 173 | "technologies": [ 174 | "Clojure", 175 | "TypeScript" 176 | ], 177 | "description": "Open source business intelligence and analytics platform" 178 | }, 179 | { 180 | "name": "dart.dev", 181 | "link": "https://github.com/dart-lang/site-www", 182 | "label": "beginner", 183 | "technologies": [ 184 | "Dart" 185 | ], 186 | "description": "A website covering Dart language and common libraries, for developers of Dart libraries, web apps, server-side code, and mobile (Flutter) apps." 187 | }, 188 | { 189 | "name": "Ecto", 190 | "link": "https://github.com/elixir-ecto/ecto", 191 | "label": "Level:Starter", 192 | "technologies": [ 193 | "Elixir" 194 | ], 195 | "description": "Ecto is a database wrapper and language integrated query for Elixir" 196 | }, 197 | { 198 | "name": "Elixir", 199 | "link": "https://github.com/elixir-lang/elixir", 200 | "label": "Level:Starter", 201 | "technologies": [ 202 | "Elixir" 203 | ], 204 | "description": "Elixir is a dynamic, functional language designed for building scalable and maintainable applications" 205 | }, 206 | { 207 | "name": "CockroachDB", 208 | "link": "https://github.com/cockroachdb/cockroach", 209 | "label": "good first issue", 210 | "technologies": [], 211 | "description": "The Scalable, Survivable, Strongly-Consistent SQL Database" 212 | }, 213 | { 214 | "name": "Docker/CLI", 215 | "link": "https://github.com/docker/cli", 216 | "label": "exp/beginner", 217 | "technologies": [ 218 | "Go" 219 | ], 220 | "description": "The Docker CLI" 221 | }, 222 | { 223 | "name": "Dragonfly", 224 | "link": "https://github.com/dragonflyoss/Dragonfly2", 225 | "label": "good first issue", 226 | "technologies": [ 227 | "Go" 228 | ], 229 | "description": "Provide efficient, stable and secure file distribution and image acceleration based on p2p technology" 230 | }, 231 | { 232 | "name": "Helm", 233 | "link": "https://github.com/kubernetes/helm", 234 | "label": "good first issue", 235 | "technologies": [ 236 | "Go" 237 | ], 238 | "description": "The Kubernetes Package Manager" 239 | }, 240 | { 241 | "name": "Hugo", 242 | "link": "https://github.com/gohugoio/hugo", 243 | "label": "GoodFirstIssue", 244 | "technologies": [ 245 | "Go" 246 | ], 247 | "description": "A Fast and Flexible Static Site Generator built with love in GoLang" 248 | }, 249 | { 250 | "name": "Kanister", 251 | "link": "https://github.com/kanisterio/kanister", 252 | "label": "good first issue", 253 | "technologies": [ 254 | "Go" 255 | ], 256 | "description": "A Data Protection Workflow Management Engine" 257 | }, 258 | { 259 | "name": "Kubernetes", 260 | "link": "https://github.com/kubernetes/kubernetes", 261 | "label": "good first issue", 262 | "technologies": [ 263 | "Go" 264 | ], 265 | "description": "Production-Grade Container Scheduling and Management System" 266 | }, 267 | { 268 | "name": "Mattermost", 269 | "link": "https://github.com/mattermost/mattermost", 270 | "label": "Good First Issue, Difficulty/1:Easy", 271 | "technologies": [ 272 | "Go", 273 | "JavaScript" 274 | ], 275 | "description": "Open source Slack-alternative in Golang and React
Look for issues labelled 'Up For Grabs'" 276 | }, 277 | { 278 | "name": "Moby", 279 | "link": "https://github.com/moby/moby", 280 | "label": "exp/beginner", 281 | "technologies": [ 282 | "Go" 283 | ], 284 | "description": "Open-source application container engine" 285 | }, 286 | { 287 | "name": "Terraform", 288 | "link": "https://github.com/hashicorp/terraform", 289 | "label": "good first issue", 290 | "technologies": [ 291 | "Go" 292 | ], 293 | "description": "A tool for building, changing, and versioning infrastructure safely and efficiently." 294 | }, 295 | { 296 | "name": "TiDB", 297 | "link": "https://github.com/pingcap/tidb", 298 | "label": "good first issue", 299 | "technologies": [ 300 | "Go" 301 | ], 302 | "description": "A distributed scalable Hybrid Transactional and Analytical Processing (HTAP) database" 303 | }, 304 | { 305 | "name": "script", 306 | "link": "https://github.com/bitfield/script", 307 | "label": "good first issue", 308 | "technologies": [ 309 | "Go" 310 | ], 311 | "description": "A Go library for doing the kind of tasks that shell scripts are good at: reading files, executing subprocesses, counting lines, matching strings, and so on. Beginners are very welcome and will get detailed code review and help through the PR process." 312 | }, 313 | { 314 | "name": "Killgrave", 315 | "link": "https://github.com/friendsofgo/killgrave", 316 | "label": "good first issue", 317 | "technologies": [ 318 | "Go" 319 | ], 320 | "description": "Simple way to generate mock servers in Go." 321 | }, 322 | { 323 | "name": "lxd", 324 | "link": "https://github.com/lxc/lxd", 325 | "label": "easy", 326 | "technologies": [ 327 | "Go" 328 | ], 329 | "description": "System container and virtual machine manager." 330 | }, 331 | { 332 | "name": "PureLB", 333 | "link": "https://gitlab.com/purelb/purelb", 334 | "technologies": [ 335 | "Go" 336 | ], 337 | "description": "Load-balancer orchestrator for Kubernetes that uses standard Linux networking and routing protocols." 338 | }, 339 | { 340 | "name": "containerd", 341 | "link": "https://github.com/containerd/containerd", 342 | "label": "exp/beginner", 343 | "technologies": [ 344 | "Go" 345 | ], 346 | "description": "Industry-standard container runtime with an emphasis on simplicity, robustness and portability." 347 | }, 348 | { 349 | "name": "Meshery", 350 | "link": "https://github.com/layer5io/meshery", 351 | "label": "good first issue", 352 | "technologies": [ 353 | "Go" 354 | ], 355 | "description": "Meshery, the service mesh management plane." 356 | }, 357 | { 358 | "name": "utils", 359 | "link": "https://github.com/kashifkhan0771/utils", 360 | "label": "good first issue", 361 | "technologies": [ 362 | "Go" 363 | ], 364 | "description": "Common Utilities library for Go" 365 | }, 366 | { 367 | "name": "Strongbox", 368 | "link": "https://github.com/strongbox/strongbox", 369 | "label": "good first issue", 370 | "technologies": [ 371 | "Java" 372 | ], 373 | "description": "Strongbox is an artifact repository manager written in Java." 374 | }, 375 | { 376 | "name": "TEAMMATES", 377 | "link": "https://github.com/TEAMMATES/teammates", 378 | "label": "good first issue", 379 | "technologies": [ 380 | "Java" 381 | ], 382 | "description": "TEAMMATES is a free online tool for managing peer evaluations and other feedback paths of your students." 383 | }, 384 | { 385 | "name": "elasticsearch", 386 | "link": "https://github.com/elastic/elasticsearch", 387 | "label": "good first issue", 388 | "technologies": [ 389 | "Java" 390 | ], 391 | "description": "Open Source, Distributed, RESTful Search Engine." 392 | }, 393 | { 394 | "name": "JabRef", 395 | "link": "https://github.com/JabRef/jabref", 396 | "label": "good first issue", 397 | "technologies": [ 398 | "Java" 399 | ], 400 | "description": "Desktop application for managing literature references using modern Java features including JavaFX. Dedicated to code quality and constructive feedback: Each Pull Request is reviewed by two developers to provide high-quality feedback and to ensure high quality of new contributions." 401 | }, 402 | { 403 | "name": "Wikimedia Commons Android App", 404 | "link": "https://github.com/commons-app/apps-android-commons", 405 | "label": "good first issue", 406 | "technologies": [ 407 | "Java" 408 | ], 409 | "description": "Allows users to upload pictures from their Android phone/tablet to Wikimedia Commons." 410 | }, 411 | { 412 | "name": "XWiki", 413 | "link": "https://jira.xwiki.org/issues", 414 | "label": "onboarding", 415 | "technologies": [ 416 | "Java" 417 | ], 418 | "description": "XWiki is a free wiki software platform written in Java with a design emphasis on extensibility. Beginners should follow the [onboarding wiki](http://dev.xwiki.org/xwiki/bin/view/Onboarding/)." 419 | }, 420 | { 421 | "name": "zerocode", 422 | "link": "https://github.com/authorjapps/zerocode", 423 | "label": "good first issue", 424 | "technologies": [ 425 | "Java" 426 | ], 427 | "description": "API Automation without coding, easy JSON response assertions, Testing REST, SOAP, Kafka and Java/DB APIs, CI/Jenkins Friendly." 428 | }, 429 | { 430 | "name": "Trino (formerly Presto SQL)", 431 | "link": "https://github.com/trinodb/trino", 432 | "label": "good first issue", 433 | "technologies": [ 434 | "Java" 435 | ], 436 | "description": "A distributed SQL query engine for big data. Ask for guidance on project's Slack." 437 | }, 438 | { 439 | "name": "appsmith", 440 | "link": "https://github.com/appsmithorg/appsmith", 441 | "label": "good first issue", 442 | "technologies": [ 443 | "Java" 444 | ], 445 | "description": "Drag & Drop internal tool builder" 446 | }, 447 | { 448 | "name": "Codename One", 449 | "link": "https://github.com/codenameone/CodenameOne", 450 | "label": "good first issue", 451 | "technologies": [ 452 | "Java" 453 | ], 454 | "description": "Cross-platform mobile app development framework for Java developers" 455 | }, 456 | { 457 | "name": "DSA", 458 | "link": "https://github.com/abhishektripathi66/DSA", 459 | "label": "good first issue", 460 | "technologies": [ 461 | "Java" 462 | ], 463 | "description": "DSA questions practising repo for Java developers" 464 | }, 465 | { 466 | "name": "name-suggestion-index", 467 | "link": "https://github.com/osmlab/name-suggestion-index", 468 | "label": "good first issue", 469 | "technologies": [ 470 | "JavaScript" 471 | ], 472 | "description": "Canonical common brand names for OpenStreetMap" 473 | }, 474 | { 475 | "name": "iD", 476 | "link": "https://github.com/openstreetmap/iD", 477 | "label": "new contributor opportunity", 478 | "technologies": [ 479 | "JavaScript" 480 | ], 481 | "description": "The easy-to-use OpenStreetMap editor in JavaScript." 482 | }, 483 | { 484 | "name": "PouchDB", 485 | "link": "https://github.com/pouchdb/pouchdb", 486 | "label": "help-wanted", 487 | "technologies": [ 488 | "JavaScript" 489 | ], 490 | "description": "PouchDB is a pocket-sized database." 491 | }, 492 | { 493 | "name": "Leaflet", 494 | "link": "https://github.com/Leaflet/Leaflet", 495 | "label": "good first issue", 496 | "technologies": [ 497 | "JavaScript" 498 | ], 499 | "description": "JavaScript library for mobile-friendly interactive maps." 500 | }, 501 | { 502 | "name": "AVA", 503 | "link": "https://github.com/sindresorhus/ava", 504 | "label": "good-for-beginner", 505 | "technologies": [ 506 | "JavaScript" 507 | ], 508 | "description": "Futuristic test runner." 509 | }, 510 | { 511 | "name": "Kinto.js", 512 | "link": "https://github.com/Kinto/kinto.js", 513 | "label": "easy-pick", 514 | "technologies": [ 515 | "JavaScript" 516 | ], 517 | "description": "An offline-first JavaScript client leveraging the Kinto API for remote data synchronization." 518 | }, 519 | { 520 | "name": "ESLint", 521 | "link": "https://github.com/eslint/eslint", 522 | "label": "good first issue", 523 | "technologies": [ 524 | "JavaScript" 525 | ], 526 | "description": "A fully pluggable tool for identifying and reporting on patterns in JavaScript." 527 | }, 528 | { 529 | "name": "Ember.js", 530 | "link": "https://github.com/emberjs/ember.js", 531 | "label": "Good-for-New-Contributors", 532 | "technologies": [ 533 | "JavaScript" 534 | ], 535 | "description": "A JavaScript framework for creating ambitious web applications." 536 | }, 537 | { 538 | "name": "Ember.js Data", 539 | "link": "https://github.com/emberjs/data", 540 | "label": "Good-for-New-Contributors", 541 | "technologies": [ 542 | "JavaScript" 543 | ], 544 | "description": "A data persistence library for Ember.js." 545 | }, 546 | { 547 | "name": "freeCodeCamp", 548 | "link": "https://github.com/freeCodeCamp/freeCodeCamp", 549 | "label": "first-timers-only", 550 | "technologies": [ 551 | "JavaScript" 552 | ], 553 | "description": "Open source codebase and curriculum. Learn to code and help nonprofits." 554 | }, 555 | { 556 | "name": "Ghost", 557 | "link": "https://github.com/TryGhost/Ghost", 558 | "label": "good first issue", 559 | "technologies": [ 560 | "JavaScript" 561 | ], 562 | "description": "Just a blogging platform" 563 | }, 564 | { 565 | "name": "eslint-plugin-unicorn", 566 | "link": "https://github.com/sindresorhus/eslint-plugin-unicorn", 567 | "label": "good-for-beginner", 568 | "technologies": [ 569 | "JavaScript" 570 | ], 571 | "description": "Awesome ESLint rules." 572 | }, 573 | { 574 | "name": "API-pull-with-JavaScript", 575 | "link": "https://github.com/AliBasboga/APIExampleWithExpress.git", 576 | "label": "API-pull-and-use", 577 | "technologies": [ 578 | "JavaScript" 579 | ], 580 | "description": "API data extraction and delivery to the user to present." 581 | }, 582 | { 583 | "name": "HMPL", 584 | "link": "https://github.com/hmpl-language/hmpl", 585 | "label": "good first issue", 586 | "technologies": [ 587 | "JavaScript" 588 | ], 589 | "description": "Server-oriented customizable templating for JavaScript." 590 | }, 591 | { 592 | "name": "Moment.js", 593 | "link": "https://github.com/moment/moment", 594 | "label": "Up-For-Grabs", 595 | "technologies": [ 596 | "JavaScript" 597 | ], 598 | "description": "A lightweight JavaScript date library for parsing, validating, manipulating, and formatting dates." 599 | }, 600 | { 601 | "name": "ImprovedTube", 602 | "link": "https://github.com/code-charity/youtube", 603 | "label": "good first issue", 604 | "technologies": [ 605 | "JavaScript", 606 | "CSS" 607 | ], 608 | "description": "A powerful but lightweight extension, to enrich your video experience & enable your content selection." 609 | }, 610 | { 611 | "name": "serverless", 612 | "link": "https://github.com/serverless/serverless", 613 | "label": "good first issue", 614 | "technologies": [ 615 | "JavaScript" 616 | ], 617 | "description": "The Serverless Framework" 618 | }, 619 | { 620 | "name": "React", 621 | "link": "https://github.com/facebook/react", 622 | "label": "good first issue", 623 | "technologies": [ 624 | "JavaScript" 625 | ], 626 | "description": "A declarative, efficient, and flexible JavaScript library for building user interfaces." 627 | }, 628 | { 629 | "name": "React Native", 630 | "link": "https://github.com/facebook/react-native", 631 | "label": "Good-first-issue", 632 | "technologies": [ 633 | "JavaScript" 634 | ], 635 | "description": "A framework for building native apps with React." 636 | }, 637 | { 638 | "name": "React server", 639 | "link": "https://github.com/redfin/react-server", 640 | "label": "good-first-contribution", 641 | "technologies": [ 642 | "JavaScript" 643 | ], 644 | "description": "React framework with server render for blazing fast page load and seamless transitions between pages in the browser." 645 | }, 646 | { 647 | "name": "Berry - Active development trunk for Yarn", 648 | "link": "https://github.com/yarnpkg/berry", 649 | "label": "good first issue", 650 | "technologies": [ 651 | "JavaScript", 652 | "TypeScript" 653 | ], 654 | "description": "Fast, reliable, and secure dependency management." 655 | }, 656 | { 657 | "name": "pixi.js", 658 | "link": "https://github.com/pixijs/pixi.js", 659 | "label": "🤩 Good First PR", 660 | "technologies": [ 661 | "JavaScript" 662 | ], 663 | "description": "A 2D JavaScript Renderer" 664 | }, 665 | { 666 | "name": "Next.js", 667 | "link": "https://github.com/zeit/next.js", 668 | "label": "good first issue", 669 | "technologies": [ 670 | "JavaScript" 671 | ], 672 | "description": "A minimalistic framework for universal server-rendered React applications" 673 | }, 674 | { 675 | "name": "Semantic-UI-React", 676 | "link": "https://github.com/Semantic-Org/Semantic-UI-React", 677 | "label": "good first issue", 678 | "technologies": [ 679 | "JavaScript" 680 | ], 681 | "description": "The official React integration for Semantic UI." 682 | }, 683 | { 684 | "name": "Botpress", 685 | "link": "https://github.com/botpress/botpress", 686 | "label": "contributor-friendly", 687 | "technologies": [ 688 | "JavaScript" 689 | ], 690 | "description": "The only sane way to build great bots." 691 | }, 692 | { 693 | "name": "Video.js", 694 | "link": "https://github.com/videojs/video.js", 695 | "label": "good first issue", 696 | "technologies": [ 697 | "JavaScript" 698 | ], 699 | "description": "The player framework" 700 | }, 701 | { 702 | "name": "stryker", 703 | "link": "https://github.com/stryker-mutator/stryker", 704 | "label": "👶 Good first issue", 705 | "technologies": [ 706 | "JavaScript" 707 | ], 708 | "description": "The JavaScript mutation testing framework" 709 | }, 710 | { 711 | "name": "Reddit Enhancement Suite", 712 | "link": "https://github.com/honestbleeps/Reddit-Enhancement-Suite", 713 | "label": "help-wanted", 714 | "technologies": [ 715 | "JavaScript" 716 | ], 717 | "description": "A browser extension to enhance the Reddit browsing experience." 718 | }, 719 | { 720 | "name": "Brave Browser", 721 | "link": "https://github.com/brave/brave-browser", 722 | "label": "good first issue", 723 | "technologies": [ 724 | "JavaScript" 725 | ], 726 | "description": "Desktop browser for macOS, Windows, and Linux." 727 | }, 728 | { 729 | "name": "Fastify", 730 | "link": "https://github.com/fastify/fastify", 731 | "label": "good first issue", 732 | "technologies": [ 733 | "JavaScript" 734 | ], 735 | "description": "Fast and low overhead web framework, for Node.js." 736 | }, 737 | { 738 | "name": "Node.js core", 739 | "link": "https://github.com/nodejs/node", 740 | "label": "good first issue", 741 | "technologies": [ 742 | "JavaScript" 743 | ], 744 | "description": "JavaScript runtime built on Chrome's V8 JavaScript engine" 745 | }, 746 | { 747 | "name": "Jest", 748 | "link": "https://github.com/facebook/jest", 749 | "label": "good first issue", 750 | "technologies": [ 751 | "JavaScript" 752 | ], 753 | "description": "A complete and easy to set up JavaScript testing solution." 754 | }, 755 | { 756 | "name": "p5.js", 757 | "link": "https://github.com/processing/p5.js", 758 | "label": "good first issue", 759 | "technologies": [ 760 | "JavaScript" 761 | ], 762 | "description": "p5.js is a client-side JS platform that empowers artists, designers, students, and anyone to learn to code and express themselves creatively on the web." 763 | }, 764 | { 765 | "name": "NativeScript", 766 | "link": "https://github.com/NativeScript/NativeScript", 767 | "label": "good first issue", 768 | "technologies": [ 769 | "JavaScript" 770 | ], 771 | "description": "NativeScript is an open source framework for building truly native mobile apps with JavaScript. Use web skills, like Angular and Vue.js, FlexBox and CSS, and get native UI and performance on iOS and Android." 772 | }, 773 | { 774 | "name": "Gatsby.js", 775 | "link": "https://github.com/gatsbyjs/gatsby", 776 | "label": "good first issue", 777 | "technologies": [ 778 | "JavaScript" 779 | ], 780 | "description": "Build blazing fast, modern apps and websites with React." 781 | }, 782 | { 783 | "name": "Vue.js", 784 | "link": "https://github.com/vuejs/vue", 785 | "label": "good first issue", 786 | "technologies": [ 787 | "JavaScript" 788 | ], 789 | "description": "The Progressive JavaScript Framework." 790 | }, 791 | { 792 | "name": "Check It Out", 793 | "link": "https://github.com/jwu910/check-it-out", 794 | "label": "good first issue", 795 | "technologies": [ 796 | "JavaScript" 797 | ], 798 | "description": "Check It Out is an ncurses-like CLI to let the user interactively navigate and select a git branch to check out." 799 | }, 800 | { 801 | "name": "nuclear", 802 | "link": "https://github.com/nukeop/nuclear", 803 | "label": "good first issue", 804 | "technologies": [ 805 | "JavaScript" 806 | ], 807 | "description": "Multiplatform music player that streams from free sources." 808 | }, 809 | { 810 | "name": "material-ui", 811 | "link": "https://github.com/mui-org/material-ui", 812 | "label": "good first issue", 813 | "technologies": [ 814 | "JavaScript" 815 | ], 816 | "description": "React components for faster and easier web development. Build your own design system, or start with Material Design." 817 | }, 818 | { 819 | "name": "Meteor", 820 | "link": "https://github.com/meteor/meteor", 821 | "label": "good first issue", 822 | "technologies": [ 823 | "JavaScript" 824 | ], 825 | "description": "Meteor is an ultra-simple environment for building modern web applications." 826 | }, 827 | { 828 | "name": "Mocha", 829 | "link": "https://github.com/mochajs/mocha", 830 | "label": "good first issue", 831 | "technologies": [ 832 | "JavaScript" 833 | ], 834 | "description": "Javascript test framework for Node.js and the browser." 835 | }, 836 | { 837 | "name": "Babel", 838 | "link": "https://github.com/babel/babel", 839 | "label": "good first issue", 840 | "technologies": [ 841 | "JavaScript" 842 | ], 843 | "description": "A compiler for writing next generation JavaScript." 844 | }, 845 | { 846 | "name": "React-content-loader", 847 | "link": "https://github.com/danilowoz/create-content-loader", 848 | "label": "good first issue", 849 | "technologies": [ 850 | "JavaScript" 851 | ], 852 | "description": "Tool to create your own react-content-loader easily." 853 | }, 854 | { 855 | "name": "netlify-cms", 856 | "link": "https://github.com/netlify/netlify-cms", 857 | "label": "good first issue", 858 | "technologies": [ 859 | "JavaScript" 860 | ], 861 | "description": "Open source content management for your git workflow." 862 | }, 863 | { 864 | "name": "altair", 865 | "link": "https://github.com/imolorhe/altair", 866 | "label": "good first issue", 867 | "technologies": [ 868 | "JavaScript" 869 | ], 870 | "description": "A beautiful feature-rich GraphQL Client for all platforms." 871 | }, 872 | { 873 | "name": "Video Hub App", 874 | "link": "https://github.com/whyboris/Video-Hub-App", 875 | "label": "good first issue", 876 | "technologies": [ 877 | "JavaScript" 878 | ], 879 | "description": "Angular & Electron app for browsing and searching videos on your PC." 880 | }, 881 | { 882 | "name": "Ancient Beast", 883 | "link": "https://github.com/FreezingMoon/AncientBeast", 884 | "label": "easy", 885 | "technologies": [ 886 | "JavaScript" 887 | ], 888 | "description": "Turn based strategy game where you 3d print a squad of creatures with unique abilities in order to defeat your enemies." 889 | }, 890 | { 891 | "name": "ramda-adjunct", 892 | "link": "https://github.com/char0n/ramda-adjunct", 893 | "label": "help-wanted", 894 | "technologies": [ 895 | "JavaScript" 896 | ], 897 | "description": "Ramda Adjunct is the most popular and most comprehensive set of functional utilities for use with Ramda, providing a variety of useful, well tested functions with excellent documentation." 898 | }, 899 | { 900 | "name": "json-editor", 901 | "link": "https://github.com/json-editor/json-editor", 902 | "label": "good first issue", 903 | "technologies": [ 904 | "JavaScript" 905 | ], 906 | "description": "JSON Schema Based Editor. JSON Editor takes a JSON Schema and uses it to generate an HTML form. It has full support for JSON Schema version 3 and 4 and can integrate with several popular CSS frameworks (bootstrap, spectre, tailwind)." 907 | }, 908 | { 909 | "name": "Habitica", 910 | "link": "https://github.com/HabitRPG/habitica", 911 | "label": "good first issue", 912 | "technologies": [ 913 | "JavaScript" 914 | ], 915 | "description": "Habitica is a gamified task manager, webapp and android/ios app, really wonderful atmosphere. Guidance for contributing here (mongo, express, vue, node stack for webapp)" 916 | }, 917 | { 918 | "name": "reactjs.org", 919 | "link": "https://github.com/reactjs/reactjs.org", 920 | "label": "good first issue", 921 | "technologies": [ 922 | "JavaScript" 923 | ], 924 | "description": "The documentation website for reactjs" 925 | }, 926 | { 927 | "name": "Vest", 928 | "link": "https://github.com/ealush/vest", 929 | "label": "good first issue", 930 | "technologies": [ 931 | "JavaScript" 932 | ], 933 | "description": "Validations framework inspired by unit testing frameworks." 934 | }, 935 | { 936 | "name": "Hoppscotch", 937 | "link": "https://github.com/hoppscotch/hoppscotch", 938 | "label": "good first issue", 939 | "technologies": [ 940 | "JavaScript" 941 | ], 942 | "description": "A free, fast and beautiful API request builder." 943 | }, 944 | { 945 | "name": "Predator", 946 | "link": "https://github.com/Zooz/predator", 947 | "label": "good first issue", 948 | "technologies": [ 949 | "JavaScript" 950 | ], 951 | "description": "A powerful open-source platform for load testing APIs." 952 | }, 953 | { 954 | "name": "OpenCalc", 955 | "link": "https://github.com/Darkempire78/OpenCalc", 956 | "label": "good first issue", 957 | "technologies": [ 958 | "Kotlin" 959 | ], 960 | "description": "A simple and beautiful calculator for Android." 961 | }, 962 | { 963 | "name": "Time to Leave", 964 | "link": "https://github.com/thamara/time-to-leave", 965 | "label": "good first issue", 966 | "technologies": [ 967 | "JavaScript" 968 | ], 969 | "description": "Working hours time tracker app based on Electron and Javascript." 970 | }, 971 | { 972 | "name": "cypress", 973 | "link": "https://github.com/cypress-io/cypress", 974 | "label": "good first issue", 975 | "technologies": [ 976 | "JavaScript" 977 | ], 978 | "description": "Fast, easy and reliable testing for anything that runs in a browser." 979 | }, 980 | { 981 | "name": "Vue Router", 982 | "link": "https://github.com/vuejs/vue-router", 983 | "label": "good first issue", 984 | "technologies": [ 985 | "JavaScript" 986 | ], 987 | "description": "The official router for Vue.js." 988 | }, 989 | { 990 | "name": "VuePress", 991 | "link": "https://github.com/vuejs/vuepress", 992 | "label": "good first issue", 993 | "technologies": [ 994 | "JavaScript" 995 | ], 996 | "description": "Minimalistic Vue-powered static site generator" 997 | }, 998 | { 999 | "name": "appsmith", 1000 | "link": "https://github.com/appsmithorg/appsmith", 1001 | "label": "good first issue", 1002 | "technologies": [ 1003 | "JavaScript" 1004 | ], 1005 | "description": "Drag & Drop internal tool builder" 1006 | }, 1007 | { 1008 | "name": "Jasmine", 1009 | "link": "https://github.com/jasmine/jasmine", 1010 | "label": "good first issue", 1011 | "technologies": [ 1012 | "JavaScript" 1013 | ], 1014 | "description": "Simple JavaScript testing framework for browsers and node.js." 1015 | }, 1016 | { 1017 | "name": "swag-for-dev", 1018 | "link": "https://github.com/swapagarwal/swag-for-dev", 1019 | "label": "good first issue", 1020 | "technologies": [ 1021 | "JavaScript" 1022 | ], 1023 | "description": "Swag opportunities for developers." 1024 | }, 1025 | { 1026 | "name": "webdriver.io", 1027 | "link": "https://github.com/webdriverio/webdriverio", 1028 | "label": "first-timers-only", 1029 | "technologies": [ 1030 | "JavaScript" 1031 | ], 1032 | "description": "Next-gen browser and mobile automation test framework for Node.js" 1033 | }, 1034 | { 1035 | "name": "ReactiveSearch", 1036 | "link": "https://github.com/appbaseio/reactivesearch", 1037 | "label": "good first issue-:wave:", 1038 | "technologies": [ 1039 | "JavaScript" 1040 | ], 1041 | "description": "A UI components library for Elasticsearch: Available for React, Vue and React Native." 1042 | }, 1043 | { 1044 | "name": "Create React App", 1045 | "link": "https://github.com/facebook/create-react-app", 1046 | "label": "good first issue", 1047 | "technologies": [ 1048 | "JavaScript" 1049 | ], 1050 | "description": "Create React apps with no build configuration." 1051 | }, 1052 | { 1053 | "name": "Svelte", 1054 | "link": "https://github.com/sveltejs/svelte", 1055 | "label": "good first issue", 1056 | "technologies": [ 1057 | "JavaScript" 1058 | ], 1059 | "description": "Component framework that runs at build time, converting your components into highly efficient imperative code that surgically updates the DOM." 1060 | }, 1061 | { 1062 | "name": "Devopness", 1063 | "link": "https://github.com/devopness/devopness", 1064 | "label": "good first issue", 1065 | "technologies": [ 1066 | "Python", 1067 | "TypeScript" 1068 | ], 1069 | "description": "Deploy any software to any cloud: automated DevOps workflows to save software teams time and money." 1070 | }, 1071 | { 1072 | "name": "Julia Language: Help wanted", 1073 | "link": "https://github.com/JuliaLang/julia", 1074 | "label": "help-wanted", 1075 | "technologies": [ 1076 | "Julia" 1077 | ], 1078 | "description": "\"Move like Python, Run like C\" - A fresh approach to technical computing!" 1079 | }, 1080 | { 1081 | "name": "Julia Language: Good first issue", 1082 | "link": "https://github.com/JuliaLang/julia", 1083 | "label": "good first issue", 1084 | "technologies": [ 1085 | "Julia" 1086 | ], 1087 | "description": "\"Move like Python, Run like C\" - A fresh approach to technical computing!" 1088 | }, 1089 | { 1090 | "name": "Julia", 1091 | "link": "https://github.com/JuliaLang/julia", 1092 | "label": "good first issue", 1093 | "technologies": [ 1094 | "Julia" 1095 | ], 1096 | "description": "Julia Projects for Beginners — Easy Ideas to Get Started Coding in Julia" 1097 | }, 1098 | { 1099 | "name": "Atrium", 1100 | "link": "https://github.com/robstoll/atrium", 1101 | "label": "good first issue", 1102 | "technologies": [ 1103 | "Kotlin" 1104 | ], 1105 | "description": "Multiplatform assertion library for Kotlin" 1106 | }, 1107 | { 1108 | "name": "Hexagon", 1109 | "link": "https://github.com/hexagonkt/hexagon", 1110 | "label": "help-wanted", 1111 | "technologies": [ 1112 | "Kotlin" 1113 | ], 1114 | "description": "A microservices toolkit written in Kotlin" 1115 | }, 1116 | { 1117 | "name": "Scribe-Android", 1118 | "link": "https://github.com/scribe-org/Scribe-Android", 1119 | "label": "good first issue", 1120 | "technologies": [ 1121 | "Kotlin" 1122 | ], 1123 | "description": "Android keyboards for language learners with translation, verb conjugation and more!" 1124 | }, 1125 | { 1126 | "name": "Non-Blocking SirixDB HTTP(S)-Server", 1127 | "link": "https://github.com/sirixdb/sirix", 1128 | "label": "good first issue", 1129 | "technologies": [ 1130 | "Kotlin" 1131 | ], 1132 | "description": "A non-blocking HTTP(S)-Server for SirixDB, a temporal, evolutionary NoSQL document store for XML and JSON." 1133 | }, 1134 | { 1135 | "name": "tldr-pages", 1136 | "link": "https://github.com/tldr-pages/tldr", 1137 | "label": "help-wanted", 1138 | "technologies": [ 1139 | "Markdown" 1140 | ], 1141 | "description": "Collaborative cheatsheets for console commands." 1142 | }, 1143 | { 1144 | "name": "Ravada", 1145 | "link": "https://github.com/UPC/ravada", 1146 | "label": "good first issue", 1147 | "technologies": [ 1148 | "Perl" 1149 | ], 1150 | "description": "Remote Virtual Desktops Manager." 1151 | }, 1152 | { 1153 | "name": "phpMyAdmin", 1154 | "link": "https://github.com/phpmyadmin/phpmyadmin", 1155 | "label": "newbie", 1156 | "technologies": [ 1157 | "PHP" 1158 | ], 1159 | "description": "Admin interface for MySQL written in PHP." 1160 | }, 1161 | { 1162 | "name": "Deployer", 1163 | "link": "https://github.com/deployphp/deployer", 1164 | "label": "good-for-beginner", 1165 | "technologies": [ 1166 | "PHP" 1167 | ], 1168 | "description": "A deployment tool written in PHP with support for popular frameworks out of the box." 1169 | }, 1170 | { 1171 | "name": "Matomo", 1172 | "link": "https://github.com/matomo-org/matomo", 1173 | "label": "help-wanted", 1174 | "technologies": [ 1175 | "PHP" 1176 | ], 1177 | "description": "Matomo is the leading Free/Libre open analytics platform." 1178 | }, 1179 | { 1180 | "name": "OrgManager", 1181 | "link": "https://github.com/orgmanager/orgmanager", 1182 | "label": "beginners-only", 1183 | "technologies": [ 1184 | "PHP" 1185 | ], 1186 | "description": "Supercharge your GitHub organizations!" 1187 | }, 1188 | { 1189 | "name": "PHP Censor", 1190 | "link": "https://github.com/php-censor/php-censor", 1191 | "label": "good-for-beginner", 1192 | "technologies": [ 1193 | "PHP" 1194 | ], 1195 | "description": "Open source self-hosted continuous integration server for PHP projects." 1196 | }, 1197 | { 1198 | "name": "Drupal", 1199 | "link": "https://www.drupal.org/getting-involved-guide", 1200 | "technologies": [ 1201 | "PHP" 1202 | ], 1203 | "description": "Leading open-source CMS for ambitious digital experiences that reach your audience across multiple channels." 1204 | }, 1205 | { 1206 | "name": "Symfony", 1207 | "link": "https://github.com/symfony/symfony", 1208 | "label": "good first issue", 1209 | "technologies": [ 1210 | "PHP" 1211 | ], 1212 | "description": "Symfony is a PHP framework for web applications and a set of reusable PHP components." 1213 | }, 1214 | { 1215 | "name": "Laravel Newsletters", 1216 | "link": "https://github.com/spatie/laravel-newsletter", 1217 | "label": "good first issue", 1218 | "technologies": [ 1219 | "PHP" 1220 | ], 1221 | "description": "A package that provides an easy way to integrate MailChimp with Laravel 5." 1222 | }, 1223 | { 1224 | "name": "Appwrite", 1225 | "link": "https://github.com/appwrite/appwrite", 1226 | "label": "good first issue", 1227 | "technologies": [ 1228 | "PHP" 1229 | ], 1230 | "description": "An End-to-end backend server for frontend and mobile developers. 🚀" 1231 | }, 1232 | { 1233 | "name": "FreshRSS", 1234 | "link": "https://github.com/FreshRSS/FreshRSS", 1235 | "label": "good first issue", 1236 | "technologies": [ 1237 | "PHP" 1238 | ], 1239 | "description": "FreshRSS is a self-hosted RSS and Atom feed aggregator. It is lightweight, easy to work with, powerful, and customizable. Since 2012." 1240 | }, 1241 | { 1242 | "name": "NextCloud Server", 1243 | "link": "https://github.com/nextcloud/server", 1244 | "label": "good first issue", 1245 | "technologies": [ 1246 | "PHP" 1247 | ], 1248 | "description": "Nextcloud server, a safe home for all your data." 1249 | }, 1250 | { 1251 | "name": "PrestaShop", 1252 | "link": "https://github.com/PrestaShop/PrestaShop", 1253 | "label": "good first issue", 1254 | "technologies": [ 1255 | "PHP" 1256 | ], 1257 | "description": "The open source ecommerce solution to start your online business and start selling online." 1258 | }, 1259 | { 1260 | "name": "Flarum", 1261 | "link": "https://github.com/flarum/core", 1262 | "label": "Good-first-issue", 1263 | "technologies": [ 1264 | "PHP" 1265 | ], 1266 | "description": "Simple forum software for building great communities." 1267 | }, 1268 | { 1269 | "name": "MediaWiki", 1270 | "link": "https://phabricator.wikimedia.org/maniphest/query/4Q5_qR51u_oz/#R", 1271 | "technologies": [ 1272 | "PHP" 1273 | ], 1274 | "description": "The free and open-source wiki software package that powers Wikipedia." 1275 | }, 1276 | { 1277 | "name": "PyMC", 1278 | "link": "https://github.com/pymc-devs/pymc", 1279 | "label": "beginner friendly", 1280 | "technologies": [ 1281 | "Python" 1282 | ], 1283 | "description": "A Python library for Bayesian statistical modeling and probabilistic machine learning. Beginner-friendly with 'good first issue' labels." 1284 | }, 1285 | { 1286 | "name": "CiviWiki", 1287 | "link": "https://github.com/CiviWiki/OpenCiviWiki", 1288 | "label": "good first issue", 1289 | "technologies": [ 1290 | "Python" 1291 | ], 1292 | "description": "Building a Better Democracy for the Internet Age" 1293 | }, 1294 | { 1295 | "name": "Python Babel", 1296 | "link": "https://github.com/python-babel/babel", 1297 | "label": "difficulty/low", 1298 | "technologies": [ 1299 | "Python" 1300 | ], 1301 | "description": "The Python Internationalization Library." 1302 | }, 1303 | { 1304 | "name": "Kinto", 1305 | "link": "https://github.com/Kinto/kinto", 1306 | "label": "easy-pick", 1307 | "technologies": [ 1308 | "Python" 1309 | ], 1310 | "description": "A lightweight JSON storage service with synchronisation and sharing abilities." 1311 | }, 1312 | { 1313 | "name": "BorgBackup", 1314 | "link": "https://github.com/borgbackup/borg", 1315 | "label": "easy", 1316 | "technologies": [ 1317 | "Python" 1318 | ], 1319 | "description": "Deduplicating backup program with compression and authenticated encryption." 1320 | }, 1321 | { 1322 | "name": "scrapy", 1323 | "link": "https://github.com/scrapy/scrapy", 1324 | "label": "good first issue", 1325 | "technologies": [ 1326 | "Python" 1327 | ], 1328 | "description": "A fast high-level web crawling & scraping framework for Python." 1329 | }, 1330 | { 1331 | "name": "mitmproxy", 1332 | "link": "https://github.com/mitmproxy/mitmproxy", 1333 | "label": "help-wanted", 1334 | "technologies": [ 1335 | "Python" 1336 | ], 1337 | "description": "An interactive TLS-capable intercepting HTTP proxy for penetration testers and software developers" 1338 | }, 1339 | { 1340 | "name": "jarvis", 1341 | "link": "https://github.com/sukeesh/Jarvis", 1342 | "label": "difficulty/newcomer", 1343 | "technologies": [ 1344 | "Python" 1345 | ], 1346 | "description": "A personal assistant for Linux, MacOs and Windows based on Command line Interface." 1347 | }, 1348 | { 1349 | "name": "Pytest", 1350 | "link": "https://github.com/pytest-dev/pytest", 1351 | "label": "status:-easy", 1352 | "technologies": [ 1353 | "Python" 1354 | ], 1355 | "description": "The pytest framework makes it easy to write small tests, yet scales to support complex functional testing." 1356 | }, 1357 | { 1358 | "name": "Fabric", 1359 | "link": "https://github.com/fabric/fabric", 1360 | "label": "Low-hanging-fruit", 1361 | "technologies": [ 1362 | "Python" 1363 | ], 1364 | "description": "Pythonic remote execution and deployment." 1365 | }, 1366 | { 1367 | "name": "Jupyter notebook", 1368 | "link": "https://github.com/jupyter/notebook", 1369 | "label": "good first issue", 1370 | "technologies": [ 1371 | "Python" 1372 | ], 1373 | "description": "Jupyter interactive notebook." 1374 | }, 1375 | { 1376 | "name": "Zulip", 1377 | "link": "https://github.com/zulip/zulip", 1378 | "label": "good first issue", 1379 | "technologies": [ 1380 | "Python" 1381 | ], 1382 | "description": "Powerful open source group chat." 1383 | }, 1384 | { 1385 | "name": "cookiecutter", 1386 | "link": "https://github.com/cookiecutter/cookiecutter", 1387 | "label": "good first issue", 1388 | "technologies": [ 1389 | "Python" 1390 | ], 1391 | "description": "A command-line utility that creates projects from cookiecutters (project templates). E.g. Python package projects, jQuery plugin projects." 1392 | }, 1393 | { 1394 | "name": "django cookiecutter", 1395 | "link": "https://github.com/pydanny/cookiecutter-django", 1396 | "label": "hacktoberfest", 1397 | "technologies": [ 1398 | "Python" 1399 | ], 1400 | "description": "An implementation of Python for backend web development." 1401 | }, 1402 | { 1403 | "name": "wemake-python-styleguide", 1404 | "link": "https://github.com/wemake-services/wemake-python-styleguide", 1405 | "label": "level:starter", 1406 | "technologies": [ 1407 | "Python" 1408 | ], 1409 | "description": "The strictest and most opinionated python linter ever!" 1410 | }, 1411 | { 1412 | "name": "Ansible", 1413 | "link": "https://github.com/ansible/ansible", 1414 | "label": "easyfix", 1415 | "technologies": [ 1416 | "Python" 1417 | ], 1418 | "description": "A simple IT automation platform" 1419 | }, 1420 | { 1421 | "name": "opsdroid", 1422 | "link": "https://github.com/opsdroid/opsdroid", 1423 | "label": "good first issue", 1424 | "technologies": [ 1425 | "Python" 1426 | ], 1427 | "description": "An open source chat-ops bot framework." 1428 | }, 1429 | { 1430 | "name": "pandas", 1431 | "link": "https://github.com/pandas-dev/pandas", 1432 | "label": "good first issue", 1433 | "technologies": [ 1434 | "Python" 1435 | ], 1436 | "description": "Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more" 1437 | }, 1438 | { 1439 | "name": "SaltStack", 1440 | "link": "https://github.com/saltstack/salt", 1441 | "label": "good first issue", 1442 | "technologies": [ 1443 | "Python" 1444 | ], 1445 | "description": "Software to automate the management and configuration of any infrastructure or application at scale." 1446 | }, 1447 | { 1448 | "name": "mygpo", 1449 | "link": "https://github.com/gpodder/mygpo", 1450 | "label": "starter-issue", 1451 | "technologies": [ 1452 | "Python" 1453 | ], 1454 | "description": "The webservice for gpodder.net, a libre web service that allows users to manage their podcast subscriptions and discover new content." 1455 | }, 1456 | { 1457 | "name": "mypy", 1458 | "link": "https://github.com/python/mypy", 1459 | "label": "good first issue", 1460 | "technologies": [ 1461 | "Python" 1462 | ], 1463 | "description": "Optional static typing for Python." 1464 | }, 1465 | { 1466 | "name": "matplotlib", 1467 | "link": "https://github.com/matplotlib/matplotlib", 1468 | "label": "good first issue", 1469 | "technologies": [ 1470 | "Python" 1471 | ], 1472 | "description": "Matplotlib is a comprehensive library for creating static, animated, and interactive visualizations in Python." 1473 | }, 1474 | { 1475 | "name": "datascience", 1476 | "link": "https://github.com/data-8/datascience", 1477 | "label": "good first issue", 1478 | "technologies": [ 1479 | "Python" 1480 | ], 1481 | "description": "A Jupyter notebook Python library for introductory data science." 1482 | }, 1483 | { 1484 | "name": "ArviZ", 1485 | "link": "https://github.com/arviz-devs/arviz", 1486 | "label": "Beginner", 1487 | "technologies": [ 1488 | "Python" 1489 | ], 1490 | "description": "Exploratory Analysis of Bayesian Models." 1491 | }, 1492 | { 1493 | "name": "MindsDB", 1494 | "link": "https://github.com/mindsdb/mindsdb", 1495 | "label": "good first issue", 1496 | "technologies": [ 1497 | "Python" 1498 | ], 1499 | "description": "MindsDB is an open source AI layer for existing databases." 1500 | }, 1501 | { 1502 | "name": "Bokeh", 1503 | "link": "https://github.com/bokeh/bokeh", 1504 | "label": "good first issue", 1505 | "technologies": [ 1506 | "Python" 1507 | ], 1508 | "description": "Bokeh is an interactive visualization library for modern web browsers." 1509 | }, 1510 | { 1511 | "name": "SymPy", 1512 | "link": "https://github.com/sympy/sympy", 1513 | "label": "Easy-to-Fix", 1514 | "technologies": [ 1515 | "Python" 1516 | ], 1517 | "description": "A Python library for symbolic mathematics." 1518 | }, 1519 | { 1520 | "name": "Pytorch", 1521 | "link": "https://github.com/pytorch/pytorch", 1522 | "label": "good first issue", 1523 | "technologies": [ 1524 | "Python" 1525 | ], 1526 | "description": "PyTorch is an open source machine learning library based on the Torch library, used for applications such as computer vision and natural language processing." 1527 | }, 1528 | { 1529 | "name": "scikit-learn", 1530 | "link": "https://github.com/scikit-learn/scikit-learn", 1531 | "label": "good first issue", 1532 | "technologies": [ 1533 | "Python" 1534 | ], 1535 | "description": "Scikit-learn is a machine learning library for Python." 1536 | }, 1537 | { 1538 | "name": "Embedchain", 1539 | "link": "https://github.com/embedchain/embedchain/", 1540 | "label": "good first issue", 1541 | "technologies": [ 1542 | "Python" 1543 | ], 1544 | "description": "Embedchain is a framework to easily create LLM powered bots over any dataset." 1545 | }, 1546 | { 1547 | "name": "JRuby", 1548 | "link": "https://github.com/jruby/jruby", 1549 | "label": "beginner", 1550 | "technologies": [ 1551 | "Ruby" 1552 | ], 1553 | "description": "An implementation of Ruby on the Java Virtual Machine." 1554 | }, 1555 | { 1556 | "name": "Sinatra", 1557 | "link": "https://github.com/sinatra/sinatra", 1558 | "label": "good first issue", 1559 | "technologies": [ 1560 | "Ruby" 1561 | ], 1562 | "description": "Classy web-development dressed in a DSL." 1563 | }, 1564 | { 1565 | "name": "Hanami", 1566 | "link": "https://github.com/hanami/hanami", 1567 | "label": "easy", 1568 | "technologies": [ 1569 | "Ruby" 1570 | ], 1571 | "description": "A modern framework for Ruby." 1572 | }, 1573 | { 1574 | "name": "chef", 1575 | "link": "https://github.com/chef/chef", 1576 | "label": "Type:-Jump-In", 1577 | "technologies": [ 1578 | "Ruby" 1579 | ], 1580 | "description": "A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure" 1581 | }, 1582 | { 1583 | "name": "ohai", 1584 | "link": "https://github.com/chef/ohai", 1585 | "label": "Type:-Jump-In", 1586 | "technologies": [ 1587 | "Ruby" 1588 | ], 1589 | "description": "Ohai profiles your system and emits JSON" 1590 | }, 1591 | { 1592 | "name": "PublicLab.org", 1593 | "link": "https://github.com/publiclab/plots2", 1594 | "label": "first-timers-only", 1595 | "technologies": [ 1596 | "Ruby" 1597 | ], 1598 | "description": "An open source publishing platform for environmental projects. Check out new contributors welcome page." 1599 | }, 1600 | { 1601 | "name": "osem", 1602 | "link": "https://github.com/openSUSE/osem", 1603 | "label": "good first issue", 1604 | "technologies": [ 1605 | "Ruby" 1606 | ], 1607 | "description": "Open Source Event Manager. An event management tool tailored to Free and Open Source Software conferences" 1608 | }, 1609 | { 1610 | "name": "open-build-service", 1611 | "link": "https://github.com/openSUSE/open-build-service", 1612 | "label": "good first issue-:1st_place_medal:", 1613 | "technologies": [ 1614 | "Ruby" 1615 | ], 1616 | "description": "A generic system to build and distribute packages from sources in an automatic, consistent and reproducible way." 1617 | }, 1618 | { 1619 | "name": "bolt", 1620 | "link": "https://github.com/puppetlabs/bolt", 1621 | "label": "Beginner-Friendly", 1622 | "technologies": [ 1623 | "Ruby" 1624 | ], 1625 | "description": "Bolt is a Ruby command-line tool for executing commands, scripts, and tasks on remote systems using SSH and WinRM." 1626 | }, 1627 | { 1628 | "name": "chatwoot", 1629 | "link": "https://github.com/chatwoot/chatwoot", 1630 | "label": "good first issue", 1631 | "technologies": [ 1632 | "Ruby" 1633 | ], 1634 | "description": "Opensource customer support platform which can be an alternative to Intercom, Zendesk, Drift, Crisp etc." 1635 | }, 1636 | { 1637 | "name": "mapknitter", 1638 | "link": "https://github.com/publiclab/mapknitter", 1639 | "label": "first-timers-only", 1640 | "technologies": [ 1641 | "Ruby" 1642 | ], 1643 | "description": "Upload your own aerial images, position (rubbersheet) them in a web interface over existing map data, and share via web or composite and export for print." 1644 | }, 1645 | { 1646 | "name": "multiwoven", 1647 | "link": "https://github.com/Multiwoven/multiwoven", 1648 | "label": "good first issue", 1649 | "technologies": [ 1650 | "Ruby" 1651 | ], 1652 | "description": "The open-source reverse ETL, data activation platform for modern data teams." 1653 | }, 1654 | { 1655 | "name": "Ruby on Rails", 1656 | "link": "https://github.com/rails/rails", 1657 | "label": "good first issue", 1658 | "technologies": [ 1659 | "Ruby" 1660 | ], 1661 | "description": "Ruby on Rails (Rails) is an open source web application framework written in Ruby." 1662 | }, 1663 | { 1664 | "name": "Servo", 1665 | "link": "https://github.com/servo/servo", 1666 | "label": "E-easy", 1667 | "technologies": [ 1668 | "Rust" 1669 | ], 1670 | "description": "A browser engine designed for applications including embedded use." 1671 | }, 1672 | { 1673 | "name": "Rust-Clippy", 1674 | "link": "https://github.com/rust-lang/rust-clippy", 1675 | "label": "good first issue", 1676 | "technologies": [ 1677 | "Rust" 1678 | ], 1679 | "description": "A bunch of lints to catch common mistakes and improve Rust code" 1680 | }, 1681 | { 1682 | "name": "Rustfmt", 1683 | "link": "https://github.com/rust-lang-nursery/rustfmt", 1684 | "label": "good first issue", 1685 | "technologies": [ 1686 | "Rust" 1687 | ], 1688 | "description": "A tool for formatting Rust code according to style guidelines." 1689 | }, 1690 | { 1691 | "name": "TensorZero", 1692 | "link": "https://github.com/tensorzero/tensorzero", 1693 | "label": "good-first-issue", 1694 | "technologies": [ 1695 | "Rust" 1696 | ], 1697 | "description": "TensorZero creates a feedback loop for optimizing LLM applications — turning production data into smarter, faster, and cheaper models." 1698 | }, 1699 | { 1700 | "name": "TiKV", 1701 | "link": "https://github.com/tikv/tikv", 1702 | "label": "difficulty/easy", 1703 | "technologies": [ 1704 | "Rust" 1705 | ], 1706 | "description": "A distributed transactional key-value database" 1707 | }, 1708 | { 1709 | "name": "nushell", 1710 | "link": "https://github.com/nushell/nushell", 1711 | "label": "good first issue", 1712 | "technologies": [ 1713 | "Rust" 1714 | ], 1715 | "description": "A modern shell for the GitHub era written in Rust." 1716 | }, 1717 | { 1718 | "name": "Hyper", 1719 | "link": "https://github.com/hyperium/hyper", 1720 | "label": "E-easy", 1721 | "technologies": [ 1722 | "Rust" 1723 | ], 1724 | "description": "A fast, safe and correct low-level HTTP library for Rust." 1725 | }, 1726 | { 1727 | "name": "dotenv-linter", 1728 | "link": "https://github.com/dotenv-linter/dotenv-linter", 1729 | "label": "good first issue", 1730 | "technologies": [ 1731 | "Rust" 1732 | ], 1733 | "description": "Lightning-fast linter for .env files. Written in Rust" 1734 | }, 1735 | { 1736 | "name": "Veloren", 1737 | "link": "https://gitlab.com/veloren/veloren", 1738 | "technologies": [ 1739 | "Rust" 1740 | ], 1741 | "description": "Veloren is a multiplayer voxel RPG written in Rust." 1742 | }, 1743 | { 1744 | "name": "Sniffnet", 1745 | "link": "https://github.com/GyulyVGC/sniffnet", 1746 | "label": "good first issue", 1747 | "technologies": [ 1748 | "Rust" 1749 | ], 1750 | "description": "Application to comfortably monitor network traffic." 1751 | }, 1752 | { 1753 | "name": "Twitter Util", 1754 | "link": "https://github.com/twitter/util", 1755 | "label": "good first issue", 1756 | "technologies": [ 1757 | "Scala" 1758 | ], 1759 | "description": "Wonderful reusable code from Twitter" 1760 | }, 1761 | { 1762 | "name": "playframework", 1763 | "link": "https://github.com/playframework/playframework", 1764 | "label": "good first issue", 1765 | "technologies": [ 1766 | "Scala" 1767 | ], 1768 | "description": "The High Velocity Web Framework" 1769 | }, 1770 | { 1771 | "name": "Pharo", 1772 | "link": "https://github.com/pharo-project/pharo", 1773 | "label": "good first issue", 1774 | "technologies": [ 1775 | "Smalltalk" 1776 | ], 1777 | "description": "A dynamic reflective pure object-oriented language supporting live programming inspired by Smalltalk." 1778 | }, 1779 | { 1780 | "name": "OpenFoodFacts", 1781 | "link": "https://github.com/openfoodfacts/smooth-app", 1782 | "label": "good first issue", 1783 | "technologies": [ 1784 | "Dart" 1785 | ], 1786 | "description": "Collaborative, free and open database of food products from around the world. Scan barcode to get info or add a product" 1787 | }, 1788 | { 1789 | "name": "Basic-Car-Maintenance", 1790 | "link": "https://github.com/mikaelacaron/Basic-Car-Maintenance", 1791 | "label": "good first issue", 1792 | "technologies": [ 1793 | "Swift" 1794 | ], 1795 | "description": "A basic app to track your car's maintenance events, like fixes, oil changes, etc." 1796 | }, 1797 | { 1798 | "name": "TypeScript", 1799 | "link": "https://github.com/Microsoft/TypeScript", 1800 | "label": "good first issue", 1801 | "technologies": [ 1802 | "TypeScript" 1803 | ], 1804 | "description": "A superset of JavaScript that compiles to clean JavaScript output." 1805 | }, 1806 | { 1807 | "name": "Visual Studio Code", 1808 | "link": "https://github.com/Microsoft/vscode", 1809 | "label": "good first issue", 1810 | "technologies": [ 1811 | "TypeScript" 1812 | ], 1813 | "description": "A code editor redefined and optimized for building and debugging modern web and cloud applications." 1814 | }, 1815 | { 1816 | "name": "Impler.io", 1817 | "link": "https://github.com/implerhq/impler.io", 1818 | "label": "good first issue", 1819 | "technologies": [ 1820 | "TypeScript" 1821 | ], 1822 | "description": "100% open source data import experience with readymade CSV & Excel import widget 🚀" 1823 | }, 1824 | { 1825 | "name": "reatom", 1826 | "link": "https://github.com/artalar/reatom", 1827 | "label": "good first issue", 1828 | "technologies": [ 1829 | "TypeScript" 1830 | ], 1831 | "description": "Reatom is declarative and reactive state manager, designed for both simple and complex applications." 1832 | }, 1833 | { 1834 | "name": "Graphback", 1835 | "link": "https://github.com/aerogear/graphback", 1836 | "label": "good first issue", 1837 | "technologies": [ 1838 | "TypeScript" 1839 | ], 1840 | "description": "A CLI and runtime framework to generate a GraphQL API in seconds." 1841 | }, 1842 | { 1843 | "name": "LitmusChaos", 1844 | "link": "https://github.com/litmuschaos/litmus", 1845 | "label": "good first issue", 1846 | "technologies": [ 1847 | "TypeScript" 1848 | ], 1849 | "description": "Litmus is a toolset to do cloud-native chaos engineering." 1850 | }, 1851 | { 1852 | "name": "Booster", 1853 | "link": "https://github.com/boostercloud/booster", 1854 | "label": "good first issue", 1855 | "technologies": [ 1856 | "TypeScript" 1857 | ], 1858 | "description": "A truly serverless framework, write your code and deploy it in seconds without any server configuration files." 1859 | }, 1860 | { 1861 | "name": "tinyhttp", 1862 | "link": "https://github.com/talentlessguy/tinyhttp", 1863 | "label": "good first issue", 1864 | "technologies": [ 1865 | "TypeScript" 1866 | ], 1867 | "description": "A 0-legacy, tiny & fast web framework as a replacement of Express." 1868 | }, 1869 | { 1870 | "name": "a-b-street", 1871 | "link": "https://github.com/a-b-street/abstreet", 1872 | "label": "good first issue", 1873 | "technologies": [ 1874 | "Rust" 1875 | ], 1876 | "description": "Transportation planning and traffic simulation software for creating cities friendlier to walking, biking, and public transit." 1877 | }, 1878 | { 1879 | "name": "typescript-eslint", 1880 | "link": "https://github.com/typescript-eslint/typescript-eslint", 1881 | "label": "good first issue", 1882 | "technologies": [ 1883 | "TypeScript" 1884 | ], 1885 | "description": "Monorepo for all the tooling which enables ESLint to support TypeScript." 1886 | }, 1887 | { 1888 | "name": "Colossal-AI", 1889 | "link": "https://github.com/hpcaitech/ColossalAI", 1890 | "label": "good first issue", 1891 | "technologies": [ 1892 | "Python" 1893 | ], 1894 | "description": "An open-source deep learning system for large-scale model training and inference with high efficiency and low cost." 1895 | }, 1896 | { 1897 | "name": "Amplication", 1898 | "link": "https://github.com/amplication/amplication", 1899 | "label": "good first issue", 1900 | "technologies": [ 1901 | "TypeScript" 1902 | ], 1903 | "description": "Amplication is an open-source development tool. It helps you develop quality Node.js applications without spending time on repetitive coding tasks." 1904 | }, 1905 | { 1906 | "name": "flutter", 1907 | "link": "https://github.com/flutter/flutter", 1908 | "label": "good first issue", 1909 | "technologies": [ 1910 | "Dart" 1911 | ], 1912 | "description": "Flutter is Google's UI toolkit for building beautiful, natively compiled applications for mobile, web, desktop, and embedded devices from a single codebase." 1913 | }, 1914 | { 1915 | "name": "Profanity", 1916 | "link": "https://github.com/profanity-im/profanity", 1917 | "label": "good first issue", 1918 | "technologies": [ 1919 | "C" 1920 | ], 1921 | "description": "Ncurses XMPP chat client." 1922 | }, 1923 | { 1924 | "name": "Superalgos", 1925 | "link": "https://github.com/Superalgos/Superalgos", 1926 | "label": "good first issue", 1927 | "technologies": [ 1928 | "JavaScript" 1929 | ], 1930 | "description": "A completely Open Source crypto trading bot rewarding good contributions with the SA(Superalgos)-Token." 1931 | }, 1932 | { 1933 | "name": "Ockam", 1934 | "link": "https://github.com/ockam-network/ockam", 1935 | "label": "good first issue", 1936 | "technologies": [ 1937 | "Rust" 1938 | ], 1939 | "description": "End-to-end encryption and mutual authentication for distributed applications." 1940 | }, 1941 | { 1942 | "name": "H2O Wave", 1943 | "link": "https://github.com/h2oai/wave", 1944 | "label": "good first issue", 1945 | "technologies": [ 1946 | "Python", 1947 | "TypeScript" 1948 | ], 1949 | "description": "Realtime Web Apps and Dashboards framework for Python and R. Suited (not only) for AI audience." 1950 | }, 1951 | { 1952 | "name": "H2O Wave Apps", 1953 | "link": "https://github.com/h2oai/wave-apps", 1954 | "label": "hacktoberfest", 1955 | "technologies": [ 1956 | "Python" 1957 | ], 1958 | "description": "Sample AI Apps built with H2O Wave." 1959 | }, 1960 | { 1961 | "name": "OpenMetadata", 1962 | "link": "https://github.com/open-metadata/OpenMetadata", 1963 | "label": "good first issue", 1964 | "technologies": [ 1965 | "Python", 1966 | "TypeScript", 1967 | "Java" 1968 | ], 1969 | "description": "OpenMetadata is an all-in-one platform for data discovery, data quality, observability, governance, data lineage, and team collaboration." 1970 | }, 1971 | { 1972 | "name": "Hasura GraphQL Engine", 1973 | "link": "https://github.com/hasura/graphql-engine", 1974 | "label": "good first issue", 1975 | "technologies": [ 1976 | "Haskell", 1977 | "TypeScript" 1978 | ], 1979 | "description": "Blazing fast, instant realtime GraphQL APIs on Postgres with fine grained access control, also trigger webhooks on database events." 1980 | }, 1981 | { 1982 | "name": "Legerity", 1983 | "link": "https://github.com/MADE-Apps/legerity", 1984 | "label": "good first issue", 1985 | "technologies": [ 1986 | ".NET" 1987 | ], 1988 | "description": "A framework for speeding up the development of automated UI tests for Windows, Android, iOS, and Web with Appium/Selenium on .NET." 1989 | }, 1990 | { 1991 | "name": "Legerity for Uno Platform", 1992 | "link": "https://github.com/MADE-Apps/legerity-uno", 1993 | "label": "good first issue", 1994 | "technologies": [ 1995 | ".NET" 1996 | ], 1997 | "description": "An extension framework to Legerity for speeding up the development of automated UI tests for Uno Platform applications with Appium/Selenium on .NET." 1998 | }, 1999 | { 2000 | "name": "OMRChecker", 2001 | "link": "https://github.com/Udayraj123/OMRChecker", 2002 | "label": "good first issue", 2003 | "technologies": [ 2004 | "Python" 2005 | ], 2006 | "description": "OMRChecker helps to grade exams fast and accurately using a scanner 🖨 or your phone 🤳. Learn image processing with Python and OpenCV while contributing to one of the most popular repositories related to OMR topic on github." 2007 | }, 2008 | { 2009 | "name": "Avo Admin for Ruby on Rails", 2010 | "link": "https://github.com/avo-hq/avo", 2011 | "label": "Good first issue", 2012 | "technologies": [ 2013 | "Ruby" 2014 | ], 2015 | "description": "Build business apps 10x faster using Ruby on Rails." 2016 | }, 2017 | { 2018 | "name": "HueHive", 2019 | "link": "https://github.com/croma-app/croma", 2020 | "label": "good first issue", 2021 | "technologies": [ 2022 | "JavaScript" 2023 | ], 2024 | "description": "An open source react native app iOS and android for color palette management" 2025 | }, 2026 | { 2027 | "name": "QuestDB", 2028 | "link": "https://github.com/questdb/questdb", 2029 | "label": "Good first issue", 2030 | "technologies": [ 2031 | "Java" 2032 | ], 2033 | "description": "Questdb is a fast open source SQL time series database." 2034 | }, 2035 | { 2036 | "name": "Oppia", 2037 | "link": "https://github.com/oppia/oppia", 2038 | "label": "good first issue", 2039 | "technologies": [ 2040 | "Python", 2041 | "TypeScript", 2042 | "Angular" 2043 | ], 2044 | "description": "Oppia is an open-source project whose aim is to empower learners across the globe by providing access to high-quality, engaging education. We envision a society in which access to high-quality education is a human right rather than a privilege." 2045 | }, 2046 | { 2047 | "name": "Storybook JS", 2048 | "link": "https://github.com/storybookjs/storybook", 2049 | "label": "good first issue", 2050 | "technologies": [ 2051 | "TypeScript", 2052 | "JavaScript" 2053 | ], 2054 | "description": "Storybook is a frontend workshop for building UI components and pages in isolation." 2055 | }, 2056 | { 2057 | "name": "Exosphere", 2058 | "link": "https://gitlab.com/exosphere/exosphere", 2059 | "label": "Good First Issue", 2060 | "technologies": [ 2061 | "Elm", 2062 | "Ansible" 2063 | ], 2064 | "description": "Exosphere is a user-friendly client interface for OpenStack-based cloud systems." 2065 | }, 2066 | { 2067 | "name": "IterTools TS", 2068 | "link": "https://github.com/Smoren/itertools-ts", 2069 | "label": "good first issue", 2070 | "technologies": [ 2071 | "TypeScript" 2072 | ], 2073 | "description": "Extended itertools port for TypeScript and JavaScript. Provides a huge set of functions for working with iterable collections (including async ones)." 2074 | }, 2075 | { 2076 | "name": "Harmony", 2077 | "link": "https://github.com/harmonydata/harmony", 2078 | "label": "Good First Issue", 2079 | "technologies": [ 2080 | "Python" 2081 | ], 2082 | "description": "Natural language processing tool for psychologists to analyse and compare datasets with AI and LLMs.
Up for a challenge? Try [this LLM training competition](https://harmonydata.ac.uk/doxa/) for a chance to win up to £500!" 2083 | }, 2084 | { 2085 | "name": "SuperDuperDB", 2086 | "link": "https://github.com/SuperDuperDB/superduperdb", 2087 | "label": "good first issue", 2088 | "technologies": [ 2089 | "Python", 2090 | "MLOps" 2091 | ], 2092 | "description": "🔮SuperDuperDB: Bring AI to your favourite database! Integrate, train and manage any AI models and APIs directly with your database and your data" 2093 | }, 2094 | { 2095 | "name": "LinksHub", 2096 | "link": "https://github.com/rupali-codes/LinksHub", 2097 | "label": "good first issue", 2098 | "technologies": [ 2099 | "TypeScript" 2100 | ], 2101 | "description": "LinksHub aims to provide developers with access to a wide range of free resources and tools that they can use in their work." 2102 | }, 2103 | { 2104 | "name": "activist", 2105 | "link": "https://github.com/activist-org/activist", 2106 | "label": "good first issue", 2107 | "technologies": [ 2108 | "TypeScript", "Python" 2109 | ], 2110 | "description": "activist.org is a network for political action that allows people to coordinate and collaborate on the issues that matter most to them." 2111 | }, 2112 | { 2113 | "name": "Vite", 2114 | "link": "https://github.com/vitejs/vite", 2115 | "label": "good first issue", 2116 | "technologies": [ 2117 | "JavaScript", 2118 | "TypeScript" 2119 | ], 2120 | "description": "Next generation frontend tooling. It's fast! Alternative to Create React App" 2121 | }, 2122 | { 2123 | "name": "Manifest", 2124 | "link": "https://github.com/mnfst/manifest", 2125 | "label": "good first issue", 2126 | "technologies": ["TypeScript"], 2127 | "description": "Manifest is an open-source Backend-as-a-Service allowing developers to create a backend easily and quickly." 2128 | }, 2129 | { 2130 | "name": "grommet", 2131 | "link": "https://github.com/grommet/grommet", 2132 | "label": "good first issue", 2133 | "technologies": [ 2134 | "JavaScript" 2135 | ], 2136 | "description": "a react-based framework that provides accessibility, modularity, responsiveness, and theming in a tidy package" 2137 | }, 2138 | { 2139 | "name": "Rawsec Cybersecurity Inventory", 2140 | "link": "https://gitlab.com/rawsec/rawsec-cybersecurity-list", 2141 | "label": "difficulty::easy", 2142 | "technologies": [ 2143 | "JavaScript", 2144 | "JSON", 2145 | "Pug" 2146 | ], 2147 | "description": "An inventory of tools and resources that aims to help people to find everything related to CyberSecurity." 2148 | }, 2149 | { 2150 | "name": "zoom-rs", 2151 | "link": "https://github.com/security-union/zoom-rs", 2152 | "label": "good first issue", 2153 | "technologies": [ 2154 | "Rust" 2155 | ], 2156 | "description": "Teleconference system with a web based user interface written in Rust" 2157 | }, 2158 | { 2159 | "name": "Catima - Android App", 2160 | "link": "https://github.com/CatimaLoyalty/Android", 2161 | "label": "good first issue", 2162 | "technologies": [ 2163 | "Java" 2164 | ], 2165 | "description": "Catima, a Loyalty Card & Ticket Manager for Android" 2166 | }, 2167 | { 2168 | "name": "FastAPI", 2169 | "link": "https://github.com/tiangolo/fastapi", 2170 | "label": "good first issue", 2171 | "technologies": [ 2172 | "Python" 2173 | ], 2174 | "description": "A modern, fast (high-performance) web framework for building APIs with Python 3.6+ based on standard Python type hints." 2175 | }, 2176 | { 2177 | "name": "Readest", 2178 | "link": "https://github.com/readest/readest", 2179 | "label": "good first issue", 2180 | "technologies": [ 2181 | "Rust", 2182 | "TypeScript" 2183 | ], 2184 | "description": "A modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface." 2185 | }, 2186 | { 2187 | "name": "supabase", 2188 | "link": "https://github.com/supabase/supabase", 2189 | "label": "good first issue", 2190 | "technologies": ["TypeScript"], 2191 | "description": "The open source Firebase alternative. Supabase gives you a dedicated Postgres database to build your web, mobile, and AI applications." 2192 | } 2193 | ] 2194 | } 2195 | --------------------------------------------------------------------------------