From 159aebfac2856348ee21411dc8a932929156ceb5 Mon Sep 17 00:00:00 2001 From: Shmavon Gazanchyan Date: Mon, 29 Aug 2022 21:18:20 +0100 Subject: [PATCH] Switch authoring to JSON file and add build/verification actions --- .github/pull_request_template.md | 17 - .github/scripts/build.js | 87 ++ .github/stale.yml | 3 - .github/tpl.md | 31 + .github/workflows/build.yml | 26 + .github/workflows/invalid.yml | 38 + CONTRIBUTING.md | 10 +- README.md | 487 ++++---- data.json | 1873 ++++++++++++++++++++++++++++++ 9 files changed, 2290 insertions(+), 282 deletions(-) delete mode 100644 .github/pull_request_template.md create mode 100644 .github/scripts/build.js delete mode 100644 .github/stale.yml create mode 100644 .github/tpl.md create mode 100644 .github/workflows/build.yml create mode 100644 .github/workflows/invalid.yml create mode 100644 data.json diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index ecc6c80..0000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1,17 +0,0 @@ -Please complete the following checklist if your PR is adding new link to the list: - -- [ ] I've read [contributing guidelines](https://github.com/MunGell/awesome-for-beginners/blob/master/CONTRIBUTING.md) -- [ ] This PR does not introduce duplicates to the list -- [ ] The link is added at the bottom of the list category -- [ ] Suggested repository is maintained, have active community, is able to mentor new contributors and have issues with the suggested label -- [ ] The link I add follows the suggested pattern: - -``` -- [Repository Name](link-to-repository-label) _(label: beginner-friendly-label-in-the-repository)_
Description -``` - -Example link formatting: - -``` -- [awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners/labels/good-first-contribution) _(label: good-first-contribution)_
A list of awesome beginners-friendly projects. -``` diff --git a/.github/scripts/build.js b/.github/scripts/build.js new file mode 100644 index 0000000..cb9d433 --- /dev/null +++ b/.github/scripts/build.js @@ -0,0 +1,87 @@ +const fs = require('fs'); +const data = require('../../data.json'); + +const TPL_FILE = './.github/tpl.md'; +const TARGET = './README.md'; + +const tpl = getTemplate(TPL_FILE); + +const categories = {}; + +data.repositories.sort((a, b) => { + const nameA = a.name.toUpperCase(); + const nameB = b.name.toUpperCase(); + if (nameA < nameB) { + return -1; + } + if (nameA > nameB) { + return 1; + } + return 0; +}).forEach(repo => + repo.technologies.forEach(tech => { + if (!categories.hasOwnProperty(tech)) { + categories[tech] = []; + } + categories[tech].push(repo); + })) + +const sortedCategories = Object.fromEntries(Object.entries(categories).sort((a, b) => { + const nameA = a[0].toUpperCase(); + const nameB = b[0].toUpperCase(); + if (nameA < nameB) { + return -1; + } + if (nameA > nameB) { + return 1; + } + return 0; +})); + +const toc = Object.keys(sortedCategories) + .map(t => `- [${t}](#${data.technologies[t] || t.toLowerCase()})`) + .join('\n'); + +const content = Object.keys(sortedCategories) + .map(category => { + const repos = sortedCategories[category].map(repo => `- [${repo.name}](${repo.link}) _(label: ${repo.label || 'n/a'})_
${repo.description}`).join('\n') + return `## ${category}\n\n${repos}\n` + }).join('\n'); + +const sponsorList = data.sponsors.map(sponsor => `
${sponsor.name}
`) +const sponsorRows = Math.ceil(sponsorList.length / 6); + +let sponsors = ''; + +for (let i = 1; i <= sponsorRows; i++) { + sponsors += ''; + for(let j = 0; j < 6; j++) { + if (sponsorList.length > i*j) { + sponsors += sponsorList[i*j]; + } else if (sponsorRows > 1) { + sponsors += '' + } + } + sponsors += ''; +} + +sponsors = `${sponsors}
` + +saveFile(TARGET, render(tpl, { toc, content, sponsors })); + +function getTemplate(file) { + return fs.readFileSync(file).toString(); +} + +function saveFile(file, contents) { + return fs.writeFileSync(file, contents); +} + +function render(template, variables) { + Object + .entries(variables) + .forEach(([key, value]) => { + template = template.replace(new RegExp(`<% ${key} %>`, 'g'), value); + }); + return template; +} diff --git a/.github/stale.yml b/.github/stale.yml deleted file mode 100644 index 360ad10..0000000 --- a/.github/stale.yml +++ /dev/null @@ -1,3 +0,0 @@ -daysUntilStale: 5 -daysUntilClose: 1 -closeComment: false diff --git a/.github/tpl.md b/.github/tpl.md new file mode 100644 index 0000000..84488e3 --- /dev/null +++ b/.github/tpl.md @@ -0,0 +1,31 @@ +[![Doppler](assets/doppler.png)](https://www.doppler.com/?utm_campaign=github_repo&utm_medium=referral&utm_content=awesomeforbeginners&utm_source=github) + +# Awesome First PR Opportunities [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) + +This list of awesome beginner-friendly projects is sponsored by [Doppler](https://www.doppler.com/?utm_campaign=github_repo&utm_medium=referral&utm_content=awesomeforbeginners&utm_source=github) – convenient and secure way to manage all your environment variables. + +Inspired by [First Timers Only](https://kentcdodds.com/blog/first-timers-only) blog post. + +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. + +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. + +## Table of Contents: + +<% toc %> + +<% content %> + +## Contribute + +Contributions are welcome! See the [contributing guidelines](CONTRIBUTING.md). + +## Thanks to GitHub Sponsors + +<% sponsors %> + +## License + +[![CC0](http://i.creativecommons.org/p/zero/1.0/88x31.png)](http://creativecommons.org/publicdomain/zero/1.0/) + +To the extent possible under law, the author has waived all copyrights and related or neighboring rights to this work. diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..cc10539 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,26 @@ +name: Build + +on: + push: + branches: + - 'master' + paths: + - 'data.json' + - '.github/tpl.md' + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v2 + with: + node-version: "16.x" + - name: Build + run: node .github/scripts/build.js + - name: Commit + run: | + git config --global user.name 'Shmavon Gazanchyan' + git config --global user.email 'MunGell@users.noreply.github.com' + git commit -am "Update README.md" + git push diff --git a/.github/workflows/invalid.yml b/.github/workflows/invalid.yml new file mode 100644 index 0000000..6eb9507 --- /dev/null +++ b/.github/workflows/invalid.yml @@ -0,0 +1,38 @@ +name: Check on Invalid PR + +on: + pull_request_target: + branches: + - master + paths-ignore: + - '.github/**' + - 'data.json' + - 'CONTRIBUTING.md' + +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + with: + script: | + await github.rest.issues.createComment({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + body: 'This PR is not valid. Please read [contributing guidelines](https://github.com/MunGell/awesome-for-beginners/CONTRIBUTING.md).' + }); + if (context.payload.pull_request.labels.indexOf('Invalid') === -1) { + await github.rest.issues.addLabels({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + labels: ['Invalid'] + }); + } + await github.rest.pulls.update({ + owner: context.repo.owner, + repo: context.repo.repo, + pull_number: context.issue.number, + state: 'closed' + }); diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f6a4ea3..991308f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,21 +5,15 @@ Please ensure that your pull request adheres to the following guidelines: - Search previous suggestions before making a new one, as yours may be a duplicate. - Make sure your contribution is useful and relevant before submitting. That implies it has enough content and every item has a good succinct description. - Make an individual pull request for each suggestion. -- Use the following format: `- [Repository Name](link-to-repository-label) _(label: beginner-friendly-label-in-the-repository)_
Description` -- Example link formatting: `- [awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners/labels/good-first-contribution) _(label: good-first-contribution)_
A list of awesome beginners-friendly projects.` -- Link additions should be added to the bottom of the relevant category. +- Only include your suggested repository to `data.json` file, README.md file is generated from it. - New categories or improvements to the existing categorization are welcome. - Check your spelling and grammar. - Make sure your text editor is set to remove trailing whitespace. - The pull request and commit should be given a meaningful title. - Ensure that you describe your pull request. -- If the label does not clearly state it's "beginner friendly" purpose, please make sure to confirm with the maintainer that it is used for such issues. Please include the link to where the maintainer approves it in the PR. See examples below: - - Repository called "HornsAndHoovesJs" has label `good-first-contribution`. This PR does not need to be confirmed with the maintainer and can be merged straight away. - - Repository called "bicycle-wheels-php" has label `easy`. This PR must be confirmed with the maintainer of "bicycle-wheels-php". The issue link where the maintainer confirms that label `easy` is used in the repository for beginner-friendly tasks has to be provided in the PR description. +- If the label does not clearly state it's "beginner friendly" purpose, please make sure to confirm with the maintainer that it is used for such issues. Please include the link to where the maintainer approves it in the - Maintainer confirmation is also required in case repository has more than one beginner-friendly-like label (e.g. `low-hanging-fruit` and `up-for-grabs`). - The contributed repository must be maintained, have an active community to be able to help newcomers and have issues with an appropriate label. - Links must be pointing directly to the repository, no tracking links allowed. This list is not for advertising purposes. Thank you for your suggestions! - -(This file was partially copied from [awesome-speaking](https://github.com/matteofigus/awesome-speaking)) diff --git a/README.md b/README.md index 31dce39..3753db2 100644 --- a/README.md +++ b/README.md @@ -40,338 +40,317 @@ If you are not a programmer but would like to contribute, check out the [Awesome ## .NET -- [MvvmCross](https://github.com/MvvmCross/MvvmCross/labels/first-timers-only) _(label: first-timers-only)_
The .NET MVVM framework for cross-platform solutions, including Xamarin.iOS, Xamarin.Android, Windows and Mac. -- [RawCMS](https://github.com/arduosoft/RawCMS/labels/good%20first%20issue) _(label: good first issue)_
RawCMS is a headless CMS written in ASP.NET Core, built for developers that embrace API-first technology. -- [Shouldly](https://github.com/shouldly/shouldly/labels/Jump-In) _(label: Jump-In)_
Should testing for .NET - the way Asserting *Should* be! +- [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. +- [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. +- [Shouldly](https://github.com/shouldly/shouldly) _(label: Jump-In)_
Should testing for .NET - the way Asserting Should be! ## C -- [Neovim](https://github.com/neovim/neovim/labels/good-first-issue) _(label: good-first-issue)_
Vim-fork focused on extensibility and agility. +- [Neovim](https://github.com/neovim/neovim) _(label: good-first-issue)_
Vim-fork focused on extensibility and agility. ## C# -- [grok.net](https://github.com/Marusyk/grok.net/labels/good%20first%20issue) _(label: good first issue)_
Cross platform .NET grok implementation -- [OpenRA](https://github.com/OpenRA/OpenRA/labels/Easy) _(label: Easy)_
A Real Time Strategy game engine supporting early Westwood classics such as Command & Conquer: Red Alert. -- [osu!](https://github.com/ppy/osu/labels/good-first-issue) _(label: good-first-issue)_
Music game. Rhythm is just a *click* away! -- [Uno Platform](https://github.com/unoplatform/uno/labels/good%20first%20issue) _(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. -- [Cake](https://github.com/cake-build/cake/labels/Good%20first%20issue) _(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. +- [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. +- [grok.net](https://github.com/Marusyk/grok.net) _(label: good-first-issue)_
Cross platform .NET grok implementation +- [OpenRA](https://github.com/OpenRA/OpenRA) _(label: Easy)_
A Real Time Strategy game engine supporting early Westwood classics such as Command & Conquer: Red Alert. +- [osu!](https://github.com/ppy/osu) _(label: good-first-issue)_
Music game. Rhythm is just a click away! +- [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. ## C++ -- [electron](https://github.com/electron/electron/labels/good%20first%20issue) _(label: good first issue)_
Build cross platform desktop apps with JavaScript, HTML, and CSS -- [Godot Engine](https://github.com/godotengine/godot/labels/junior%20job) _(label: junior job)_
2D and 3D cross-platform game engine. Also has C# and Python code. -- [projectM](https://github.com/projectM-visualizer/projectm/labels/good%20first%20issue) _(label: good first issue)_
A music visualizer library using OpenGL and GLSL. Has applications using Qt5, SDL, emscripten, iTunes, Kodi. -- [Roc Toolkit](https://github.com/roc-streaming/roc-toolkit/labels/help%20wanted) _(label: help wanted)_
A toolkit for real-time audio streaming over the network. -- [tensorflow](https://github.com/tensorflow/tensorflow/labels/stat%3Acontributions%20welcome) _(label: stat:contributions welcome)_
Computation using data flow graphs for scalable machine learning -- [Yugabyte DB](https://github.com/yugabyte/yugabyte-db/labels/good%20first%20issue) _(label: good first issue)_
Distributed SQL database. -- [MoveIt](https://github.com/ros-planning/moveit/labels/good%20first%20issue) _(label: good first issue)_
Easy-to-use open source robotics manipulation platform for developing commercial applications, prototyping designs, and benchmarking algorithms. +- [electron](https://github.com/electron/electron) _(label: good-first-issue)_
Build cross platform desktop apps with JavaScript, HTML, and CSS +- [Godot Engine](https://github.com/godotengine/godot) _(label: junior-job)_
2D and 3D cross-platform game engine. Also has C# and Python code. +- [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. +- [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. +- [Roc Toolkit](https://github.com/roc-streaming/roc-toolkit) _(label: help-wanted)_
A toolkit for real-time audio streaming over the network. +- [tensorflow](https://github.com/tensorflow/tensorflow) _(label: stat:contributions-welcome)_
Computation using data flow graphs for scalable machine learning +- [Yugabyte DB](https://github.com/yugabyte/yugabyte-db) _(label: good-first-issue)_
Distributed SQL database. ## Clojure -- [Alda](https://github.com/alda-lang/alda/labels/low-hanging%20fruit) _(label: low-hanging-fruit)_
A music programming language for musicians. :notes: +- [Alda](https://github.com/alda-lang/alda) _(label: low-hanging-fruit)_
A music programming language for musicians. 🎶 ## ClojureScript -- [LightTable](https://github.com/LightTable/LightTable/labels/good%20first%20issue) _(label: good first issue)_
The Next Generation code editor! One of the top funded projects on KickStarter. +- [LightTable](https://github.com/LightTable/LightTable) _(label: good-first-issue)_
The Next Generation code editor! One of the top funded projects on KickStarter. ## CSS -- [sButtons](https://github.com/shahednasser/sbuttons/labels/good%20first%20issue) _(label: good first issue)_
Simple buttons you can easily use for your next project. +- [sButtons](https://github.com/shahednasser/sbuttons) _(label: good-first-issue)_
Simple buttons you can easily use for your next project. ## Dart -- [dart.dev](https://github.com/dart-lang/site-www/labels/beginner) _(label: beginner)_
A website covering Dart language and common libraries, for developers of Dart libraries, web apps, server-side code, and mobile (Flutter) apps. +- [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. ## Elixir -- [Ecto](https://github.com/elixir-ecto/ecto/labels/Level%3AStarter) _(label: Level:Starter)_
Ecto is a database wrapper and language integrated query for Elixir -- [Elixir](https://github.com/elixir-lang/elixir/labels/Level%3AStarter) _(label: Level:Starter)_
Elixir is a dynamic, functional language designed for building scalable and maintainable applications +- [Ecto](https://github.com/elixir-ecto/ecto) _(label: Level:Starter)_
Ecto is a database wrapper and language integrated query for Elixir +- [Elixir](https://github.com/elixir-lang/elixir) _(label: Level:Starter)_
Elixir is a dynamic, functional language designed for building scalable and maintainable applications ## Go -- [CockroachDB](https://github.com/cockroachdb/cockroach/labels/good%20first%20issue) _(label: good first issue)_
The Scalable, Survivable, Strongly-Consistent SQL Database -- [Docker/CLI](https://github.com/docker/cli/labels/exp%2Fbeginner) _(label: exp/beginner)_
The Docker CLI -- [Helm](https://github.com/kubernetes/helm/labels/good%20first%20issue) _(label: good first issue)_
The Kubernetes Package Manager -- [Hugo](https://github.com/spf13/hugo/labels/exp%2Fbeginner) _(label: exp/beginner)_
A Fast and Flexible Static Site Generator built with love in GoLang -- [Kubernetes](https://github.com/kubernetes/kubernetes/labels/good%20first%20issue) _(label: good first issue)_
Production-Grade Container Scheduling and Management System -- [Mattermost](https://github.com/mattermost/mattermost-server/issues?utf8=%E2%9C%93&q=is%3Aopen+label%3A%22Up+For+Grabs%22+label%3A%22Difficulty%2F1%3AEasy%22+label%3A%22Tech%2FGo%22+) _(label: Up For Grabs, Difficulty/1:Easy, Tech/Go)_
Open source Slack-alternative in Golang and React -- [Moby](https://github.com/moby/moby/labels/exp%2Fbeginner) _(label: exp/beginner)_
Open-source application container engine -- [Terraform](https://github.com/hashicorp/terraform/labels/good%20first%20issue) _(label: good first issue)_
A tool for building, changing, and versioning infrastructure safely and efficiently. -- [TiDB](https://github.com/pingcap/tidb/labels/for%20new%20contributors) _(label: for new contributors)_
A distributed scalable Hybrid Transactional and Analytical Processing (HTAP) database -- [script](https://github.com/bitfield/script/labels/good%20first%20issue) _(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. -- [httpexpect](https://github.com/gavv/httpexpect/labels/help%20wanted) _(label: help wanted)_
End-to-end HTTP and REST API testing for Go. -- [Killgrave](https://github.com/friendsofgo/killgrave/labels/good%20first%20issue) _(label: good first issue)_
Simple way to generate mock servers in Go. -- [lxd](https://github.com/lxc/lxd/labels/easy) _(label: easy)_
System container and virtual machine manager. -- [PureLB](https://gitlab.com/purelb/purelb/-/issues?label_name%5B%5D=GoodFirstIssue) _(label: GoodFirstIssue)_
Load-balancer orchestrator for Kubernetes that uses standard Linux networking and routing protocols. -- [containerd](https://github.com/containerd/containerd/labels/exp/beginner) _(label: exp/beginner)_
Industry-standard container runtime with an emphasis on simplicity, robustness and portability. -- [Meshery](https://github.com/layer5io/meshery/labels/good%20first%20issue) _(label: good first issue)_
Meshery, the service mesh management plane. +- [containerd](https://github.com/containerd/containerd) _(label: exp/beginner)_
Industry-standard container runtime with an emphasis on simplicity, robustness and portability. +- [Docker/CLI](https://github.com/docker/cli) _(label: exp/beginner)_
The Docker CLI +- [Helm](https://github.com/kubernetes/helm) _(label: good-first-issue)_
The Kubernetes Package Manager +- [httpexpect](https://github.com/gavv/httpexpect) _(label: help-wanted)_
End-to-end HTTP and REST API testing for Go. +- [Hugo](https://github.com/spf13/hugo) _(label: exp/beginner)_
A Fast and Flexible Static Site Generator built with love in GoLang +- [Killgrave](https://github.com/friendsofgo/killgrave) _(label: good-first-issue)_
Simple way to generate mock servers in Go. +- [Kubernetes](https://github.com/kubernetes/kubernetes) _(label: good-first-issue)_
Production-Grade Container Scheduling and Management System +- [lxd](https://github.com/lxc/lxd) _(label: easy)_
System container and virtual machine manager. +- [Mattermost](https://github.com/mattermost/mattermost-server/issues?utf8=✓&q=is:open+label:"Up+For+Grabs"+label:"Difficulty/1:Easy"+label:"Tech/Go") _(label: n/a)_
Open source Slack-alternative in Golang and React +- [Meshery](https://github.com/layer5io/meshery) _(label: good-first-issue)_
Meshery, the service mesh management plane. +- [Moby](https://github.com/moby/moby) _(label: exp/beginner)_
Open-source application container engine +- [PureLB](https://gitlab.com/purelb/purelb/-/issues?label_name[]=GoodFirstIssue) _(label: n/a)_
Load-balancer orchestrator for Kubernetes that uses standard Linux networking and routing protocols. +- [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. +- [Terraform](https://github.com/hashicorp/terraform) _(label: good-first-issue)_
A tool for building, changing, and versioning infrastructure safely and efficiently. +- [TiDB](https://github.com/pingcap/tidb) _(label: for-new-contributors)_
A distributed scalable Hybrid Transactional and Analytical Processing (HTAP) database ## Java -- [Strongbox](https://github.com/strongbox/strongbox/labels/good%20first%20issue) _(label: good first issue)_
Strongbox is an artifact repository manager written in Java. -- [TEAMMATES](https://github.com/TEAMMATES/teammates/labels/good%20first%20issue) _(label: good first issue)_
TEAMMATES is a free online tool for managing peer evaluations and other feedback paths of your students. -- [elasticsearch](https://github.com/elastic/elasticsearch/labels/good%20first%20issue) _(label: good first issue)_
Open Source, Distributed, RESTful Search Engine. -- [JabRef](https://github.com/JabRef/jabref/labels/good%20first%20issue) _(label: good first issue)_
Desktop application for managing literature references using modern Java features including JavaFX. [Dedicated to code quality and constructive feedback](https://devdocs.jabref.org/getting-into-the-code/development-strategy): Each Pull Request is reviewed by two developers to provide high-quality feedback and to ensure high quality of new contributions. -- [Wikimedia Commons Android App](https://github.com/commons-app/apps-android-commons/labels/good%20first%20issue) _(label: good first issue)_
Allows users to upload pictures from their Android phone/tablet to Wikimedia Commons. -- [XWiki](https://jira.xwiki.org/issues/?jql=labels%20%3D%20Onboarding) _(label: Onboarding)_
[XWiki](http://xwiki.org) 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/). -- [zerocode](https://github.com/authorjapps/zerocode/labels/good%20first%20issue) _(label: good first issue)_
API Automation without coding, easy JSON response assertions, Testing REST, SOAP, Kafka and Java/DB APIs, CI/Jenkins Friendly. -- [SirixDB](https://github.com/sirixdb/sirix/labels/good%20first%20issue) _(label: good first issue)_
SirixDB is an evolutionary, versioned NoSQL document store (XML and JSON) written (mostly) in Java. It stores compact snapshots during commits with many concepts borrowed from ZFS and Git. Each revision is indexed and the document store can be queried with temporal queries. It's especially well suited for modern hardware. -- [Images-to-PDF](https://github.com/Swati4star/Images-to-PDF/labels/good%20first%20issue) _(label: good first issue)_
An android app to convert images to PDF file. -- [Trino (formerly Presto SQL)](https://github.com/trinodb/trino/labels/good%20first%20issue) _(label: good first issue)_
A distributed SQL query engine for big data. Ask for guidance on [project's Slack](https://trino.io/slack.html). -- [appsmith](https://github.com/appsmithorg/appsmith/labels/good%20first%20issue) _(label: good first issue)_
Drag & Drop internal tool builder +- [appsmith](https://github.com/appsmithorg/appsmith) _(label: good-first-issue)_
Drag & Drop internal tool builder +- [Codename One](https://github.com/codenameone/CodenameOne) _(label: good-first-issue)_
Cross-platform mobile app development framework for Java developers +- [elasticsearch](https://github.com/elastic/elasticsearch) _(label: good-first-issue)_
Open Source, Distributed, RESTful Search Engine. +- [Images-to-PDF](https://github.com/Swati4star/Images-to-PDF) _(label: good-first-issue)_
An android app to convert images to PDF file. +- [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. +- [SirixDB](https://github.com/sirixdb/sirix) _(label: good-first-issue)_
SirixDB is an evolutionary, versioned NoSQL document store (XML and JSON) written (mostly) in Java. It stores compact snapshots during commits with many concepts borrowed from ZFS and Git. Each revision is indexed and the document store can be queried with temporal queries. It's especially well suited for modern hardware. +- [Strongbox](https://github.com/strongbox/strongbox) _(label: good-first-issue)_
Strongbox is an artifact repository manager written in Java. +- [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. +- [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. +- [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. +- [XWiki](https://jira.xwiki.org/issues/?jql=labels-%3D-Onboarding) _(label: n/a)_
XWiki is a free wiki software platform written in Java with a design emphasis on extensibility. Beginners should follow the onboarding wiki. +- [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. ## JavaScript -- [name-suggestion-index](https://github.com/osmlab/name-suggestion-index/labels/good%20first%20issue) _(label: good first issue)_
Canonical common brand names for OpenStreetMap -- [iD](https://github.com/openstreetmap/iD/labels/good%20first%20issue) _(label: good first issue)_
The easy-to-use OpenStreetMap editor in JavaScript. -- [missioncontrol](https://github.com/davfoundation/missioncontrol/labels/first-timers-only) _(label: first-timers-only)_
Mission Control is a free and open marketplace connecting autonomous vehicles (e.g., drones) with users looking for services such as package deliveries. -- [missions](https://github.com/davfoundation/missions/labels/first-timers-only) _(label: first-timers-only)_
Missions is a mobile web app connecting DAV users looking to ship packages with autonomous drones looking for work in an open and free marketplace. -- [annyang](https://github.com/TalAter/annyang/labels/first-timers-only) _(label: first-timers-only)_
A popular Speech Recognition library used to communicate with everything from websites to smart mirrors to flying drones. -- [PouchDB](https://github.com/pouchdb/pouchdb/labels/first%20timers%20only) _(label: first time only)_
PouchDB is a pocket-sized database. -- [Leaflet](https://github.com/Leaflet/Leaflet/labels/good%20first%20issue) _(label: good first issue)_
JavaScript library for mobile-friendly interactive maps. -- [Dragula](https://github.com/bevacqua/dragula/labels/first-timers-only) _(label: first-timers-only)_
Drag and drop so simple it hurts. -- [history](https://github.com/rackt/history/labels/good-for-beginner) _(label: good-for-beginner)_
A minimal, functional history library for JavaScript. -- [TodoMVC](https://github.com/tastejs/todomvc/labels/first%20time%20contributor) _(label: first time contributor)_
Helping you select an MV\* framework by implementing Todo in lots of JavaScript apps. -- [AVA](https://github.com/sindresorhus/ava/labels/good%20for%20beginner) _(label: good for beginner)_
Futuristic test runner. -- [Kinto.js](https://github.com/Kinto/kinto.js/labels/easy-pick) _(label: easy-pick)_
An offline-first JavaScript client leveraging the [Kinto API](http://kinto.readthedocs.org/) for remote data synchronization. -- [ESLint](https://github.com/eslint/eslint/labels/good%20first%20issue) _(label: good first issue)_
A fully pluggable tool for identifying and reporting on patterns in JavaScript. -- [Webpack](https://github.com/webpack/webpack/labels/D0%3A%20My%20First%20Commit%20%28Contrib.%20Difficulty%29) _(label: D0: My First Commit (Contrib. Difficulty))_
A bundler for JavaScript and friends. -- [Tessel 2 CLI](https://github.com/tessel/t2-cli/labels/contribution-starter) _(label: contribution-starter)_
Command line interface to Tessel 2. -- [Ember.js](https://github.com/emberjs/ember.js/labels/Good%20for%20New%20Contributors) _(label: Good for New Contributors)_
A JavaScript framework for creating ambitious web applications. -- [Ember.js Data](https://github.com/emberjs/data/labels/Good%20for%20New%20Contributors) _(label: Good for New Contributors)_
A data persistence library for Ember.js. -- [freeCodeCamp](https://github.com/freeCodeCamp/freeCodeCamp/labels/first%20timers%20only) _(label: first timers only)_
Open source codebase and curriculum. Learn to code and help nonprofits. -- [Ghost](https://github.com/TryGhost/Ghost/labels/good%20first%20issue) _(label: good first issue)_
Just a blogging platform -- [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn/labels/good%20for%20beginner) _(label: good for beginner)_
Awesome ESLint rules. -- [Hyper](https://github.com/zeit/hyper/labels/good%20first%20issue) _(label: good first issue)_
JS/HTML/CSS Terminal -- [pdf.js](https://github.com/mozilla/pdf.js/labels/5-good-beginner-bug) _(label: 5-good-beginner-bug)_
PDF Reader in JavaScript -- [Moment.js](https://github.com/moment/moment/labels/Up-For-Grabs) _(label: Up-For-Grabs)_
A lightweight JavaScript date library for parsing, validating, manipulating, and formatting dates. -- [serverless](https://github.com/serverless/serverless/labels/good%20first%20issue) _(label: good first issue)_
The Serverless Framework -- [Hoodie Camp](https://github.com/hoodiehq/camp/labels/first-timers-only) _(label: first-timers-only)_
Hoodie Camp is a space for new and existing contributors. -- [React](https://github.com/facebook/react/labels/good%20first%20issue) _(label: good first issue)_
A declarative, efficient, and flexible JavaScript library for building user interfaces. -- [React Native](https://github.com/facebook/react-native/labels/Good%20first%20issue) _(label: Good first issue)_
A framework for building native apps with React. -- [React server](https://github.com/redfin/react-server/labels/good%20first%20contribution) _(label: good-first-contribution)_
React framework with server render for blazing fast page load and seamless transitions between pages in the browser. -- [Yarn](https://github.com/yarnpkg/yarn/labels/good%20first%20issue) _(label: good first issue)_
Fast, reliable, and secure dependency management. -- [pixi.js](https://github.com/pixijs/pixi.js/labels/Difficulty%3A%20Easy) _(label: Difficulty: Easy)_
A 2D JavaScript Renderer -- [Next.js](https://github.com/zeit/next.js/labels/good%20first%20issue) _(label: good first issue)_
A minimalistic framework for universal server-rendered React applications -- [keystonejs](https://github.com/keystonejs/keystone/labels/good%20first%20issue) _(label: good first issue)_
The open source framework for developing database-driven websites, applications and APIs in Node.js. Built on Express and MongoDB. -- [Semantic-UI-React](https://github.com/Semantic-Org/Semantic-UI-React/labels/good%20first%20issue) _(label: good first issue)_
The official React integration for Semantic UI. -- [electron](https://github.com/electron/electron/labels/good%20first%20issue) _(label: good first issue)_
Build cross platform desktop apps with JavaScript, HTML, and CSS -- [Botpress](https://github.com/botpress/botpress/labels/good%20first%20issue) _(label: good first issue)_
The only sane way to build great bots. -- [Atom](https://github.com/atom/atom/labels/beginner) _(label: beginner)_
The hackable text editor -- [cdnjs](https://github.com/cdnjs/cdnjs/labels/good%20first%20issue) _(label: good first issue)_
The best FOSS web front-end resource CDN -- [Video.js](https://github.com/videojs/video.js/labels/first-timers-only) _(label: first-timers-only)_
The player framework -- [stryker](https://github.com/stryker-mutator/stryker/labels/beginner%20friendly) _(label: beginner friendly)_
The JavaScript mutation testing framework -- [Kap](https://github.com/wulkano/kap/labels/good%20first%20issue) _(label: good first issue)_
An open-source screen recorder built with web technology -- [Reddit Enhancement Suite](https://github.com/honestbleeps/Reddit-Enhancement-Suite/labels/help%20wanted) _(label: help wanted)_
A browser extension to enhance the Reddit browsing experience. -- [Brave Browser](https://github.com/brave/brave-browser/labels/good%20first%20issue) _(label: good first issue)_
Desktop browser for macOS, Windows, and Linux. -- [Fastify](https://github.com/fastify/fastify/labels/good%20first%20issue) _(label: good first issue)_
Fast and low overhead web framework, for Node.js. -- [Node.js core](https://github.com/nodejs/node/labels/good%20first%20issue) _(label: good first issue)_
JavaScript runtime built on Chrome's V8 JavaScript engine -- [Jest](https://github.com/facebook/jest/labels/good%20first%20issue) _(label: good first issue)_
A complete and easy to set up JavaScript testing solution. -- [Mattermost](https://github.com/mattermost/mattermost-server/issues?utf8=%E2%9C%93&q=is%3Aopen+label%3A%22Up+For+Grabs%22+label%3A%22Difficulty%2F1%3AEasy%22+label%3A%22Tech%2FJavaScript%22+) _(label: Up For Grabs, Difficulty:1/Easy, Tech/JavaScript)_
Open source Slack-alternative in Golang and React -- [p5.js](https://github.com/processing/p5.js/labels/good%20first%20issue) _(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. -- [squirrelly](https://github.com/nebrelbug/squirrelly/labels/good%20first%20issue) _(label: good first issue)_
Squirrelly is a lightweight template engine that supports helpers, filters, partials, and more. -- [NativeScript](https://github.com/NativeScript/NativeScript/labels/good%20first%20issue) _(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. -- [Gatsby.js](https://github.com/gatsbyjs/gatsby/labels/good%20first%20issue) _(label: good first issue)_
Build blazing fast, modern apps and websites with React. -- [Vue.js](https://github.com/vuejs/vue/labels/good%20first%20issue) _(label: good first issue)_
The Progressive JavaScript Framework. -- [md-page](https://github.com/oscarmorrison/md-page/labels/good%20first%20issue) _(label: good first issue)_
Create a webpage with just markdown. -- [Check It Out](https://github.com/jwu910/check-it-out/labels/good%20first%20issue) _(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. -- [nuclear](https://github.com/nukeop/nuclear/labels/good%20first%20issue) _(label: good first issue)_
Multiplatform music player that streams from free sources. -- [material-ui](https://github.com/mui-org/material-ui/labels/good%20first%20issue) _(label: good first issue)_
React components for faster and easier web development. Build your own design system, or start with Material Design. -- [Meteor](https://github.com/meteor/meteor/labels/good%20first%20issue) _(label: good first issue)_
Meteor is an ultra-simple environment for building modern web applications. -- [Mocha](https://github.com/mochajs/mocha/labels/good-first-issue) _(label: good first issue)_
Javascript test framework for Node.js and the browser. -- [Babel](https://github.com/babel/babel/labels/good%20first%20issue) _(label: good first issue)_
A compiler for writing next generation JavaScript. -- [React-content-loader](https://github.com/danilowoz/create-content-loader/labels/good%20first%20issue) _(label: good first issue)_
Tool to create your own react-content-loader easily. -- [netlify-cms](https://github.com/netlify/netlify-cms/labels/good%20first%20issue) _(label: good first issue)_
Open source content management for your git workflow. -- [altair](https://github.com/imolorhe/altair/labels/good%20first%20issue) _(label: good first issue)_
A beautiful feature-rich GraphQL Client for all platforms. -- [Video Hub App](https://github.com/whyboris/Video-Hub-App/labels/good%20first%20issue) _(label: good first issue)_
Angular & Electron app for browsing and searching videos on your PC. -- [Ancient Beast](https://github.com/FreezingMoon/AncientBeast/labels/easy) _(label: easy)_
Turn based strategy game where you 3d print a squad of creatures with unique abilities in order to defeat your enemies. -- [ramda-adjunct](https://github.com/char0n/ramda-adjunct/labels/help%20wanted) _(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. -- [Binari](https://github.com/BrandonArmand/Binari/labels/up%20for%20grabs) _(label: up for grabs)_
Interactive code editor with a live binary tree visual designed to teach new developers the fundementals of dynamic programming. -- [SirixDB](https://github.com/sirixdb/sirix-svelte-front-end/labels/good%20first%20issue) _(label: good first issue)_
-A Svelte/Sapper based web front-end for SirixDB, which is a versioned NoSQL document store (XML and JSON) written in Java. -- [json-editor](https://github.com/json-editor/json-editor/labels/good%20first%20issue) _(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). -- [Habitica](https://github.com/HabitRPG/habitica/labels/good%20first%20issue) _(label: good first issue)_
-Habitica is a gamified task manager, webapp and android/ios app, really wonderful atmosphere. [Guidance for contributing here](https://habitica.fandom.com/wiki/Guidance_for_Blacksmiths) (mongo, express, vue, node stack for webapp) -- [reactjs.org](https://github.com/reactjs/reactjs.org/labels/good%20first%20issue) _(label: good first issue)_
The documenation website for reactjs -- [Vest](https://github.com/ealush/vest/labels/good%20first%20issue) _(label: good first issue)_
Validations framework inspired by unit testing frameworks. -- [Hoppscotch](https://github.com/hoppscotch/hoppscotch/labels/good%20first%20issue) _(label: good first issue)_
A free, fast and beautiful API request builder. -- [Predator](https://github.com/Zooz/predator/labels/good%20first%20issue) _(label: good first issue)_
A powerful open-source platform for load testing APIs. -- [Time to Leave](https://github.com/thamara/time-to-leave/labels/good%20first%20issue) _(label: good first issue)_
Working hours time tracker app based on Electron and Javascript. -- [cypress](https://github.com/cypress-io/cypress/labels/first-timers-only) _(label: first-timers-only)_
Fast, easy and reliable testing for anything that runs in a browser. -- [Vue CLI](https://github.com/vuejs/vue-cli/labels/good%20first%20issue) _(label: good first issue)_
Standard Tooling for Vue.js Development -- [Vue Router](https://github.com/vuejs/vue-router/labels/good%20first%20issue) _(label: good first issue)_
The official router for Vue.js. -- [VuePress](https://github.com/vuejs/vuepress/labels/good%20first%20issue) _(label: good first issue)_
Minimalistic Vue-powered static site generator -- [appsmith](https://github.com/appsmithorg/appsmith/labels/good%20first%20issue) _(label: good first issue)_
Drag & Drop internal tool builder -- [Letra Extension](https://github.com/jayehernandez/letra-extension/labels/good%20first%20issue) _(label: good first issue)_
Passively learn a new language every time you open a new tab. -- [swag-for-dev](https://github.com/swapagarwal/swag-for-dev/labels/good%20first%20issue) _(label: good first issue)_
Swag opportunities for developers. -- [webdriver.io](https://github.com/webdriverio/webdriverio/labels/first-timers-only) _(label: first-timers-only)_
Next-gen browser and mobile automation test framework for Node.js -- [SimplQ](https://github.com/SimplQ/simplQ-frontend/labels/good%20first%20issue) _(label: good first issue)_
Free online queue manager for easy and instant crowd control. [Contributing Guidelines](https://github.com/SimplQ/simplQ-frontend#contributing) -- [ReactiveSearch](https://github.com/appbaseio/reactivesearch/labels/good%20first%20issue%20%3Awave%3A) _(label: good first issue)_
A UI components library for Elasticsearch: Available for React, Vue and React Native. -- [Create React App](https://github.com/facebook/create-react-app/labels/good%20first%20issue) _(label: good-first-issue)_
Create React apps with no build configuration. -- [Svelte](https://github.com/sveltejs/svelte/labels/good%20first%20issue) _(label: good first issue)_
Component framework that runs at build time, converting your components into highly efficient imperative code that surgically updates the DOM. +- [altair](https://github.com/imolorhe/altair) _(label: good-first-issue)_
A beautiful feature-rich GraphQL Client for all platforms. +- [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. +- [annyang](https://github.com/TalAter/annyang) _(label: first-timers-only)_
A popular Speech Recognition library used to communicate with everything from websites to smart mirrors to flying drones. +- [appsmith](https://github.com/appsmithorg/appsmith) _(label: good-first-issue)_
Drag & Drop internal tool builder +- [Atom](https://github.com/atom/atom) _(label: beginner)_
The hackable text editor +- [AVA](https://github.com/sindresorhus/ava) _(label: good-for-beginner)_
Futuristic test runner. +- [Babel](https://github.com/babel/babel) _(label: good-first-issue)_
A compiler for writing next generation JavaScript. +- [Binari](https://github.com/BrandonArmand/Binari) _(label: up-for-grabs)_
Interactive code editor with a live binary tree visual designed to teach new developers the fundementals of dynamic programming. +- [Botpress](https://github.com/botpress/botpress) _(label: good-first-issue)_
The only sane way to build great bots. +- [Brave Browser](https://github.com/brave/brave-browser) _(label: good-first-issue)_
Desktop browser for macOS, Windows, and Linux. +- [cdnjs](https://github.com/cdnjs/cdnjs) _(label: good-first-issue)_
The best FOSS web front-end resource CDN +- [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. +- [Create React App](https://github.com/facebook/create-react-app) _(label: good-first-issue)_
Create React apps with no build configuration. +- [cypress](https://github.com/cypress-io/cypress) _(label: first-timers-only)_
Fast, easy and reliable testing for anything that runs in a browser. +- [Dragula](https://github.com/bevacqua/dragula) _(label: first-timers-only)_
Drag and drop so simple it hurts. +- [electron](https://github.com/electron/electron) _(label: good-first-issue)_
Build cross platform desktop apps with JavaScript, HTML, and CSS +- [Ember.js](https://github.com/emberjs/ember.js) _(label: Good-for-New-Contributors)_
A JavaScript framework for creating ambitious web applications. +- [Ember.js Data](https://github.com/emberjs/data) _(label: Good-for-New-Contributors)_
A data persistence library for Ember.js. +- [ESLint](https://github.com/eslint/eslint) _(label: good-first-issue)_
A fully pluggable tool for identifying and reporting on patterns in JavaScript. +- [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) _(label: good-for-beginner)_
Awesome ESLint rules. +- [Fastify](https://github.com/fastify/fastify) _(label: good-first-issue)_
Fast and low overhead web framework, for Node.js. +- [freeCodeCamp](https://github.com/freeCodeCamp/freeCodeCamp) _(label: first-timers-only)_
Open source codebase and curriculum. Learn to code and help nonprofits. +- [Gatsby.js](https://github.com/gatsbyjs/gatsby) _(label: good-first-issue)_
Build blazing fast, modern apps and websites with React. +- [Ghost](https://github.com/TryGhost/Ghost) _(label: good-first-issue)_
Just a blogging platform +- [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) +- [history](https://github.com/rackt/history) _(label: good-for-beginner)_
A minimal, functional history library for JavaScript. +- [Hoodie Camp](https://github.com/hoodiehq/camp) _(label: first-timers-only)_
Hoodie Camp is a space for new and existing contributors. +- [Hoppscotch](https://github.com/hoppscotch/hoppscotch) _(label: good-first-issue)_
A free, fast and beautiful API request builder. +- [Hyper](https://github.com/zeit/hyper) _(label: good-first-issue)_
JS/HTML/CSS Terminal +- [iD](https://github.com/openstreetmap/iD) _(label: good-first-issue)_
The easy-to-use OpenStreetMap editor in JavaScript. +- [Jest](https://github.com/facebook/jest) _(label: good-first-issue)_
A complete and easy to set up JavaScript testing solution. +- [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). +- [Kap](https://github.com/wulkano/kap) _(label: good-first-issue)_
An open-source screen recorder built with web technology +- [keystonejs](https://github.com/keystonejs/keystone) _(label: good-first-issue)_
The open source framework for developing database-driven websites, applications and APIs in Node.js. Built on Express and MongoDB. +- [Kinto.js](https://github.com/Kinto/kinto.js) _(label: easy-pick)_
An offline-first JavaScript client leveraging the Kinto API for remote data synchronization. +- [Leaflet](https://github.com/Leaflet/Leaflet) _(label: good-first-issue)_
JavaScript library for mobile-friendly interactive maps. +- [Letra Extension](https://github.com/jayehernandez/letra-extension) _(label: good-first-issue)_
Passively learn a new language every time you open a new tab. +- [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. +- [Mattermost](https://github.com/mattermost/mattermost-server/issues?utf8=✓&q=is:open+label:"Up+For+Grabs"+label:"Difficulty/1:Easy"+label:"Tech/Go") _(label: n/a)_
Open source Slack-alternative in Golang and React +- [md-page](https://github.com/oscarmorrison/md-page) _(label: good-first-issue)_
Create a webpage with just markdown. +- [Meteor](https://github.com/meteor/meteor) _(label: good-first-issue)_
Meteor is an ultra-simple environment for building modern web applications. +- [missioncontrol](https://github.com/davfoundation/missioncontrol) _(label: first-timers-only)_
Mission Control is a free and open marketplace connecting autonomous vehicles (e.g., drones) with users looking for services such as package deliveries. +- [missions](https://github.com/davfoundation/missions) _(label: first-timers-only)_
Missions is a mobile web app connecting DAV users looking to ship packages with autonomous drones looking for work in an open and free marketplace. +- [Mocha](https://github.com/mochajs/mocha) _(label: good-first-issue)_
Javascript test framework for Node.js and the browser. +- [Moment.js](https://github.com/moment/moment) _(label: Up-For-Grabs)_
A lightweight JavaScript date library for parsing, validating, manipulating, and formatting dates. +- [name-suggestion-index](https://github.com/osmlab/name-suggestion-index) _(label: good-first-issue)_
Canonical common brand names for OpenStreetMap +- [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. +- [netlify-cms](https://github.com/netlify/netlify-cms) _(label: good-first-issue)_
Open source content management for your git workflow. +- [Next.js](https://github.com/zeit/next.js) _(label: good-first-issue)_
A minimalistic framework for universal server-rendered React applications +- [Node.js core](https://github.com/nodejs/node) _(label: good-first-issue)_
JavaScript runtime built on Chrome's V8 JavaScript engine +- [nuclear](https://github.com/nukeop/nuclear) _(label: good-first-issue)_
Multiplatform music player that streams from free sources. +- [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. +- [pdf.js](https://github.com/mozilla/pdf.js) _(label: 5-good-beginner-bug)_
PDF Reader in JavaScript +- [pixi.js](https://github.com/pixijs/pixi.js) _(label: Difficulty:-Easy)_
A 2D JavaScript Renderer +- [PouchDB](https://github.com/pouchdb/pouchdb) _(label: first-timers-only)_
PouchDB is a pocket-sized database. +- [Predator](https://github.com/Zooz/predator) _(label: good-first-issue)_
A powerful open-source platform for load testing APIs. +- [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. +- [React](https://github.com/facebook/react) _(label: good-first-issue)_
A declarative, efficient, and flexible JavaScript library for building user interfaces. +- [React Native](https://github.com/facebook/react-native) _(label: Good-first-issue)_
A framework for building native apps with React. +- [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. +- [React-content-loader](https://github.com/danilowoz/create-content-loader) _(label: good-first-issue)_
Tool to create your own react-content-loader easily. +- [ReactiveSearch](https://github.com/appbaseio/reactivesearch) _(label: good-first-issue-:wave:)_
A UI components library for Elasticsearch: Available for React, Vue and React Native. +- [reactjs.org](https://github.com/reactjs/reactjs.org) _(label: good-first-issue)_
The documenation website for reactjs +- [Reddit Enhancement Suite](https://github.com/honestbleeps/Reddit-Enhancement-Suite) _(label: help-wanted)_
A browser extension to enhance the Reddit browsing experience. +- [Semantic-UI-React](https://github.com/Semantic-Org/Semantic-UI-React) _(label: good-first-issue)_
The official React integration for Semantic UI. +- [serverless](https://github.com/serverless/serverless) _(label: good-first-issue)_
The Serverless Framework +- [SimplQ](https://github.com/SimplQ/simplQ-frontend) _(label: good-first-issue)_
Free online queue manager for easy and instant crowd control. Contributing Guidelines +- [SirixDB](https://github.com/sirixdb/sirix-svelte-front-end) _(label: good-first-issue)_
A Svelte/Sapper based web front-end for SirixDB, which is a versioned NoSQL document store (XML and JSON) written in Java. +- [squirrelly](https://github.com/nebrelbug/squirrelly) _(label: good-first-issue)_
Squirrelly is a lightweight template engine that supports helpers, filters, partials, and more. +- [stryker](https://github.com/stryker-mutator/stryker) _(label: beginner-friendly)_
The JavaScript mutation testing framework +- [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. +- [swag-for-dev](https://github.com/swapagarwal/swag-for-dev) _(label: good-first-issue)_
Swag opportunities for developers. +- [Tessel 2 CLI](https://github.com/tessel/t2-cli) _(label: contribution-starter)_
Command line interface to Tessel 2. +- [Time to Leave](https://github.com/thamara/time-to-leave) _(label: good-first-issue)_
Working hours time tracker app based on Electron and Javascript. +- [TodoMVC](https://github.com/tastejs/todomvc) _(label: first-time-contributor)_
Helping you select an MV* framework by implementing Todo in lots of JavaScript apps. +- [Vest](https://github.com/ealush/vest) _(label: good-first-issue)_
Validations framework inspired by unit testing frameworks. +- [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. +- [Video.js](https://github.com/videojs/video.js) _(label: first-timers-only)_
The player framework +- [Vue CLI](https://github.com/vuejs/vue-cli) _(label: good-first-issue)_
Standard Tooling for Vue.js Development +- [Vue Router](https://github.com/vuejs/vue-router) _(label: good-first-issue)_
The official router for Vue.js. +- [Vue.js](https://github.com/vuejs/vue) _(label: good-first-issue)_
The Progressive JavaScript Framework. +- [VuePress](https://github.com/vuejs/vuepress) _(label: good-first-issue)_
Minimalistic Vue-powered static site generator +- [webdriver.io](https://github.com/webdriverio/webdriverio) _(label: first-timers-only)_
Next-gen browser and mobile automation test framework for Node.js +- [Yarn](https://github.com/yarnpkg/yarn) _(label: good-first-issue)_
Fast, reliable, and secure dependency management. ## Julia -- [Julia Language: Help wanted](https://github.com/JuliaLang/julia/labels/help%20wanted) _(label: help wanted)_
"Move like Python, Run like C" - A fresh approach to technical computing! -- [Julia Language: Good first issue](https://github.com/JuliaLang/julia/labels/good%20first%20issue) _(label: good first issue )_
"Move like Python, Run like C" - A fresh approach to technical computing! +- [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! +- [Julia Language: Help wanted](https://github.com/JuliaLang/julia) _(label: help-wanted)_
"Move like Python, Run like C" - A fresh approach to technical computing! ## Kotlin -- [Atrium](https://github.com/robstoll/atrium/labels/good%20first%20issue) _(label: good first issue)_
Multiplatform assertion library for Kotlin -- [Hexagon](https://github.com/hexagonkt/hexagon/labels/help%20wanted) _(label: help wanted)_
A microservices toolkit written in Kotlin -- [Non-Blocking SirixDB HTTP(S)-Server](https://github.com/sirixdb/sirix/labels/good%20first%20issue) _(label: good first issue)_
A non-blocking HTTP(S)-Server for SirixDB, a temporal, evolutionary NoSQL document store for XML and JSON. -- [Kotlin Libraries Playground](https://github.com/LouisCAD/kotlin-libraries-playground/labels/good%20first%20issue) _(label: good first issue)_
A playground to gain a wider and deeper knowledge of the libraries in the Kotlin ecosystem. Also the official sample for gradle refreshVersions. - +- [Atrium](https://github.com/robstoll/atrium) _(label: good-first-issue)_
Multiplatform assertion library for Kotlin +- [Hexagon](https://github.com/hexagonkt/hexagon) _(label: help-wanted)_
A microservices toolkit written in Kotlin +- [Kotlin Libraries Playground](https://github.com/LouisCAD/kotlin-libraries-playground) _(label: good-first-issue)_
A playground to gain a wider and deeper knowledge of the libraries in the Kotlin ecosystem. Also the official sample for gradle refreshVersions. +- [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. ## LaTeX -- [Algorithmic Pseudocode](https://github.com/just-a-visitor/algorithmic-pseudocode/labels/good%20first%20issue) _(label: good first issue)_
A collection of language independent pseudocodes (pdf) for interview preparation and competitive programming. +- [Algorithmic Pseudocode](https://github.com/just-a-visitor/algorithmic-pseudocode) _(label: good-first-issue)_
A collection of language independent pseudocodes (pdf) for interview preparation and competitive programming. ## Markdown -- [tldr-pages](https://github.com/tldr-pages/tldr/labels/help%20wanted) _(label: help wanted)_
Collaborative cheatsheets for console commands. +- [tldr-pages](https://github.com/tldr-pages/tldr) _(label: help-wanted)_
Collaborative cheatsheets for console commands. ## Perl -- [Ravada](https://github.com/UPC/ravada/labels/good%20first%20issue) _(label: good first issue)_
Remote Virtual Desktops Manager. +- [Ravada](https://github.com/UPC/ravada) _(label: good-first-issue)_
Remote Virtual Desktops Manager. ## PHP -- [phpMyAdmin](https://github.com/phpmyadmin/phpmyadmin/labels/newbie) _(label: newbie)_
Admin interface for MySQL written in PHP. -- [Deployer](https://github.com/deployphp/deployer/labels/good%20for%20beginner) _(label: good for beginner)_
A deployment tool written in PHP with support for popular frameworks out of the box. -- [Matomo](https://github.com/matomo-org/matomo/labels/help%20wanted) _(label: help wanted)_
Matomo is the leading Free/Libre open analytics platform. -- [OrgManager](https://github.com/orgmanager/orgmanager/labels/beginners-only) _(label: beginners-only)_
Supercharge your GitHub organizations! -- [PHP Censor](https://github.com/php-censor/php-censor/labels/good-for-beginner) _(label: good-for-beginner)_
Open source self-hosted continuous integration server for PHP projects. -- [Drupal](https://www.drupal.org/getting-involved-guide) _(label: N/A, link to external website)_
Leading open-source CMS for ambitious digital experiences that reach your audience across multiple channels. -- [Symfony](https://github.com/symfony/symfony/labels/good%20first%20issue) _(label: good first issue)_
Symfony is a PHP framework for web applications and a set of reusable PHP components. -- [Laravel Newsletters](https://github.com/spatie/laravel-newsletter/labels/good%20first%20issue) _(label: good first issue)_
A package that provides an easy way to integrate MailChimp with Laravel 5. -- [Appwrite](https://github.com/appwrite/appwrite/labels/good%20first%20issue) _(label: good first issue)_
An End-to-end backend server for frontend and mobile developers. 🚀 -- [NextCloud Server](https://github.com/nextcloud/server/labels/good%20first%20issue) _(label: good first issue)_
Nextcloud server, a safe home for all your data. -- [PrestaShop](https://github.com/PrestaShop/PrestaShop/labels/good%20first%20issue) _(label: good first issue)_
The open source ecommerce solution to start your online business and start selling online. -- [Flarum](https://github.com/flarum/core/labels/Good%20first%20issue) _(label: good first issue)_
Simple forum software for building great communities. -- [MediaWiki](https://phabricator.wikimedia.org/maniphest/query/4Q5_qR51u_oz/#R) _(label: good first task)_
The free and open-source wiki software package that powers Wikipedia. +- [Appwrite](https://github.com/appwrite/appwrite) _(label: good-first-issue)_
An End-to-end backend server for frontend and mobile developers. 🚀 +- [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. +- [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. +- [Flarum](https://github.com/flarum/core) _(label: Good-first-issue)_
Simple forum software for building great communities. +- [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. +- [Matomo](https://github.com/matomo-org/matomo) _(label: help-wanted)_
Matomo is the leading Free/Libre open analytics platform. +- [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. +- [NextCloud Server](https://github.com/nextcloud/server) _(label: good-first-issue)_
Nextcloud server, a safe home for all your data. +- [OrgManager](https://github.com/orgmanager/orgmanager) _(label: beginners-only)_
Supercharge your GitHub organizations! +- [PHP Censor](https://github.com/php-censor/php-censor) _(label: good-for-beginner)_
Open source self-hosted continuous integration server for PHP projects. +- [phpMyAdmin](https://github.com/phpmyadmin/phpmyadmin) _(label: newbie)_
Admin interface for MySQL written in PHP. +- [PrestaShop](https://github.com/PrestaShop/PrestaShop) _(label: good-first-issue)_
The open source ecommerce solution to start your online business and start selling online. +- [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. ## Python -- [CiviWiki](https://github.com/CiviWiki/OpenCiviWiki/labels/good%20first%20issue) _(Good First Issue)_
Building a Better Democracy for the Internet Age -- [Python Babel](https://github.com/python-babel/babel/labels/difficulty%2Flow) _(label: difficulty/low)_
The Python Internationalization Library. -- [Kinto](https://github.com/Kinto/kinto/labels/easy-pick) _(label: easy-pick)_
A lightweight JSON storage service with synchronisation and sharing abilities. -- [Kinto.sh](https://github.com/rbreaves/kinto/labels/first-timers-only) _(label: first-timers-only)_
Make Linux & Windows type like a mac. -- [BorgBackup](https://github.com/borgbackup/borg/labels/easy) _(label: easy)_
Deduplicating backup program with compression and authenticated encryption. -- [scrapy](https://github.com/scrapy/scrapy/labels/good%20first%20issue) _(label: good first issue)_
A fast high-level web crawling & scraping framework for Python. -- [mitmproxy](https://github.com/mitmproxy/mitmproxy/labels/help%20wanted) _(label: help wanted)_
An interactive TLS-capable intercepting HTTP proxy for penetration testers and software developers -- [Mailpile](https://github.com/mailpile/Mailpile/labels/Low%20Hanging%20Fruit) _(label: low hanging fruit)_
A free & open modern, fast email client with user-friendly encryption and privacy features -- [coala](https://github.com/issues?utf8=✓&q=is%3Aopen+is%3Aissue+user%3Acoala+label%3Adifficulty%2Fnewcomer++no%3Aassignee) _(label: difficulty/newcomer)_
A unified command-line interface for linting and fixing all your code, regardless of the programming languages you use. -- [jarvis](https://github.com/sukeesh/Jarvis/labels/difficulty%2Fnewcomer) _(label: difficulty/newcomer)_
A personal assistant for Linux, MacOs and Windows based on Command line Interface. -- [JARVIS-on-Messenger](https://github.com/swapagarwal/JARVIS-on-Messenger/labels/Low-Hanging%20Fruit) _(label: Low-Hanging Fruit)_
:speech_balloon: A community-driven python bot that aims to be as simple as possible to serve humans with their everyday tasks http://m.me/J.A.R.V.I.S.on.Messenger -- [Pytest](https://github.com/pytest-dev/pytest/labels/status%3A%20easy) _(label: status: easy)_
The pytest framework makes it easy to write small tests, yet scales to support complex functional testing. -- [Fabric](https://github.com/fabric/fabric/labels/Low-hanging%20fruit) _(label: Low-hanging fruit)_
Pythonic remote execution and deployment. -- [Jupyter notebook](https://github.com/jupyter/notebook/labels/good%20first%20issue) _(label: good first issue)_
Jupyter interactive notebook. -- [Zulip](https://github.com/zulip/zulip/labels/good%20first%20issue) _(label: good first issue)_
Powerful open source group chat. -- [cookiecutter](https://github.com/audreyr/cookiecutter/labels/low-hanging-fruit) _(label: low-hanging-fruit)_
A command-line utility that creates projects from cookiecutters (project templates). E.g. Python package projects, jQuery plugin projects. -- [django cookiecutter](https://github.com/pydanny/cookiecutter-django/labels/hacktoberfest) _(label: django hacktober special)_
An implementation of Python for backend web development. -- [wemake-python-styleguide](https://github.com/wemake-services/wemake-python-styleguide/labels/level%3Astarter) _(label: level:starter)_
The strictest and most opinionated python linter ever! -- [Ansible](https://github.com/ansible/ansible/labels/easyfix) _(label:easyfix)_
A simple IT automation platform -- [Create aio app](https://github.com/aio-libs/create-aio-app/labels/good%20first%20issue) _(label: good first issue)_
A command line utility that creates the aiohttp template with the best practices. -- [opsdroid](https://github.com/opsdroid/opsdroid/labels/good%20first%20issue) _(label: good first issue)_
An open source chat-ops bot framework. -- [pandas](https://github.com/pandas-dev/pandas/labels/good%20first%20issue) _(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 -- [SaltStack](https://github.com/saltstack/salt/labels/good%20first%20issue) _(label: good first issue)_
Software to automate the management and configuration of any infrastructure or application at scale. -- [mygpo](https://github.com/gpodder/mygpo/labels/starter-issue) _(label: starter-issue)_
The webservice for gpodder.net, a libre web service that allows users to manage their podcast subscriptions and discover new content. -- [tree-sitter-legesher-python](https://github.com/legesher/tree-sitter-legesher-python/labels/Good%20First%20Issue) _(label: Good First Issue)_
Learn and code in Python using your native language. -- [mypy](https://github.com/python/mypy/labels/good-first-issue) _(label: good-first-issue)_
An optional static typing for python. -- [numpy](https://github.com/numpy/numpy/labels/good%20first%20issue) _(label: good first issue)_
It is the core library for scientific computing, which contains a powerful n-dimensional array object. -- [matplotlib](https://github.com/matplotlib/matplotlib/labels/good%20first%20issue) _(label: good first issue)_
Matplotlib is a comprehensive library for creating static, animated, and interactive visualizations in Python. -- [datascience](https://github.com/data-8/datascience/labels/good%20first%20issue) _(label: good first issue)_
A Jupyter notebook Python library for introductory data science. -- [ArviZ](https://github.com/arviz-devs/arviz/labels/Beginner) _(label: Beginner)_
Exploratory Anaylsis of Bayesian Models. -- [MindsDB](https://github.com/mindsdb/mindsdb/labels/good%20first%20issue) _(label: good first issue)_
MindsDB is an open source AI layer for existing databases. -- [Bokeh](https://github.com/bokeh/bokeh/labels/good%20first%20issue) _(label: good first issue)_
Bokeh is an interactive visualization library for modern web browsers. -- [SymPy](https://github.com/sympy/sympy/labels/Easy%20to%20Fix) _(label: Easy to Fix)_
A Python library for symbolic mathematics. -- [Pytorch](https://github.com/pytorch/pytorch/labels/good%20first%20issue) _(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. -- [Sorting-Algorithms-Visualizer](https://github.com/LucasPilla/Sorting-Algorithms-Visualizer/labels/good%20first%20issue) _(label: good first issue)_
A tool for visualizing sorting algorithms with a educational Wiki Page. -- [scikit-learn](https://github.com/scikit-learn/scikit-learn/labels/good%20first%20issue) _(label: good first issue)_
Scikit-learn is a machine learning library for Python. +- [Ansible](https://github.com/ansible/ansible) _(label: easyfix)_
A simple IT automation platform +- [ArviZ](https://github.com/arviz-devs/arviz) _(label: Beginner)_
Exploratory Anaylsis of Bayesian Models. +- [Bokeh](https://github.com/bokeh/bokeh) _(label: good-first-issue)_
Bokeh is an interactive visualization library for modern web browsers. +- [BorgBackup](https://github.com/borgbackup/borg) _(label: easy)_
Deduplicating backup program with compression and authenticated encryption. +- [CiviWiki](https://github.com/CiviWiki/OpenCiviWiki) _(label: good-first-issue)_
Building a Better Democracy for the Internet Age +- [coala](https://github.com/issues?utf8=✓&q=is:open+is:issue+user:coala+label:difficulty/newcomer++no:assignee) _(label: n/a)_
A unified command-line interface for linting and fixing all your code, regardless of the programming languages you use. +- [cookiecutter](https://github.com/audreyr/cookiecutter) _(label: low-hanging-fruit)_
A command-line utility that creates projects from cookiecutters (project templates). E.g. Python package projects, jQuery plugin projects. +- [Create aio app](https://github.com/aio-libs/create-aio-app) _(label: good-first-issue)_
A command line utility that creates the aiohttp template with the best practices. +- [datascience](https://github.com/data-8/datascience) _(label: good-first-issue)_
A Jupyter notebook Python library for introductory data science. +- [django cookiecutter](https://github.com/pydanny/cookiecutter-django) _(label: hacktoberfest)_
An implementation of Python for backend web development. +- [Fabric](https://github.com/fabric/fabric) _(label: Low-hanging-fruit)_
Pythonic remote execution and deployment. +- [jarvis](https://github.com/sukeesh/Jarvis) _(label: difficulty/newcomer)_
A personal assistant for Linux, MacOs and Windows based on Command line Interface. +- [JARVIS-on-Messenger](https://github.com/swapagarwal/JARVIS-on-Messenger) _(label: Low-Hanging-Fruit)_
💬 A community-driven python bot that aims to be as simple as possible to serve humans with their everyday tasks http://m.me/J.A.R.V.I.S.on.Messenger +- [Jupyter notebook](https://github.com/jupyter/notebook) _(label: good-first-issue)_
Jupyter interactive notebook. +- [Kinto](https://github.com/Kinto/kinto) _(label: easy-pick)_
A lightweight JSON storage service with synchronisation and sharing abilities. +- [Kinto.sh](https://github.com/rbreaves/kinto) _(label: first-timers-only)_
Make Linux & Windows type like a mac. +- [Mailpile](https://github.com/mailpile/Mailpile) _(label: Low-Hanging-Fruit)_
A free & open modern, fast email client with user-friendly encryption and privacy features +- [matplotlib](https://github.com/matplotlib/matplotlib) _(label: good-first-issue)_
Matplotlib is a comprehensive library for creating static, animated, and interactive visualizations in Python. +- [MindsDB](https://github.com/mindsdb/mindsdb) _(label: good-first-issue)_
MindsDB is an open source AI layer for existing databases. +- [mitmproxy](https://github.com/mitmproxy/mitmproxy) _(label: help-wanted)_
An interactive TLS-capable intercepting HTTP proxy for penetration testers and software developers +- [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. +- [mypy](https://github.com/python/mypy) _(label: good-first-issue)_
An optional static typing for python. +- [numpy](https://github.com/numpy/numpy) _(label: good-first-issue)_
It is the core library for scientific computing, which contains a powerful n-dimensional array object. +- [opsdroid](https://github.com/opsdroid/opsdroid) _(label: good-first-issue)_
An open source chat-ops bot framework. +- [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 +- [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. +- [Python Babel](https://github.com/python-babel/babel) _(label: difficulty/low)_
The Python Internationalization Library. +- [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. +- [SaltStack](https://github.com/saltstack/salt) _(label: good-first-issue)_
Software to automate the management and configuration of any infrastructure or application at scale. +- [scikit-learn](https://github.com/scikit-learn/scikit-learn) _(label: good-first-issue)_
Scikit-learn is a machine learning library for Python. +- [scrapy](https://github.com/scrapy/scrapy) _(label: good-first-issue)_
A fast high-level web crawling & scraping framework for Python. +- [Sorting-Algorithms-Visualizer](https://github.com/LucasPilla/Sorting-Algorithms-Visualizer) _(label: good-first-issue)_
A tool for visualizing sorting algorithms with a educational Wiki Page. +- [SymPy](https://github.com/sympy/sympy) _(label: Easy-to-Fix)_
A Python library for symbolic mathematics. +- [tree-sitter-legesher-python](https://github.com/legesher/tree-sitter-legesher-python) _(label: Good-First-Issue)_
Learn and code in Python using your native language. +- [wemake-python-styleguide](https://github.com/wemake-services/wemake-python-styleguide) _(label: level:starter)_
The strictest and most opinionated python linter ever! +- [Zulip](https://github.com/zulip/zulip) _(label: good-first-issue)_
Powerful open source group chat. ## Ruby -- [JRuby](https://github.com/jruby/jruby/labels/beginner) _(label: beginner)_
An implementation of Ruby on the Java Virtual Machine. -- [Sinatra](https://github.com/sinatra/sinatra/labels/good%20first%20issue) _(label: good first issue)_
Classy web-development dressed in a DSL. -- [Goby](https://github.com/nskins/goby) _(label: beginner)_
Framework for developing text-RPGs. -- [Hanami](https://github.com/hanami/hanami/labels/easy) _(label: easy)_
A modern framework for Ruby. -- [chef](https://github.com/chef/chef/labels/Type%3A%20Jump%20In) _(label: Type: Jump In)_
A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure -- [ohai](https://github.com/chef/ohai/labels/Type%3A%20Jump%20In) _(label: Type: Jump In)_
Ohai profiles your system and emits JSON -- [PublicLab.org](https://github.com/publiclab/plots2/labels/first-timers-only) _(label: first-timers-only)_
An open source publishing platform for environmental projects. Check out [new contributors welcome page](https://github.com/publiclab/plots2/projects/2). -- [Discourse](https://meta.discourse.org/tags/starter-task) _(tag: #starter-task)_
Civilized discussion platform. See ["How to contribute to Discourse"](https://meta.discourse.org/t/how-to-contribute-to-discourse/53797). -- [osem](https://github.com/openSUSE/osem/labels/good%20first%20issue) _(label: good first issue)_
Open Source Event Manager. An event management tool tailored to Free and Open Source Software conferences
See ["How to contribute to osem"](https://github.com/openSUSE/osem/blob/master/CONTRIBUTING.md) -- [open-build-service](https://github.com/openSUSE/open-build-service/labels/good%20first%20issue%20%3A1st_place_medal%3A) _(label: good first issue)_
A generic system to build and distribute packages from sources in an automatic, consistent and reproducible way.
See ["How to contribute to open build service"](https://github.com/openSUSE/open-build-service/blob/master/CONTRIBUTING.md) -- [bolt](https://github.com/puppetlabs/bolt/labels/Beginner%20Friendly) _(label: Beginner Friendly)_
Bolt is a Ruby command-line tool for executing commands, scripts, and tasks on remote systems using SSH and WinRM. -- [chatwoot](https://github.com/chatwoot/chatwoot/labels/good%20first%20issue) _(label: good first issue)_
Opensource customer support platform which can be an alternative to Intercom, Zendesk, Drift, Crisp etc. -- [mapknitter](https://github.com/publiclab/mapknitter/labels/first-timers-only) _(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. -- [Ruby on Rails](https://github.com/rails/rails/labels/good%20first%20issue) _(label: good first issue)_
Ruby on Rails (Rails) is an open source web application framework written in Ruby. -- [Faker](https://github.com/faker-ruby/faker/labels/good%20first%20issue) _(label: good first issue)_
Faker is a Ruby library for generating fake data such as names, addresses, and phone numbers. -- [Matestack](https://github.com/matestack/matestack-ui-core/labels/good%20first%20issue) _(label: good first issue)_
Write dynamic User Interfaces in pure Ruby. Rails engine built on top of Vue.js +- [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. +- [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. +- [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 +- [Discourse](https://meta.discourse.org/tags/starter-task) _(label: n/a)_
Civilized discussion platform. See "How to contribute to Discourse". +- [Faker](https://github.com/faker-ruby/faker) _(label: good-first-issue)_
Faker is a Ruby library for generating fake data such as names, addresses, and phone numbers. +- [Goby](https://github.com/nskins/goby) _(label: n/a)_
Framework for developing text-RPGs. +- [Hanami](https://github.com/hanami/hanami) _(label: easy)_
A modern framework for Ruby. +- [JRuby](https://github.com/jruby/jruby) _(label: beginner)_
An implementation of Ruby on the Java Virtual Machine. +- [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. +- [Matestack](https://github.com/matestack/matestack-ui-core) _(label: good-first-issue)_
Write dynamic User Interfaces in pure Ruby. Rails engine built on top of Vue.js +- [ohai](https://github.com/chef/ohai) _(label: Type:-Jump-In)_
Ohai profiles your system and emits JSON +- [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. +- [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 +- [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. +- [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. +- [Sinatra](https://github.com/sinatra/sinatra) _(label: good-first-issue)_
Classy web-development dressed in a DSL. ## Rust -- [Servo](https://github.com/servo/servo/labels/E-easy) _(label: E-easy)_
A browser engine designed for applications including embedded use. -- [Rust-Clippy](https://github.com/rust-lang-nursery/rust-clippy/labels/good%20first%20issue) _(label: good first issue)_
A bunch of lints to catch common mistakes and improve Rust code -- [Rustfmt](https://github.com/rust-lang-nursery/rustfmt/labels/good%20first%20issue) _(label: good first issue)_
A tool for formatting Rust code according to style guidelines. -- [Iron](https://github.com/iron/iron/labels/easy) _(label: easy)_
An extensible, concurrent web framework for Rust -- [TiKV](https://github.com/tikv/tikv/labels/difficulty%2Feasy) _(label: D: difficulty/easy)_
A distributed transactional key-value database -- [nushell](https://github.com/nushell/nushell/labels/good%20first%20issue) _(label: good first issue)_
A modern shell for the GitHub era written in Rust. -- [Hyper](https://github.com/hyperium/hyper/labels/E-easy) _(label: E-easy)_
A fast, safe and correct low-level HTTP library for Rust. -- [dotenv-linter](https://github.com/dotenv-linter/dotenv-linter/labels/good%20first%20issue) _(label: good first issue)_
⚡️Lightning-fast linter for `.env` files. Written in Rust 🦀 -- [Veloren](https://gitlab.com/veloren/veloren/-/issues?label_name%5B%5D=beginner) _(label: beginner and difficulty::easy)_
Veloren is a multiplayer voxel RPG written in Rust. +- [dotenv-linter](https://github.com/dotenv-linter/dotenv-linter) _(label: good-first-issue)_
Lightning-fast linter for .env files. Written in Rust +- [Hyper](https://github.com/hyperium/hyper) _(label: E-easy)_
A fast, safe and correct low-level HTTP library for Rust. +- [Iron](https://github.com/iron/iron) _(label: easy)_
An extensible, concurrent web framework for Rust +- [nushell](https://github.com/nushell/nushell) _(label: good-first-issue)_
A modern shell for the GitHub era written in Rust. +- [Rust-Clippy](https://github.com/rust-lang-nursery/rust-clippy) _(label: good-first-issue)_
A bunch of lints to catch common mistakes and improve Rust code +- [Rustfmt](https://github.com/rust-lang-nursery/rustfmt) _(label: good-first-issue)_
A tool for formatting Rust code according to style guidelines. +- [Servo](https://github.com/servo/servo) _(label: E-easy)_
A browser engine designed for applications including embedded use. +- [TiKV](https://github.com/tikv/tikv) _(label: difficulty/easy)_
A distributed transactional key-value database +- [Veloren](https://gitlab.com/veloren/veloren/-/issues?label_name[]=beginner) _(label: n/a)_
Veloren is a multiplayer voxel RPG written in Rust. ## Scala -- [Twitter Util](https://github.com/twitter/util/labels/good%20first%20issue) _(label: good first issue)_
Wonderful reusable code from Twitter -- [playframework](https://github.com/playframework/playframework/labels/good%20first%20issue) _(label: good first issue)_
The High Velocity Web Framework +- [playframework](https://github.com/playframework/playframework) _(label: good-first-issue)_
The High Velocity Web Framework +- [Twitter Util](https://github.com/twitter/util) _(label: good-first-issue)_
Wonderful reusable code from Twitter ## Smalltalk -- [Pharo](https://github.com/pharo-project/pharo/labels/good%20first%20issue) _(label: good first issue)_
A dynamic reflective pure object-oriented language supporting live programming inspired by Smalltalk. +- [Pharo](https://github.com/pharo-project/pharo) _(label: good-first-issue)_
A dynamic reflective pure object-oriented language supporting live programming inspired by Smalltalk. ## Swift -- [OpenFoodFacts-iOS](https://github.com/openfoodfacts/openfoodfacts-ios/labels/help%20wanted) _(label: help wanted)_
Collaborative, free and open database of food products from around the world. Scan barcode to get info or add a product +- [OpenFoodFacts-iOS](https://github.com/openfoodfacts/openfoodfacts-ios) _(label: help-wanted)_
Collaborative, free and open database of food products from around the world. Scan barcode to get info or add a product ## TypeScript -- [TypeScript](https://github.com/Microsoft/TypeScript/labels/good%20first%20issue) _(label: good first issue)_
A superset of JavaScript that compiles to clean JavaScript output. -- [Visual Studio Code](https://github.com/Microsoft/vscode/labels/good%20first%20issue) _(label: good first issue)_
A new type of tool that combines the simplicity of a code editor with what developers need for their core edit-build-debug cycle. -- [tslint-eslint-rules](https://github.com/buzinas/tslint-eslint-rules/labels/nice%20first%20contribution) _(label: nice first contribution)_
ESLint rules for TSLint. -- [reatom](https://github.com/artalar/reatom/labels/good%20first%20issue) _(label: good first issue)_
Reatom is declarative and reactive state manager, designed for both simple and complex applications. -- [game-of-life](https://github.com/TroyTae/game-of-life/labels/good%20first%20issue) _(label: good first issue)_
Conway's Game of Life web version! -- [Graphback](https://github.com/aerogear/graphback/labels/good%20first%20issue) _(label: good first issue)_
A CLI and runtime framework to generate a GraphQL API in seconds. -- [LitmusChaos](https://github.com/litmuschaos/litmus/labels/good%20first%20issue) _(label: good first issue)_
Litmus is a toolset to do cloud-native chaos engineering. -- [Booster](https://github.com/boostercloud/booster/labels/good%20first%20issue) _(label: good first issue)_
A truly serverless framework, write your code and deploy it in seconds without any server configuration files. -- [tinyhttp](https://github.com/talentlessguy/tinyhttp/labels/good%20first%20issue) _(label: good first issue)_
A 0-legacy, tiny & fast web framework as a replacement of Express. -- [jupyterlab-lsp](https://github.com/krassowski/jupyterlab-lsp/labels/good%20first%20issue) _(label: good first issue)_
Coding assistance for JupyterLab (code navigation + hover suggestions + linters + autocompletion + rename) +- [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. +- [game-of-life](https://github.com/TroyTae/game-of-life) _(label: good-first-issue)_
Conway's Game of Life web version! +- [Graphback](https://github.com/aerogear/graphback) _(label: good-first-issue)_
A CLI and runtime framework to generate a GraphQL API in seconds. +- [jupyterlab-lsp](https://github.com/krassowski/jupyterlab-lsp) _(label: good-first-issue)_
Coding assistance for JupyterLab (code navigation + hover suggestions + linters + autocompletion + rename) +- [LitmusChaos](https://github.com/litmuschaos/litmus) _(label: good-first-issue)_
Litmus is a toolset to do cloud-native chaos engineering. +- [reatom](https://github.com/artalar/reatom) _(label: good-first-issue)_
Reatom is declarative and reactive state manager, designed for both simple and complex applications. +- [tinyhttp](https://github.com/talentlessguy/tinyhttp) _(label: good-first-issue)_
A 0-legacy, tiny & fast web framework as a replacement of Express. +- [tslint-eslint-rules](https://github.com/buzinas/tslint-eslint-rules) _(label: nice-first-contribution)_
ESLint rules for TSLint. +- [TypeScript](https://github.com/Microsoft/TypeScript) _(label: good-first-issue)_
A superset of JavaScript that compiles to clean JavaScript output. +- [Visual Studio Code](https://github.com/Microsoft/vscode) _(label: good-first-issue)_
A new type of tool that combines the simplicity of a code editor with what developers need for their core edit-build-debug cycle. + ## Contribute -Contributions are welcome! See the [contribution guidelines](CONTRIBUTING.md). +Contributions are welcome! See the [contributing guidelines](CONTRIBUTING.md). ## Thanks to GitHub Sponsors - - - - - -
- - -
- Thamara Andrade -
-
- - -
- Shehan Atukorala -
-
+

Thamara Andrade
## License diff --git a/data.json b/data.json new file mode 100644 index 0000000..d69a9d3 --- /dev/null +++ b/data.json @@ -0,0 +1,1873 @@ +{ + "sponsors": [ + { + "name": "Thamara Andrade", + "image": "https://avatars1.githubusercontent.com/u/846063?v=4?s=60", + "link": "https://github.com/thamara" + } + ], + "technologies": { + ".NET": "net", + "C#": "c-1", + "C++": "c-2" + }, + "repositories": [ + { + "name": "MvvmCross", + "link": "https://github.com/MvvmCross/MvvmCross", + "label": "first-timers-only", + "technologies": [ + ".NET" + ], + "description": "The .NET MVVM framework for cross-platform solutions, including Xamarin.iOS, Xamarin.Android, Windows and Mac." + }, + { + "name": "RawCMS", + "link": "https://github.com/arduosoft/RawCMS", + "label": "good-first-issue", + "technologies": [ + ".NET" + ], + "description": "RawCMS is a headless CMS written in ASP.NET Core, built for developers that embrace API-first technology." + }, + { + "name": "Shouldly", + "link": "https://github.com/shouldly/shouldly", + "label": "Jump-In", + "technologies": [ + ".NET" + ], + "description": "Should testing for .NET - the way Asserting Should be!" + }, + { + "name": "Neovim", + "link": "https://github.com/neovim/neovim", + "label": "good-first-issue", + "technologies": [ + "C" + ], + "description": "Vim-fork focused on extensibility and agility." + }, + { + "name": "grok.net", + "link": "https://github.com/Marusyk/grok.net", + "label": "good-first-issue", + "technologies": [ + "C#" + ], + "description": "Cross platform .NET grok implementation" + }, + { + "name": "OpenRA", + "link": "https://github.com/OpenRA/OpenRA", + "label": "Easy", + "technologies": [ + "C#" + ], + "description": "A Real Time Strategy game engine supporting early Westwood classics such as Command & Conquer: Red Alert." + }, + { + "name": "osu!", + "link": "https://github.com/ppy/osu", + "label": "good-first-issue", + "technologies": [ + "C#" + ], + "description": "Music game. Rhythm is just a click away!" + }, + { + "name": "Uno Platform", + "link": "https://github.com/unoplatform/uno", + "label": "good-first-issue", + "technologies": [ + "C#" + ], + "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." + }, + { + "name": "Cake", + "link": "https://github.com/cake-build/cake", + "label": "Good-first-issue", + "technologies": [ + "C#" + ], + "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." + }, + { + "name": "electron", + "link": "https://github.com/electron/electron", + "label": "good-first-issue", + "technologies": [ + "C++", + "JavaScript" + ], + "description": "Build cross platform desktop apps with JavaScript, HTML, and CSS" + }, + { + "name": "Godot Engine", + "link": "https://github.com/godotengine/godot", + "label": "junior-job", + "technologies": [ + "C++" + ], + "description": "2D and 3D cross-platform game engine. Also has C# and Python code." + }, + { + "name": "projectM", + "link": "https://github.com/projectM-visualizer/projectm", + "label": "good-first-issue", + "technologies": [ + "C++" + ], + "description": "A music visualizer library using OpenGL and GLSL. Has applications using Qt5, SDL, emscripten, iTunes, Kodi." + }, + { + "name": "Roc Toolkit", + "link": "https://github.com/roc-streaming/roc-toolkit", + "label": "help-wanted", + "technologies": [ + "C++" + ], + "description": "A toolkit for real-time audio streaming over the network." + }, + { + "name": "tensorflow", + "link": "https://github.com/tensorflow/tensorflow", + "label": "stat:contributions-welcome", + "technologies": [ + "C++" + ], + "description": "Computation using data flow graphs for scalable machine learning" + }, + { + "name": "Yugabyte DB", + "link": "https://github.com/yugabyte/yugabyte-db", + "label": "good-first-issue", + "technologies": [ + "C++" + ], + "description": "Distributed SQL database." + }, + { + "name": "MoveIt", + "link": "https://github.com/ros-planning/moveit", + "label": "good-first-issue", + "technologies": [ + "C++" + ], + "description": "Easy-to-use open source robotics manipulation platform for developing commercial applications, prototyping designs, and benchmarking algorithms." + }, + { + "name": "Alda", + "link": "https://github.com/alda-lang/alda", + "label": "low-hanging-fruit", + "technologies": [ + "Clojure" + ], + "description": "A music programming language for musicians. 🎶" + }, + { + "name": "LightTable", + "link": "https://github.com/LightTable/LightTable", + "label": "good-first-issue", + "technologies": [ + "ClojureScript" + ], + "description": "The Next Generation code editor! One of the top funded projects on KickStarter." + }, + { + "name": "sButtons", + "link": "https://github.com/shahednasser/sbuttons", + "label": "good-first-issue", + "technologies": [ + "CSS" + ], + "description": "Simple buttons you can easily use for your next project." + }, + { + "name": "dart.dev", + "link": "https://github.com/dart-lang/site-www", + "label": "beginner", + "technologies": [ + "Dart" + ], + "description": "A website covering Dart language and common libraries, for developers of Dart libraries, web apps, server-side code, and mobile (Flutter) apps." + }, + { + "name": "Ecto", + "link": "https://github.com/elixir-ecto/ecto", + "label": "Level:Starter", + "technologies": [ + "Elixir" + ], + "description": "Ecto is a database wrapper and language integrated query for Elixir" + }, + { + "name": "Elixir", + "link": "https://github.com/elixir-lang/elixir", + "label": "Level:Starter", + "technologies": [ + "Elixir" + ], + "description": "Elixir is a dynamic, functional language designed for building scalable and maintainable applications" + }, + { + "name": "CockroachDB", + "link": "https://github.com/cockroachdb/cockroach", + "label": "good-first-issue", + "technologies": [], + "description": "The Scalable, Survivable, Strongly-Consistent SQL Database" + }, + { + "name": "Docker/CLI", + "link": "https://github.com/docker/cli", + "label": "exp/beginner", + "technologies": [ + "Go" + ], + "description": "The Docker CLI" + }, + { + "name": "Helm", + "link": "https://github.com/kubernetes/helm", + "label": "good-first-issue", + "technologies": [ + "Go" + ], + "description": "The Kubernetes Package Manager" + }, + { + "name": "Hugo", + "link": "https://github.com/spf13/hugo", + "label": "exp/beginner", + "technologies": [ + "Go" + ], + "description": "A Fast and Flexible Static Site Generator built with love in GoLang" + }, + { + "name": "Kubernetes", + "link": "https://github.com/kubernetes/kubernetes", + "label": "good-first-issue", + "technologies": [ + "Go" + ], + "description": "Production-Grade Container Scheduling and Management System" + }, + { + "name": "Mattermost", + "link": "https://github.com/mattermost/mattermost-server/issues?utf8=✓&q=is:open+label:\"Up+For+Grabs\"+label:\"Difficulty/1:Easy\"+label:\"Tech/Go\"", + "technologies": [ + "Go", "JavaScript" + ], + "description": "Open source Slack-alternative in Golang and React" + }, + { + "name": "Moby", + "link": "https://github.com/moby/moby", + "label": "exp/beginner", + "technologies": [ + "Go" + ], + "description": "Open-source application container engine" + }, + { + "name": "Terraform", + "link": "https://github.com/hashicorp/terraform", + "label": "good-first-issue", + "technologies": [ + "Go" + ], + "description": "A tool for building, changing, and versioning infrastructure safely and efficiently." + }, + { + "name": "TiDB", + "link": "https://github.com/pingcap/tidb", + "label": "for-new-contributors", + "technologies": [ + "Go" + ], + "description": "A distributed scalable Hybrid Transactional and Analytical Processing (HTAP) database" + }, + { + "name": "script", + "link": "https://github.com/bitfield/script", + "label": "good-first-issue", + "technologies": [ + "Go" + ], + "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." + }, + { + "name": "httpexpect", + "link": "https://github.com/gavv/httpexpect", + "label": "help-wanted", + "technologies": [ + "Go" + ], + "description": "End-to-end HTTP and REST API testing for Go." + }, + { + "name": "Killgrave", + "link": "https://github.com/friendsofgo/killgrave", + "label": "good-first-issue", + "technologies": [ + "Go" + ], + "description": "Simple way to generate mock servers in Go." + }, + { + "name": "lxd", + "link": "https://github.com/lxc/lxd", + "label": "easy", + "technologies": [ + "Go" + ], + "description": "System container and virtual machine manager." + }, + { + "name": "PureLB", + "link": "https://gitlab.com/purelb/purelb/-/issues?label_name[]=GoodFirstIssue", + "technologies": [ + "Go" + ], + "description": "Load-balancer orchestrator for Kubernetes that uses standard Linux networking and routing protocols." + }, + { + "name": "containerd", + "link": "https://github.com/containerd/containerd", + "label": "exp/beginner", + "technologies": [ + "Go" + ], + "description": "Industry-standard container runtime with an emphasis on simplicity, robustness and portability." + }, + { + "name": "Meshery", + "link": "https://github.com/layer5io/meshery", + "label": "good-first-issue", + "technologies": [ + "Go" + ], + "description": "Meshery, the service mesh management plane." + }, + { + "name": "Strongbox", + "link": "https://github.com/strongbox/strongbox", + "label": "good-first-issue", + "technologies": [ + "Java" + ], + "description": "Strongbox is an artifact repository manager written in Java." + }, + { + "name": "TEAMMATES", + "link": "https://github.com/TEAMMATES/teammates", + "label": "good-first-issue", + "technologies": [ + "Java" + ], + "description": "TEAMMATES is a free online tool for managing peer evaluations and other feedback paths of your students." + }, + { + "name": "elasticsearch", + "link": "https://github.com/elastic/elasticsearch", + "label": "good-first-issue", + "technologies": [ + "Java" + ], + "description": "Open Source, Distributed, RESTful Search Engine." + }, + { + "name": "JabRef", + "link": "https://github.com/JabRef/jabref", + "label": "good-first-issue", + "technologies": [ + "Java" + ], + "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." + }, + { + "name": "Wikimedia Commons Android App", + "link": "https://github.com/commons-app/apps-android-commons", + "label": "good-first-issue", + "technologies": [ + "Java" + ], + "description": "Allows users to upload pictures from their Android phone/tablet to Wikimedia Commons." + }, + { + "name": "XWiki", + "link": "https://jira.xwiki.org/issues/?jql=labels-%3D-Onboarding", + "technologies": [ + "Java" + ], + "description": "XWiki is a free wiki software platform written in Java with a design emphasis on extensibility. Beginners should follow the onboarding wiki." + }, + { + "name": "zerocode", + "link": "https://github.com/authorjapps/zerocode", + "label": "good-first-issue", + "technologies": [ + "Java" + ], + "description": "API Automation without coding, easy JSON response assertions, Testing REST, SOAP, Kafka and Java/DB APIs, CI/Jenkins Friendly." + }, + { + "name": "SirixDB", + "link": "https://github.com/sirixdb/sirix", + "label": "good-first-issue", + "technologies": [ + "Java" + ], + "description": "SirixDB is an evolutionary, versioned NoSQL document store (XML and JSON) written (mostly) in Java. It stores compact snapshots during commits with many concepts borrowed from ZFS and Git. Each revision is indexed and the document store can be queried with temporal queries. It's especially well suited for modern hardware." + }, + { + "name": "Images-to-PDF", + "link": "https://github.com/Swati4star/Images-to-PDF", + "label": "good-first-issue", + "technologies": [ + "Java" + ], + "description": "An android app to convert images to PDF file." + }, + { + "name": "Trino (formerly Presto SQL)", + "link": "https://github.com/trinodb/trino", + "label": "good-first-issue", + "technologies": [ + "Java" + ], + "description": "A distributed SQL query engine for big data. Ask for guidance on project's Slack." + }, + { + "name": "appsmith", + "link": "https://github.com/appsmithorg/appsmith", + "label": "good-first-issue", + "technologies": [ + "Java" + ], + "description": "Drag & Drop internal tool builder" + }, + { + "name": "Codename One", + "link": "https://github.com/codenameone/CodenameOne", + "label": "good-first-issue", + "technologies": [ + "Java" + ], + "description": "Cross-platform mobile app development framework for Java developers" + }, + { + "name": "name-suggestion-index", + "link": "https://github.com/osmlab/name-suggestion-index", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Canonical common brand names for OpenStreetMap" + }, + { + "name": "iD", + "link": "https://github.com/openstreetmap/iD", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "The easy-to-use OpenStreetMap editor in JavaScript." + }, + { + "name": "missioncontrol", + "link": "https://github.com/davfoundation/missioncontrol", + "label": "first-timers-only", + "technologies": [ + "JavaScript" + ], + "description": "Mission Control is a free and open marketplace connecting autonomous vehicles (e.g., drones) with users looking for services such as package deliveries." + }, + { + "name": "missions", + "link": "https://github.com/davfoundation/missions", + "label": "first-timers-only", + "technologies": [ + "JavaScript" + ], + "description": "Missions is a mobile web app connecting DAV users looking to ship packages with autonomous drones looking for work in an open and free marketplace." + }, + { + "name": "annyang", + "link": "https://github.com/TalAter/annyang", + "label": "first-timers-only", + "technologies": [ + "JavaScript" + ], + "description": "A popular Speech Recognition library used to communicate with everything from websites to smart mirrors to flying drones." + }, + { + "name": "PouchDB", + "link": "https://github.com/pouchdb/pouchdb", + "label": "first-timers-only", + "technologies": [ + "JavaScript" + ], + "description": "PouchDB is a pocket-sized database." + }, + { + "name": "Leaflet", + "link": "https://github.com/Leaflet/Leaflet", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "JavaScript library for mobile-friendly interactive maps." + }, + { + "name": "Dragula", + "link": "https://github.com/bevacqua/dragula", + "label": "first-timers-only", + "technologies": [ + "JavaScript" + ], + "description": "Drag and drop so simple it hurts." + }, + { + "name": "history", + "link": "https://github.com/rackt/history", + "label": "good-for-beginner", + "technologies": [ + "JavaScript" + ], + "description": "A minimal, functional history library for JavaScript." + }, + { + "name": "TodoMVC", + "link": "https://github.com/tastejs/todomvc", + "label": "first-time-contributor", + "technologies": [ + "JavaScript" + ], + "description": "Helping you select an MV* framework by implementing Todo in lots of JavaScript apps." + }, + { + "name": "AVA", + "link": "https://github.com/sindresorhus/ava", + "label": "good-for-beginner", + "technologies": [ + "JavaScript" + ], + "description": "Futuristic test runner." + }, + { + "name": "Kinto.js", + "link": "https://github.com/Kinto/kinto.js", + "label": "easy-pick", + "technologies": [ + "JavaScript" + ], + "description": "An offline-first JavaScript client leveraging the Kinto API for remote data synchronization." + }, + { + "name": "ESLint", + "link": "https://github.com/eslint/eslint", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "A fully pluggable tool for identifying and reporting on patterns in JavaScript." + }, + { + "name": "Tessel 2 CLI", + "link": "https://github.com/tessel/t2-cli", + "label": "contribution-starter", + "technologies": [ + "JavaScript" + ], + "description": "Command line interface to Tessel 2." + }, + { + "name": "Ember.js", + "link": "https://github.com/emberjs/ember.js", + "label": "Good-for-New-Contributors", + "technologies": [ + "JavaScript" + ], + "description": "A JavaScript framework for creating ambitious web applications." + }, + { + "name": "Ember.js Data", + "link": "https://github.com/emberjs/data", + "label": "Good-for-New-Contributors", + "technologies": [ + "JavaScript" + ], + "description": "A data persistence library for Ember.js." + }, + { + "name": "freeCodeCamp", + "link": "https://github.com/freeCodeCamp/freeCodeCamp", + "label": "first-timers-only", + "technologies": [ + "JavaScript" + ], + "description": "Open source codebase and curriculum. Learn to code and help nonprofits." + }, + { + "name": "Ghost", + "link": "https://github.com/TryGhost/Ghost", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Just a blogging platform" + }, + { + "name": "eslint-plugin-unicorn", + "link": "https://github.com/sindresorhus/eslint-plugin-unicorn", + "label": "good-for-beginner", + "technologies": [ + "JavaScript" + ], + "description": "Awesome ESLint rules." + }, + { + "name": "Hyper", + "link": "https://github.com/zeit/hyper", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "JS/HTML/CSS Terminal" + }, + { + "name": "pdf.js", + "link": "https://github.com/mozilla/pdf.js", + "label": "5-good-beginner-bug", + "technologies": [ + "JavaScript" + ], + "description": "PDF Reader in JavaScript" + }, + { + "name": "Moment.js", + "link": "https://github.com/moment/moment", + "label": "Up-For-Grabs", + "technologies": [ + "JavaScript" + ], + "description": "A lightweight JavaScript date library for parsing, validating, manipulating, and formatting dates." + }, + { + "name": "serverless", + "link": "https://github.com/serverless/serverless", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "The Serverless Framework" + }, + { + "name": "Hoodie Camp", + "link": "https://github.com/hoodiehq/camp", + "label": "first-timers-only", + "technologies": [ + "JavaScript" + ], + "description": "Hoodie Camp is a space for new and existing contributors." + }, + { + "name": "React", + "link": "https://github.com/facebook/react", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "A declarative, efficient, and flexible JavaScript library for building user interfaces." + }, + { + "name": "React Native", + "link": "https://github.com/facebook/react-native", + "label": "Good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "A framework for building native apps with React." + }, + { + "name": "React server", + "link": "https://github.com/redfin/react-server", + "label": "good-first-contribution", + "technologies": [ + "JavaScript" + ], + "description": "React framework with server render for blazing fast page load and seamless transitions between pages in the browser." + }, + { + "name": "Yarn", + "link": "https://github.com/yarnpkg/yarn", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Fast, reliable, and secure dependency management." + }, + { + "name": "pixi.js", + "link": "https://github.com/pixijs/pixi.js", + "label": "Difficulty:-Easy", + "technologies": [ + "JavaScript" + ], + "description": "A 2D JavaScript Renderer" + }, + { + "name": "Next.js", + "link": "https://github.com/zeit/next.js", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "A minimalistic framework for universal server-rendered React applications" + }, + { + "name": "keystonejs", + "link": "https://github.com/keystonejs/keystone", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "The open source framework for developing database-driven websites, applications and APIs in Node.js. Built on Express and MongoDB." + }, + { + "name": "Semantic-UI-React", + "link": "https://github.com/Semantic-Org/Semantic-UI-React", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "The official React integration for Semantic UI." + }, + { + "name": "Botpress", + "link": "https://github.com/botpress/botpress", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "The only sane way to build great bots." + }, + { + "name": "Atom", + "link": "https://github.com/atom/atom", + "label": "beginner", + "technologies": [ + "JavaScript" + ], + "description": "The hackable text editor" + }, + { + "name": "cdnjs", + "link": "https://github.com/cdnjs/cdnjs", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "The best FOSS web front-end resource CDN" + }, + { + "name": "Video.js", + "link": "https://github.com/videojs/video.js", + "label": "first-timers-only", + "technologies": [ + "JavaScript" + ], + "description": "The player framework" + }, + { + "name": "stryker", + "link": "https://github.com/stryker-mutator/stryker", + "label": "beginner-friendly", + "technologies": [ + "JavaScript" + ], + "description": "The JavaScript mutation testing framework" + }, + { + "name": "Kap", + "link": "https://github.com/wulkano/kap", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "An open-source screen recorder built with web technology" + }, + { + "name": "Reddit Enhancement Suite", + "link": "https://github.com/honestbleeps/Reddit-Enhancement-Suite", + "label": "help-wanted", + "technologies": [ + "JavaScript" + ], + "description": "A browser extension to enhance the Reddit browsing experience." + }, + { + "name": "Brave Browser", + "link": "https://github.com/brave/brave-browser", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Desktop browser for macOS, Windows, and Linux." + }, + { + "name": "Fastify", + "link": "https://github.com/fastify/fastify", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Fast and low overhead web framework, for Node.js." + }, + { + "name": "Node.js core", + "link": "https://github.com/nodejs/node", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "JavaScript runtime built on Chrome's V8 JavaScript engine" + }, + { + "name": "Jest", + "link": "https://github.com/facebook/jest", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "A complete and easy to set up JavaScript testing solution." + }, + { + "name": "p5.js", + "link": "https://github.com/processing/p5.js", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "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." + }, + { + "name": "squirrelly", + "link": "https://github.com/nebrelbug/squirrelly", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Squirrelly is a lightweight template engine that supports helpers, filters, partials, and more." + }, + { + "name": "NativeScript", + "link": "https://github.com/NativeScript/NativeScript", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "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." + }, + { + "name": "Gatsby.js", + "link": "https://github.com/gatsbyjs/gatsby", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Build blazing fast, modern apps and websites with React." + }, + { + "name": "Vue.js", + "link": "https://github.com/vuejs/vue", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "The Progressive JavaScript Framework." + }, + { + "name": "md-page", + "link": "https://github.com/oscarmorrison/md-page", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Create a webpage with just markdown." + }, + { + "name": "Check It Out", + "link": "https://github.com/jwu910/check-it-out", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Check It Out is an ncurses-like CLI to let the user interactively navigate and select a git branch to check out." + }, + { + "name": "nuclear", + "link": "https://github.com/nukeop/nuclear", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Multiplatform music player that streams from free sources." + }, + { + "name": "material-ui", + "link": "https://github.com/mui-org/material-ui", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "React components for faster and easier web development. Build your own design system, or start with Material Design." + }, + { + "name": "Meteor", + "link": "https://github.com/meteor/meteor", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Meteor is an ultra-simple environment for building modern web applications." + }, + { + "name": "Mocha", + "link": "https://github.com/mochajs/mocha", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Javascript test framework for Node.js and the browser." + }, + { + "name": "Babel", + "link": "https://github.com/babel/babel", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "A compiler for writing next generation JavaScript." + }, + { + "name": "React-content-loader", + "link": "https://github.com/danilowoz/create-content-loader", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Tool to create your own react-content-loader easily." + }, + { + "name": "netlify-cms", + "link": "https://github.com/netlify/netlify-cms", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Open source content management for your git workflow." + }, + { + "name": "altair", + "link": "https://github.com/imolorhe/altair", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "A beautiful feature-rich GraphQL Client for all platforms." + }, + { + "name": "Video Hub App", + "link": "https://github.com/whyboris/Video-Hub-App", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Angular & Electron app for browsing and searching videos on your PC." + }, + { + "name": "Ancient Beast", + "link": "https://github.com/FreezingMoon/AncientBeast", + "label": "easy", + "technologies": [ + "JavaScript" + ], + "description": "Turn based strategy game where you 3d print a squad of creatures with unique abilities in order to defeat your enemies." + }, + { + "name": "ramda-adjunct", + "link": "https://github.com/char0n/ramda-adjunct", + "label": "help-wanted", + "technologies": [ + "JavaScript" + ], + "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." + }, + { + "name": "Binari", + "link": "https://github.com/BrandonArmand/Binari", + "label": "up-for-grabs", + "technologies": [ + "JavaScript" + ], + "description": "Interactive code editor with a live binary tree visual designed to teach new developers the fundementals of dynamic programming." + }, + { + "name": "SirixDB", + "link": "https://github.com/sirixdb/sirix-svelte-front-end", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "A Svelte/Sapper based web front-end for SirixDB, which is a versioned NoSQL document store (XML and JSON) written in Java." + }, + { + "name": "json-editor", + "link": "https://github.com/json-editor/json-editor", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "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)." + }, + { + "name": "Habitica", + "link": "https://github.com/HabitRPG/habitica", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "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)" + }, + { + "name": "reactjs.org", + "link": "https://github.com/reactjs/reactjs.org", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "The documenation website for reactjs" + }, + { + "name": "Vest", + "link": "https://github.com/ealush/vest", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Validations framework inspired by unit testing frameworks." + }, + { + "name": "Hoppscotch", + "link": "https://github.com/hoppscotch/hoppscotch", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "A free, fast and beautiful API request builder." + }, + { + "name": "Predator", + "link": "https://github.com/Zooz/predator", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "A powerful open-source platform for load testing APIs." + }, + { + "name": "Time to Leave", + "link": "https://github.com/thamara/time-to-leave", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Working hours time tracker app based on Electron and Javascript." + }, + { + "name": "cypress", + "link": "https://github.com/cypress-io/cypress", + "label": "first-timers-only", + "technologies": [ + "JavaScript" + ], + "description": "Fast, easy and reliable testing for anything that runs in a browser." + }, + { + "name": "Vue CLI", + "link": "https://github.com/vuejs/vue-cli", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Standard Tooling for Vue.js Development" + }, + { + "name": "Vue Router", + "link": "https://github.com/vuejs/vue-router", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "The official router for Vue.js." + }, + { + "name": "VuePress", + "link": "https://github.com/vuejs/vuepress", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Minimalistic Vue-powered static site generator" + }, + { + "name": "appsmith", + "link": "https://github.com/appsmithorg/appsmith", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Drag & Drop internal tool builder" + }, + { + "name": "Letra Extension", + "link": "https://github.com/jayehernandez/letra-extension", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Passively learn a new language every time you open a new tab." + }, + { + "name": "swag-for-dev", + "link": "https://github.com/swapagarwal/swag-for-dev", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Swag opportunities for developers." + }, + { + "name": "webdriver.io", + "link": "https://github.com/webdriverio/webdriverio", + "label": "first-timers-only", + "technologies": [ + "JavaScript" + ], + "description": "Next-gen browser and mobile automation test framework for Node.js" + }, + { + "name": "SimplQ", + "link": "https://github.com/SimplQ/simplQ-frontend", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Free online queue manager for easy and instant crowd control. Contributing Guidelines" + }, + { + "name": "ReactiveSearch", + "link": "https://github.com/appbaseio/reactivesearch", + "label": "good-first-issue-:wave:", + "technologies": [ + "JavaScript" + ], + "description": "A UI components library for Elasticsearch: Available for React, Vue and React Native." + }, + { + "name": "Create React App", + "link": "https://github.com/facebook/create-react-app", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Create React apps with no build configuration." + }, + { + "name": "Svelte", + "link": "https://github.com/sveltejs/svelte", + "label": "good-first-issue", + "technologies": [ + "JavaScript" + ], + "description": "Component framework that runs at build time, converting your components into highly efficient imperative code that surgically updates the DOM." + }, + { + "name": "Julia Language: Help wanted", + "link": "https://github.com/JuliaLang/julia", + "label": "help-wanted", + "technologies": ["Julia"], + "description": "\"Move like Python, Run like C\" - A fresh approach to technical computing!" + }, + { + "name": "Julia Language: Good first issue", + "link": "https://github.com/JuliaLang/julia", + "label": "good-first-issue", + "technologies": ["Julia"], + "description": "\"Move like Python, Run like C\" - A fresh approach to technical computing!" + }, + { + "name": "Atrium", + "link": "https://github.com/robstoll/atrium", + "label": "good-first-issue", + "technologies": ["Kotlin"], + "description": "Multiplatform assertion library for Kotlin" + }, + { + "name": "Hexagon", + "link": "https://github.com/hexagonkt/hexagon", + "label": "help-wanted", + "technologies": ["Kotlin"], + "description": "A microservices toolkit written in Kotlin" + }, + { + "name": "Non-Blocking SirixDB HTTP(S)-Server", + "link": "https://github.com/sirixdb/sirix", + "label": "good-first-issue", + "technologies": ["Kotlin"], + "description": "A non-blocking HTTP(S)-Server for SirixDB, a temporal, evolutionary NoSQL document store for XML and JSON." + }, + { + "name": "Kotlin Libraries Playground", + "link": "https://github.com/LouisCAD/kotlin-libraries-playground", + "label": "good-first-issue", + "technologies": ["Kotlin"], + "description": "A playground to gain a wider and deeper knowledge of the libraries in the Kotlin ecosystem. Also the official sample for gradle refreshVersions." + }, + { + "name": "Algorithmic Pseudocode", + "link": "https://github.com/just-a-visitor/algorithmic-pseudocode", + "label": "good-first-issue", + "technologies": ["LaTeX"], + "description": "A collection of language independent pseudocodes (pdf) for interview preparation and competitive programming." + }, + { + "name": "tldr-pages", + "link": "https://github.com/tldr-pages/tldr", + "label": "help-wanted", + "technologies": ["Markdown"], + "description": "Collaborative cheatsheets for console commands." + }, + { + "name": "Ravada", + "link": "https://github.com/UPC/ravada", + "label": "good-first-issue", + "technologies": ["Perl"], + "description": "Remote Virtual Desktops Manager." + }, + { + "name": "phpMyAdmin", + "link": "https://github.com/phpmyadmin/phpmyadmin", + "label": "newbie", + "technologies": ["PHP"], + "description": "Admin interface for MySQL written in PHP." + }, + { + "name": "Deployer", + "link": "https://github.com/deployphp/deployer", + "label": "good-for-beginner", + "technologies": ["PHP"], + "description": "A deployment tool written in PHP with support for popular frameworks out of the box." + }, + { + "name": "Matomo", + "link": "https://github.com/matomo-org/matomo", + "label": "help-wanted", + "technologies": ["PHP"], + "description": "Matomo is the leading Free/Libre open analytics platform." + }, + { + "name": "OrgManager", + "link": "https://github.com/orgmanager/orgmanager", + "label": "beginners-only", + "technologies": ["PHP"], + "description": "Supercharge your GitHub organizations!" + }, + { + "name": "PHP Censor", + "link": "https://github.com/php-censor/php-censor", + "label": "good-for-beginner", + "technologies": ["PHP"], + "description": "Open source self-hosted continuous integration server for PHP projects." + }, + { + "name": "Drupal", + "link": "https://www.drupal.org/getting-involved-guide", + "technologies": ["PHP"], + "description": "Leading open-source CMS for ambitious digital experiences that reach your audience across multiple channels." + }, + { + "name": "Symfony", + "link": "https://github.com/symfony/symfony", + "label": "good-first-issue", + "technologies": ["PHP"], + "description": "Symfony is a PHP framework for web applications and a set of reusable PHP components." + }, + { + "name": "Laravel Newsletters", + "link": "https://github.com/spatie/laravel-newsletter", + "label": "good-first-issue", + "technologies": ["PHP"], + "description": "A package that provides an easy way to integrate MailChimp with Laravel 5." + }, + { + "name": "Appwrite", + "link": "https://github.com/appwrite/appwrite", + "label": "good-first-issue", + "technologies": ["PHP"], + "description": "An End-to-end backend server for frontend and mobile developers. 🚀" + }, + { + "name": "NextCloud Server", + "link": "https://github.com/nextcloud/server", + "label": "good-first-issue", + "technologies": ["PHP"], + "description": "Nextcloud server, a safe home for all your data." + }, + { + "name": "PrestaShop", + "link": "https://github.com/PrestaShop/PrestaShop", + "label": "good-first-issue", + "technologies": ["PHP"], + "description": "The open source ecommerce solution to start your online business and start selling online." + }, + { + "name": "Flarum", + "link": "https://github.com/flarum/core", + "label": "Good-first-issue", + "technologies": ["PHP"], + "description": "Simple forum software for building great communities." + }, + { + "name": "MediaWiki", + "link": "https://phabricator.wikimedia.org/maniphest/query/4Q5_qR51u_oz/#R", + "technologies": ["PHP"], + "description": "The free and open-source wiki software package that powers Wikipedia." + }, + { + "name": "CiviWiki", + "link": "https://github.com/CiviWiki/OpenCiviWiki", + "label": "good-first-issue", + "technologies": ["Python"], + "description": "Building a Better Democracy for the Internet Age" + }, + { + "name": "Python Babel", + "link": "https://github.com/python-babel/babel", + "label": "difficulty/low", + "technologies": ["Python"], + "description": "The Python Internationalization Library." + }, + { + "name": "Kinto", + "link": "https://github.com/Kinto/kinto", + "label": "easy-pick", + "technologies": ["Python"], + "description": "A lightweight JSON storage service with synchronisation and sharing abilities." + }, + { + "name": "Kinto.sh", + "link": "https://github.com/rbreaves/kinto", + "label": "first-timers-only", + "technologies": ["Python"], + "description": "Make Linux & Windows type like a mac." + }, + { + "name": "BorgBackup", + "link": "https://github.com/borgbackup/borg", + "label": "easy", + "technologies": ["Python"], + "description": "Deduplicating backup program with compression and authenticated encryption." + }, + { + "name": "scrapy", + "link": "https://github.com/scrapy/scrapy", + "label": "good-first-issue", + "technologies": ["Python"], + "description": "A fast high-level web crawling & scraping framework for Python." + }, + { + "name": "mitmproxy", + "link": "https://github.com/mitmproxy/mitmproxy", + "label": "help-wanted", + "technologies": ["Python"], + "description": "An interactive TLS-capable intercepting HTTP proxy for penetration testers and software developers" + }, + { + "name": "Mailpile", + "link": "https://github.com/mailpile/Mailpile", + "label": "Low-Hanging-Fruit", + "technologies": ["Python"], + "description": "A free & open modern, fast email client with user-friendly encryption and privacy features" + }, + { + "name": "coala", + "link": "https://github.com/issues?utf8=✓&q=is:open+is:issue+user:coala+label:difficulty/newcomer++no:assignee", + "technologies": ["Python"], + "description": "A unified command-line interface for linting and fixing all your code, regardless of the programming languages you use." + }, + { + "name": "jarvis", + "link": "https://github.com/sukeesh/Jarvis", + "label": "difficulty/newcomer", + "technologies": ["Python"], + "description": "A personal assistant for Linux, MacOs and Windows based on Command line Interface." + }, + { + "name": "JARVIS-on-Messenger", + "link": "https://github.com/swapagarwal/JARVIS-on-Messenger", + "label": "Low-Hanging-Fruit", + "technologies": ["Python"], + "description": "💬 A community-driven python bot that aims to be as simple as possible to serve humans with their everyday tasks http://m.me/J.A.R.V.I.S.on.Messenger" + }, + { + "name": "Pytest", + "link": "https://github.com/pytest-dev/pytest", + "label": "status:-easy", + "technologies": ["Python"], + "description": "The pytest framework makes it easy to write small tests, yet scales to support complex functional testing." + }, + { + "name": "Fabric", + "link": "https://github.com/fabric/fabric", + "label": "Low-hanging-fruit", + "technologies": ["Python"], + "description": "Pythonic remote execution and deployment." + }, + { + "name": "Jupyter notebook", + "link": "https://github.com/jupyter/notebook", + "label": "good-first-issue", + "technologies": ["Python"], + "description": "Jupyter interactive notebook." + }, + { + "name": "Zulip", + "link": "https://github.com/zulip/zulip", + "label": "good-first-issue", + "technologies": ["Python"], + "description": "Powerful open source group chat." + }, + { + "name": "cookiecutter", + "link": "https://github.com/audreyr/cookiecutter", + "label": "low-hanging-fruit", + "technologies": ["Python"], + "description": "A command-line utility that creates projects from cookiecutters (project templates). E.g. Python package projects, jQuery plugin projects." + }, + { + "name": "django cookiecutter", + "link": "https://github.com/pydanny/cookiecutter-django", + "label": "hacktoberfest", + "technologies": ["Python"], + "description": "An implementation of Python for backend web development." + }, + { + "name": "wemake-python-styleguide", + "link": "https://github.com/wemake-services/wemake-python-styleguide", + "label": "level:starter", + "technologies": ["Python"], + "description": "The strictest and most opinionated python linter ever!" + }, + { + "name": "Ansible", + "link": "https://github.com/ansible/ansible", + "label": "easyfix", + "technologies": ["Python"], + "description": "A simple IT automation platform" + }, + { + "name": "Create aio app", + "link": "https://github.com/aio-libs/create-aio-app", + "label": "good-first-issue", + "technologies": ["Python"], + "description": "A command line utility that creates the aiohttp template with the best practices." + }, + { + "name": "opsdroid", + "link": "https://github.com/opsdroid/opsdroid", + "label": "good-first-issue", + "technologies": ["Python"], + "description": "An open source chat-ops bot framework." + }, + { + "name": "pandas", + "link": "https://github.com/pandas-dev/pandas", + "label": "good-first-issue", + "technologies": ["Python"], + "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" + }, + { + "name": "SaltStack", + "link": "https://github.com/saltstack/salt", + "label": "good-first-issue", + "technologies": ["Python"], + "description": "Software to automate the management and configuration of any infrastructure or application at scale." + }, + { + "name": "mygpo", + "link": "https://github.com/gpodder/mygpo", + "label": "starter-issue", + "technologies": ["Python"], + "description": "The webservice for gpodder.net, a libre web service that allows users to manage their podcast subscriptions and discover new content." + }, + { + "name": "tree-sitter-legesher-python", + "link": "https://github.com/legesher/tree-sitter-legesher-python", + "label": "Good-First-Issue", + "technologies": ["Python"], + "description": "Learn and code in Python using your native language." + }, + { + "name": "mypy", + "link": "https://github.com/python/mypy", + "label": "good-first-issue", + "technologies": ["Python"], + "description": "An optional static typing for python." + }, + { + "name": "numpy", + "link": "https://github.com/numpy/numpy", + "label": "good-first-issue", + "technologies": ["Python"], + "description": "It is the core library for scientific computing, which contains a powerful n-dimensional array object." + }, + { + "name": "matplotlib", + "link": "https://github.com/matplotlib/matplotlib", + "label": "good-first-issue", + "technologies": ["Python"], + "description": "Matplotlib is a comprehensive library for creating static, animated, and interactive visualizations in Python." + }, + { + "name": "datascience", + "link": "https://github.com/data-8/datascience", + "label": "good-first-issue", + "technologies": ["Python"], + "description": "A Jupyter notebook Python library for introductory data science." + }, + { + "name": "ArviZ", + "link": "https://github.com/arviz-devs/arviz", + "label": "Beginner", + "technologies": ["Python"], + "description": "Exploratory Anaylsis of Bayesian Models." + }, + { + "name": "MindsDB", + "link": "https://github.com/mindsdb/mindsdb", + "label": "good-first-issue", + "technologies": ["Python"], + "description": "MindsDB is an open source AI layer for existing databases." + }, + { + "name": "Bokeh", + "link": "https://github.com/bokeh/bokeh", + "label": "good-first-issue", + "technologies": ["Python"], + "description": "Bokeh is an interactive visualization library for modern web browsers." + }, + { + "name": "SymPy", + "link": "https://github.com/sympy/sympy", + "label": "Easy-to-Fix", + "technologies": ["Python"], + "description": "A Python library for symbolic mathematics." + }, + { + "name": "Pytorch", + "link": "https://github.com/pytorch/pytorch", + "label": "good-first-issue", + "technologies": ["Python"], + "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." + }, + { + "name": "Sorting-Algorithms-Visualizer", + "link": "https://github.com/LucasPilla/Sorting-Algorithms-Visualizer", + "label": "good-first-issue", + "technologies": ["Python"], + "description": "A tool for visualizing sorting algorithms with a educational Wiki Page." + }, + { + "name": "scikit-learn", + "link": "https://github.com/scikit-learn/scikit-learn", + "label": "good-first-issue", + "technologies": ["Python"], + "description": "Scikit-learn is a machine learning library for Python." + }, + { + "name": "JRuby", + "link": "https://github.com/jruby/jruby", + "label": "beginner", + "technologies": ["Ruby"], + "description": "An implementation of Ruby on the Java Virtual Machine." + }, + { + "name": "Sinatra", + "link": "https://github.com/sinatra/sinatra", + "label": "good-first-issue", + "technologies": ["Ruby"], + "description": "Classy web-development dressed in a DSL." + }, + { + "name": "Goby", + "link": "https://github.com/nskins/goby", + "technologies": ["Ruby"], + "description": "Framework for developing text-RPGs." + }, + { + "name": "Hanami", + "link": "https://github.com/hanami/hanami", + "label": "easy", + "technologies": ["Ruby"], + "description": "A modern framework for Ruby." + }, + { + "name": "chef", + "link": "https://github.com/chef/chef", + "label": "Type:-Jump-In", + "technologies": ["Ruby"], + "description": "A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure" + }, + { + "name": "ohai", + "link": "https://github.com/chef/ohai", + "label": "Type:-Jump-In", + "technologies": ["Ruby"], + "description": "Ohai profiles your system and emits JSON" + }, + { + "name": "PublicLab.org", + "link": "https://github.com/publiclab/plots2", + "label": "first-timers-only", + "technologies": ["Ruby"], + "description": "An open source publishing platform for environmental projects. Check out new contributors welcome page." + }, + { + "name": "Discourse", + "link": "https://meta.discourse.org/tags/starter-task", + "technologies": ["Ruby"], + "description": "Civilized discussion platform. See \"How to contribute to Discourse\"." + }, + { + "name": "osem", + "link": "https://github.com/openSUSE/osem", + "label": "good-first-issue", + "technologies": ["Ruby"], + "description": "Open Source Event Manager. An event management tool tailored to Free and Open Source Software conferences" + }, + { + "name": "open-build-service", + "link": "https://github.com/openSUSE/open-build-service", + "label": "good-first-issue-:1st_place_medal:", + "technologies": ["Ruby"], + "description": "A generic system to build and distribute packages from sources in an automatic, consistent and reproducible way." + }, + { + "name": "bolt", + "link": "https://github.com/puppetlabs/bolt", + "label": "Beginner-Friendly", + "technologies": ["Ruby"], + "description": "Bolt is a Ruby command-line tool for executing commands, scripts, and tasks on remote systems using SSH and WinRM." + }, + { + "name": "chatwoot", + "link": "https://github.com/chatwoot/chatwoot", + "label": "good-first-issue", + "technologies": ["Ruby"], + "description": "Opensource customer support platform which can be an alternative to Intercom, Zendesk, Drift, Crisp etc." + }, + { + "name": "mapknitter", + "link": "https://github.com/publiclab/mapknitter", + "label": "first-timers-only", + "technologies": ["Ruby"], + "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." + }, + { + "name": "Ruby on Rails", + "link": "https://github.com/rails/rails", + "label": "good-first-issue", + "technologies": ["Ruby"], + "description": "Ruby on Rails (Rails) is an open source web application framework written in Ruby." + }, + { + "name": "Faker", + "link": "https://github.com/faker-ruby/faker", + "label": "good-first-issue", + "technologies": ["Ruby"], + "description": "Faker is a Ruby library for generating fake data such as names, addresses, and phone numbers." + }, + { + "name": "Matestack", + "link": "https://github.com/matestack/matestack-ui-core", + "label": "good-first-issue", + "technologies": ["Ruby"], + "description": "Write dynamic User Interfaces in pure Ruby. Rails engine built on top of Vue.js" + }, + { + "name": "Servo", + "link": "https://github.com/servo/servo", + "label": "E-easy", + "technologies": ["Rust"], + "description": "A browser engine designed for applications including embedded use." + }, + { + "name": "Rust-Clippy", + "link": "https://github.com/rust-lang-nursery/rust-clippy", + "label": "good-first-issue", + "technologies": ["Rust"], + "description": "A bunch of lints to catch common mistakes and improve Rust code" + }, + { + "name": "Rustfmt", + "link": "https://github.com/rust-lang-nursery/rustfmt", + "label": "good-first-issue", + "technologies": ["Rust"], + "description": "A tool for formatting Rust code according to style guidelines." + }, + { + "name": "Iron", + "link": "https://github.com/iron/iron", + "label": "easy", + "technologies": ["Rust"], + "description": "An extensible, concurrent web framework for Rust" + }, + { + "name": "TiKV", + "link": "https://github.com/tikv/tikv", + "label": "difficulty/easy", + "technologies": ["Rust"], + "description": "A distributed transactional key-value database" + }, + { + "name": "nushell", + "link": "https://github.com/nushell/nushell", + "label": "good-first-issue", + "technologies": ["Rust"], + "description": "A modern shell for the GitHub era written in Rust." + }, + { + "name": "Hyper", + "link": "https://github.com/hyperium/hyper", + "label": "E-easy", + "technologies": ["Rust"], + "description": "A fast, safe and correct low-level HTTP library for Rust." + }, + { + "name": "dotenv-linter", + "link": "https://github.com/dotenv-linter/dotenv-linter", + "label": "good-first-issue", + "technologies": ["Rust"], + "description": "Lightning-fast linter for .env files. Written in Rust" + }, + { + "name": "Veloren", + "link": "https://gitlab.com/veloren/veloren/-/issues?label_name[]=beginner", + "technologies": ["Rust"], + "description": "Veloren is a multiplayer voxel RPG written in Rust." + }, + { + "name": "Twitter Util", + "link": "https://github.com/twitter/util", + "label": "good-first-issue", + "technologies": ["Scala"], + "description": "Wonderful reusable code from Twitter" + }, + { + "name": "playframework", + "link": "https://github.com/playframework/playframework", + "label": "good-first-issue", + "technologies": ["Scala"], + "description": "The High Velocity Web Framework" + }, + { + "name": "Pharo", + "link": "https://github.com/pharo-project/pharo", + "label": "good-first-issue", + "technologies": ["Smalltalk"], + "description": "A dynamic reflective pure object-oriented language supporting live programming inspired by Smalltalk." + }, + { + "name": "OpenFoodFacts-iOS", + "link": "https://github.com/openfoodfacts/openfoodfacts-ios", + "label": "help-wanted", + "technologies": ["Swift"], + "description": "Collaborative, free and open database of food products from around the world. Scan barcode to get info or add a product" + }, + { + "name": "TypeScript", + "link": "https://github.com/Microsoft/TypeScript", + "label": "good-first-issue", + "technologies": ["TypeScript"], + "description": "A superset of JavaScript that compiles to clean JavaScript output." + }, + { + "name": "Visual Studio Code", + "link": "https://github.com/Microsoft/vscode", + "label": "good-first-issue", + "technologies": ["TypeScript"], + "description": "A new type of tool that combines the simplicity of a code editor with what developers need for their core edit-build-debug cycle." + }, + { + "name": "tslint-eslint-rules", + "link": "https://github.com/buzinas/tslint-eslint-rules", + "label": "nice-first-contribution", + "technologies": ["TypeScript"], + "description": "ESLint rules for TSLint." + }, + { + "name": "reatom", + "link": "https://github.com/artalar/reatom", + "label": "good-first-issue", + "technologies": ["TypeScript"], + "description": "Reatom is declarative and reactive state manager, designed for both simple and complex applications." + }, + { + "name": "game-of-life", + "link": "https://github.com/TroyTae/game-of-life", + "label": "good-first-issue", + "technologies": ["TypeScript"], + "description": "Conway's Game of Life web version!" + }, + { + "name": "Graphback", + "link": "https://github.com/aerogear/graphback", + "label": "good-first-issue", + "technologies": ["TypeScript"], + "description": "A CLI and runtime framework to generate a GraphQL API in seconds." + }, + { + "name": "LitmusChaos", + "link": "https://github.com/litmuschaos/litmus", + "label": "good-first-issue", + "technologies": ["TypeScript"], + "description": "Litmus is a toolset to do cloud-native chaos engineering." + }, + { + "name": "Booster", + "link": "https://github.com/boostercloud/booster", + "label": "good-first-issue", + "technologies": ["TypeScript"], + "description": "A truly serverless framework, write your code and deploy it in seconds without any server configuration files." + }, + { + "name": "tinyhttp", + "link": "https://github.com/talentlessguy/tinyhttp", + "label": "good-first-issue", + "technologies": ["TypeScript"], + "description": "A 0-legacy, tiny & fast web framework as a replacement of Express." + }, + { + "name": "jupyterlab-lsp", + "link": "https://github.com/krassowski/jupyterlab-lsp", + "label": "good-first-issue", + "technologies": ["TypeScript"], + "description": "Coding assistance for JupyterLab (code navigation + hover suggestions + linters + autocompletion + rename)" + } + ] +}