From 0c8aea5c937c58488dbc11b2cd897567c26512b6 Mon Sep 17 00:00:00 2001 From: Theodore Aptekarev Date: Mon, 30 Sep 2024 16:53:10 +0300 Subject: [PATCH 1/6] Add community example notebook template --- examples/COMMUNITY_EXAMPLE_TEMPLATE.ipynb | 71 +++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 examples/COMMUNITY_EXAMPLE_TEMPLATE.ipynb diff --git a/examples/COMMUNITY_EXAMPLE_TEMPLATE.ipynb b/examples/COMMUNITY_EXAMPLE_TEMPLATE.ipynb new file mode 100644 index 000000000000..d051779fe265 --- /dev/null +++ b/examples/COMMUNITY_EXAMPLE_TEMPLATE.ipynb @@ -0,0 +1,71 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Instructions for Contributors\n", + "\n", + "Welcome to this example notebook for OpenBB! Please follow the steps below:\n", + "\n", + "1. **Fill in the details**: Customize the second cell with the name of the notebook, your GitHub profile link, and a brief description of what your notebook demonstrates.\n", + "2. **Add Your Code**: Make sure to include clean and commented code sections throughout the notebook.\n", + "3. **Test Before Submitting**: Run all cells to ensure the notebook functions as expected.\n", + "4. **Keep it Simple and Clear**: Make your explanations and code as clear as possible for others to follow.\n", + "5. **Run in Colab Button**: Ensure the \"Run in Colab\" button links properly to the notebook. You can test it by clicking the button and verifying it loads your notebook.\n", + "\n", + "Please refer to the documentation at [OpenBB Documentation](https://docs.openbb.co/) for additional guidance.\n", + "\n", + "Remove this cell before submitting your notebook." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## [Notebook Name]\n", + "\n", + "#### Description\n", + "[Briefly describe what this notebook demonstrates, e.g., \"This notebook demonstrates how to backtest a momentum trading strategy using OpenBB's historical data.\"]\n", + "\n", + "#### Author\n", + "[Your Name](https://github.com/[YourGitHubUsername])\n", + "\n", + "[![Open in Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/OpenBB-Finance/OpenBB/blob/develop/examples/[Notebook_Name].ipynb)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If you are running this notebook in Colab, you can run the following command to install the OpenBB Platform:\n", + "\n", + "```python\n", + "!pip install openbb\n", + "```\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from openbb import obb" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "obb", + "language": "python", + "name": "python3" + }, + "language_info": { + "name": "python", + "version": "3.9.19" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From f501f73b066ccbf49d0716e26319e34900c532e7 Mon Sep 17 00:00:00 2001 From: Theodore Aptekarev Date: Mon, 30 Sep 2024 16:53:53 +0300 Subject: [PATCH 2/6] Update GHA branch check to waive branch naming requirement for forks --- .github/workflows/gh-branch-name-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gh-branch-name-check.yml b/.github/workflows/gh-branch-name-check.yml index 1113eae3446b..420f685da38c 100644 --- a/.github/workflows/gh-branch-name-check.yml +++ b/.github/workflows/gh-branch-name-check.yml @@ -29,7 +29,7 @@ jobs: - name: Check branch name for develop PRs id: check-develop-branch - if: ${{ steps.branch-names.outputs.base_ref_branch == 'develop' }} + if: ${{ steps.branch-names.outputs.base_ref_branch == 'develop' && !github.event.pull_request.head.repo.fork }} run: | if ! [[ "${{ steps.branch-names.outputs.head_ref_branch }}" =~ ^(feature/.*|docs/.*|bugfix/.*|hotfix/.*|release/([a-zA-Z-]+-)?[0-9]+\.[0-9]+\.[0-9]+(rc[0-9]+)?)$ ]]; then echo "reason=Invalid branch name for a Pull Request to be merged to `${{ steps.branch-names.outputs.base_ref_branch }}` branch. Branches must follow the GitFlow naming convention." >> $GITHUB_OUTPUT From a4b42e623ea929d91eac336fb44be177bcdc377b Mon Sep 17 00:00:00 2001 From: Theodore Aptekarev Date: Mon, 30 Sep 2024 16:54:19 +0300 Subject: [PATCH 3/6] Add oss.gg issue template --- .../ISSUE_TEMPLATE/oss-gg-hack-submission.yml | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/oss-gg-hack-submission.yml diff --git a/.github/ISSUE_TEMPLATE/oss-gg-hack-submission.yml b/.github/ISSUE_TEMPLATE/oss-gg-hack-submission.yml new file mode 100644 index 000000000000..d68d45cffb14 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/oss-gg-hack-submission.yml @@ -0,0 +1,33 @@ +name: oss.gg hack submission 🕹️ +description: "Submit your contribution for the for the oss.gg hackathon" +title: "[🕹️]" +labels: 🕹️ oss.gg, player submission, hacktoberfest +assignees: [] +body: + - type: textarea + id: contribution-name + attributes: + label: What side quest or challenge are you solving? + description: Add the name of the side quest or challenge. + validations: + required: true + - type: textarea + id: points + attributes: + label: Points + description: How many points are assigned to this contribution? + validations: + required: true + - type: textarea + id: description + attributes: + label: Description + description: What's the task your performed? + validations: + - type: textarea + id: proof + attributes: + label: Provide proof that you've completed the task + description: Screenshots, loom recordings, links to the content you shared or interacted with. + validations: + required: true From 9862498170b8de4730b374af1d69d759353151f5 Mon Sep 17 00:00:00 2001 From: Theodore Aptekarev Date: Mon, 30 Sep 2024 16:55:39 +0300 Subject: [PATCH 4/6] Add oss.gg folder and side quest files --- oss.gg/README.md | 61 +++++++++++++++++++ .../code_side_quests/1-openbb-integration.md | 29 +++++++++ oss.gg/code_side_quests/2-custom-backend.md | 29 +++++++++ oss.gg/code_side_quests/3-custom-copilot.md | 29 +++++++++ oss.gg/code_side_quests/4-agentic-agent.md | 29 +++++++++ oss.gg/no_code_side_quests/0-set-upper.md | 38 ++++++++++++ oss.gg/no_code_side_quests/1-pilot-copilot.md | 27 ++++++++ .../no_code_side_quests/2-fundamental-blog.md | 27 ++++++++ oss.gg/no_code_side_quests/3-reddit-legend.md | 27 ++++++++ oss.gg/no_code_side_quests/4-social-poster.md | 27 ++++++++ .../no_code_side_quests/5-financial-medium.md | 27 ++++++++ oss.gg/no_code_side_quests/6-twitter-hero.md | 27 ++++++++ 12 files changed, 377 insertions(+) create mode 100644 oss.gg/README.md create mode 100644 oss.gg/code_side_quests/1-openbb-integration.md create mode 100644 oss.gg/code_side_quests/2-custom-backend.md create mode 100644 oss.gg/code_side_quests/3-custom-copilot.md create mode 100644 oss.gg/code_side_quests/4-agentic-agent.md create mode 100644 oss.gg/no_code_side_quests/0-set-upper.md create mode 100644 oss.gg/no_code_side_quests/1-pilot-copilot.md create mode 100644 oss.gg/no_code_side_quests/2-fundamental-blog.md create mode 100644 oss.gg/no_code_side_quests/3-reddit-legend.md create mode 100644 oss.gg/no_code_side_quests/4-social-poster.md create mode 100644 oss.gg/no_code_side_quests/5-financial-medium.md create mode 100644 oss.gg/no_code_side_quests/6-twitter-hero.md diff --git a/oss.gg/README.md b/oss.gg/README.md new file mode 100644 index 000000000000..c32b6c161256 --- /dev/null +++ b/oss.gg/README.md @@ -0,0 +1,61 @@ +# Instructions for oss.gg Hacktoberfest 2024 Open Source Contributors + +## Overview of OpenBB Quests + +At oss.gg Hacktoberfest 2024, we have three types of contributions: + +1. **GitHub Issues tagged with `🕹️ oss.gg`** (direct code contributions to this repository) +2. **Code Side-Quests** (tasks that involve coding but contribute to separate repositories or projects) +3. **No-Code Side-Quests** (non-coding tasks, such as writing tutorials, social media posts, etc.) + +Each type of contribution has its own process, which we’ll describe below. + +--- + +## How to Submit Code Contributions to this repository (GitHub Issues) + +1. Choose an issue from the [GitHub issues page](https://github.com/OpenBB-Finance/OpenBB/issues). The issue should have a `🕹️ oss.gg` label. +2. Comment with the `/assign` command to assign yourself. +3. Open a PR within 48 hours where you reference your issue. The PR should point to the `develop` branch. +4. The project maintainer will review the PR, and once it’s merged, you’ll be awarded your points automatically. + +--- + +## How to Submit Code and No-Code Side-Quests + +In the root of the repository, you’ll find a folder called `oss.gg`. Inside this folder, there are two subfolders: + +1. **`code_side_quests`**: This folder contains `.md` files for each Code Side-Quest. +2. **`no_code_side_quests`**: This folder contains `.md` files for each No-Code Side-Quest. + +For both types of side-quests, you will need to: + +- Open the relevant `.md` file for your side quest. +- Add a new entry with the following information: + - Your GitHub name + - A UTC timestamp + - A link to your proof of contribution (e.g., a fork or a new repository for code side-quests, or a blog post for no-code side-quests). + +## How to Submit Code Side-Quests + +1. Open an issue for your contribution. Use the oss.gg hack submission template. +2. Comment with the `/assign` command to assign yourself. +3. Add your details to the relevant `.md` file in the `code_side_quests` folder (as described above). +4. Open a PR where you reference your issue. The PR should point to the `develop` branch. +5. The project maintainer will review the submission, update the side quest log, and once the PR is merged, points will be awarded. + +Note: Code Side-Quests often involve work in other repositories (forks or new projects) and do not contribute code directly to this repository. + +## How to Submit No-Code Side-Quests + +1. Open an issue for your contribution. Use the oss.gg hack submission template. +2. Comment with the `/assign` command to assign yourself. +3. Add your details to the relevant `.md` file in the `no_code_side_quests` folder (as described above). +4. Open a PR where you reference your issue. The PR should point to the `develop` branch. +5. The project maintainer will review the submission, update the side quest log, and once the PR is merged, points will be awarded. + +--- + +Don’t forget to check your current points at oss.gg/[yourGitHubUsername] + +Happy hacking! diff --git a/oss.gg/code_side_quests/1-openbb-integration.md b/oss.gg/code_side_quests/1-openbb-integration.md new file mode 100644 index 000000000000..f34cb5639f76 --- /dev/null +++ b/oss.gg/code_side_quests/1-openbb-integration.md @@ -0,0 +1,29 @@ +**Side Quest**: Integrate OpenBB into a dashboard or web application + +**Points**: 300-750 Points + +**Task**: Integrate OpenBB into a dashboard framework such as Streamlit or a web application. You can use any relevant functionalities from OpenBB to create a useful and interactive dashboard. + +**Proof**: Provide a working demo via a video link and a link to your GitHub repository. The repository must be open source. + +Please follow the following schema: + +--- + +» 05-April-2024 by YOUR NAME +» Link to Video: https://youtube.com/... +» Link to Repo: https://github.com/... + +--- + +//////////////////////////// + +Your turn 👇 + +//////////////////////////// + +» 01-October-2024 by YOUR NAME +» Link to Video: https://youtube.com/... +» Link to Repo: https://github.com/... + +--- diff --git a/oss.gg/code_side_quests/2-custom-backend.md b/oss.gg/code_side_quests/2-custom-backend.md new file mode 100644 index 000000000000..e852dd4e3299 --- /dev/null +++ b/oss.gg/code_side_quests/2-custom-backend.md @@ -0,0 +1,29 @@ +**Side Quest**: Create a custom backend for OpenBB Terminal using widgets.json and a new data source + +**Points**: 300-750 Points + +**Task**: Build a custom backend for OpenBB’s Terminal by utilizing `widgets.json` and integrating it with a new data source. Look at the examples in the [backend-for-terminal-pro](https://github.com/OpenBB-finance/backend-for-terminal-pro) repository to guide your work. + +**Proof**: Provide a working demo via a video link and a link to your GitHub repository. The repository must be open source. + +Please follow the following schema: + +--- + +» 05-April-2024 by YOUR NAME +» Link to Video: https://youtube.com/... +» Link to Repo: https://github.com/... + +--- + +//////////////////////////// + +Your turn 👇 + +//////////////////////////// + +» 01-October-2024 by YOUR NAME +» Link to Video: https://youtube.com/... +» Link to Repo: https://github.com/... + +--- diff --git a/oss.gg/code_side_quests/3-custom-copilot.md b/oss.gg/code_side_quests/3-custom-copilot.md new file mode 100644 index 000000000000..67d57c45cb5c --- /dev/null +++ b/oss.gg/code_side_quests/3-custom-copilot.md @@ -0,0 +1,29 @@ +**Side Quest**: Create a custom copilot for OpenBB Terminal + +**Points**: 300-750 Points + +**Task**: Create a custom copilot that integrates a new language model (e.g., Cohere, Llama3.2, etc.) into OpenBB's Terminal. Look at the examples in the [copilot-for-terminal-pro](https://github.com/OpenBB-finance/copilot-for-terminal-pro) repository for guidance. + +**Proof**: Provide a working demo via a video link and a link to your GitHub repository. The repository must be open source. + +Please follow the following schema: + +--- + +» 05-April-2024 by YOUR NAME +» Link to Video: https://youtube.com/... +» Link to Repo: https://github.com/... + +--- + +//////////////////////////// + +Your turn 👇 + +//////////////////////////// + +» 01-October-2024 by YOUR NAME +» Link to Video: https://youtube.com/... +» Link to Repo: https://github.com/... + +--- diff --git a/oss.gg/code_side_quests/4-agentic-agent.md b/oss.gg/code_side_quests/4-agentic-agent.md new file mode 100644 index 000000000000..d796ab83baca --- /dev/null +++ b/oss.gg/code_side_quests/4-agentic-agent.md @@ -0,0 +1,29 @@ +**Side Quest**: Create an AI Agent that utilizes OpenBB + +**Points**: 300-750 Points + +**Task**: Develop an AI agent that utilizes OpenBB’s features for data analysis, financial insights, or other related tasks. Refer to the [openbb-agents](https://github.com/OpenBB-finance/openbb-agents) repository for examples and guidance. + +**Proof**: Provide a working demo via a video link and a link to your GitHub repository. The repository must be open source. + +Please follow the following schema: + +--- + +» 05-April-2024 by YOUR NAME +» Link to Video: https://youtube.com/... +» Link to Repo: https://github.com/... + +--- + +//////////////////////////// + +Your turn 👇 + +//////////////////////////// + +» 01-October-2024 by YOUR NAME +» Link to Video: https://youtube.com/... +» Link to Repo: https://github.com/... + +--- diff --git a/oss.gg/no_code_side_quests/0-set-upper.md b/oss.gg/no_code_side_quests/0-set-upper.md new file mode 100644 index 000000000000..11dd1c9298c2 --- /dev/null +++ b/oss.gg/no_code_side_quests/0-set-upper.md @@ -0,0 +1,38 @@ +**Side Quest**: Record your onboarding and first steps with OpenBB Terminal + +**Points**: 150 Points - 300 Points + +**Task**: Record yourself going through the setup of OpenBB for the first time and provide feedback. Depending on how much feedback you provide, we’ll assign 150 or 300 points. + +You do not need to show your face if you don’t want to, but voice is required. Please say out loud what you’re thinking or expecting as you go. + +What should be included: + +- Sign up on pro.openbb.co +- Going through the onboarding process in OpenBB Terminal +- Exploring and trying out key features in OpenBB Terminal (e.g., loading data, creating a dashboard, etc.) +- Adding your own data to OpenBB Terminal (e.g., adding a file, adding an API endpoint, OpenBB Platform API, custom backend, etc.) + +If you get stuck or encounter issues, please report that in the video. Honest feedback, even if you're unable to complete certain steps, is valuable. + +**Proof**: Paste your video or add a link (YouTube, Loom, etc.) in the PR description. If you have more feedback that is not mentioned in the video, please add it in the PR as well. + +Please follow the following schema: + +--- + +» 05-April-2024 by YOUR NAME +» Link to Video: https://youtube.com/... + +--- + +//////////////////////////// + +Your turn 👇 + +//////////////////////////// + +» 01-October-2024 by YOUR NAME +» Link to Video: https://youtube.com/... + +--- diff --git a/oss.gg/no_code_side_quests/1-pilot-copilot.md b/oss.gg/no_code_side_quests/1-pilot-copilot.md new file mode 100644 index 000000000000..c7e32e51d56a --- /dev/null +++ b/oss.gg/no_code_side_quests/1-pilot-copilot.md @@ -0,0 +1,27 @@ +**Side Quest**: Create a YouTube Tutorial for Custom Copilot Development and Setup + +**Points**: 300 Points + +**Task**: Produce a step-by-step YouTube video tutorial on setting up and using OpenBB’s custom copilot framework with a real-life example. + +**Proof**: Add a link to your YouTube video in the PR description and update the list below with the submission. + +Please follow the following schema: + +--- + +» 05-April-2024 by YOUR NAME +» Link to YouTube video: https://youtube.com/... + +--- + +//////////////////////////// + +Your turn 👇 + +//////////////////////////// + +» 01-October-2024 by YOUR NAME +» Link to YouTube video: https://youtube.com/... + +--- diff --git a/oss.gg/no_code_side_quests/2-fundamental-blog.md b/oss.gg/no_code_side_quests/2-fundamental-blog.md new file mode 100644 index 000000000000..b8f11ad91f94 --- /dev/null +++ b/oss.gg/no_code_side_quests/2-fundamental-blog.md @@ -0,0 +1,27 @@ +**Side Quest**: Write a Use-Case Blog for OpenBB in Fundamental Analysis + +**Points**: 300 Points + +**Task**: Create a detailed blog post showcasing how OpenBB can be used for fundamental analysis in stock markets. + +**Proof**: Add a link to your blog post in the PR description and update the list below with the submission. + +Please follow the following schema: + +--- + +» 05-April-2024 by YOUR NAME +» Link to Blog Post: https://medium.com/... + +--- + +//////////////////////////// + +Your turn 👇 + +//////////////////////////// + +» 01-October-2024 by YOUR NAME +» Link to Blog Post: https://medium.com/... + +--- diff --git a/oss.gg/no_code_side_quests/3-reddit-legend.md b/oss.gg/no_code_side_quests/3-reddit-legend.md new file mode 100644 index 000000000000..1c2230288cfa --- /dev/null +++ b/oss.gg/no_code_side_quests/3-reddit-legend.md @@ -0,0 +1,27 @@ +**Side Quest**: Post Your Investment Research on Subreddits like WSB or Investing + +**Points**: 150 Points + +**Task**: Share your research that leverages OpenBB in relevant Reddit communities. + +**Proof**: Add a link to your Reddit post in the PR description and update the list below with the submission. + +Please follow the following schema: + +--- + +» 05-April-2024 by YOUR NAME +» Link to Reddit Post: https://reddit.com/r/... + +--- + +//////////////////////////// + +Your turn 👇 + +//////////////////////////// + +» 01-October-2024 by YOUR NAME +» Link to Reddit Post: https://reddit.com/r/... + +--- diff --git a/oss.gg/no_code_side_quests/4-social-poster.md b/oss.gg/no_code_side_quests/4-social-poster.md new file mode 100644 index 000000000000..708ab6d23ee8 --- /dev/null +++ b/oss.gg/no_code_side_quests/4-social-poster.md @@ -0,0 +1,27 @@ +**Side Quest**: Create a Social Media Post Highlighting OpenBB’s Customizability + +**Points**: 50 Points + +**Task**: Design and share a social media post (e.g., meme, infographic) focusing on OpenBB’s flexibility and customizability features. + +**Proof**: Add a screenshot of the post to the PR description and update the list below with the submission. + +Please follow the following schema: + +--- + +» 05-April-2024 by YOUR NAME +» Link to Social Media Post: https://x.com/... + +--- + +//////////////////////////// + +Your turn 👇 + +//////////////////////////// + +» 01-October-2024 by YOUR NAME +» Link to Social Media Post: https://x.com/... + +--- diff --git a/oss.gg/no_code_side_quests/5-financial-medium.md b/oss.gg/no_code_side_quests/5-financial-medium.md new file mode 100644 index 000000000000..8a2b721de7ff --- /dev/null +++ b/oss.gg/no_code_side_quests/5-financial-medium.md @@ -0,0 +1,27 @@ +**Side Quest**: Write a Medium Article Comparing OpenBB and Other Financial Tools + +**Points**: 300 Points + +**Task**: Write an article for Medium comparing OpenBB with proprietary tools emphasizing its open-source benefits. + +**Proof**: Add a link to your Medium article in the PR description and update the list below with the submission. + +Please follow the following schema: + +--- + +» 05-April-2024 by YOUR NAME +» Link to Medium Article: https://medium.com/... + +--- + +//////////////////////////// + +Your turn 👇 + +//////////////////////////// + +» 01-October-2024 by YOUR NAME +» Link to Medium Article: https://medium.com/... + +--- diff --git a/oss.gg/no_code_side_quests/6-twitter-hero.md b/oss.gg/no_code_side_quests/6-twitter-hero.md new file mode 100644 index 000000000000..804bfe682d55 --- /dev/null +++ b/oss.gg/no_code_side_quests/6-twitter-hero.md @@ -0,0 +1,27 @@ +**Side Quest**: Publish a Twitter Thread on OpenBB’s Use in Investment Research + +**Points**: 150 Points + +**Task**: Create a detailed Twitter thread explaining how OpenBB can be used to enhance personal or professional investment research. + +**Proof**: Add a link to your Twitter thread in the PR description and update the list below with the submission. + +Please follow the following schema: + +--- + +» 05-April-2024 by YOUR NAME +» Link to Twitter Thread: https://x.com/... + +--- + +//////////////////////////// + +Your turn 👇 + +//////////////////////////// + +» 01-October-2024 by YOUR NAME +» Link to Twitter Thread: https://x.com/... + +--- From 02515016db1beeb7f866f6437d9a07b2d7225e21 Mon Sep 17 00:00:00 2001 From: Theodore Aptekarev Date: Mon, 30 Sep 2024 17:01:06 +0300 Subject: [PATCH 5/6] Add banner --- oss.gg/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/oss.gg/README.md b/oss.gg/README.md index c32b6c161256..db7ddfee3faf 100644 --- a/oss.gg/README.md +++ b/oss.gg/README.md @@ -1,3 +1,6 @@ +[![image](https://github.com/user-attachments/assets/db4855e3-a94b-49ba-bd93-328caa323bf9)](https://oss.gg) + + # Instructions for oss.gg Hacktoberfest 2024 Open Source Contributors ## Overview of OpenBB Quests From 2e60e24a83e24e8c63f09f9237a38597a96ef37f Mon Sep 17 00:00:00 2001 From: Theodore Aptekarev Date: Mon, 30 Sep 2024 18:00:29 +0300 Subject: [PATCH 6/6] Update no code side quests --- .../no_code_side_quests/5-financial-medium.md | 27 ------------------- .../no_code_side_quests/5-financial-post.md | 27 +++++++++++++++++++ oss.gg/no_code_side_quests/6-social-hero.md | 27 +++++++++++++++++++ oss.gg/no_code_side_quests/6-twitter-hero.md | 27 ------------------- 4 files changed, 54 insertions(+), 54 deletions(-) delete mode 100644 oss.gg/no_code_side_quests/5-financial-medium.md create mode 100644 oss.gg/no_code_side_quests/5-financial-post.md create mode 100644 oss.gg/no_code_side_quests/6-social-hero.md delete mode 100644 oss.gg/no_code_side_quests/6-twitter-hero.md diff --git a/oss.gg/no_code_side_quests/5-financial-medium.md b/oss.gg/no_code_side_quests/5-financial-medium.md deleted file mode 100644 index 8a2b721de7ff..000000000000 --- a/oss.gg/no_code_side_quests/5-financial-medium.md +++ /dev/null @@ -1,27 +0,0 @@ -**Side Quest**: Write a Medium Article Comparing OpenBB and Other Financial Tools - -**Points**: 300 Points - -**Task**: Write an article for Medium comparing OpenBB with proprietary tools emphasizing its open-source benefits. - -**Proof**: Add a link to your Medium article in the PR description and update the list below with the submission. - -Please follow the following schema: - ---- - -» 05-April-2024 by YOUR NAME -» Link to Medium Article: https://medium.com/... - ---- - -//////////////////////////// - -Your turn 👇 - -//////////////////////////// - -» 01-October-2024 by YOUR NAME -» Link to Medium Article: https://medium.com/... - ---- diff --git a/oss.gg/no_code_side_quests/5-financial-post.md b/oss.gg/no_code_side_quests/5-financial-post.md new file mode 100644 index 000000000000..3001761d906b --- /dev/null +++ b/oss.gg/no_code_side_quests/5-financial-post.md @@ -0,0 +1,27 @@ +**Side Quest**: Write a Article Comparing OpenBB and Other Financial Tools + +**Points**: 300 Points + +**Task**: Write an article for Medium, substack, beehiiv, dev.to, or any other appropriate platform comparing OpenBB with proprietary tools emphasizing its open-source benefits. + +**Proof**: Add a link to your article in the PR description and update the list below with the submission. + +Please follow the following schema: + +--- + +» 05-April-2024 by YOUR NAME +» Link to Article: https://medium.com/... + +--- + +//////////////////////////// + +Your turn 👇 + +//////////////////////////// + +» 01-October-2024 by YOUR NAME +» Link to Article: https://medium.com/... + +--- diff --git a/oss.gg/no_code_side_quests/6-social-hero.md b/oss.gg/no_code_side_quests/6-social-hero.md new file mode 100644 index 000000000000..964923674913 --- /dev/null +++ b/oss.gg/no_code_side_quests/6-social-hero.md @@ -0,0 +1,27 @@ +**Side Quest**: Publish a LinkedIn post or a Twitter Thread on OpenBB’s Use in Investment Research + +**Points**: 150-500 Points + +**Task**: Create a detailed LinkedIn post or a Twitter Thread explaining how OpenBB can be used to enhance personal or professional investment research. + +**Proof**: Add a link to your LinkedIn post or Twitter thread in the PR description and update the list below with the submission. + +Please follow the following schema: + +--- + +» 05-April-2024 by YOUR NAME +» Link to the post: https://linkedin.com/... + +--- + +//////////////////////////// + +Your turn 👇 + +//////////////////////////// + +» 01-October-2024 by YOUR NAME +» Link to the post: https://x.com/... + +--- diff --git a/oss.gg/no_code_side_quests/6-twitter-hero.md b/oss.gg/no_code_side_quests/6-twitter-hero.md deleted file mode 100644 index 804bfe682d55..000000000000 --- a/oss.gg/no_code_side_quests/6-twitter-hero.md +++ /dev/null @@ -1,27 +0,0 @@ -**Side Quest**: Publish a Twitter Thread on OpenBB’s Use in Investment Research - -**Points**: 150 Points - -**Task**: Create a detailed Twitter thread explaining how OpenBB can be used to enhance personal or professional investment research. - -**Proof**: Add a link to your Twitter thread in the PR description and update the list below with the submission. - -Please follow the following schema: - ---- - -» 05-April-2024 by YOUR NAME -» Link to Twitter Thread: https://x.com/... - ---- - -//////////////////////////// - -Your turn 👇 - -//////////////////////////// - -» 01-October-2024 by YOUR NAME -» Link to Twitter Thread: https://x.com/... - ----