mirror of
https://github.com/MunGell/awesome-for-beginners.git
synced 2026-01-24 12:28:08 -08:00
Compare commits
3 Commits
main
...
34f04901c4
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
34f04901c4 | ||
|
|
e0d5ac11c6 | ||
|
|
663f4c351e |
14
.github/README-template.j2
vendored
14
.github/README-template.j2
vendored
@@ -3,15 +3,7 @@
|
||||
<!-- SEE THE CONTRIBUTING GUIDE (`CONTRIBUTING.md`) FOR MORE GUIDANCE -->
|
||||
<!-- YOU MAY IGNORE THIS MESSAGE IF YOU ARE EDITING `README-template.j2` -->
|
||||
|
||||
<div align="center">
|
||||
<div>
|
||||
<a href="https://go.warp.dev/awesome-for-beginners">
|
||||
<img alt="Thanks to Warp.dev for sponsoring this repository through a donation to a charity of my choice." src="https://raw.githubusercontent.com/warpdotdev/brand-assets/refs/heads/main/Github/Warp%20Packs/Warp-Github-SM-01.jpg">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
# Awesome First Pull Request Opportunities [](https://github.com/sindresorhus/awesome)
|
||||
# Awesome First PR Opportunities [](https://github.com/sindresorhus/awesome)
|
||||
|
||||
Inspired by [First Timers Only](https://kentcdodds.com/blog/first-timers-only) blog post.
|
||||
|
||||
@@ -21,8 +13,6 @@ If you are not a programmer but would like to contribute, check out the [Awesome
|
||||
|
||||
If you would like to be guided through how to contribute to a repository on GitHub, check out [the First Contributions repository](https://github.com/firstcontributions/first-contributions).
|
||||
|
||||
> [!TIP]
|
||||
> All links open in the same tab. If you want to open in a new tab, use `Ctrl + Click` (Windows/Linux) or `Cmd + Click` (Mac).
|
||||
## Table of Contents:
|
||||
|
||||
||Languages|
|
||||
@@ -40,8 +30,6 @@ Contributions are welcome! See the [contributing guidelines](CONTRIBUTING.md).
|
||||
|
||||
## Thanks to GitHub Sponsors
|
||||
|
||||
Thanks to [Warp.dev](https://go.warp.dev/awesome-for-beginners) for sponsoring this repository through a donation to a charity of my choice.
|
||||
|
||||
<table><tr>{% for sponsor in sponsors %}{% if loop.index != 1 and (loop.index - 1) % 6 == 0 %}</tr><tr>{% endif %}<td align="center"><a href="{{ sponsor.link }}"><img src="{{ sponsor.image }}" width="60px;" alt=""/><br/><sub><b>{{ sponsor.name }}</b></sub></a></td>{% endfor %}</tr></table>
|
||||
|
||||
## License
|
||||
|
||||
38
.github/scripts/cghi.py
vendored
38
.github/scripts/cghi.py
vendored
@@ -1,38 +0,0 @@
|
||||
import click
|
||||
import requests
|
||||
|
||||
def get_open_issues(repo_owner, repo_name, search_params):
|
||||
api_url = f"https://api.github.com/search/issues?q=is:issue%20state:open%20repo:{repo_owner}/{repo_name}"
|
||||
for search_param, param in search_params:
|
||||
api_url += f'%20{search_param}:"{param}"'
|
||||
print(api_url)
|
||||
response = requests.get(api_url)
|
||||
if response.status_code == 200:
|
||||
data = response.json()
|
||||
# print(data)
|
||||
print(data["total_count"])
|
||||
else:
|
||||
printer(f"HTTP Error: {response.status_code}")
|
||||
exit(1)
|
||||
|
||||
@click.command()
|
||||
@click.argument("repo_owner")
|
||||
@click.argument("repo_name")
|
||||
@click.option(
|
||||
"-p",
|
||||
"--search-param",
|
||||
"search_params",
|
||||
type=(str, str),
|
||||
multiple=True,
|
||||
help='''\b
|
||||
GitHub search filter parameters
|
||||
e.g. `-p label "good first issue"`
|
||||
'''
|
||||
)
|
||||
def cghi(repo_owner, repo_name, search_params):
|
||||
"""Counts the number of GitHub issues"""
|
||||
print(search_params)
|
||||
get_open_issues(repo_owner, repo_name, search_params)
|
||||
|
||||
if __name__ == "__main__":
|
||||
cghi()
|
||||
76
.github/scripts/render-readme.py
vendored
76
.github/scripts/render-readme.py
vendored
@@ -1,5 +1,10 @@
|
||||
from jinja2 import Environment, FileSystemLoader
|
||||
import json
|
||||
import os
|
||||
import logging
|
||||
|
||||
# Configuring logging
|
||||
logging.basicConfig(level=logging.INFO)
|
||||
|
||||
DATAFILE = "./data.json"
|
||||
TEMPLATEPATH = "./.github/"
|
||||
@@ -9,34 +14,61 @@ TARGETFILE = "./README.md"
|
||||
def new_technology_dict(repo_technology):
|
||||
return {"link_id": repo_technology.lower(), "entries": []}
|
||||
|
||||
# Function to log warnings for missing data
|
||||
def log_warning(message):
|
||||
logging.warning(message)
|
||||
|
||||
# Check if the data file exists
|
||||
if not os.path.exists(DATAFILE):
|
||||
log_warning(f"Data file {DATAFILE} does not exist.")
|
||||
exit(1)
|
||||
|
||||
# Load data from the JSON file
|
||||
try:
|
||||
with open(DATAFILE, "r") as datafile:
|
||||
data = json.loads(datafile.read())
|
||||
except json.JSONDecodeError:
|
||||
log_warning("Error: Failed to parse JSON data in the file.")
|
||||
exit(1)
|
||||
|
||||
# Initialize technologies dictionary
|
||||
technologies = {}
|
||||
|
||||
with open(DATAFILE, "r") as datafile:
|
||||
data = json.loads(datafile.read())
|
||||
|
||||
for technology in data["technologies"]:
|
||||
# Processing technologies
|
||||
for technology in data.get("technologies", {}):
|
||||
technologies[technology] = {
|
||||
"link_id": data["technologies"][technology],
|
||||
"link_id": data["technologies"].get(technology),
|
||||
"entries": [],
|
||||
}
|
||||
|
||||
for repository in data["repositories"]:
|
||||
repo_technologies = repository["technologies"]
|
||||
# Processing repositories
|
||||
for repository in data.get("repositories", []):
|
||||
repo_technologies = repository.get("technologies", [])
|
||||
if not repo_technologies:
|
||||
log_warning(f"Repository {repository['name']} has no technologies listed.")
|
||||
for repo_technology in repo_technologies:
|
||||
if not technologies.get(repo_technology, False):
|
||||
if repo_technology not in technologies:
|
||||
technologies[repo_technology] = new_technology_dict(repo_technology)
|
||||
log_warning(f"Technology {repo_technology} is newly added.")
|
||||
technologies[repo_technology]["entries"].append(repository)
|
||||
|
||||
# Create Jinja2 environment and load the template
|
||||
env = Environment(loader=FileSystemLoader(TEMPLATEPATH))
|
||||
if not os.path.exists(os.path.join(TEMPLATEPATH, TEMPLATEFILE)):
|
||||
log_warning(f"Template file {TEMPLATEFILE} does not exist in the provided path.")
|
||||
exit(1)
|
||||
template = env.get_template(TEMPLATEFILE)
|
||||
|
||||
# Create categories from the technologies
|
||||
categories = []
|
||||
for key, value in zip(technologies.keys(), technologies.values()):
|
||||
for key, value in technologies.items():
|
||||
categories.append(
|
||||
{"title": key, "link_id": value["link_id"], "entries": value["entries"]}
|
||||
)
|
||||
|
||||
# Sorting categories and entries
|
||||
categories = sorted(categories, key=lambda x: x["title"].upper())
|
||||
|
||||
category_groups = {"Misc": []}
|
||||
for category in categories:
|
||||
category["entries"] = sorted(category["entries"], key=lambda x: x["name"].upper())
|
||||
@@ -48,8 +80,28 @@ for category in categories:
|
||||
else:
|
||||
category_groups["Misc"].append(category)
|
||||
|
||||
sponsors = data["sponsors"]
|
||||
# Process sponsors
|
||||
sponsors = data.get("sponsors", [])
|
||||
|
||||
output = template.render(category_groups=category_groups, categories=categories, sponsors=sponsors)
|
||||
# Generate Table of Contents (TOC)
|
||||
toc = []
|
||||
for category in categories:
|
||||
toc.append(f"- [{category['title']}]({category['link_id']})")
|
||||
|
||||
open(TARGETFILE, "w").write(output)
|
||||
# Prepare context for rendering the template
|
||||
context = {
|
||||
"category_groups": category_groups,
|
||||
"categories": categories,
|
||||
"sponsors": sponsors,
|
||||
"toc": toc # Adding TOC to context
|
||||
}
|
||||
|
||||
# Rendering the README file
|
||||
try:
|
||||
output = template.render(context)
|
||||
with open(TARGETFILE, "w") as targetfile:
|
||||
targetfile.write(output)
|
||||
logging.info("README file generated successfully.")
|
||||
except Exception as e:
|
||||
log_warning(f"Error while rendering template: {e}")
|
||||
exit(1)
|
||||
|
||||
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
@@ -6,7 +6,7 @@ on:
|
||||
- main
|
||||
paths:
|
||||
- 'data.json'
|
||||
- '.github/README-template.j2'
|
||||
- '.github/tpl.md'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
@@ -17,12 +17,7 @@ jobs:
|
||||
run: sudo pip install jinja2
|
||||
- name: Build
|
||||
run: python3 .github/scripts/render-readme.py
|
||||
- name: Check if file changed
|
||||
id: changedCheck
|
||||
continue-on-error: true
|
||||
run: git diff --exit-code README.md
|
||||
- name: Commit
|
||||
if: steps.changedCheck.outcome == 'failure'
|
||||
run: |
|
||||
git config --global user.name 'Shmavon Gazanchyan'
|
||||
git config --global user.email 'MunGell@users.noreply.github.com'
|
||||
|
||||
@@ -1,64 +1,19 @@
|
||||
# Contribution Guide & Guidelines 🚀
|
||||
# Contribution Guidelines
|
||||
|
||||
Welcome to the **Awesome First Pull Request Opportunities** project! We're excited that you want to contribute.
|
||||
Please ensure that your pull request adheres to the following guidelines:
|
||||
|
||||
This guide aims to help you get started contributing new repositories to the list.
|
||||
- Search previous suggestions before making a new one to avoid duplicates.
|
||||
- Ensure your contribution is useful and relevant, with sufficient content and a clear, concise description for each item. 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.
|
||||
- Only include your suggested repository to `data.json` file, README.md file is generated from it.
|
||||
- New categories or improvements to existing categories 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 its "beginner-friendly" purpose, confirm with the maintainer that it is used for such issues. Include a link to where the maintainer approves this.
|
||||
- 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`).
|
||||
- Ensure the contributed repository is actively maintained, has a supportive community, and issues with appropriate labels.
|
||||
- Links must be pointing directly to the repository, no tracking links allowed. This list is not for advertising purposes.
|
||||
|
||||
It outlines the recommended order for executing tasks and assumes that you have identified a repository you wish to add to the list. Check out the repository requirements section, if you would like to know what a good addition should have.
|
||||
|
||||
_Please note that the list in this repository is intended for more substantial projects, and we kindly ask that small personal projects not be added in the hope of receiving contributions. Thank you for your understanding._
|
||||
|
||||
## Intitial Checks
|
||||
|
||||
- **Search for Duplicates**: Check the current list and previous pull requests to avoid submitting duplicates.
|
||||
|
||||
## Repository Requirements
|
||||
|
||||
- **Reasonably Developed**: The repository must be reasonably established, along with having with a clear goal or function. New repositories with few commits and little content will likely be rejected.
|
||||
- **Active Maintenance**: Ensure the contributed repository is actively maintained.
|
||||
- **Appropriate Labels**: Issues with appropriate beginner-friend labels must exist. Confirm with the owner around a label's meaning if it's not obviously beginner-friendly (usually `good-first-issue` or `low-hanging-fruit`).
|
||||
- **Supportive Community**: The repository should have a supportive community.
|
||||
|
||||
## Making Changes and Opening a PR (Pull Request)
|
||||
|
||||
### 1. **Edit the `data.json` File Directly on GitHub**
|
||||
The easiest way to contribute is by editing the `data.json` file directly in your browser. Here's how:
|
||||
|
||||
1. Go to the [`data.json` file](https://github.com/MunGell/awesome-for-beginners/blob/main/data.json) in the repository.
|
||||
2. Click the **"Edit"** button (pencil icon) in the top right corner.
|
||||
3. Make your changes directly in the browser:
|
||||
- Copy an existing entry in the file.
|
||||
- Fill in your own information following the same format.
|
||||
- Ensure to check the following:
|
||||
- **Direct Links**: Links must point directly to the repository. No tracking links are allowed. This list is not for advertising purposes.
|
||||
- **Spelling and Grammar**: Proofread your contribution for spelling and grammar errors.
|
||||
- **Trailing Whitespace**: Ensure to avoiding adding any trailing whitespace (at the end of lines).
|
||||
- **Spelling and Grammar**: Proofread your contribution for spelling and grammar errors.
|
||||
- **Single addition**: Make an individual pull request for each suggestion.
|
||||
- **New Technologies**: New technologies are welcomed, all you need to do is add them and a new heading will be generated for them.
|
||||
4. Describe your changes concisely in the commit message.
|
||||
5. Click **"Propose changes"** to create a new branch and open a Pull Request (PR).
|
||||
---
|
||||
|
||||
### 2. **Submitting a Pull Request (PR)**
|
||||
1. After proposing changes, GitHub will guide you through creating a PR.
|
||||
2. Fill out the PR form, ensuring its content (especially the title) is understandable, descriptive and relevant.
|
||||
3. If your suggest repository uses a non-obvious beginner-friendly issue label, ensure to link to confirmation or proof that the label is beginner friendly.
|
||||
4. Submit the PR and wait for feedback from the maintainers.
|
||||
|
||||
---
|
||||
|
||||
### 3. **Reporting an Issue**
|
||||
If you encounter an issue or have a suggestion that you don't want to implement yourself, open an issue ensuring you provide:
|
||||
- A clear description of the problem or suggestion.
|
||||
- The expected behavior (if creating a feature request or bug report).
|
||||
- The current behavior (if creating a bug report).
|
||||
|
||||
---
|
||||
|
||||
### 4. **Additional Resources**
|
||||
For a more comprehensive guide on contributing to open-source projects, check out the [First Contributions](https://github.com/firstcontributions/first-contributions) repository.
|
||||
|
||||
---
|
||||
|
||||
Thank you for your contribution!
|
||||
Thank you for your suggestions!!
|
||||
|
||||
73
README.md
73
README.md
@@ -3,15 +3,7 @@
|
||||
<!-- SEE THE CONTRIBUTING GUIDE (`CONTRIBUTING.md`) FOR MORE GUIDANCE -->
|
||||
<!-- YOU MAY IGNORE THIS MESSAGE IF YOU ARE EDITING `README-template.j2` -->
|
||||
|
||||
<div align="center">
|
||||
<div>
|
||||
<a href="https://go.warp.dev/awesome-for-beginners">
|
||||
<img alt="Thanks to Warp.dev for sponsoring this repository through a donation to a charity of my choice." src="https://raw.githubusercontent.com/warpdotdev/brand-assets/refs/heads/main/Github/Warp%20Packs/Warp-Github-SM-01.jpg">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
# Awesome First Pull Request Opportunities [](https://github.com/sindresorhus/awesome)
|
||||
# Awesome First PR Opportunities [](https://github.com/sindresorhus/awesome)
|
||||
|
||||
Inspired by [First Timers Only](https://kentcdodds.com/blog/first-timers-only) blog post.
|
||||
|
||||
@@ -21,8 +13,6 @@ If you are not a programmer but would like to contribute, check out the [Awesome
|
||||
|
||||
If you would like to be guided through how to contribute to a repository on GitHub, check out [the First Contributions repository](https://github.com/firstcontributions/first-contributions).
|
||||
|
||||
> [!TIP]
|
||||
> All links open in the same tab. If you want to open in a new tab, use `Ctrl + Click` (Windows/Linux) or `Cmd + Click` (Mac).
|
||||
## Table of Contents:
|
||||
|
||||
||Languages|
|
||||
@@ -47,6 +37,7 @@ If you would like to be guided through how to contribute to a repository on GitH
|
||||
- [Legerity](https://github.com/MADE-Apps/legerity) _(label: good first issue)_ <br> A framework for speeding up the development of automated UI tests for Windows, Android, iOS, and Web with Appium/Selenium on .NET.
|
||||
- [Legerity for Uno Platform](https://github.com/MADE-Apps/legerity-uno) _(label: good first issue)_ <br> An extension framework to Legerity for speeding up the development of automated UI tests for Uno Platform applications with Appium/Selenium on .NET.
|
||||
- [MvvmCross](https://github.com/MvvmCross/MvvmCross) _(label: first-timers-only)_ <br> 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)_ <br> RawCMS is a headless CMS written in ASP.NET Core, built for developers that embrace API-first technology.
|
||||
|
||||
## Angular
|
||||
|
||||
@@ -58,12 +49,12 @@ If you would like to be guided through how to contribute to a repository on GitH
|
||||
|
||||
## C
|
||||
|
||||
- [Julia](https://github.com/JuliaLang/julia) _(label: good first issue)_ <br> The Julia Programming Language - A high-level, high-performance dynamic language for technical computing.
|
||||
- [Profanity](https://github.com/profanity-im/profanity) _(label: good first issue)_ <br> Ncurses XMPP chat client.
|
||||
|
||||
## C#
|
||||
|
||||
- [Cake](https://github.com/cake-build/cake) _(label: Good-first-issue)_ <br> 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)_ <br> Cross platform .NET grok implementation
|
||||
- [osu!](https://github.com/ppy/osu) _(label: good first issue)_ <br> Music game. Rhythm is just a click away!
|
||||
- [Spectre.Console](https://github.com/spectreconsole/spectre.console) _(label: good first issue)_ <br> A .NET library that makes it easier to create beautiful console applications.
|
||||
- [Uno Platform](https://github.com/unoplatform/uno) _(label: good first issue)_ <br> OSS project for creating pixel-perfect, single-source C# and XAML apps which run natively on iOS, Android, macOS, Linux and Web via WebAssembly.
|
||||
@@ -73,7 +64,6 @@ If you would like to be guided through how to contribute to a repository on GitH
|
||||
- [electron](https://github.com/electron/electron) _(label: good first issue)_ <br> Build cross platform desktop apps with JavaScript, HTML, and CSS
|
||||
- [F3D](https://github.com/f3d-app/f3d) _(label: good first issue)_ <br> Fast and minimalist 3D viewer.
|
||||
- [Godot Engine](https://github.com/godotengine/godot) _(label: good first issue)_ <br> 2D and 3D cross-platform game engine. Also has C# and Python code.
|
||||
- [Julia](https://github.com/JuliaLang/julia) _(label: good first issue)_ <br> The Julia Programming Language - A high-level, high-performance dynamic language for technical computing.
|
||||
- [MiniOB](https://github.com/oceanbase/miniob) _(label: good first issue)_ <br> MiniOB is a compact database that assists developers in understanding the fundamental workings of a database(main language is Chinese).
|
||||
- [MoveIt](https://github.com/ros-planning/moveit) _(label: good first issue)_ <br> 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)_ <br> A music visualizer library using OpenGL and GLSL. Has applications using Qt5, SDL, emscripten, iTunes, Kodi.
|
||||
@@ -106,13 +96,15 @@ If you would like to be guided through how to contribute to a repository on GitH
|
||||
|
||||
## Go
|
||||
|
||||
- [Alda](https://github.com/alda-lang/alda) _(label: low-hanging fruit)_ <br> A music programming language for musicians. 🎶
|
||||
- [Alda](https://github.com/alda-lang/alda) _(label: low-hanging-fruit)_ <br> A music programming language for musicians. 🎶
|
||||
- [containerd](https://github.com/containerd/containerd) _(label: exp/beginner)_ <br> Industry-standard container runtime with an emphasis on simplicity, robustness and portability.
|
||||
- [Docker/CLI](https://github.com/docker/cli) _(label: exp/beginner)_ <br> The Docker CLI
|
||||
- [Dragonfly](https://github.com/dragonflyoss/Dragonfly2) _(label: good first issue)_ <br> Provide efficient, stable and secure file distribution and image acceleration based on p2p technology
|
||||
- [Helm](https://github.com/kubernetes/helm) _(label: good first issue)_ <br> The Kubernetes Package Manager
|
||||
- [httpexpect](https://github.com/gavv/httpexpect) _(label: help-wanted)_ <br> End-to-end HTTP and REST API testing for Go.
|
||||
- [Hugo](https://github.com/gohugoio/hugo) _(label: GoodFirstIssue)_ <br> A Fast and Flexible Static Site Generator built with love in GoLang
|
||||
- [Kanister](https://github.com/kanisterio/kanister) _(label: good first issue)_ <br> A Data Protection Workflow Management Engine
|
||||
- [Killgrave](https://github.com/friendsofgo/killgrave) _(label: good first issue)_ <br> Simple way to generate mock servers in Go.
|
||||
- [Kubernetes](https://github.com/kubernetes/kubernetes) _(label: good first issue)_ <br> Production-Grade Container Scheduling and Management System
|
||||
- [lxd](https://github.com/lxc/lxd) _(label: easy)_ <br> System container and virtual machine manager.
|
||||
- [Mattermost](https://github.com/mattermost/mattermost) _(label: Good First Issue, Difficulty/1:Easy)_ <br> Open source Slack-alternative in Golang and React<br>Look for issues labelled 'Up For Grabs'
|
||||
@@ -138,6 +130,7 @@ If you would like to be guided through how to contribute to a repository on GitH
|
||||
- [JabRef](https://github.com/JabRef/jabref) _(label: good first issue)_ <br> 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.
|
||||
- [OpenMetadata](https://github.com/open-metadata/OpenMetadata) _(label: good first issue)_ <br> OpenMetadata is an all-in-one platform for data discovery, data quality, observability, governance, data lineage, and team collaboration.
|
||||
- [QuestDB](https://github.com/questdb/questdb) _(label: Good first issue)_ <br> Questdb is a fast open source SQL time series database.
|
||||
- [Strongbox](https://github.com/strongbox/strongbox) _(label: good first issue)_ <br> Strongbox is an artifact repository manager written in Java.
|
||||
- [TEAMMATES](https://github.com/TEAMMATES/teammates) _(label: good first issue)_ <br> 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)_ <br> 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)_ <br> Allows users to upload pictures from their Android phone/tablet to Wikimedia Commons.
|
||||
@@ -148,6 +141,7 @@ If you would like to be guided through how to contribute to a repository on GitH
|
||||
|
||||
- [altair](https://github.com/imolorhe/altair) _(label: good first issue)_ <br> A beautiful feature-rich GraphQL Client for all platforms.
|
||||
- [Ancient Beast](https://github.com/FreezingMoon/AncientBeast) _(label: easy)_ <br> Turn based strategy game where you 3d print a squad of creatures with unique abilities in order to defeat your enemies.
|
||||
- [API-pull-with-JavaScript](https://github.com/AliBasboga/APIExampleWithExpress.git) _(label: API-pull-and-use)_ <br> API data extraction and delivery to the user to present.
|
||||
- [appsmith](https://github.com/appsmithorg/appsmith) _(label: good first issue)_ <br> Drag & Drop internal tool builder
|
||||
- [AVA](https://github.com/sindresorhus/ava) _(label: good-for-beginner)_ <br> Futuristic test runner.
|
||||
- [Babel](https://github.com/babel/babel) _(label: good first issue)_ <br> A compiler for writing next generation JavaScript.
|
||||
@@ -170,14 +164,15 @@ If you would like to be guided through how to contribute to a repository on GitH
|
||||
- [Habitica](https://github.com/HabitRPG/habitica) _(label: good first issue)_ <br> 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)
|
||||
- [HMPL](https://github.com/hmpl-language/hmpl) _(label: good first issue)_ <br> Server-oriented customizable templating for JavaScript.
|
||||
- [Hoppscotch](https://github.com/hoppscotch/hoppscotch) _(label: good first issue)_ <br> A free, fast and beautiful API request builder.
|
||||
- [HueHive](https://github.com/croma-app/croma) _(label: good first issue)_ <br> An open source react native app iOS and android for color palette management
|
||||
- [iD](https://github.com/openstreetmap/iD) _(label: new contributor opportunity)_ <br> The easy-to-use OpenStreetMap editor in JavaScript.
|
||||
- [HueHive](https://github.com/croma-app/croma) _(label: good first issue)_ <br> A open source react native app iOS and android for color palette management
|
||||
- [iD](https://github.com/openstreetmap/iD) _(label: good first issue)_ <br> The easy-to-use OpenStreetMap editor in JavaScript.
|
||||
- [ImprovedTube](https://github.com/code-charity/youtube) _(label: good first issue)_ <br> A powerful but lightweight extension, to enrich your video experience & enable your content selection.
|
||||
- [Jasmine](https://github.com/jasmine/jasmine) _(label: good first issue)_ <br> Simple JavaScript testing framework for browsers and node.js.
|
||||
- [Jest](https://github.com/facebook/jest) _(label: good first issue)_ <br> A complete and easy to set up JavaScript testing solution.
|
||||
- [json-editor](https://github.com/json-editor/json-editor) _(label: good first issue)_ <br> 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).
|
||||
- [Kinto.js](https://github.com/Kinto/kinto.js) _(label: easy-pick)_ <br> An offline-first JavaScript client leveraging the Kinto API for remote data synchronization.
|
||||
- [Leaflet](https://github.com/Leaflet/Leaflet) _(label: good first issue)_ <br> JavaScript library for mobile-friendly interactive maps.
|
||||
- [material-ui](https://github.com/mui/material-ui) _(label: good first issue)_ <br> React components for faster and easier web development. Build your own design system, or start with Material Design.
|
||||
- [material-ui](https://github.com/mui-org/material-ui) _(label: good first issue)_ <br> React components for faster and easier web development. Build your own design system, or start with Material Design.
|
||||
- [Mattermost](https://github.com/mattermost/mattermost) _(label: Good First Issue, Difficulty/1:Easy)_ <br> Open source Slack-alternative in Golang and React<br>Look for issues labelled 'Up For Grabs'
|
||||
- [Meteor](https://github.com/meteor/meteor) _(label: good first issue)_ <br> Meteor is an ultra-simple environment for building modern web applications.
|
||||
- [Mocha](https://github.com/mochajs/mocha) _(label: good first issue)_ <br> Javascript test framework for Node.js and the browser.
|
||||
@@ -185,12 +180,13 @@ If you would like to be guided through how to contribute to a repository on GitH
|
||||
- [name-suggestion-index](https://github.com/osmlab/name-suggestion-index) _(label: good first issue)_ <br> Canonical common brand names for OpenStreetMap
|
||||
- [NativeScript](https://github.com/NativeScript/NativeScript) _(label: good first issue)_ <br> 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)_ <br> Open source content management for your git workflow.
|
||||
- [Next.js](https://github.com/vercel/next.js) _(label: good first issue)_ <br> A minimalistic framework for universal server-rendered React applications
|
||||
- [Next.js](https://github.com/zeit/next.js) _(label: good first issue)_ <br> A minimalistic framework for universal server-rendered React applications
|
||||
- [Node.js core](https://github.com/nodejs/node) _(label: good first issue)_ <br> JavaScript runtime built on Chrome's V8 JavaScript engine
|
||||
- [nuclear](https://github.com/nukeop/nuclear) _(label: good first issue)_ <br> Multiplatform music player that streams from free sources.
|
||||
- [p5.js](https://github.com/processing/p5.js) _(label: good first issue)_ <br> 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.
|
||||
- [pixi.js](https://github.com/pixijs/pixi.js) _(label: 🤩 Good First PR)_ <br> A 2D JavaScript Renderer
|
||||
- [PouchDB](https://github.com/pouchdb/pouchdb) _(label: help-wanted)_ <br> PouchDB is a pocket-sized database.
|
||||
- [Predator](https://github.com/Zooz/predator) _(label: good first issue)_ <br> A powerful open-source platform for load testing APIs.
|
||||
- [ramda-adjunct](https://github.com/char0n/ramda-adjunct) _(label: help-wanted)_ <br> 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.
|
||||
- [Rawsec Cybersecurity Inventory](https://gitlab.com/rawsec/rawsec-cybersecurity-list) _(label: difficulty::easy)_ <br> An inventory of tools and resources that aims to help people to find everything related to CyberSecurity.
|
||||
- [React](https://github.com/facebook/react) _(label: good first issue)_ <br> A declarative, efficient, and flexible JavaScript library for building user interfaces.
|
||||
@@ -198,20 +194,22 @@ If you would like to be guided through how to contribute to a repository on GitH
|
||||
- [React server](https://github.com/redfin/react-server) _(label: good-first-contribution)_ <br> 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)_ <br> Tool to create your own react-content-loader easily.
|
||||
- [ReactiveSearch](https://github.com/appbaseio/reactivesearch) _(label: good first issue-:wave:)_ <br> A UI components library for Elasticsearch: Available for React, Vue and React Native.
|
||||
- [reactjs.org](https://github.com/reactjs/react.dev) _(label: good first issue)_ <br> The documentation website for reactjs
|
||||
- [reactjs.org](https://github.com/reactjs/reactjs.org) _(label: good first issue)_ <br> The documenation website for reactjs
|
||||
- [Reddit Enhancement Suite](https://github.com/honestbleeps/Reddit-Enhancement-Suite) _(label: help-wanted)_ <br> A browser extension to enhance the Reddit browsing experience.
|
||||
- [Semantic-UI-React](https://github.com/Semantic-Org/Semantic-UI-React) _(label: good first issue)_ <br> The official React integration for Semantic UI.
|
||||
- [serverless](https://github.com/serverless/serverless) _(label: good first issue)_ <br> The Serverless Framework
|
||||
- [Storybook JS](https://github.com/storybookjs/storybook) _(label: good first issue)_ <br> Storybook is a frontend workshop for building UI components and pages in isolation.
|
||||
- [stryker](https://github.com/stryker-mutator/stryker) _(label: 👶 Good first issue)_ <br> The JavaScript mutation testing framework
|
||||
- [Superalgos](https://github.com/Superalgos/Superalgos) _(label: good first issue)_ <br> A completely Open Source crypto trading bot rewarding good contributions with the SA(Superalgos)-Token.
|
||||
- [Svelte](https://github.com/sveltejs/svelte) _(label: good first issue)_ <br> 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)_ <br> Swag opportunities for developers.
|
||||
- [The Odin Project Curriculum](https://github.com/TheOdinProject/curriculum) _(label: See Description)_ <br> An open-source curriculum for learning full-stack web development. There are a few "Type: Good First Issue" labelled issues, but any content addition/deletion issues seem reasonably beginner friendly.
|
||||
- [Time to Leave](https://github.com/TTLApp/time-to-leave) _(label: good first issue)_ <br> Working hours time tracker app based on Electron and Javascript.
|
||||
- [Tessel 2 CLI](https://github.com/tessel/t2-cli) _(label: contribution-starter)_ <br> Command line interface to Tessel 2.
|
||||
- [Time to Leave](https://github.com/thamara/time-to-leave) _(label: good first issue)_ <br> Working hours time tracker app based on Electron and Javascript.
|
||||
- [Vest](https://github.com/ealush/vest) _(label: good first issue)_ <br> Validations framework inspired by unit testing frameworks.
|
||||
- [Video Hub App](https://github.com/whyboris/Video-Hub-App) _(label: good first issue)_ <br> Angular & Electron app for browsing and searching videos on your PC.
|
||||
- [Video.js](https://github.com/videojs/video.js) _(label: good first issue)_ <br> The player framework
|
||||
- [Vite](https://github.com/vitejs/vite) _(label: good first issue)_ <br> Next generation frontend tooling. It's fast! Alternative to Create React App
|
||||
- [Vue Router](https://github.com/vuejs/router) _(label: good first issue)_ <br> The official router for Vue.js.
|
||||
- [Vue Router](https://github.com/vuejs/vue-router) _(label: good first issue)_ <br> The official router for Vue.js.
|
||||
- [Vue.js](https://github.com/vuejs/vue) _(label: good first issue)_ <br> The Progressive JavaScript Framework.
|
||||
- [VuePress](https://github.com/vuejs/vuepress) _(label: good first issue)_ <br> Minimalistic Vue-powered static site generator
|
||||
- [webdriver.io](https://github.com/webdriverio/webdriverio) _(label: first-timers-only)_ <br> Next-gen browser and mobile automation test framework for Node.js
|
||||
@@ -222,7 +220,9 @@ If you would like to be guided through how to contribute to a repository on GitH
|
||||
|
||||
## Julia
|
||||
|
||||
- [Julia](https://github.com/JuliaLang/julia) _(label: good first issue)_ <br> The Julia Programming Language - A high-level, high-performance dynamic language for technical computing.
|
||||
- [Julia](https://github.com/JuliaLang/julia) _(label: good first issue)_ <br> Julia Projects for Beginners — Easy Ideas to Get Started Coding in Julia
|
||||
- [Julia Language: Good first issue](https://github.com/JuliaLang/julia) _(label: good first issue)_ <br> "Move like Python, Run like C" - A fresh approach to technical computing!
|
||||
- [Julia Language: Help wanted](https://github.com/JuliaLang/julia) _(label: help-wanted)_ <br> "Move like Python, Run like C" - A fresh approach to technical computing!
|
||||
|
||||
## Kotlin
|
||||
|
||||
@@ -234,7 +234,6 @@ If you would like to be guided through how to contribute to a repository on GitH
|
||||
|
||||
## Markdown
|
||||
|
||||
- [The Odin Project Curriculum](https://github.com/TheOdinProject/curriculum) _(label: See Description)_ <br> An open-source curriculum for learning full-stack web development. There are a few "Type: Good First Issue" labelled issues, but any content addition/deletion issues seem reasonably beginner friendly.
|
||||
- [tldr-pages](https://github.com/tldr-pages/tldr) _(label: help-wanted)_ <br> Collaborative cheatsheets for console commands.
|
||||
|
||||
## MLOps
|
||||
@@ -248,7 +247,6 @@ If you would like to be guided through how to contribute to a repository on GitH
|
||||
## PHP
|
||||
|
||||
- [Appwrite](https://github.com/appwrite/appwrite) _(label: good first issue)_ <br> An End-to-end backend server for frontend and mobile developers. 🚀
|
||||
- [CodeIgniter](https://github.com/codeigniter4/CodeIgniter4) _(label: good first issue)_ <br> A lightweight, fast PHP framework, it is easy to install and perfect for learning MVC architecture.
|
||||
- [Deployer](https://github.com/deployphp/deployer) _(label: good-for-beginner)_ <br> 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)_ <br> 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)_ <br> Simple forum software for building great communities.
|
||||
@@ -271,20 +269,20 @@ If you would like to be guided through how to contribute to a repository on GitH
|
||||
|
||||
- [activist](https://github.com/activist-org/activist) _(label: good first issue)_ <br> activist.org is a network for political action that allows people to coordinate and collaborate on the issues that matter most to them.
|
||||
- [Ansible](https://github.com/ansible/ansible) _(label: easyfix)_ <br> A simple IT automation platform
|
||||
- [ArviZ](https://github.com/arviz-devs/arviz) _(label: Beginner)_ <br> Exploratory Analysis of Bayesian Models.
|
||||
- [ArviZ](https://github.com/arviz-devs/arviz) _(label: Beginner)_ <br> Exploratory Anaylsis of Bayesian Models.
|
||||
- [Bokeh](https://github.com/bokeh/bokeh) _(label: good first issue)_ <br> Bokeh is an interactive visualization library for modern web browsers.
|
||||
- [BorgBackup](https://github.com/borgbackup/borg) _(label: easy)_ <br> Deduplicating backup program with compression and authenticated encryption.
|
||||
- [CiviWiki](https://github.com/CiviWiki/OpenCiviWiki) _(label: good first issue)_ <br> Building a Better Democracy for the Internet Age
|
||||
- [coala](https://github.com/coala/coala) _(label: n/a)_ <br> A unified command-line interface for linting and fixing all your code, regardless of the programming languages you use.
|
||||
- [Colossal-AI](https://github.com/hpcaitech/ColossalAI) _(label: good first issue)_ <br> An open-source deep learning system for large-scale model training and inference with high efficiency and low cost.
|
||||
- [cookiecutter](https://github.com/cookiecutter/cookiecutter) _(label: good first issue)_ <br> A command-line utility that creates projects from cookiecutters (project templates). E.g. Python package projects, jQuery plugin projects.
|
||||
- [datascience](https://github.com/data-8/datascience) _(label: good first issue)_ <br> A Jupyter notebook Python library for introductory data science.
|
||||
- [Devopness](https://github.com/devopness/devopness) _(label: good first issue)_ <br> Deploy any software to any cloud: automated DevOps workflows to save software teams time and money.
|
||||
- [django cookiecutter](https://github.com/pydanny/cookiecutter-django) _(label: hacktoberfest)_ <br> An implementation of Python for backend web development.
|
||||
- [DocsGPT](https://github.com/arc53/DocsGPT) _(label: good first issue)_ <br> Open-source RAG assistant that helps users get reliable answers from knowledge sources while avoiding hallucinations.
|
||||
- [Embedchain](https://github.com/embedchain/embedchain/) _(label: good first issue)_ <br> Embedchain is a framework to easily create LLM powered bots over any dataset.
|
||||
- [Fabric](https://github.com/fabric/fabric) _(label: Low-hanging-fruit)_ <br> Pythonic remote execution and deployment.
|
||||
- [FastAPI](https://github.com/tiangolo/fastapi) _(label: good first issue)_ <br> A modern, fast (high-performance) web framework for building APIs with Python 3.6+ based on standard Python type hints.
|
||||
- [H2O Wave](https://github.com/h2oai/wave) _(label: good first issue)_ <br> Realtime Web Apps and Dashboards framework for Python and R. Suited (not only) for AI audience.
|
||||
- [H2O Wave Apps](https://github.com/h2oai/wave-apps) _(label: hacktoberfest)_ <br> Sample AI Apps built with H2O Wave.
|
||||
- [Harmony](https://github.com/harmonydata/harmony) _(label: Good First Issue)_ <br> Natural language processing tool for psychologists to analyse and compare datasets with AI and LLMs.<br>Up for a challenge? Try [this LLM training competition](https://harmonydata.ac.uk/doxa/) for a chance to win up to £500!
|
||||
- [jarvis](https://github.com/sukeesh/Jarvis) _(label: difficulty/newcomer)_ <br> A personal assistant for Linux, MacOs and Windows based on Command line Interface.
|
||||
- [Jupyter notebook](https://github.com/jupyter/notebook) _(label: good first issue)_ <br> Jupyter interactive notebook.
|
||||
@@ -293,7 +291,7 @@ If you would like to be guided through how to contribute to a repository on GitH
|
||||
- [MindsDB](https://github.com/mindsdb/mindsdb) _(label: good first issue)_ <br> MindsDB is an open source AI layer for existing databases.
|
||||
- [mitmproxy](https://github.com/mitmproxy/mitmproxy) _(label: help-wanted)_ <br> An interactive TLS-capable intercepting HTTP proxy for penetration testers and software developers
|
||||
- [mygpo](https://github.com/gpodder/mygpo) _(label: starter-issue)_ <br> 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)_ <br> Optional static typing for Python.
|
||||
- [mypy](https://github.com/python/mypy) _(label: good first issue)_ <br> An optional static typing for python.
|
||||
- [OMRChecker](https://github.com/Udayraj123/OMRChecker) _(label: good first issue)_ <br> OMRChecker helps to grade exams fast and accurately using a scanner 🖨 or your phone 🤳. Learn image processing with Python and OpenCV while contributing to one of the most popular repositories related to OMR topic on github.
|
||||
- [OpenMetadata](https://github.com/open-metadata/OpenMetadata) _(label: good first issue)_ <br> OpenMetadata is an all-in-one platform for data discovery, data quality, observability, governance, data lineage, and team collaboration.
|
||||
- [Oppia](https://github.com/oppia/oppia) _(label: good first issue)_ <br> Oppia is an open-source project whose aim is to empower learners across the globe by providing access to high-quality, engaging education. We envision a society in which access to high-quality education is a human right rather than a privilege.
|
||||
@@ -302,18 +300,22 @@ If you would like to be guided through how to contribute to a repository on GitH
|
||||
- [PyMC](https://github.com/pymc-devs/pymc) _(label: beginner friendly)_ <br> A Python library for Bayesian statistical modeling and probabilistic machine learning. Beginner-friendly with 'good first issue' labels.
|
||||
- [Pytest](https://github.com/pytest-dev/pytest) _(label: status:-easy)_ <br> 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)_ <br> The Python Internationalization Library.
|
||||
- [pythonping](https://github.com/alessandromaggio/pythonping) _(label: good first issue)_ <br> PythonPing is a simple library to execute ICMP pings natively in Python without resorting to spawning a shell.
|
||||
- [Pytorch](https://github.com/pytorch/pytorch) _(label: good first issue)_ <br> 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)_ <br> 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)_ <br> Scikit-learn is a machine learning library for Python.
|
||||
- [scrapy](https://github.com/scrapy/scrapy) _(label: good first issue)_ <br> A fast high-level web crawling & scraping framework for Python.
|
||||
- [Sorting-Algorithms-Visualizer](https://github.com/LucasPilla/Sorting-Algorithms-Visualizer) _(label: good first issue)_ <br> A tool for visualizing sorting algorithms with a educational Wiki Page.
|
||||
- [SuperDuperDB](https://github.com/SuperDuperDB/superduperdb) _(label: good first issue)_ <br> 🔮SuperDuperDB: Bring AI to your favourite database! Integrate, train and manage any AI models and APIs directly with your database and your data
|
||||
- [SymPy](https://github.com/sympy/sympy) _(label: Easy-to-Fix)_ <br> A Python library for symbolic mathematics.
|
||||
- [tree-sitter-legesher-python](https://github.com/legesher/tree-sitter-legesher-python) _(label: Good-First-Issue)_ <br> Learn and code in Python using your native language.
|
||||
- [wemake-python-styleguide](https://github.com/wemake-services/wemake-python-styleguide) _(label: level:starter)_ <br> The strictest and most opinionated python linter ever!
|
||||
- [Zulip](https://github.com/zulip/zulip) _(label: good first issue)_ <br> Powerful open source group chat.
|
||||
|
||||
## Ruby
|
||||
|
||||
- [Avo Admin for Ruby on Rails](https://github.com/avo-hq/avo) _(label: Good first issue)_ <br> Build business apps 10x faster using Ruby on Rails.
|
||||
- [bolt](https://github.com/puppetlabs/bolt) _(label: Beginner-Friendly)_ <br> 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)_ <br> 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)_ <br> A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure
|
||||
- [Hanami](https://github.com/hanami/hanami) _(label: easy)_ <br> A modern framework for Ruby.
|
||||
@@ -323,6 +325,7 @@ If you would like to be guided through how to contribute to a repository on GitH
|
||||
- [ohai](https://github.com/chef/ohai) _(label: Type:-Jump-In)_ <br> Ohai profiles your system and emits JSON
|
||||
- [open-build-service](https://github.com/openSUSE/open-build-service) _(label: good first issue-:1st_place_medal:)_ <br> 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)_ <br> 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)_ <br> 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)_ <br> Ruby on Rails (Rails) is an open source web application framework written in Ruby.
|
||||
- [Sinatra](https://github.com/sinatra/sinatra) _(label: good first issue)_ <br> Classy web-development dressed in a DSL.
|
||||
|
||||
@@ -331,9 +334,9 @@ If you would like to be guided through how to contribute to a repository on GitH
|
||||
- [a-b-street](https://github.com/a-b-street/abstreet) _(label: good first issue)_ <br> Transportation planning and traffic simulation software for creating cities friendlier to walking, biking, and public transit.
|
||||
- [dotenv-linter](https://github.com/dotenv-linter/dotenv-linter) _(label: good first issue)_ <br> Lightning-fast linter for .env files. Written in Rust
|
||||
- [Hyper](https://github.com/hyperium/hyper) _(label: E-easy)_ <br> A fast, safe and correct low-level HTTP library for Rust.
|
||||
- [Iron](https://github.com/iron/iron) _(label: easy)_ <br> An extensible, concurrent web framework for Rust
|
||||
- [nushell](https://github.com/nushell/nushell) _(label: good first issue)_ <br> A modern shell for the GitHub era written in Rust.
|
||||
- [Ockam](https://github.com/ockam-network/ockam) _(label: good first issue)_ <br> End-to-end encryption and mutual authentication for distributed applications.
|
||||
- [Pyrefly](https://github.com/facebook/pyrefly) _(label: good first issue)_ <br> A fast Python typechecker and IDE written in Rust.
|
||||
- [Readest](https://github.com/readest/readest) _(label: good first issue)_ <br> A modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface.
|
||||
- [Rust-Clippy](https://github.com/rust-lang/rust-clippy) _(label: good first issue)_ <br> A bunch of lints to catch common mistakes and improve Rust code
|
||||
- [Rustfmt](https://github.com/rust-lang-nursery/rustfmt) _(label: good first issue)_ <br> A tool for formatting Rust code according to style guidelines.
|
||||
@@ -363,8 +366,7 @@ If you would like to be guided through how to contribute to a repository on GitH
|
||||
- [Amplication](https://github.com/amplication/amplication) _(label: good first issue)_ <br> Amplication is an open-source development tool. It helps you develop quality Node.js applications without spending time on repetitive coding tasks.
|
||||
- [Berry - Active development trunk for Yarn](https://github.com/yarnpkg/berry) _(label: good first issue)_ <br> Fast, reliable, and secure dependency management.
|
||||
- [Booster](https://github.com/boostercloud/booster) _(label: good first issue)_ <br> A truly serverless framework, write your code and deploy it in seconds without any server configuration files.
|
||||
- [Devopness](https://github.com/devopness/devopness) _(label: good first issue)_ <br> Deploy any software to any cloud: automated DevOps workflows to save software teams time and money.
|
||||
- [DocsGPT](https://github.com/arc53/DocsGPT) _(label: good first issue)_ <br> Open-source RAG assistant that helps users get reliable answers from knowledge sources while avoiding hallucinations.
|
||||
- [Devopness](https://github.com/devopness/devopness) _(label: good first issue)_ <br> Devopness aims to drastically simplify the way we manage cloud applications and multi cloud infrastructure in a secure and productive way.
|
||||
- [Graphback](https://github.com/aerogear/graphback) _(label: good first issue)_ <br> A CLI and runtime framework to generate a GraphQL API in seconds.
|
||||
- [H2O Wave](https://github.com/h2oai/wave) _(label: good first issue)_ <br> Realtime Web Apps and Dashboards framework for Python and R. Suited (not only) for AI audience.
|
||||
- [Hasura GraphQL Engine](https://github.com/hasura/graphql-engine) _(label: good first issue)_ <br> Blazing fast, instant realtime GraphQL APIs on Postgres with fine grained access control, also trigger webhooks on database events.
|
||||
@@ -372,20 +374,19 @@ If you would like to be guided through how to contribute to a repository on GitH
|
||||
- [IterTools TS](https://github.com/Smoren/itertools-ts) _(label: good first issue)_ <br> Extended itertools port for TypeScript and JavaScript. Provides a huge set of functions for working with iterable collections (including async ones).
|
||||
- [LinksHub](https://github.com/rupali-codes/LinksHub) _(label: good first issue)_ <br> LinksHub aims to provide developers with access to a wide range of free resources and tools that they can use in their work.
|
||||
- [LitmusChaos](https://github.com/litmuschaos/litmus) _(label: good first issue)_ <br> Litmus is a toolset to do cloud-native chaos engineering.
|
||||
- [Manifest](https://github.com/mnfst/manifest) _(label: good first issue)_ <br> Manifest is an open-source Backend-as-a-Service allowing developers to create a backend easily and quickly.
|
||||
- [Manifest](https://github.com/mnfst/manifest) _(label: good first issue)_ <br> Manifestis an open-source Backend-as-a-Service allowign developers to create a backend easily and quickly.
|
||||
- [Metabase](https://github.com/metabase/metabase) _(label: good first issue)_ <br> Open source business intelligence and analytics platform
|
||||
- [Node Efficientnet](https://github.com/ntedgi/node-efficientnet) _(label: good first issue)_ <br> EfficientNet Image Recognition model for Node JS ( written with tensorflow.js ).
|
||||
- [OpenMetadata](https://github.com/open-metadata/OpenMetadata) _(label: good first issue)_ <br> OpenMetadata is an all-in-one platform for data discovery, data quality, observability, governance, data lineage, and team collaboration.
|
||||
- [Oppia](https://github.com/oppia/oppia) _(label: good first issue)_ <br> Oppia is an open-source project whose aim is to empower learners across the globe by providing access to high-quality, engaging education. We envision a society in which access to high-quality education is a human right rather than a privilege.
|
||||
- [Readest](https://github.com/readest/readest) _(label: good first issue)_ <br> A modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface.
|
||||
- [reatom](https://github.com/artalar/reatom) _(label: good first issue)_ <br> Reatom is declarative and reactive state manager, designed for both simple and complex applications.
|
||||
- [Storybook JS](https://github.com/storybookjs/storybook) _(label: good first issue)_ <br> Storybook is a frontend workshop for building UI components and pages in isolation.
|
||||
- [supabase](https://github.com/supabase/supabase) _(label: good first issue)_ <br> The open source Firebase alternative. Supabase gives you a dedicated Postgres database to build your web, mobile, and AI applications.
|
||||
- [tinyhttp](https://github.com/talentlessguy/tinyhttp) _(label: good first issue)_ <br> A 0-legacy, tiny & fast web framework as a replacement of Express.
|
||||
- [TypeScript](https://github.com/Microsoft/TypeScript) _(label: good first issue)_ <br> A superset of JavaScript that compiles to clean JavaScript output.
|
||||
- [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint) _(label: good first issue)_ <br> Monorepo for all the tooling which enables ESLint to support TypeScript.
|
||||
- [Visual Studio Code](https://github.com/Microsoft/vscode) _(label: good first issue)_ <br> A code editor redefined and optimized for building and debugging modern web and cloud applications.
|
||||
- [Vite](https://github.com/vitejs/vite) _(label: good first issue)_ <br> Next generation frontend tooling. It's fast! Alternative to Create React App
|
||||
- [Vitest](https://github.com/vitest-dev/vitest) _(label: good first issue)_ <br> A blazing fast unit test framework powered by Vite.
|
||||
|
||||
|
||||
## Contribute
|
||||
@@ -394,8 +395,6 @@ Contributions are welcome! See the [contributing guidelines](CONTRIBUTING.md).
|
||||
|
||||
## Thanks to GitHub Sponsors
|
||||
|
||||
Thanks to [Warp.dev](https://go.warp.dev/awesome-for-beginners) for sponsoring this repository through a donation to a charity of my choice.
|
||||
|
||||
<table><tr><td align="center"><a href="https://github.com/MixeroTN"><img src="https://avatars.githubusercontent.com/u/40803091" width="60px;" alt=""/><br/><sub><b>Michał Gołkowski</b></sub></a></td></tr></table>
|
||||
|
||||
## License
|
||||
|
||||
347
data.json
347
data.json
@@ -21,6 +21,24 @@
|
||||
],
|
||||
"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": "grok.net",
|
||||
"link": "https://github.com/Marusyk/grok.net",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"C#"
|
||||
],
|
||||
"description": "Cross platform .NET grok implementation"
|
||||
},
|
||||
{
|
||||
"name": "osu!",
|
||||
"link": "https://github.com/ppy/osu",
|
||||
@@ -142,7 +160,7 @@
|
||||
{
|
||||
"name": "Alda",
|
||||
"link": "https://github.com/alda-lang/alda",
|
||||
"label": "low-hanging fruit",
|
||||
"label": "low-hanging-fruit",
|
||||
"technologies": [
|
||||
"Go"
|
||||
],
|
||||
@@ -206,7 +224,7 @@
|
||||
"link": "https://github.com/dragonflyoss/Dragonfly2",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"Go"
|
||||
"Go"
|
||||
],
|
||||
"description": "Provide efficient, stable and secure file distribution and image acceleration based on p2p technology"
|
||||
},
|
||||
@@ -248,8 +266,8 @@
|
||||
},
|
||||
{
|
||||
"name": "Mattermost",
|
||||
"link": "https://github.com/mattermost/mattermost",
|
||||
"label": "Good First Issue, Difficulty/1:Easy",
|
||||
"link": "https://github.com/mattermost/mattermost",
|
||||
"label": "Good First Issue, Difficulty/1:Easy",
|
||||
"technologies": [
|
||||
"Go",
|
||||
"JavaScript"
|
||||
@@ -292,6 +310,24 @@
|
||||
],
|
||||
"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",
|
||||
@@ -336,6 +372,15 @@
|
||||
],
|
||||
"description": "Common Utilities library for Go"
|
||||
},
|
||||
{
|
||||
"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",
|
||||
@@ -375,7 +420,7 @@
|
||||
{
|
||||
"name": "XWiki",
|
||||
"link": "https://jira.xwiki.org/issues",
|
||||
"label": "onboarding",
|
||||
"label": "onboarding",
|
||||
"technologies": [
|
||||
"Java"
|
||||
],
|
||||
@@ -438,7 +483,7 @@
|
||||
{
|
||||
"name": "iD",
|
||||
"link": "https://github.com/openstreetmap/iD",
|
||||
"label": "new contributor opportunity",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"JavaScript"
|
||||
],
|
||||
@@ -489,6 +534,15 @@
|
||||
],
|
||||
"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",
|
||||
@@ -534,6 +588,15 @@
|
||||
],
|
||||
"description": "Awesome ESLint rules."
|
||||
},
|
||||
{
|
||||
"name": "API-pull-with-JavaScript",
|
||||
"link": "https://github.com/AliBasboga/APIExampleWithExpress.git",
|
||||
"label": "API-pull-and-use",
|
||||
"technologies": [
|
||||
"JavaScript"
|
||||
],
|
||||
"description": "API data extraction and delivery to the user to present."
|
||||
},
|
||||
{
|
||||
"name": "HMPL",
|
||||
"link": "https://github.com/hmpl-language/hmpl",
|
||||
@@ -552,16 +615,16 @@
|
||||
],
|
||||
"description": "A lightweight JavaScript date library for parsing, validating, manipulating, and formatting dates."
|
||||
},
|
||||
{
|
||||
{
|
||||
"name": "ImprovedTube",
|
||||
"link": "https://github.com/code-charity/youtube",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"JavaScript",
|
||||
"CSS"
|
||||
"CSS"
|
||||
],
|
||||
"description": "A powerful but lightweight extension, to enrich your video experience & enable your content selection."
|
||||
},
|
||||
"description": "A powerful but lightweight extension, to enrich your video experience & enable your content selection."
|
||||
},
|
||||
{
|
||||
"name": "serverless",
|
||||
"link": "https://github.com/serverless/serverless",
|
||||
@@ -604,7 +667,7 @@
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"JavaScript",
|
||||
"TypeScript"
|
||||
"TypeScript"
|
||||
],
|
||||
"description": "Fast, reliable, and secure dependency management."
|
||||
},
|
||||
@@ -619,13 +682,22 @@
|
||||
},
|
||||
{
|
||||
"name": "Next.js",
|
||||
"link": "https://github.com/vercel/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": "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",
|
||||
@@ -653,6 +725,15 @@
|
||||
],
|
||||
"description": "The JavaScript mutation testing framework"
|
||||
},
|
||||
{
|
||||
"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",
|
||||
@@ -745,7 +826,7 @@
|
||||
},
|
||||
{
|
||||
"name": "material-ui",
|
||||
"link": "https://github.com/mui/material-ui",
|
||||
"link": "https://github.com/mui-org/material-ui",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"JavaScript"
|
||||
@@ -833,6 +914,15 @@
|
||||
],
|
||||
"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": "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",
|
||||
@@ -844,12 +934,12 @@
|
||||
},
|
||||
{
|
||||
"name": "reactjs.org",
|
||||
"link": "https://github.com/reactjs/react.dev",
|
||||
"link": "https://github.com/reactjs/reactjs.org",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"JavaScript"
|
||||
],
|
||||
"description": "The documentation website for reactjs"
|
||||
"description": "The documenation website for reactjs"
|
||||
},
|
||||
{
|
||||
"name": "Vest",
|
||||
@@ -870,17 +960,26 @@
|
||||
"description": "A free, fast and beautiful API request builder."
|
||||
},
|
||||
{
|
||||
"name": "OpenCalc",
|
||||
"link": "https://github.com/Darkempire78/OpenCalc",
|
||||
"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": "OpenCalc",
|
||||
"link": "https://github.com/Darkempire78/OpenCalc",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"Kotlin"
|
||||
],
|
||||
"description": "A simple and beautiful calculator for Android."
|
||||
},
|
||||
"description": "A simple and beautiful calculator for Android."
|
||||
},
|
||||
{
|
||||
"name": "Time to Leave",
|
||||
"link": "https://github.com/TTLApp/time-to-leave",
|
||||
"link": "https://github.com/thamara/time-to-leave",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"JavaScript"
|
||||
@@ -898,7 +997,7 @@
|
||||
},
|
||||
{
|
||||
"name": "Vue Router",
|
||||
"link": "https://github.com/vuejs/router",
|
||||
"link": "https://github.com/vuejs/vue-router",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"JavaScript"
|
||||
@@ -914,15 +1013,6 @@
|
||||
],
|
||||
"description": "Minimalistic Vue-powered static site generator"
|
||||
},
|
||||
{
|
||||
"name": "Vitest",
|
||||
"link": "https://github.com/vitest-dev/vitest",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"TypeScript"
|
||||
],
|
||||
"description": "A blazing fast unit test framework powered by Vite."
|
||||
},
|
||||
{
|
||||
"name": "appsmith",
|
||||
"link": "https://github.com/appsmithorg/appsmith",
|
||||
@@ -991,21 +1081,36 @@
|
||||
"link": "https://github.com/devopness/devopness",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"Python",
|
||||
"TypeScript"
|
||||
],
|
||||
"description": "Deploy any software to any cloud: automated DevOps workflows to save software teams time and money."
|
||||
"description": "Devopness aims to drastically simplify the way we manage cloud applications and multi cloud infrastructure in a secure and productive way."
|
||||
},
|
||||
{
|
||||
"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": "Julia",
|
||||
"link": "https://github.com/JuliaLang/julia",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"Julia",
|
||||
"C",
|
||||
"C++"
|
||||
"Julia"
|
||||
],
|
||||
"description": "The Julia Programming Language - A high-level, high-performance dynamic language for technical computing."
|
||||
"description": "Julia Projects for Beginners — Easy Ideas to Get Started Coding in Julia"
|
||||
},
|
||||
{
|
||||
"name": "Atrium",
|
||||
@@ -1052,16 +1157,6 @@
|
||||
],
|
||||
"description": "Collaborative cheatsheets for console commands."
|
||||
},
|
||||
{
|
||||
"name": "The Odin Project Curriculum",
|
||||
"link": "https://github.com/TheOdinProject/curriculum",
|
||||
"label": "See Description",
|
||||
"technologies": [
|
||||
"Markdown",
|
||||
"JavaScript"
|
||||
],
|
||||
"description": "An open-source curriculum for learning full-stack web development. There are a few \"Type: Good First Issue\" labelled issues, but any content addition/deletion issues seem reasonably beginner friendly."
|
||||
},
|
||||
{
|
||||
"name": "Ravada",
|
||||
"link": "https://github.com/UPC/ravada",
|
||||
@@ -1133,15 +1228,6 @@
|
||||
],
|
||||
"description": "Symfony is a PHP framework for web applications and a set of reusable PHP components."
|
||||
},
|
||||
{
|
||||
"name": "CodeIgniter",
|
||||
"link": "https://github.com/codeigniter4/CodeIgniter4",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"PHP"
|
||||
],
|
||||
"description": "A lightweight, fast PHP framework, it is easy to install and perfect for learning MVC architecture."
|
||||
},
|
||||
{
|
||||
"name": "Laravel Newsletters",
|
||||
"link": "https://github.com/spatie/laravel-newsletter",
|
||||
@@ -1160,7 +1246,7 @@
|
||||
],
|
||||
"description": "An End-to-end backend server for frontend and mobile developers. 🚀"
|
||||
},
|
||||
{
|
||||
{
|
||||
"name": "FreshRSS",
|
||||
"link": "https://github.com/FreshRSS/FreshRSS",
|
||||
"label": "good first issue",
|
||||
@@ -1267,6 +1353,14 @@
|
||||
],
|
||||
"description": "An interactive TLS-capable intercepting HTTP proxy for penetration testers and software developers"
|
||||
},
|
||||
{
|
||||
"name": "coala",
|
||||
"link": "https://github.com/coala/coala",
|
||||
"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",
|
||||
@@ -1384,6 +1478,15 @@
|
||||
],
|
||||
"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",
|
||||
@@ -1391,7 +1494,7 @@
|
||||
"technologies": [
|
||||
"Python"
|
||||
],
|
||||
"description": "Optional static typing for Python."
|
||||
"description": "An optional static typing for python."
|
||||
},
|
||||
{
|
||||
"name": "matplotlib",
|
||||
@@ -1418,7 +1521,7 @@
|
||||
"technologies": [
|
||||
"Python"
|
||||
],
|
||||
"description": "Exploratory Analysis of Bayesian Models."
|
||||
"description": "Exploratory Anaylsis of Bayesian Models."
|
||||
},
|
||||
{
|
||||
"name": "MindsDB",
|
||||
@@ -1429,16 +1532,6 @@
|
||||
],
|
||||
"description": "MindsDB is an open source AI layer for existing databases."
|
||||
},
|
||||
{
|
||||
"name": "DocsGPT",
|
||||
"link": "https://github.com/arc53/DocsGPT",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"Python",
|
||||
"TypeScript"
|
||||
],
|
||||
"description": "Open-source RAG assistant that helps users get reliable answers from knowledge sources while avoiding hallucinations."
|
||||
},
|
||||
{
|
||||
"name": "Bokeh",
|
||||
"link": "https://github.com/bokeh/bokeh",
|
||||
@@ -1466,6 +1559,15 @@
|
||||
],
|
||||
"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",
|
||||
@@ -1529,6 +1631,15 @@
|
||||
],
|
||||
"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": "osem",
|
||||
"link": "https://github.com/openSUSE/osem",
|
||||
@@ -1547,6 +1658,15 @@
|
||||
],
|
||||
"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",
|
||||
@@ -1583,15 +1703,6 @@
|
||||
],
|
||||
"description": "Ruby on Rails (Rails) is an open source web application framework written in Ruby."
|
||||
},
|
||||
{
|
||||
"name": "Pyrefly",
|
||||
"link": "https://github.com/facebook/pyrefly",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"Rust"
|
||||
],
|
||||
"description": "A fast Python typechecker and IDE written in Rust."
|
||||
},
|
||||
{
|
||||
"name": "Servo",
|
||||
"link": "https://github.com/servo/servo",
|
||||
@@ -1620,6 +1731,15 @@
|
||||
"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": "TensorZero",
|
||||
"link": "https://github.com/tensorzero/tensorzero",
|
||||
"label": "good-first-issue",
|
||||
@@ -1834,6 +1954,15 @@
|
||||
],
|
||||
"description": "Amplication is an open-source development tool. It helps you develop quality Node.js applications without spending time on repetitive coding tasks."
|
||||
},
|
||||
{
|
||||
"name": "pythonping",
|
||||
"link": "https://github.com/alessandromaggio/pythonping",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"Python"
|
||||
],
|
||||
"description": "PythonPing is a simple library to execute ICMP pings natively in Python without resorting to spawning a shell."
|
||||
},
|
||||
{
|
||||
"name": "flutter",
|
||||
"link": "https://github.com/flutter/flutter",
|
||||
@@ -1880,6 +2009,24 @@
|
||||
],
|
||||
"description": "Realtime Web Apps and Dashboards framework for Python and R. Suited (not only) for AI audience."
|
||||
},
|
||||
{
|
||||
"name": "H2O Wave Apps",
|
||||
"link": "https://github.com/h2oai/wave-apps",
|
||||
"label": "hacktoberfest",
|
||||
"technologies": [
|
||||
"Python"
|
||||
],
|
||||
"description": "Sample AI Apps built with H2O Wave."
|
||||
},
|
||||
{
|
||||
"name": "Node Efficientnet",
|
||||
"link": "https://github.com/ntedgi/node-efficientnet",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"TypeScript"
|
||||
],
|
||||
"description": "EfficientNet Image Recognition model for Node JS ( written with tensorflow.js )."
|
||||
},
|
||||
{
|
||||
"name": "OpenMetadata",
|
||||
"link": "https://github.com/open-metadata/OpenMetadata",
|
||||
@@ -1944,7 +2091,7 @@
|
||||
"technologies": [
|
||||
"JavaScript"
|
||||
],
|
||||
"description": "An open source react native app iOS and android for color palette management"
|
||||
"description": "A open source react native app iOS and android for color palette management"
|
||||
},
|
||||
{
|
||||
"name": "QuestDB",
|
||||
@@ -2028,8 +2175,7 @@
|
||||
"link": "https://github.com/activist-org/activist",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"TypeScript",
|
||||
"Python"
|
||||
"TypeScript", "Python"
|
||||
],
|
||||
"description": "activist.org is a network for political action that allows people to coordinate and collaborate on the issues that matter most to them."
|
||||
},
|
||||
@@ -2047,10 +2193,8 @@
|
||||
"name": "Manifest",
|
||||
"link": "https://github.com/mnfst/manifest",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"TypeScript"
|
||||
],
|
||||
"description": "Manifest is an open-source Backend-as-a-Service allowing developers to create a backend easily and quickly."
|
||||
"technologies": ["TypeScript"],
|
||||
"description": "Manifestis an open-source Backend-as-a-Service allowign developers to create a backend easily and quickly."
|
||||
},
|
||||
{
|
||||
"name": "grommet",
|
||||
@@ -2068,7 +2212,7 @@
|
||||
"technologies": [
|
||||
"JavaScript",
|
||||
"JSON",
|
||||
"Pug"
|
||||
"Pug"
|
||||
],
|
||||
"description": "An inventory of tools and resources that aims to help people to find everything related to CyberSecurity."
|
||||
},
|
||||
@@ -2080,16 +2224,16 @@
|
||||
"Rust"
|
||||
],
|
||||
"description": "Teleconference system with a web based user interface written in Rust"
|
||||
},
|
||||
{
|
||||
"name": "Catima - Android App",
|
||||
"link": "https://github.com/CatimaLoyalty/Android",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"Java"
|
||||
],
|
||||
"description": "Catima, a Loyalty Card & Ticket Manager for Android"
|
||||
},
|
||||
},
|
||||
{
|
||||
"name": "Catima - Android App",
|
||||
"link": "https://github.com/CatimaLoyalty/Android",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"Java"
|
||||
],
|
||||
"description": "Catima, a Loyalty Card & Ticket Manager for Android"
|
||||
},
|
||||
{
|
||||
"name": "FastAPI",
|
||||
"link": "https://github.com/tiangolo/fastapi",
|
||||
@@ -2099,24 +2243,15 @@
|
||||
],
|
||||
"description": "A modern, fast (high-performance) web framework for building APIs with Python 3.6+ based on standard Python type hints."
|
||||
},
|
||||
{
|
||||
{
|
||||
"name": "Readest",
|
||||
"link": "https://github.com/readest/readest",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"Rust",
|
||||
"TypeScript"
|
||||
"TypeScript"
|
||||
],
|
||||
"description": "A modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface."
|
||||
},
|
||||
{
|
||||
"name": "supabase",
|
||||
"link": "https://github.com/supabase/supabase",
|
||||
"label": "good first issue",
|
||||
"technologies": [
|
||||
"TypeScript"
|
||||
],
|
||||
"description": "The open source Firebase alternative. Supabase gives you a dedicated Postgres database to build your web, mobile, and AI applications."
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user